0

I am using Selenium to run automated tests using RemoteWebDriver. The service that I am using (BrowserStack) only allows me to run 5 sessions in parallel, and there seems to be a delay between when my code executes the driver.quit() command and when the remote session actually ends. Is there any way I can tell programmatically?

olyv
  • 3,699
  • 5
  • 37
  • 67

1 Answers1

0

Something like:

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

This is pseudo-code; actual code is left as an exercise for the reader. Sorry, it's Friday afternoon, and my left brain is already at the bar. :)

SiKing
  • 10,003
  • 10
  • 39
  • 90