Forum Discussion

AndrewCast's avatar
AndrewCast
Contributor
6 years ago
Solved

How does TC parse script lines?

Attempting to add benchmarking scores after running intensive functions from the tested application.   I would like to do it as such:   benchmarks = [] # Begin intensive process for i in ran...
  • tristaanogre's avatar
    tristaanogre
    6 years ago

    We have a web application that does something similar... click on a button and you get an overlay object that indicates "Loading..." that, until that goes away, the automation needs to wait.  WE built a custom routine that simply checks for that object to be visible... if it is, sleep for 500 ms... loop until that object is no longer visible.  

     

    Is that what you're looking for?