how to invoke the web application through script in qtp

Answers were Sorted based on User's Feedback



how to invoke the web application through script in qtp..

Answer / raj

syntax: systemutil.Run "Browser", "ur web url"

systemutil.Run "iexplore.exe", "www.yahoo.com"

Is This Answer Correct ?    52 Yes 7 No

how to invoke the web application through script in qtp..

Answer / sreekanth

Initially in check the web addin in add-in manager window &
in Record & Run Settings,choose Web tab.

Then...give the following script & see...

systemutil.Run "your appl url"

ex:
systemutil.Run "yahoomail.com"

Is This Answer Correct ?    25 Yes 12 No

how to invoke the web application through script in qtp..

Answer / widewaythink

If you are using Windows 7, Use this command to open the
application through QTP:

Systemutil.Run "C:\Program Files\xx....\flight3a.exe"

You can record and run the application without any crash error.

Is This Answer Correct ?    8 Yes 3 No

how to invoke the web application through script in qtp..

Answer / menaka n

Invokeapplication"C:\Program Files\Internet
Explorer\IEXPLORE.EXE"

Is This Answer Correct ?    12 Yes 11 No

how to invoke the web application through script in qtp..

Answer / sandipgami84

Hi..

u can call below function, and Pass your URL.

Public Function OpenInternetExplorer(URL)
Dim IE
Set IE = CreateObject("InternetExplorer.Application")
IE.Visible = True
If URL <> "" Then
IE.Navigate Trim(URL)
Else
IE.Navigate "about:blank"
ExitTest
End If
Environment.Value("HWND") = IE.HWND
End Function

Is This Answer Correct ?    7 Yes 11 No

how to invoke the web application through script in qtp..

Answer / satyanj

Browser("<Browser>").Navigate "<URL>".

Is This Answer Correct ?    5 Yes 12 No

how to invoke the web application through script in qtp..

Answer / ayush

invokeapplication " specify the path "

Is This Answer Correct ?    3 Yes 11 No

how to invoke the web application through script in qtp..

Answer / supriya

Use the Object reference Model of qtp
and you will find many ways there

Is This Answer Correct ?    3 Yes 12 No

how to invoke the web application through script in qtp..

Answer / sathi

do you write the script in web application go to qtp choose
on web page example yahoo or gmail and go to record ->click
on insert menu choose xml testing with page or link->chose
the hand icon on any menu->stop the record and ->run

web application scripting in qtp

SYNTAX:
BROWSER("BROWSER NAME").PAGE("PAGE
NAME").WEBXML("SETTINGS").CHECK CHECKPOINT("SETTINGS")

Is This Answer Correct ?    5 Yes 16 No

how to invoke the web application through script in qtp..

Answer / chandradeep

Systemutil.run "URL"



-------- It's Enough

Is This Answer Correct ?    7 Yes 22 No

Post New Answer

More QTP Interview Questions

Maximum synchronizing time out in QTP

3 Answers   Kanbay,


What is the difference between per-action and shared?

0 Answers  


explain qtp framework by taking an example?

3 Answers  


How we wil do data driven test using chkpts? Plz. give me complete navigation steps for this?

1 Answers  


where the object repository is located?how to choose the object repository as shared or action object repositories?

4 Answers   Datamatics,






How to Identify broken links in QTP

2 Answers   Ness Technologies,


I installed QTP 9.5 on vista. Can someone please provide me the license key of the same. Thanks, Avi

2 Answers   Xavient,


whaht is the difference between CLASS & OBJECT?

3 Answers   Accenture,


Do we have to Enable Smart Identification while running Or will it automatically be enabled ?

2 Answers  


How vl i prioritize the actions when i have 10 actions A1, A2, A3......A10. I want to run action as follows A1,A5,A6 and A10. How i can do it. Thanks in Advance to u.

7 Answers   IBM, Wipro,


. My application is updating the user information in the application. Every time it is Adding on record in my application and Validating the information like “Record has added successfully”. Which Check point I have to put in this situation? Why?

5 Answers   Polaris,


Types of properties that Quick Test learns while recording?

1 Answers   Crea,


Categories