I have just started using selenium IDE. Our application has a 3rd party HTML editor embedded. When we follow the process of record and play, i am unable to capture the text which i key in.
This particular page has many functionalities included int script. When i play the recorded sript, the function does not proceed past the HTML editor, however the script runs continuously till the end.Please suggest how do i capture this plain HTML text or HTML embedded.
Thanks
This is example of editing wiki page , see below
<tr>
<td>open</td>
<td>http://wiki.test.com/index.php/asdf</td>
<td></td>
</tr>
<tr>
<td>waitForElementPresent</td>
<td>link=Edit</td>
<td></td>
</tr>
<tr>
<td>clickAndWait</td>
<td>link=Edit</td>
<td></td>
</tr>
<tr>
<td>storeText</td>
<td>wpTextbox1</td>
<td>wik1</td>
</tr>
<tr>
<td>type</td>
<td>wpTextbox1</td>
<td>${wik1} ${wik2}</td>
</tr>
<tr>
<td>clickAndWait</td>
<td>wpSave</td>
<td></td>
</tr>
wik1 is the old content wik2 is the new text that will be added to the text area (text box)
BR,
Ramadan
Thank you Ramadan..Will try using this.
Did you try it ? Is it working ?
The actual problem i face that I am unable to capture any text entered - period, does not come till the verification.
