使用selenium 连接到一个已经打开的浏览器
Posted 西秀岭
tags:
篇首语:本文由小常识网(cha138.com)小编为大家整理,主要介绍了使用selenium 连接到一个已经打开的浏览器相关的知识,希望对你有一定的参考价值。
我们有时希望对一个已经打开的浏览器进行测试。
1.使用Debug 方式启动浏览器
Process proc = new Process();
proc.StartInfo.FileName = @"C:\Program Files (x86)\Google\Chrome\Application\chrome.exe";
proc.StartInfo.Arguments = "https://www.intellitect.com/blog/ --new-window --remote-debugging-port=9222 --user-data-dir=C:\\Temp";
proc.Start();
2. 创建WebDriver并将浏览器的连接地址和端口作为参数传递给WebDriver
ChromeOptions options = new ChromeOptions();
ptions.DebuggerAddress = "127.0.0.1:9222";
var webDriver = new ChromeDriver(options);
这样就可以对已经存在的浏览器进行操作了。
以上是关于使用selenium 连接到一个已经打开的浏览器的主要内容,如果未能解决你的问题,请参考以下文章
如何重新连接到 webdriver 使用 selenium 打开的浏览器?
单击按钮后切换到打开的新浏览器 [Python][Selenium]