How to open an application through scripting?
Answers were Sorted based on User's Feedback
Answer / sadiq
Hey here are the simple steps for opening the
application through scripting
a="C:\Program Files\Internet Explorer\iexplore.exe"
b="www.yahoo.com"
systemutil.run a,b
| Is This Answer Correct ? | 15 Yes | 0 No |
Answer / sharath
We can use SystemUtil.run method or InvokeApplication
statement to open the application
| Is This Answer Correct ? | 14 Yes | 3 No |
Answer / trevor chandler
For QTP (Quick Test Pro)
You can use the following line below directly in a test in
expert view.
First parameter is the browser.
Second Parameter is the URL to navigate to
SystemUtil.Run "iexplore.exe", "C:\opt\projects\dtlt\catalin
a\functions\dtltLaunch.html"
Hope this helps.
| Is This Answer Correct ? | 7 Yes | 1 No |
Answer / methuku
Browser = "IE"
StartURL = "www.hotmail.com"
IF Browser = "IE" THEN
set IE = CreateObject("InternetExplorer.Application")
IE.Visible = true
IE.Navigate StartURL
END IF
| Is This Answer Correct ? | 7 Yes | 5 No |
Answer / dinesh chouhan
'Without Systemutil or Invokeapplication
set IE=CreateObject("InternetExplorer.Application")
IE.visible=True
IE.Navigate "www.google.com"
| Is This Answer Correct ? | 0 Yes | 0 No |
Window We can using invokeapplication and systemUtil. run method
But for web we can using SystemUtil.Run
In Vb script we can using different methods
| Is This Answer Correct ? | 0 Yes | 0 No |
Answer / ashok
Uday,Murugesh
i think your answers are in winrunner not QTP. I agree with
sarath.not only sarath method,some more ways are there.
| Is This Answer Correct ? | 0 Yes | 2 No |
Answer / murugesh
Suppose you trying the web application use the following
script
web_browser_invoke(URL);
| Is This Answer Correct ? | 4 Yes | 8 No |
Answer / uday
For web applications we use
web_browser_invoke(IE,"http://mail.yahoo.com/");
for other applications :
invoke_application("uday.exe","Directory
Path",SW_SHOW/SW_SHOWMAXIMISED/SW_MINIMISED);
| Is This Answer Correct ? | 2 Yes | 6 No |
What is the entry criteria and exit criteria for your test automation
What is the main differece between QTP 9.0 and 9.2
1.how can we report the QTP test result in a different excel sheet 2.
How would you export a script from one pc to another in qtp?
How to add check point?
I have 5 save buttons in 5 tabs . The tabs are placed one after the other. My object repository have these added as 5 save buttons with name sav1, save 2, save 3 , save 4, save 5 .all are getting highlighted from OR but they are not getting clicked. After spying each button all the properties are same except First button Index 0 html id:=btnSaveTab1 outerhtml:=<input id=""btnSaveTab1"" class=""Button"" onclick=""document.getElementById('a1').click();"" name=""btnSaveTab1"" value=""Save"" type=""button"">", Second button "html id:=btnSave "outerhtml:=<input id=""btnSave"" class=""Button"" onclick=""document.getElementById('a2').click();"" value=""Save"" type=""button"">", Third button "html id:=", outerhtml:=<input id=""btnSaveTab1"" class=""Button"" onclick=""document.getElementById('a1').click();"" name=""btnSaveTab Fourth button "html id:=btnSave outerhtml:=<input id=""btnSave"" class=""Button"" onclick=""document.getElementById('a2').click();"" value=""Save"" type=""button"" 5th button "html id:=", "outerhtml:=<input class=""Button"" onclick=""document.getElementById('a5').click();"" value=""Save"" type=""button"">",
Is there anyone can tell me where I can download free or trial QTP? I tried HP website, it was not there anymore. If someone know, pls send me URL. Tks...
How you can delete excel file in qtp?
Explain about random testing of 500 test cases?
What are the Test design techniques you uses in ur project?
What are parameterizing tests?
How can I find out the cursor position through QTP suppose I am keep tabbing(Pressing the tab key continuously) and stoped at a position Now I want to find out where the cursor position is