0

调用 driver.WindowHandles 时,我在硒测试后期遇到超时问题。

我想在 IE 驱动程序中增加 60 秒的超时默认值。

错误信息;

ex = {"The HTTP request to the remote WebDriver server for URL http://localhost:43196/session/3385234a-4378-419a-9e3a-c59e6b0f7913/window timed out after 60 seconds."}
4

1 回答 1

1

增加请求的时间跨度相当简单

InternetExplorerDriver driver = new InternetExplorerDriver(@"c:\path", options, TimeSpan.FromMinutes(2));
于 2013-08-26T23:21:25.043 回答