I am trying to identify items displayed in Advantage shopping page. I am using below properties to identify the objects. Object identification center identifying multiple objects but my script is returning 0
imgsCnt=browser.findChildren(WebElement.class,new WebElementDescription.Builder().className("ng-scope").tagName("LI").build());
System.out.println("# ItemsPresent : : "+imgsCnt.length);
WebPage URL : http://www.advantageonlineshopping.com:8080/#/category/5
I would like to identify the available items list using 'li' elements.