我是 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();
但是,它似乎无法找到该选项卡。你能帮忙吗?
谢谢