如何使用selenium python webdriver从Web应用程序中计算表中的行数...我试过这个但是没有工作:
rowcount = self.driver.find_elements_by_xpath("//table[@class='alert-list table']/tbody/tr")
答案 0 :(得分:2)
rowCount=self.driver.find_elements_by_xpath("//table[@class='alert-list table']/tbody/tr").size();