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 |
How many types of parameters are there?
How to retrive the property of an object?
Did the scripts need lot of maintenance? If yes, why?
You say it is a bug but developer say it is not a bug then what will you do?
6 Answers Hewitt, Tech Mahindra,
WHAT ARE THE DISADVANTAGES OF SHARED REPOSITORY?
can u please explain what r the challenges u faced in ur automation testing
what is debugging testing?
I wnnt to learn about QTP Automation Framework,please give URL Address to get more information about AFW.
I have multiple radio buttons i need to select a radio buton and i dont want to hard code i have a generic function for it there i have used select#0 so it selects first radio button but for other script i want to select the 4th radio button how i can make it still more generic
4 Answers Accenture, Acentia, LM,
There are some links on the web page,write a script to count and click those links and check the text on the page displayed on clicking the links.
what is the use of Browser.sync()
What is a data driven test in qtp?