how to invoke the web application through script in qtp
Answer Posted / 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 |
Post New Answer View All Answers
regular expression in qtp standar check point for months from accepting months from january to december only
desribe a situation where u faced a stressful situation and how did u cope with it
What is the use of sendkeys and what are send keys
What are metrics and matrix?
How you can find length of array in qtp?
What are the different recording modes?
How did you use regular expressions in QTP and also in WR?
1.Write a CRITICAL test cases for calculator ? 2.What is the difference b/w FRS and SRS documents ? 3.What is Component ? 4.What is object ? 5.what is the difference b/w static and dynamic descriptive programming ?
What are table and db checkpoints?
what type of run time errors you get while you ar edoing rpg program?
What ate the Technologies supported by QTP?
To retrive the test data which tool vl use and whats basis u vl write test data? its urgent
How to make qtp understand the difference amongst the same type of objects .suppose there are 5 check boxes in a page and I have to choose the 2nd one, how to do that through script?
What is environment variable in qtp and why to use it?
If the weblist is identified as webelement,and by clicking on webelement if the values are displayed,and if the values the values also identified as webelement.then how to fetch the values through script?