使用python从Web应用程序中计算表中的行数

时间:2015-05-21 06:22:20

标签: python selenium-webdriver

如何使用selenium python webdriver从Web应用程序中计算表中的行数...我试过这个但是没有工作:

rowcount = self.driver.find_elements_by_xpath("//table[@class='alert-list table']/tbody/tr")

1 个答案:

答案 0 :(得分:2)

    rowCount=self.driver.find_elements_by_xpath("//table[@class='alert-list table']/tbody/tr").size();