当前位置:   article > 正文

Selenium 连接到现有的 Firefox 示例_selenium连接已存在的火狐浏览器

selenium连接已存在的火狐浏览器

当前环境:

python         3.7
selenium     3.14.1
urllib3          1.26.8

Frefox 115.1.0esr(32位)

geckodriver.exe 0.33.0

1 下载 Firefox 浏览器,根据自己的需要选择。

下载 Firefox 浏览器,这里有简体中文及其他 90 多种语言版本供您选择

2 下载 geckodriver.exe,根据自己的浏览器版本对应选择。

Releases · mozilla/geckodriver · GitHub

3 右键安装好的 Firefox ,目标 加入 "-marionette -start-debugger-server 2828",确定。

4 测试效果

测试代码:

  1. from selenium import webdriver
  2. GECKODRIVER_PATH = r'./geckodriver.exe'
  3. driver = webdriver.Firefox(executable_path = GECKODRIVER_PATH, service_args = ['--marionette-port', '2828', '--connect-existing'] )
  4. driver.get('https://www.baidu.com')
  5. print(driver.title)

参考:

如何使用selenium(python)连接到现有的firefox示例 
https://www.saoniuhuo.com/question/detail-2247009.html

特别是 ifsvaxew 的回答:


 

声明:本文内容由网友自发贡献,不代表【wpsshop博客】立场,版权归原作者所有,本站不承担相应法律责任。如您发现有侵权的内容,请联系我们。转载请注明出处:https://www.wpsshop.cn/w/Gausst松鼠会/article/detail/82197
推荐阅读
相关标签
  

闽ICP备14008679号