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')
相關文章
相關標籤/搜索