UFT execution and pause from vbscript file UFT GUI
♥ 0 |
I’ve written a couple of small vbscript files. The first one launches UFT and runs a script to completion then quits UFT. That code is listed here: ——————————————– Set uftApp = CreateObject("QuickTest.Application") If NOT uftApp.Launched Then uftApp.Visible = True uftApp.Open "C:\\Users\\zzz\\Desktop\\UFT Repository\\mytest", False uftApp.Test.Run uftApp.Test.Close uftApp.Quit Set uftApp = Nothing ——————————————– And then I have another vbs file that I use to pause execution. I’ve created a shortcut for this vbs file and assigned shortcut keys of "cntl + alt + p". I also have another vbs file "continue.vbs" which simply resumes execution but I won’t list that here. Can someone there explain to me what I’m doing incorrectly? Is there a better way to achieve this?
Marked as spam
|