Hello,
You can make use of Manage Windows Control command to extract text in status bar. You can find Manage Windows Control command under 'Programs\Windows\Files’ command category. What you can do is,
1) Double click on the 'Manage Windows Controls' command and select the 'Status Bar' control. Select the relevant Internet Explorer window from the list. Click on 'Capture' and hold and drag your mouse on the status bar. Then select the variable to which the value in the status bar has to be assigned.
2) Click on 'Save' button.
3) Double click the Conditions/Loops->Loop command and select the option 'Condition' followed by selecting option, 'Variable'.
4) Click 'Edit' button and select the variable specified in Step 1. Select 'Includes' and then select the option 'Fix' for which the value should be 'Website found. Waiting for reply'.
5) Click on 'Save' button.
6) Inside Loop, insert delay of few seconds.
7) Again, insert Manage Windows Control command to capture textof status bar, same as done in Step1.
Text format of task would appear as follows,
1) Get Status Bar Text From Window : "Windows Internet Explorer" Assign to variable "$Prompt-Assignment$"
2) Loop While $Prompt-Assignment$ Includes "Website found. Waiting for reply"
3) Delay: (3000 ms)
4) Get Status Bar Text From Window : "Windows Internet Explorer" Assign to variable "$Prompt-Assignment$"
5) End Loop
In that way task will loop and wait till status bar includes text, 'Website found. Waiting for reply'.
|