Forum Discussion
baxatob
8 years agoCommunity Hero
You can create a simple wait operation based on the While loop:
yourApp.buttonExecute.Click()
While yourApp.buttonYES.Exists != True: aqUtils.Delay(1000)
yourApp.buttonYES.Click()
Hardy
8 years agoOccasional Contributor
Thanks a lot. Because the batch jobs was perform in specify time, so i will try it when i can run batch jobs.