mac selenium 连接已经打开的chrome浏览器

网友投稿 1561 2022-08-22

mac selenium 连接已经打开的chrome浏览器

mac selenium 连接已经打开的chrome浏览器

今天在mac环境下尝试了一下用selenium连接现有的服务器,本来想绕过某宝的反爬虫机制的,但是并没有什么用,但是这个技术不错,我这里分享一下实现过程。

添加环境变量

export PATH="/Applications/Google Chrome.app/Contents/MacOS:$PATH"

把上面的这一句添加到bashrc中,我的是zshrc,然后激活环境:

source ~/.zshrc

然后打开chrome:

Google\ Chrome --remote-debugging-port=9222 --user-data-dir="~/ChromeProfile"

运行这个后,就可以看见一个chrome打开了,接下来写程序连接它:

from selenium import webdriverfrom selenium.webdriver.common.by import Byfrom selenium.webdriver.support.ui import WebDriverWaitfrom selenium.webdriver.support import expected_conditions as ECfrom selenium.webdriver import ActionChainsoptions = webdriver.ChromeOptions()options.add_experimental_option("debuggerAddress", "127.0.0.1:9222")# options.add_experimental_option('excludeSwitches', ['enable-automation'])browser = webdriver.Chrome(executable_path=chromedriver_path, options=options)url='to connect Selenium to an existing browser that was opened manually?. ​​https://cosmocode.io/how-to-connect-selenium-to-an-existing-browser-that-was-opened-manually/​​

版权声明:本文内容由网络用户投稿,版权归原作者所有,本站不拥有其著作权,亦不承担相应法律责任。如果您发现本站中有涉嫌抄袭或描述失实的内容,请联系我们jiasou666@gmail.com 处理,核实后本网站将在24小时内删除侵权内容。

上一篇:爬虫入门到精通-headers的详细讲解(模拟登录知乎)
下一篇:pyqt matplotlib动态显示图
相关文章

 发表评论

暂时没有评论,来抢沙发吧~