1

我是 selenium 的新手,我正在尝试访问以下网站上的标签完整记分卡标签。

http://www.espncricinfo.com/icc-womens-world-cup-2013/engine/current/match/594903.html

我的Java代码是:

driver.get("http://www.espncricinfo.com/icc-womens-world-cup-2013/engine/current/match/594903.html");

driver.manage().timeouts().implicitlyWait(5L, TimeUnit.SECONDS);
driver.findElement(By.xpath("//*[@id='st_1']")).click();

但是,它似乎无法找到该选项卡。你能帮忙吗?

谢谢

4

1 回答 1

1

“选项卡”位于iframe

在你可以对 an 中的元素做任何事情之前iframe,你必须使用“激活”框架driver.switchTo().frame("live_iframe")

于 2013-02-07T15:05:26.610 回答