Assert Greater Than, Assert Lesser Than, Assert Range

As the names suggest, all the 3 assertions, assert numbers if they are greater than, lesser than, or if it falls in a range of the provided number.

The provided number in the value column could come from a web page as well using getText API.

Example JS Script Example

Copy
navigateTo("http://demosite.appvance.com/  ");
assertGreaterThan(1,0);
        
assertLessThan(5,10);
        
assertRange(5,1,6);