我正在尝试使用selenium-webdriver实现关键字“Unselect Frame”,但不知道如何使它对所有帧都是通用的。
以下示例不起作用:
/**
* Sets the top frame as the current frame.
*
*/
public void unselectFrame(){
try {
WebElement element = getElement("//body");
driver.switchTo().frame(element);
} catch (Exception e) {
//exception
}
}
将不胜感激任何帮助。
答案 0 :(得分:5)
你的意思是切换出框架吗? 在这种情况下,这应该有效:
driver.switchTo().defaultContent();