Difference between “verifyAlert” and “assertAlert” command in selenium

There are too many commands starting with “verify” and “assert” text. Both these commands are the same excluding one difference and that difference is after the execution of the “verify” command if the condition matches or not selenium will execute the next commands but in case of execution of the “assert” command if the condition … Read more

Using “answerOnNextPrompt” and “assertPrompt” commands in selenium

“answerOnNextPrompt” command Sometime if you seen , there is display text box with popup message to write some thing in message box. In such popup “answerOnNextPrompt” command is useful to providing answer in popup message. “answerOnNextPrompt” command will type the message whatever you want to type in popup. Here is one perfect example of “answerOnNextPrompt” … Read more

“assertEditable” and “assertNotEditable” command in selenium IDE

“assertEditable”  Command You can use “assertEditable” command with only and only input fields like text box, list box, drop downs etc. You can check and assert that targeted element is editable or not. If targeted element is not editable then it will stop execution of remaining selenium script. New Test Command Target Value open https://www.google.com … 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