1

无法使用 Webdriver 获取 xpathcount。通过使用下面的代码,我得到计数​​为 0。

int xpathcount= driver.findElements(By.xpath(("//table[@id='ctl00_MasterPlaceHolder_GrdHistory']/tbody/tr"))).size();

任何帮助将不胜感激。

4

1 回答 1

0

试试下面的代码,括号有问题...

int xpathcount = driver.findElements(By.xpath("//table[@id='ctl00_MasterPlaceHolder_GrdHistory']/tbody/tr")).size();
于 2013-05-14T13:22:48.183 回答