4

我正在尝试使用 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
    }
}

将不胜感激任何帮助。

4

1 回答 1

7

你的意思是切换出框架?在这种情况下,这应该有效:

driver.switchTo().defaultContent();
于 2012-10-02T13:24:11.823 回答