macOS使用selenium操作Firfox浏览器

浏览器及驱动版本对应关系如下:
macOS使用selenium操作Firfox浏览器

将下载后的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()

运行结果如下图:
macOS使用selenium操作Firfox浏览器

参考链接:https://www.selenium.dev/downloads/
https://firefox-source-docs.mozilla.org/testing/geckodriver/Support.html

macOS使用selenium操作Firfox浏览器

上一篇:read-linux


下一篇:Vim教程