Webdriver-如何检查浏览器是否仍然存在或仍然打开?

我想检查浏览器是否仍然存在,如果不存在,那么我想打开一个新的浏览器!网络驱动程序中是否有可用的api来检查浏览器是否仍然存在?

回答:

调用后driver.close(),将driver的值设置为

FirefoxDriver: firefox on WINDOWS(4b4ffb1e-7c02-4d9c-b37b-310c771492ac)

但是,如果调用,driver.quit()它将驱动程序的值设置为

FirefoxDriver: firefox on WINDOWS (null)

因此,如果您在调用 driver.quit() 之后检查浏览器窗口,则可以通过以下实现知道。

WebDriver driver = new FirefoxDriver();

driver.get("http://www.google.com");

driver.quit();

if(driver.toString().contains("null"))

{

System.out.print("All Browser windows are closed ");

}

else

{

//open a new Browser

}

以上是 Webdriver-如何检查浏览器是否仍然存在或仍然打开? 的全部内容, 来源链接: utcz.com/qa/423225.html

回到顶部