我正在尝试使用 selenium-webdriver 实现关键字“取消选择帧”,但不知道如何使其对所有帧通用。
以下示例不起作用:
/**
* Sets the top frame as the current frame.
*
*/
public void unselectFrame(){
try {
WebElement element = getElement("//body");
driver.switchTo().frame(element);
} catch (Exception e) {
//exception
}
}
将不胜感激任何帮助。