- 系统: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