Script not getting title in IE - 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: VB Scripting/Descriptive Programming (https://www.learnqtp.com/forums/Forum-VB-Scripting-Descriptive-Programming) +--- Thread: Script not getting title in IE (/Thread-Script-not-getting-title-in-IE) |
Script not getting title in IE - UFT_Newbie - 09-18-2014 Hi Guys, I need to run my script in IE, Chrome and FF. My script works fine in Chrome and FF but not in IE. In IE, i'm getting the url of the page instead of title. Below is the code: Code: Browser("ABC").Page("XYZ").Link("link").Click Can someone help me out with this issue. RE: Script not getting title in IE - vinod123 - 09-25-2014 Demonstration: AddUsingTitle As stated earlier, this method will store any browser with the provided title. Code: SystemUtil.Run "iexplore.exe", "http://newtours.demoaut.com", "", "", 3 : Wait(4) |