18 January 2026:
Sahi Pro is an enterprise grade test automation platform which can automate web, mobile, API, windows and java based applications and SAP.
This forum is now archived and is in read-only mode. Please continue discussions on our improved new Sahi Pro Community forum.
Sahi Pro is an enterprise grade test automation platform which can automate web, mobile, API, windows and java based applications and SAP.
How to test the clicking on ">>"
1.Open www.idera.com.
2.Click on "About Us" tab.
3.Click on Click on news.
4.Click on ">>".
I am not able to code the 4rth step.
When I write code like
_click(_link("News"));
_assertExists(_span(">>"));
_click(_span(">>")); it gives error like
_assertExists(_span(">>"));
Assertion Failed. at Dec 2, 2013 4:35:06 PM
_click(_span(">>"));
Error: The parameter passed to _click was not found on the browser at Dec 2, 2013 4:35:23 PM
Any help would be much appreciated.
Regards
Uday
2.Click on "About Us" tab.
3.Click on Click on news.
4.Click on ">>".
I am not able to code the 4rth step.
When I write code like
_click(_link("News"));
_assertExists(_span(">>"));
_click(_span(">>")); it gives error like
_assertExists(_span(">>"));
Assertion Failed. at Dec 2, 2013 4:35:06 PM
_click(_span(">>"));
Error: The parameter passed to _click was not found on the browser at Dec 2, 2013 4:35:23 PM
Any help would be much appreciated.
Regards
Uday
Answers
">>" is a link.
Please try using:
_click(_link(">>"));
It works on my end for both Sahi Pro and OS.
Regards.