0

我正在使用 Selenium 使用 RemoteWebDriver 运行自动化测试。我正在使用的服务(BrowserStack)只允许我并行运行 5 个会话,并且在我的代码执行 driver.quit() 命令和远程会话实际结束之间似乎存在延迟。有什么办法可以以编程方式告诉我吗?

4

1 回答 1

0

就像是:

while(server Running) {
try {
    connect to server
    server Running
} catch(exception ex) {
    server Not Running
}
sleep for a bit
}

这是伪代码;实际代码留给读者作为练习。抱歉,现在是星期五下午,我的左脑已经在酒吧了。:)

于 2014-06-06T20:41:17.967 回答