Logo Questions Linux Laravel Mysql Ubuntu Git Menu
 

"VerifyTextPresent" returning incorrect result for Selenium IDE

I am using Selenium IDE to record some scenarios and wanted to check if a particular text is present on the page. I inserted a command "VerifyTextPresent". However, it always returns the result as true even when the particular text is not present.

What can be the probable reason? Do I need to modify anything?

like image 272
Aditya Avatar asked Nov 10 '09 05:11

Aditya


2 Answers

Looking at the sourcecode it looks like you are putting the text you are searching for in the incorrect field. verifyTextPresent (and assert...) has only two parameters unlike verifyText which also requires a target.

Unlike verifyText the text element you are searching for should be entered into the second field 'Target' not in 'Value'.

thus the code becomes

<tr>
<td>verifyTextPresent</td>
<td>XYZ</td>
<td></td></tr>

I made the same mistake when learning Selenium as the field names are misleading!

like image 166
ulkash Avatar answered Nov 23 '22 12:11

ulkash


Selenium assertions have different modes:

All Selenium Assertions can be used in 3 modes: "assert", "verify", and "waitFor". For example, you can "assertText", "verifyText" and "waitForText". When an "assert" fails, the test is aborted. When a "verify" fails, the test will continue execution, logging the failure.

Try assertTextPresent. This should abort the test immediately.

like image 21
Thomas Jung Avatar answered Nov 23 '22 12:11

Thomas Jung