赞
踩
options = webdriver.FirefoxOptions()
options.add_argument('--headless')
options.add_argument('--disable-pgu')
Firefox浏览器驱动所在路径
executable_path = r"D:\install_Python\geckodriver.exe"
需要导入类:from selenium.webdriver.chrome.options import Options
chrome_options = Options()
chrome_options.add_argument('--headless')
chrome_options.add_argument('--disable-pgu')
例如以下代码:
- from selenium.webdriver.chrome.options import Options
- from selenium import webdriver
-
- # 配置Fi
Copyright © 2003-2013 www.wpsshop.cn 版权所有,并保留所有权利。