unable to navigate google site - Printable Version +- Micro Focus QTP (UFT) Forums (https://www.learnqtp.com/forums) +-- Forum: Micro Focus UFT (earlier known as QTP) (https://www.learnqtp.com/forums/Forum-Micro-Focus-UFT-earlier-known-as-QTP) +--- Forum: UFT / QTP Interview Questions (https://www.learnqtp.com/forums/Forum-UFT-QTP-Interview-Questions) +--- Thread: unable to navigate google site (/Thread-unable-to-navigate-google-site) Pages:
1
2
|
unable to navigate google site - shyam.emmadi - 04-19-2011 hi, i am using qtp 10, when i am trying to open the site ,i am facing the problem with the object plz help me. below i mentioned error meesage Code: invokeapplication"c:\program files\internet explorer\iexplore" Cannot identify the object "[ Browser ]" (of class Browser). Verify that this object's properties match an object currently displayed in your application. Line (2): Code: "browser("title:=about:blank").Navigate"http:\\www.google.com"". Tip: If the objects in your application have changed, the Maintenance Run Mode can help you identify and update your steps and/or the objects in your repository. RE: unable to navigate google site - Jay - 04-20-2011 problem in DP: Browser("title:=about:blank") insted of this use: Browser("creationtime:=0") RE: unable to navigate google site - shyam.emmadi - 04-20-2011 hi, still i am getting this error. plz help out Cannot identify the object "[ Browser ]" (of class Browser). Verify that this object's properties match an object currently displayed in your application. Line (3): "browser("title:=about:blank").navigate"http;\\www.google.com"". RE: unable to navigate google site - Jay - 04-20-2011 your line 3 is still showing title property.. RE: unable to navigate google site - shyam.emmadi - 04-20-2011 even if i use browser("creationtime:=0") i am unbale to navigate the google site plz helo me message in Result window Navigate to http:\\www.google.com Target Frame: _top Post Data: HTTP Headers: RE: unable to navigate google site - Jay - 04-20-2011 Surprisingly its working here. can you please paste whole code and exact error message. RE: unable to navigate google site - shyam.emmadi - 04-20-2011 here code is: Code: invokeapplication"c:\program files\internet explorer\iexplore" Message: Step Name: [ Browser ] Step Done Object Details Result Time [ Browser ] Navigate to http:\\www.google.com Target Frame: _top Post Data: HTTP Headers: Done 4/19/2009 - 18:00:18 Step Name: [ Browser ] Step Done code is invokeapplication"c:\program files\internet explorer\iexplore" browser("creationtime:=0").Navigate"http:\\www.google.com" message: Object Details Result Time [ Browser ] Navigate to http:\\www.google.com Target Frame: _top Post Data: HTTP Headers: Done 4/19/2009 - 18:00:18 RE: unable to navigate google site - Jay - 04-21-2011 Exclude http:\\ from the code any then try... RE: unable to navigate google site - Nilesh - 04-21-2011 use "http://www.google.co.in/" to navigate RE: unable to navigate google site - sreekanth chilam - 04-21-2011 Hi, Here we go. Way1: Code: InvokeApplication "c:\program files\internet explorer\iexplore.exe" Way2: Code: SystemUtil.Run "www.google.com" |