selenium无法将数据传递给firefox?

时间:2013-12-31 02:19:25

标签: java firefox selenium xpath

我正在使用selenium 2.39和firefox 26进行一些使用java的自动化测试,但我遇到了一些问题,我的java脚本中的代码确实运行并在eclipse中打印出必要的值,但Web浏览器并不令人耳目一新。< / p>

我错过了任何步骤或什么?

driver.manage().timeouts()
    .implicitlyWait(50, TimeUnit.SECONDS);
driver.switchTo().defaultContent();
driver.findElement(By.xpath(".//*[@id='sidebarId']/li[5]/a")).click();
driver.findElement(By.xpath(".//*[@id='treeViewId']/tbody/tr[1]/td/div/ul/li[1]/div[2]/a")).click();

System.out.println("File Electronic Record");

系统确实在eclipse中打印出“File Electronic Record”,但是Web浏览器没有点击上面的xpath。 (p.sxpath没有任何错误)错误是什么?

0 个答案:

没有答案