Hi,
I'm implementing an automation program using autoit where I
1. start an application
2. update its data from Internet
3. proceed with several processing steps.
The problem I'm facing is that sometimes after step 2, this application will popup another window producing some kind of report. This popup is uncertain in sense sometimes this may not be produced at all and sometimes it will be produced but it is not guaranteed that it will be immediately after step 2. Looks to me that a different thread of the application puts this window sometimes after step2. When I'm manually doing the work, I just close this window when it pops up but while automating the process, it breaks the logic. If I'm waiting for some window in Step 3 and at the same time the said popup window comes up, then my automation program just hangs.
Please comment / provide help how I can handle (close) this unexpected popup window that may or may not come up at any unexpected time (most probably by a different thread of application)?
Thanks,
Siya