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 |
can u please explain what is the exact difference between qtp8.2 and 9.0
How to export QTP results to an ".xls" file?
What are the main attributes of test automation?
for a test in QTP i had choose the object repository as shared.after completion of some days i want to conduct the same test again,now the question is HOW TO LOAD THE OBJECT REPOSITORY. is it possible by descriptive programming.could any one tell me how many ways we load it and what is the process?
how can we return a value from userdefined function for eg 2 functions in func1 iam getting 2 values(a,b) and storing in var(C). now i want to pass that var(c) to another func2 give me the script
How you automate testscripts one by one or moduelwise or all at once
Hi All, issue is related to handling pop up script generated in IE, and run on mozilla. In App Under Test, when we get the alert pop ups, we just click ok button. if we need to run the same code on mozilla it will not identify . so we will check browser if browser(*).dialog(IE object).exits browser(*).dialog(IE object).winbutton(OK).click else 'by default mozilla browser(*).dialog(mozilla object).page(*).webbutton(OK).CLICK END IF But my qustion is. Do we write the above piece of code where ever we get such kind of pop ups from the application like alert pop up, confirmation pop up.... OR do we have any other alternative way to do this by using any functions in Recovery Scebarios? If Any of u know idea please do help me in this regard. or send answer to kravimb@gmail.com
Please explain the role of Regular expression in QTP
descriptive program for a yahoo mail that is in yahoo mail suppose check box mailid subject assume it is like this format all things are in webtable the question is suppose some mail ids are there in that mailids i want to select the check box wich is before a@gmail.com and after that i want to click on delete button
Tell me the QTP Advantages and Disadvatages ?
What is API
How we can add actions in the test using QTP?