我不太清楚发生了什么。我在 ChromeOptions 中设置了调试器端口,但是 Selenium 想要连接到它认为合适的任何端口。我做错了什么?...
我不太清楚到底发生了什么。我在 ChromeOptions 中设置了调试器端口,但 Selenium 却想连接到它认为合适的任何端口。我做错了什么?
var driverInstructions = new DriverInstructions();
driverInstructions.Driver = Driver.Chrome;
driverInstructions.DriverLocation = @"M:\driver\127\chromedriver-win64 (5)\chromedriver-win64";
ChromeOptions options = new ChromeOptions();
options.DebuggerAddress = "localhost:9992";
sl.StartDriver(driverInstructions, false, options, false);