Document

3-selenium反爬了,网页打开一直提示失败

添加如下代码

from selenium.webdriver import ChromeOptions
option = ChromeOptions()
option.add_experimental_option('excludeSwitches', ['enable-automation'])
option.add_argument("disable-blink-features=AutomationControlled")

driver = webdriver.Chrome("chromedriver",0,options=option)
driver.get("https://www.xiaohongshu.com")

posted on 2023-05-04 18:35  小排顾  阅读(66)  评论(0编辑  收藏  举报

导航