webdriver的 - 如何检查是否浏览器仍然存在,还是仍然处于打开? [英] Webdriver - How to check if browser still exists or still open?

查看:3719
本文介绍了webdriver的 - 如何检查是否浏览器仍然存在,还是仍然处于打开?的处理方法,对大家解决问题具有一定的参考价值,需要的朋友们下面随着小编来一起学习吧!

问题描述

我要检查,如果浏览器仍然存在,如果它不是,那么我想打开一个新的浏览器!
是否有一个API提供的webdriver检查浏览器是否仍然存在?

I want to check if browser still exists and if it isn't then i want to open a new browser! Is there a api available in webdriver to check if the browser still exists?

推荐答案

在调用后 driver.close()驱动器的值设置为

After calling driver.close() the value of driver is set to

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

但如果你调用 driver.quit()然后设置驱动器,以

FirefoxDriver: firefox on WINDOWS (null)

所以,如果你调用后检查浏览器窗口中的 driver.quit()的,那么你就可以通过下面的实施就知道了。

So if you're checking the browser window after calling driver.quit() then you will be able to know by below implementation.

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的 - 如何检查是否浏览器仍然存在,还是仍然处于打开?的文章就介绍到这了,希望我们推荐的答案对大家有所帮助,也希望大家多多支持IT屋!

查看全文
登录 关闭
扫码关注1秒登录
发送“验证码”获取 | 15天全站免登陆