python selenium chrome有界面与无界面模式


from selenium.webdriver.chrome.options import Options
from selenium import webdriver
  
  
# 无界面模式
def ChromeDriverNOBrowser():
   chrome_options = Options()
   chrome_options.add_argument('--headless')
   chrome_options.add_argument('--disable-gpu')
   driverChrome = webdriver.Chrome(executable_path="E:\\chromedriver",chrome_options=chrome_options)
    return driverChrome
  
# 有界面的就简单了
def ChromeDriverBrowser():
    driverChrome = webdriver.Chrome(executable_path="E:\\chromedriver")
    return driverChrome





用 headless 的 firefox
 
from selenium.webdriver.firefox.options import Options
ff_option = Options()
ff_option.add_argument('-headless')

 


免责声明!

本站转载的文章为个人学习借鉴使用,本站对版权不负任何法律责任。如果侵犯了您的隐私权益,请联系本站邮箱yoyou2525@163.com删除。



 
粤ICP备18138465号  © 2018-2025 CODEPRJ.COM