How u will open the build automatically in QTP except using
Systemutil.run command
Answers were Sorted based on User's Feedback
Answer / chinna
We will open the build automatically in QTP using
Syntax : Invokeapplication ("Path of the application")
Is This Answer Correct ? | 2 Yes | 1 No |
Answer / nalini
You can open the build automatically by specifying the
build path in Record and Runtime Settings.
Or
use InvokeApplication function.
InvokeApplication "buildpath"
Is This Answer Correct ? | 1 Yes | 1 No |
Answer / sandeep
Please refer to the VBScript below.
I used this script to start one application.
You may need to do the same.
In oSheel.Run row enter the variosu command statement which
you take DOS Prompt to required path where exe exists.
Once in that folder just enter name of exe which need to
start application.
Dim oShell
Set oShell = WScript.CreateObject ("WSCript.shell")
oShell.run "cmd /K C: & CD C:\Program Files\COADE\CAESAR II
5.20& C2.EXE"
Set oShell = Nothing
Is This Answer Correct ? | 0 Yes | 1 No |
Answer / vidyasagar
Dim oShell
Set oShell = CreateObject ("WSCript.shell")
oShell.run "Pathof the file"
Set oShell = Nothing
Is This Answer Correct ? | 0 Yes | 1 No |
hi friends can anyone tell me where can i find descriptive programming material please send me the link also,from which i can download the material
What is the use of an object spy tool in qtp?
If you giving priority as p0, as a developer if I give priority as p2, What happens In user defined function ?
How qtp recognizes the object?
How to switch between browser tabs? )moving from one tab to another tab)
How does you test a weblink which is changing dynamically?
what difference between client and server applications exatly?
How would you parameterize the text field "Country" and the same "country" when it appears as combo field on other page with text field city and same with City combo field?
how qtp handles customised object
What frame work ur using in QTP in ur current company?
what is meant by source control?
how can u find the syntax errors or other script errors in your test during the execution of your QTP Test - (i.e., not after the execution/test run finished, but before finishing the test run)