Tell me more ×
Stack Overflow is a question and answer site for professional and enthusiast programmers. It's 100% free, no registration required.

Is there a way to see if all the browser windows are closed? I see that if you call driver.quit() or driver.close() on the WebDriver, the sessionId becomes null. Is there a way to check that?

I don't want to make a call to a closed or quit driver as it throws a WebDriverException. So I want to check to see the state of the browser before continuing on.

share|improve this question
Invoking quit() on WebDriver closes all open windows opened by the driver. So what do you want to check? What do you mean by "state of the browser"? – Ashwin Prabhu Jul 27 '12 at 10:17

1 Answer

up vote 1 down vote accepted

Just set

driver=null; 

everytime you quit the browser and than check

if (browser!=null){
  //Attention: this comand is not supported
  //as far as i know ;)
  driver.doSomething();
}

or

try{


}catch (NullPointerException e)

    e.printStackTrace();
    System.err.print"DAMN";
}

or receive a NullPointerException ;)

share|improve this answer

Your Answer

 
discard

By posting your answer, you agree to the privacy policy and terms of service.

Not the answer you're looking for? Browse other questions tagged or ask your own question.