Martin Sowning
Martin Sowning

Reputation: 393

wait for user action in Selenium?

<tr>
    <td>type</td>
    <td>id=login</td>
    <td>aaa</td>
</tr>
<tr>
    <td>click</td>
    <td>id=password</td>
    <td>bbb</td>
</tr>
<tr>
    <td>type</td>
    <td>id=captcha</td>
    <td>sdfgsdfg</td>
</tr>

is possible add for this Selenium IDE test for PHP, waiting for user action? i would like type captcha

Upvotes: 0

Views: 685

Answers (1)

Thiyagarajan Veluchamy
Thiyagarajan Veluchamy

Reputation: 515

Try prompt a text box for user to enter the text in the captcha, and store in variable

example:

storeEval | prompt(“Enter Captcha:”) | varName

Then type the varName text in to your captcha text box example

type | id=CaptchaText | ${varName}

Upvotes: 1

Related Questions