Jump to content

Submit "onclick=javascript"


Recommended Posts

well, i tried to submit a form, i tried in the first the code:

_IEAction ($oForm, "click")

and the second

IEFormSubmit ($oForm)

so i need help to find the right code AutoIT to submit.

The code Html of the button

<div class="posBtnEntrer"> <input type="image" name="LoginBox$LoginButton" id="LoginBox_LoginButton" title="Entrer" src="/content/images/btn_entrer.gif" onclick="java script:WebForm_DoPostBackWithOptions(new WebForm_PostBackOptions(&quot;LoginBox$LoginButton&quot;, &quot;&quot;, true, &quot;&quot;, &quot;&quot;, false, false))" style="border-width:0px;" /> 
                                </div>
Link to comment
Share on other sites

well, i tried to submit a form, i tried in the first the code:

_IEAction ($oForm, "click")

and the second

IEFormSubmit ($oForm)

so i need help to find the right code AutoIT to submit.

The code Html of the button

<div class="posBtnEntrer"> <input type="image" name="LoginBox$LoginButton" id="LoginBox_LoginButton" title="Entrer" src="/content/images/btn_entrer.gif" onclick="java script:WebForm_DoPostBackWithOptions(new WebForm_PostBackOptions(&quot;LoginBox$LoginButton&quot;, &quot;&quot;, true, &quot;&quot;, &quot;&quot;, false, false))" style="border-width:0px;" /> 
                                </div>
Try getting the reference to the input itself and using that:
; Using "id" field for name because it's a singular reference
$oInput = _IEFormElementGetObjByName($oForm, "LoginBox_LoginButton", 0)
_IEAction ($oInput, "click")

:)

Edited by PsaltyDS
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
Link to comment
Share on other sites

@PSaltyDS, you may get a NOMATCH on that because the element has a name of LoginBox$LoginButton (the ID is LoginBox_LoginButton)

So you could use either

$oInput = _IEFormElementGetObjByName($oForm, "LoginBox$LoginButton", 0)

or

$oInput = _IEGetObjById($oForm, "LoginBox_LoginButton")

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

@PSaltyDS, you may get a NOMATCH on that because the element has a name of LoginBox$LoginButton (the ID is LoginBox_LoginButton)

So you could use either

$oInput = _IEFormElementGetObjByName($oForm, "LoginBox$LoginButton", 0)

or

$oInput = _IEGetObjById($oForm, "LoginBox_LoginButton")

Dale

it works with

$oInput = _IEGetObjById($oForm, "LoginBox_LoginButton")
_IEAction ($oInput, "click")

thank you and thanks to PsaltyDS

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...