![]() |
| |||||||
Automation Anywhere Post messages and questions related to Automation Software here. |
![]() |
| | LinkBack | Thread Tools | Display Modes |
| |||
| I would create a loop that test if a page is loaded and click a button. The page name is the same. How I can test this load? I've tested the Screen Change Action but some times doesn't work. Moreover the Select Windows drop down list is full, how i can clean this list? |
| |||
| Hello, Regarding Wait for screen change command, the task will wait for the amount of seconds you specified before it starts comparing the captured image to current image. After that, it continuously compares the image in marked rectangular section to captured image. As soon as the captured image and the current image differ, it stops comparing and goes to the next command. However, if the images do not differ in the specified amount of time then it either stops the task or goes to the next command as specified by you. If your screen is taking time to change then you can increase the time before you stop comparing the images. Alternatively, Automation Anywhere Enterprise provides you with 'If Image Recognition' command, using which you can find, if an image exists within another image either from a file or capture the rectangular area on any window. Specify the minimum percentage match that you want for the If command to be true. What you can do is, save the image of the screen that will load. Now, inside loop, wait for a screen change, find the image using 'If Image Recognition' and if image is recognized then exit from loop. The text format of your commands will look something like this: 1) Start Loop "5000" Times 2) Wait for Screen change (Wait up to 5 seconds - for Screen to change) 3) If Image from "- Microsoft Internet Explorer" Exists in "C:\Sample.jpg" with 100 percentage match Then 4) Exit Loop 5) End If 6) End Loop Regarding Select Window drop-down list, this list shows the window title of windows that are currently open plus the window titles that you have used in task. If you want to reduce this list then you can close currently open windows that are not required. Hope that helps! |