Jump to content

Problems with pressing button on html page


Recommended Posts

Hello!

I am trying to make AutoIt push this button on a webpage

<DIV style="Z-INDEX: 200000000; LEFT: 180px; WIDTH: 490px; POSITION: absolute; TOP: 160px; HEIGHT: 132px"><DIV class=rubrik>Logga ut</DIV>
<P style="BACKGROUND-COLOR: yellow">Det är viktigt att du alltid loggar ut när du inte tänker använda Impulse mer.<BR>Om du inte gör detta är du fortfarande tillgänglig för attacker fram till att din session går ut. <BR><BR>Är du säker på att du vill logga ut från Impulse Amax?<BR><BR>
<FORM action=./?sida=misc/logga_ut method=post><INPUT class=skicka_knapp type=submit value="Logga ut" name=submit> </FORM></P>

As far as i have understanded i should use something like

$oSubmit = _IEGetObjByName ($oIE, "Logga ut")
_IEAction ($oSubmit, "click")

But it dont work..... Can someone help??

Edited by TzarAlkex
Link to comment
Share on other sites

Take a look at _IEFormGetCollection, _IEFormElementGetObjByName and either _IEFormSubmit or _IEAction "click"

If this is the first form on the page (index 0) then:

$oForm = _IEFormGetCollection($oIE, 0)

_IEFormSubmit($oForm)

or

$oForm = _IEFormGetCollection($oIE, 0)

$oSubmit = _IEFormElementGetObjByName($oForm, "submit")

_IEAction($oSubmit, "click")

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

Link to comment
Share on other sites

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
 Share

  • Recently Browsing   0 members

    • No registered users viewing this page.
×
×
  • Create New...