selenium 隐藏访问

Posted zjj999

tags:

篇首语:本文由小常识网(cha138.com)小编为大家整理,主要介绍了selenium 隐藏访问相关的知识,希望对你有一定的参考价值。

from selenium import webdriver
from selenium.webdriver import ChromeOptions

options = ChromeOptions()
options.add_experimental_option(‘excludeSwitches‘, [‘enable-automation‘])


a = webdriver.Chrome(executable_path=r‘D:python学习其他chromedriver.exe‘, options=options)

a.get(‘http://www.baidu.com‘)
a.quit()

以上是关于selenium 隐藏访问的主要内容,如果未能解决你的问题,请参考以下文章