如何使用Java关闭Selenium WebDriver中的子浏览器窗口
2022-09-01 11:34:38
切换到新窗口并完成任务后,我想关闭该新窗口并切换到旧窗口,
所以在这里我写得像代码:
// Perform the click operation that opens new window
String winHandleBefore = driver.getWindowHandle();
// Switch to new window opened
for (String winHandle : driver.getWindowHandles()) {
driver.switchTo().window(winHandle);
}
// Perform the actions on new window
driver.findElement(By.id("edit-name")).clear();
WebElement userName = driver.findElement(By.id("edit-name"));
userName.clear();
try
{
driver.quit();
}
catch(Exception e)
{
e.printStackTrace();
System.out.println("not close");
}
driver.switchTo().window(winHandleBefore);// Again I want to start code this old window
上面我写的代码或.但是我遇到了错误。任何人都可以帮我...?driver.quit()
driver.close()
org.openqa.selenium.remote.SessionNotFoundException:FirefoxDriver 在被调用 quit() 后无法使用。