Hi All,
I'm new to AutoIT, (In fact just tried out yesterday).
I would like to automate one of the test application which able download from http://www.realtech-vr.com/glview/download.html
I have sucessfully automated the installation process. When run the program, i need to click on one of the link which labeled "Rendering Test".
I'm using ControlClick to do this , but it failed to click. However, it can only perform the 'click' when i manually move my mouse cursor over the "Redendring Test"label.
Any idea to resolve this ?
Below is my script, hopefully can get any expert help. thx !
;run OGL viewer
Run("cmd /k C:\openglex.lnk")
; InstallShield Wizard
WinWait("OpenGL Extensions Viewer 3.16")
sleep(8000)
While WinExists("OpenGL Extensions Viewer 3.16", "Task")
WinActivate("OpenGL Extensions Viewer 3.16", "Rendering tests")
ControlClick("OpenGL Extensions Viewer 3.16", "Rendering tests", "WindowsForms10.STATIC.app.0.378734a40", "LEFT", 1)
WEnd