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')
原文地址:https://www.cnblogs.com/wangchuang/p/11069207.html