longphant Posted December 17, 2013 Posted December 17, 2013 I am iterating through a list of "img" elements using _IETagNameGetCollection(). Some of them have their "class" member defined while others don't. So let's say I have something like below. This will crash because it hits a tag that does not have its "class" member defined. Is there a way to check for the existence of that member? IsDeclared() does not work. Local $tags = _IETagNameGetCollection($oIE, "img") For $tag In $tags if $tag.class == "blahblah" Then ;Will crash on a tag that does not have its "class" element defined. D($tag.innerText) EndIf Next
Danp2 Posted December 17, 2013 Posted December 17, 2013 You may want to review >this thread. Latest Webdriver UDF Release Webdriver Wiki FAQs
JohnOne Posted December 17, 2013 Posted December 17, 2013 Add Error handler. _IRErrorH* -> help file. AutoIt Absolute Beginners Require a serial Pause Script Video Tutorials by Morthawt ipify Monkey's are, like, natures humans.
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