axcessor Posted July 21, 2007 Posted July 21, 2007 hello i want to click a banner in a javascript generated iframe. here is my code: #include <IE.au3> $oIE = _IECreate ("http://www.adspace-dealers.de/pr.html") _IELoadWait($oIE) $oFrame = _IEFrameGetCollection($oIE, 0) _IEImgClick ($oFrame, "image.espotting.com","src") i get the following error: --> IE.au3 Warning from function _IEImgClick, $_IEStatus_NoMatch what's wrong?
mikehunt114 Posted July 23, 2007 Posted July 23, 2007 i get the following error:--> IE.au3 Warning from function _IEImgClick, $_IEStatus_NoMatchwhat's wrong?It's not finding a match. The ads change each time the page is loaded, so the image source is never the same. IE Dev ToolbarMSDN: InternetExplorer ObjectMSDN: HTML/DHTML Reference Guide[quote]It is surprising what a man can do when he has to, and how little most men will do when they don't have to. - Walter Linn[/quote]--------------------[font="Franklin Gothic Medium"]Post a reproducer with less than 100 lines of code.[/font]
DaleHohm Posted July 23, 2007 Posted July 23, 2007 Mike has a point, but there are several other issues here as well. Frame 0 contains only: <HTML><HEAD></HEAD> <BODY></BODY></HTML> Find this like this: #include <IE.au3> $oIE = _IECreate ("http://www.adspace-dealers.de/pr.html", 1) $oFrame = _IEFrameGetCollection($oIE, 0) ConsoleWrite(_IEDocReadHTML($oFrame) & @CR) The other frames will generate cross-site scripting errors and you will not be able to manipulate them. To get to their contents you'll need to open their URLs in a standalone browser window. Also, the src for _IEImgClick must exactly match when in in the src= field in the HTML. Dale Free Internet Tools: DebugBar, AutoIt IE Builder, HTTP UDF, MODIV2, IE Developer Toolbar, IEDocMon, Fiddler, HTML Validator, WGet, curl MSDN docs: InternetExplorer Object, Document Object, Overviews and Tutorials, DHTML Objects, DHTML Events, WinHttpRequest, XmlHttpRequest, Cross-Frame Scripting, Office object model Automate input type=file (Related) Alternative to _IECreateEmbedded? better: _IECreatePseudoEmbedded Better Better? IE.au3 issues with Vista - Workarounds SciTe Debug mode - it's magic: #AutoIt3Wrapper_run_debug_mode=Y Doesn't work needs to be ripped out of the troubleshooting lexicon. It means that what you tried did not produce the results you expected. It begs the questions 1) what did you try?, 2) what did you expect? and 3) what happened instead? Reproducer: a small (the smallest?) piece of stand-alone code that demonstrates your trouble
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