0


Selenium启动带有调试端口的Chrome实例

  1. 关闭所有已打开的Chrome实例:
    • 确保所有Chrome窗口都已关闭。这是因为多个Chrome实例可能会共享相同的用户数据,这可能会干扰你的设置。
  1. 打开命令行工具:
    • 在Windows上,你可以使用cmdPowerShell。- 在macOS或Linux上,你可以使用Terminal
  1. 运行带有调试端口的Chrome:
    • 在命令行中,输入以下命令来启动Chrome,并指定一个调试端口(例如9222):
  1. 对于Windows:
"C:\Program Files (x86)\Google\Chrome\Application\chrome.exe" --remote-debugging-port=9222

对于macOS:

/Applications/Google\ Chrome.app/Contents/MacOS/Google\ Chrome --remote-debugging-port=9222

对于Linux:

google-chrome --remote-debugging-port=9222

这里的路径可能需要根据你的Chrome安装位置进行调整。

  1. 保持此Chrome实例开启:
    • 一旦启动了带有调试端口的Chrome实例,保持它开启。现在,你可以通过指定的端口(在这个例子中是127.0.0.1:9222)来连接Selenium。

使用Selenium连接到调试端口

现在,使用Selenium的代码中指定的相同端口,你可以连接到这个Chrome实例:

chrome_option.add_experimental_option("debuggerAddress", "127.0.0.1:9222")

这样,Selenium就会连接到你手动启动的、带有调试端口的Chrome实例。

标签: chrome 前端 selenium

本文转载自: https://blog.csdn.net/Nemoear/article/details/134871897
版权归原作者 Nemoear 所有, 如有侵权,请联系我们删除。

“Selenium启动带有调试端口的Chrome实例”的评论:

还没有评论