sagarphirke Posted December 25, 2013 Posted December 25, 2013 Dear Experts; Have to work on Xmas Can you help with this error ? IE.au3 V2.4-0 Warning from function _IEAttach, $_IEStatus_NoMatch I have IE9 installed and I want to do some task on my Intranet portal. My code looks like below :- #include <File.au3> #include <Array.au3> #include <IE.au3> _IEErrorHandlerRegister() $oUrl = "<a href='http://myinranet.site/' class='bbc_url' title='External link' rel='nofollow external'>http://myinranet.site/" $oIE = _IEAttach ($oUrl, "$oUrl")
Solution Danp2 Posted December 25, 2013 Solution Posted December 25, 2013 I believe _IEErrorHandlerRegister is deprecated in the latest version of AI / IE.au3. Try changing this: $oUrl = "<a href='http://myinranet.site/' class='bbc_url' title='External link' rel='nofollow external'>http://myinranet.site/" $oIE = _IEAttach ($oUrl, "$oUrl") to: $oUrl = "mysitename.com" $oIE = _IEAttach ($oUrl, "URL") Latest Webdriver UDF Release Webdriver Wiki FAQs
Recommended Posts
Create an account or sign in to comment
You need to be a member in order to leave a comment
Create an account
Sign up for a new account in our community. It's easy!
Register a new accountSign in
Already have an account? Sign in here.
Sign In Now