My code is below :
$I->see('20.4','//*[@class="container ng-scope"]/div/div/div/div/div[@class="bigNum ng-binding"]');
It is working fine but as you can see tthe class is nested into multiple div, want to get rid of so many divs nested.
I tried :
$I->see('20.4','//*[@class="container ng-scope"]//*div[@class="bigNum ng-binding"]');
Gives me error :
Cannot find the element.
Any solution?