“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

“assertTextPresent” and “assertTextNotPresent” command in selenium IDE

“assertTextPresent” command “assertTextPresent” command is useful for verifying and asserting selenium if given text is not present on page. It will return false as error if specified text is not present on page and will stop execution. New Test Command Target Value open https://www.google.co.in/ assertTextPresent Maps verifyTextPresent Maps In above example, selenium IDE software testing … Read more

type and typeAndWait command in selenium IDE

This guide will show you how to use the type and typeAndWait commands in Selenium IDE to enter text into input fields during test execution. You’ll learn the key differences between these commands, when to use each, and how they behave in real testing scenarios. “type” command “type” command is useful for typing keyboard key … Read more

Different between “verifyText” and “assertText” in selenium

Here let me describe you main difference between assert and verify in selenium IDE software testing tool and selenium RC software testing tool. assert and verify commands are useful for verifying condition match or not. Verify command will verify the condition and if its not match, it will give error message in Log area and will … Read more