首页 > 代码库 > robotframework 下获取列表中行数

robotframework 下获取列表中行数

需求:需要获取所在页面上的列表中的数据的行数

 

可以用到的关键字:Get Matching Xpath Count

 

  ${count}    Get Matching Xpath Count    xpath=//dd[contains(@class, ‘preachListItem clears‘)]    #获取列表数据量


   log    ${count}

 

当前的关键字只能获取当前页的数据,如果列表中数据为多页,则需要用其他写法 

robotframework 下获取列表中行数