3
我試圖用selenium-webdriver實現關鍵字「Unselect Frame」,但不知道如何使它對所有框架都是通用的。如何在Selenium 2中實現關鍵字「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
}
}
將是任何幫助表示感謝。