- 系統:macOS 10.15.5
- Firefox版本:v78 下載頁面:http://www.pc6.com/mac/110555.html
- 對應驅動v2.5 下載頁面:https://github.com/mozilla/geckodriver/releases
瀏覽器及驅動版本對應關系如下:
將下載后的gecokdriver解壓后移動或軟鏈到/usr/local/bin
mv ~/Downloads/gecokdrier /usr/local/bin
編寫腳本:
from selenium import webdriver
from time import sleep
dr = webdriver.Firefox()
dr.get('https://www.baidu.com/')
dr.find_element('id', 'kw').send_keys('博客園 韓志超')
dr.find_element('id', 'su').click()
sleep(3)
dr.quit()
運行結果如下圖:
參考鏈接:https://www.selenium.dev/downloads/
https://firefox-source-docs.mozilla.org/testing/geckodriver/Support.html