Robot framewok simple yet important tricks

Scroll down to certain location and then click on elements so that elements not clickable should not arise

Use below keyword to scroll from the page.

Execute JavaScript | window.scrollBy(900, 900);
 
Use below keyword to scroll in pop up
 
Execute JavaScript    window.document.getElementsByClassName('btn btn-success ng-binding')[0].scrollIntoView(true);
 
Update here  getElementsByClassName 

Comments

Popular Posts