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
}
}
どんな助けにも感謝します。