I’m facing a problem when I try to execute a UFT script using a VBScript file to call it. The code inside the .vbs file is below:
dim uft
Set uft = CreateObject("QuickTest.Application")
uft.Visible = False
uft.Launch
uft.Open "R:dataHPCJobsSpoolsubmit_2017.06_CAEDevGomputeBenchAppuft_script"
uft.Test.Run Nothing, True, False
uft.Quit
Set uft = Nothing
MsgBox "Test done"
Inside the UFT script I have 7 actions. When I double click the .vbs
file the first action execute without problems, but when arrives in the second action start my problem: in all my actions (except the first one) has a code to create a .txt file. When the script create the first one (in the second action) it just stop to run all the rest of the second action and jump to third action to create the second .txt file, doing this for the rest of the actions.
I don’t know how this .vbs script are really doing and why it do not following the order of the script, because when I run inside UFT all works perfectly. Can anyone know what is the cause of this problem?
Thanks and regards.
Source: Read More