selenium浏览器配置
作者:互联网
import time
from selenium import webdriver
from selenium.webdriver.common.action_chains import ActionChains
options = webdriver.ChromeOptions()
# 设置为开发者模式,防止网站识别
options.add_experimental_option(
'excludeSwitches', ['enable-automation'])
# 加载驱动程序,驱动位置需要配置环境变量
browser = webdriver.Chrome(executable_path=r'D:\pythonProject\技术提升\工具\tools\chromedriver.exe',
options=options)
标签:webdriver,浏览器,驱动程序,ActionChains,配置,selenium,import,options 来源: https://www.cnblogs.com/wolvies/p/15672071.html