Selenium启动项参数设置

常用的启动项参数:

参数 意义
window-size=1366,768 设置浏览器分辨率(窗口大小)
- -headless 无界面运行(无窗口)
- -start-maximized 最大化运行(全屏窗口)
- - incognito 隐身模式(无痕模式)
- - disable-infobars 禁用浏览器正在被自动化程序控制的提示
blink-settings=imagesEnabled=false 不加载图片(提升速度)

更多参考:
https://peter.sh/experiments/chromium-command-line-switches/

python使用参考:

#引入启动项选择函数
from selenium.webdriver.chrome.options import Options

#定义启动项
chrome_options = Options()
#加入需求的参数
chrome_options.add_argument('--incognito')#无痕模式(不保留缓存)
#传递已选启动项
browser = webdriver.Chrome(r"D:\selenium\chromedriver.exe",chrome_options=chrome_options)

你可能感兴趣的:(selenium,测试,python)