selenium 对当前已经打开的窗口进行调试

要求selenium版本4.11.2

使用cmd进入chrome浏览器的路径执行如下命令,创建一个端口为9522的窗口

chrome.exe --remote-debugging-port=9522 --user-data-dir="D:\selenium\AutomationProfile"

代码里面创建实例,调用driver即可

from selenium import webdriver
from selenium.webdriver.chrome.options import Options
options = Options()
options.add_experimental_option("debuggerAddress","127.0.0.1:9527")
driver = webdriver.Chrome(options=options)

你可能感兴趣的:(selenium,测试工具)