I just started using the Selenium IDE, I press a button that loads the view and c-in this view li , and li has ng-click='doSomething(myFunc)' , which runs the function that loads the content.
code: <li ng-repeat="a in [1,2,3,4,5]" ng-click(myFunc)>{{a}}</li>
When you click on everything works fine. With Selenium, it appears as captured, but wen I test I get this error
[info] Executing: |sendKeys | id=jsonform-1-elt-0.name | Simo | (SIMO is the name entered)
[error] Element id=jsonform-1-elt-0.name not found
NOTE: my form is built from a Json schema using https://github.com/Simomultimedia/jsonform
Any suggestions on what could lead to selenium not being executed?
source share