如何在Selenium 2中实现关键字“Unselect Frame”?

时间:2012-10-02 12:07:03

标签: java selenium-webdriver

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

将不胜感激任何帮助。

1 个答案:

答案 0 :(得分:5)

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

driver.switchTo().defaultContent();