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 |
how to i add the values using the check points property?( i.e valid data(for valid data it's giving the footer message:value is added) and for invalid data: special chars, spaces,Duplicates and null values (in my page when ever we enter special chars, spaces and null values, it's giving the proper warning message and for Duplicates it's giving the footer message:"value already exists)?
What are the advantages of QTP over WinRunner?
Explain the concept of object repository and how quicktest professional (qtp) recognises objects?
What is the use of ordinal identifier in qtp?
how to test one edit box using Java addin for Web Applications? write script?
How can I deploye a 'QTP Runtime environment only'
In the website, the protocol has been changed http: to https what you will do? Tell me your approach?
QTP is not displaying in OBJECT SELECTION-CHECKPOINT PROPERTIES boxs only WINDOW AND WIN OBJECT remaining pages and links , images not displaying in web application testing. how can I get the pages and links in object selection? Please anyone tell me?
What is the use of Accessibility check point?
what is the main process in QTP?
What are Child Objects?
what testing activities u may want to automate?