selenium IDE “selectPopUpAndWait” and “Close” commands with example

Selenium IDE is very useful regression testing tool in software industry. Selenium IDE has many built in commands and you can also extend it using extensions files. Let me describe you more 2 commands of Selenium IDE. “selectPopUpAndWait” command You can read my post about “selectPopUp” command before understanding “selectPopUpAndWait” command. As name suggests, “selectPopUpAndWait” … Read more

“pause”, “refresh” and “waitForPageToLoad” commands in selenium IDE

“pause” Command “pause” command is simple wait command and useful for stop execution of selenium IDE software automation testing tool for given time. In bellow given example, it will wait for 5 second and then it will execute next “refresh” command. New Test Command Target Value open https://www.google.co.in/ pause 5000 refresh waitForPageToLoad 10000 open https://www.google.co.in/imghp?hl=en&tab=wi … Read more