tags:

views:

80

answers:

2

Hello there,

how i can write VerifyTextPresent command in selenium IDE, and what shall be its procedure like i am writing VerifyTextPresent="welcome" to verify a text is present , it is returning an error, am i writing in correct format? kindly guide

regards, Shoaib

+1  A: 

You can use Selenium IDE then select some text, right click and choose "check text is present" (or something similar).

Wernight
+1  A: 

You have to put the COMMAND verifyTextPresent and in the TARGET put Welcome. Leave the VALUE field empty

In HTML format it would be:

<tr>
    <td>verifyTextPresent</td>
    <td>Welcome</td>
    <td></td>
</tr>

NOTE: You don't need to put the text value insdide comas (")

Panacea