1. 程式人生 > >【Python+selenium】瀏覽器後臺執行

【Python+selenium】瀏覽器後臺執行

拿chrome瀏覽器舉例,正常我們是用webdriver.Chrome()呼叫瀏覽器
後臺執行只需要在呼叫前加上兩行程式碼
然後在呼叫瀏覽器的程式碼引數裡引用我們設定的option就好了

option=webdriver.ChromeOptions()
option.add_argument('headless') # 設定option
driver = webdriver.Chrome(chrome_options=option)  # 呼叫帶引數的谷歌瀏覽器

執行時後臺會不斷的有資料顯示出來,它會記錄你在做什麼。