LCL Enterprise: support pagination

This commit is contained in:
Noé Rubinstein 2013-07-23 17:59:19 +02:00 committed by Romain Bignon
commit 03beabe5a0
2 changed files with 12 additions and 2 deletions

View file

@ -67,6 +67,9 @@ class MovementsPage(BasePage):
return account
def nb_pages(self):
return int(self.document.xpath('//input[@name="nbPages"]/@value')[0])
def get_operations(self):
LINE_XPATH = '//table[@id="listeEffets"]/tbody/tr'