Thread Rating:
  • 0 Vote(s) - 0 Average
  • 1
  • 2
  • 3
  • 4
  • 5
Unique Browser identification
#1
Not Solved
I am copying two codes where we are not convinced with the output.

Code 1:
Code:
Dim IE
Set IE=createObject("internetExplorer.application")
IE.visible=true
hwndMain=IE.HWND
Window("hwnd:="&hwndMain).Maximize
IE.Navigate "about:blank"
urlToNavigate="www.google.com"
Browser("hwnd:="&hwndMain).Navigate urlToNavigate
Set IE = Nothing

On executing this code, QTP shows error at "Browser("hwnd:="&hwndMain).Navigate urlToNavigate" step. If we change this step to "IE.Navigate urlToNavigate" then it works. On the fly we are creating browser object with some specific hwnd value and it should work.


Code 2:
Code:
Dim IE,IE1
Set IE=createObject("internetExplorer.application")
IE.visible=true
hwndMain=IE.HWND
msgbox hwndMain
Window("hwnd:="&hwndMain).Maximize
IE.Navigate "about:blank"
IE.Navigate "www.google.com"
Set IE1=createObject("internetExplorer.application")
IE1.visible=true
hwndMain1=IE1.HWND
msgbox hwndMain1
IE1.Navigate "www.gmail.com"
Set bDesc = Description.Create()
bDesc("application version").Value = "internet explorer 7"
Set bColl = DeskTop.ChildObjects(bDesc)
Cnt = bColl.Count
MsgBox "There are total: "&Cnt&"browsers opened"
For i = 0 To (Cnt -1)
MsgBox "Browser : "&i&" has title: "& bColl .GetROProperty("title")
Next
Set bColl = Nothing
Set bDesc = Nothing
Set IE = Nothing
Set IE1 = Nothing

On executing this code, message is displayed for 1 opened browser instead of 2. And second thing if we change the "GetROProperty("title")" to hwnd then we got three different hwnd values instead of two.

Can you please look into the issue and correct us at earliest.

Thanks.
Reply


Messages In This Thread
Unique Browser identification - by mca.tarun - 12-11-2009, 07:29 PM
RE: Unique Browser identification - by mca.tarun - 12-14-2009, 03:05 PM
RE: Unique Browser identification - by mca.tarun - 12-14-2009, 03:31 PM

Possibly Related Threads…
Thread Author Replies Views Last Post
  How to identify dynamic webtable as unique in QTP? sudheendramurthy 4 18,539 02-23-2016, 06:16 PM
Last Post: vinod123
  Cannot find the "[ WebEdit ]" object's parent "[ Browser ]" (class Browser). Verify t Divya Roopa 1 8,460 03-11-2014, 12:13 PM
Last Post: devarapallliramana
  Can I use html id as an unique identifier for all the components in a web page qtplearner88 8 8,484 05-21-2012, 06:52 PM
Last Post: falvi
  Unable to find a unique property Saranya 2 2,769 05-11-2008, 05:21 AM
Last Post: Anshoo Arora

Forum Jump:


Users browsing this thread: 3 Guest(s)