How To Test Pagination Feature Using Protractor
Please guide me how to navigate through different pages of pagination using Protractor , i followed this blog: http://seleniumhome.blogspot.com/2013/07/how-can-we-automate-paginati
Solution 1:
summaryPage.getPaginationsize.getSize() method will return an Object with height and width of a webelement. Instead you need to use summaryPage.getPaginationsize.count() to get the total number of pageSize.
Reference:
getSize() : http://www.protractortest.org/#/api?view=webdriver.WebElement.prototype.getSize
count() : http://www.protractortest.org/#/api?view=ElementArrayFinder.prototype.count
Post a Comment for "How To Test Pagination Feature Using Protractor"