浏览器及驱动版本对应关系如下:
将下载后的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
原文:https://www.cnblogs.com/superhin/p/13257231.html