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)