无法使用Webdriver获取xpathcount。通过使用以下代码,我将计为0。
int xpathcount= driver.findElements(By.xpath(("//table[@id='ctl00_MasterPlaceHolder_GrdHistory']/tbody/tr"))).size();
任何帮助将不胜感激。
答案 0 :(得分:0)
尝试下面的代码,你在括号中遇到了一些麻烦......
int xpathcount = driver.findElements(By.xpath("//table[@id='ctl00_MasterPlaceHolder_GrdHistory']/tbody/tr")).size();