I have a menu and sub-menus built in angularJS.
Each menu has the following code:
<a class="ng-scope" ng-click="irPara(item, $event)" ng-if="!item.heading" title="">
When I try to click in a link of a submenu, Selenium throws an exception that Element is not clickable, or element is not found.
I assume this happens because I have to wait submenu be load, how Do I wait for this submenu to be loaded without using Thread.sleep()
thanks