📜  更改用户代理 selenium - Python 代码示例

📅  最后修改于: 2022-03-11 14:47:00.998000             🧑  作者: Mango

代码示例1
chromedriver = 'C:/tests/chromedriver.exe'
options = webdriver.ChromeOptions()
options.add_argument('--user-agent = Googlebot/2.1 (+http://www.google.com/bot.html)')
driver = webdriver.Chrome(executable_path = chromedriver, chrome_options = options)