假设我不想计算表中的任何行。但如果没有可用的 id。并使用嵌套表。那么如何编写 xpath 来计算行数。我努力了
WebDriver driver = new FirefoxDriver();
driver.get("http://newtours.demoaut.com/");
List<WebElement> list=driver.findElement(By.xpath("//table[@width='270']"));
System.out.println(list.size());
例如:http : //newtours.demoaut.com/ 计算航班表中的行数。
谢谢,