Selenium怎樣驅動Firefox瀏覽器

當然你得先下載谷歌驅動chromedriver.exe,安裝selenium


from selenium import webdriver

from selenium.webdriver.chrome.options import Options



chrome_options = Options()

chrome_options.add_argument('--headless')

driver = webdriver.Chrome(chrome_options=chrome_options,executable_path = 'D:\APPS\dir\chromedriver.exe')




發表評論
所有評論
還沒有人評論,想成為第一個評論的人麼? 請在上方評論欄輸入並且點擊發布.
相關文章