Jump to content

Recommended Posts

Posted

I need code which clicks on image when message appears.

Part of html with message:

...m1"><div class="kom2">Komunikat</div>Ruch niemożliwy!</div><h3>Droga Węża...

^--- Ruch niemożliwy! - my message

Can someone help me?

please.

Posted (edited)

I am using IE. I tried something like that but it didnt work:

Global $I = _IECreate("http://kosmiczni.pl/", 0, $show)
           $oFrame2 = _IEFrameGetObjByName ($I, "okno")
       _IELoadWait ($oFrame2)
       $sHTML = _IEDocReadHTML ($oFrame2)
       If $sHTML = "Ruch niemożliwy!" Then _IEImgClick ($oFrame2, "right.png", "src")
Edited by met94
Posted

I am using IE. I tried something like that but it didnt work:

Global $I = _IECreate("http://kosmiczni.pl/", 0, $show)
           $oFrame2 = _IEFrameGetObjByName ($I, "okno")
       _IELoadWait ($oFrame2)
       $sHTML = _IEDocReadHTML ($oFrame2)
       If $sHTML = "Ruch niemożliwy!" Then _IEImgClick ($oFrame2, "right.png", "src")
Add _IEErrorHandlerRegister() near the top of your script and run it from SciTE. You should see helpful error messages in the console pane. These may include "Access Denied" if the frame is from a different site (cross-site scripting protection).

:)

Valuater's AutoIt 1-2-3, Class... Is now in Session!For those who want somebody to write the script for them: RentACoder"Any technology distinguishable from magic is insufficiently advanced." -- Geek's corollary to Clarke's law

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 account

Sign in

Already have an account? Sign in here.

Sign In Now
×
×
  • Create New...