UFT 12.02 Compatibility for IE 11.0 : Fail to identify the defined Object - 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: UFT 12.02 Compatibility for IE 11.0 : Fail to identify the defined Object (/Thread-UFT-12-02-Compatibility-for-IE-11-0-Fail-to-identify-the-defined-Object) |
UFT 12.02 Compatibility for IE 11.0 : Fail to identify the defined Object - Amruta_121 - 04-27-2015 Hi, I am using UFT12.02 for Web Application with Browser IE11.0 I have Set an Object for 'Browser().Page().Frame()' and i am Using this Object throughout the script, for Further settings on Webpage. eg. Code: dim oTempParentObj This is Not an issue with IE9, IE10 , Chrome36 and FF 27 Version. Does UFT12.02 does not support Object property for IE11 version? RE: UFT 12.02 Compatibility for IE 11.0 : Fail to identify the defined Object - Naresh - 04-28-2015 Hi, These are Supported browsers of UFT 12.02 It supports upto IE 11 FIrefox:Upto v34 UFT 12.02 Patch 1: Upto v35,36 Beta Chrome :Upto v39 UFT 12.02 Patch 1: Upto v40,41 Beta RE: UFT 12.02 Compatibility for IE 11.0 : Fail to identify the defined Object - Swetha_Bayya - 08-25-2015 Hi, Even I am facing this issue with my scripts in IE 11 browser. Can someone please provide any update.. like any settings to be made in Browser(C:\programefile\Internent Explorer or C:\Programefile(x86)\Internent Explorer) Thanks, Swetha RE: UFT 12.02 Compatibility for IE 11.0 : Fail to identify the defined Object - ADITI1992 - 08-25-2015 Hi , Just check addon BHO in IE. It should be enabled. Path:IE->Tools->ManageAddons: In window opened check ststus of BHO RE: UFT 12.02 Compatibility for IE 11.0 : Fail to identify the defined Object - Swetha_Bayya - 01-04-2016 Hi Friends, For the scripts that we have developed in IE9 were not working on IE11 browser. So as a work around we have developed another functions. So during this script development, we found that Fireevent "onclick" was not supporting. So we have replaced "onclick" with ".click". This solution worked out for us . RE: UFT 12.02 Compatibility for IE 11.0 : Fail to identify the defined Object - vinod123 - 01-05-2016 Check the below URL for Supported Browsers in UFT version https://www.learnqtp.com/uft-qtp-browser-support-matrix/ RE: UFT 12.02 Compatibility for IE 11.0 : Fail to identify the defined Object - venkatesh9032 - 01-06-2016 Try to add object without frame in OR. If it is still adding cut the object from frame and paste in page. Highlight it.. It will work . RE: UFT 12.02 Compatibility for IE 11.0 : Fail to identify the defined Object - vinod123 - 01-07-2016 Use Descriptive Programming method to avoid such errors RE: UFT 12.02 Compatibility for IE 11.0 : Fail to identify the defined Object - Swetha_Bayya - 01-08-2016 In IE11, generally "Set" command alone will not work. We need to add below line of code before and after Set command for ex: Code: Setting.WebPackage("ReplayType") = 2 RE: UFT 12.02 Compatibility for IE 11.0 : Fail to identify the defined Object - vinod123 - 01-11-2016 try the code using Descriptive Programming method which is without using object repository or you have to add the object frame to the OR |