Hello,
I'm having an issue on the _IEImgClick function. It basically opens a specified webpage and should click on the image. However, I'm having an error upon running the code.
IE.au3 T3.0-2 Warning from function _IEImgClick, $_IESTATUS_NoMatch
Below is my current code at the moment.
; Click on IMG by src sub-string
#include <IE.au3>
Local $oIE = _IE_Example("basic")
_IEImgClick($oIE, "autoit_6_240x100.jpg", "src")
_IEQuit($oIE)
It is an example from the AutoIT help file, I'm not sure why it is stating that error tho as it should be fine. Any of you came up with a solution to this? Thanks in advance.