首页 > 系统服务 > 详细

macOS使用selenium操作Firfox浏览器

时间:2020-07-06 21:42:32      阅读:63      评论:0      收藏:0      [点我收藏+]

浏览器及驱动版本对应关系如下:
技术分享图片

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

macOS使用selenium操作Firfox浏览器

原文:https://www.cnblogs.com/superhin/p/13257231.html

(0)
(0)
   
举报
评论 一句话评论(0
关于我们 - 联系我们 - 留言反馈 - 联系我们:wmxa8@hotmail.com
© 2014 bubuko.com 版权所有
打开技术之扣,分享程序人生!