Rodger 0 Posted September 14, 2010 Hello, I have the following line in the Source of a website: <div class="submit"><input type="submit" value="Aanmelden" /></div> How can I Click on this item when there is no "name" and no "id" mentioned? Thanks, Rodger Share this post Link to post Share on other sites
someone 7 Posted September 14, 2010 Any chance you tried _IEFormSubmit ? You don't need to reference the submit button just the form. While ProcessExists('Andrews bad day.exe') BlockInput(1) SoundPlay('Music.wav') SoundSetWaveVolume('Louder') WEnd Share this post Link to post Share on other sites
Rodger 0 Posted September 14, 2010 Any chance you tried _IEFormSubmit ? You don't need to reference the submit button just the form.Yes, but nogo. I tried the examples ..... Share this post Link to post Share on other sites
PsaltyDS 39 Posted September 14, 2010 Did you get a reference to that particular input tag at all? Is it buried inside any Framesets and frames? You said you tried the examples but didn't show any code or say how and where they failed. We are notoriously bad at psychic debugging here... 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 Share this post Link to post Share on other sites
Rodger 0 Posted September 14, 2010 This is the website: https://portal.exchange.nl/ I managed to put text in the "Inlognaam" field and in the "Wachtwoord" field. But then I can't have AutoIt to click on the "Button" "Aanmelden" Share this post Link to post Share on other sites
Juvigy 49 Posted September 15, 2010 This works for me: $oIE= _IECreate(https://portal.exchange.nl/) _IELoadWait($oIE) $oDoc = _IEDocGetObj($oIE) $oArray = $oDoc.getElementsByTagName ("input") For $element In $oArray If $element.value="Aanmelden" Then _IEAction($element, "click") Next Share this post Link to post Share on other sites
wakillon 403 Posted September 15, 2010 (edited) Try#include <IE.au3> $oIE= _IECreate("https://portal.exchange.nl/") _IELoadWait($oIE) $oDoc = _IEDocGetObj($oIE) $oArray = $oDoc.getElementsByTagName ("input") For $element In $oArray If $element.name=="wps.portlets.userid" Then _IEFormElementSetValue ( $element, "UserId") If $element.name=="password" Then _IEFormElementSetValue ( $element, "Password") If $element.value=="Aanmelden" Then _IEAction($element, "click") Next Edited September 15, 2010 by wakillon AutoIt 3.3.14.2 X86 - SciTE 3.6.0 - WIN 8.1 X64 - Other Example Scripts Share this post Link to post Share on other sites
DaleHohm 65 Posted September 15, 2010 Making better use of IE.au3 and it's automatic error handling: #include <IE.au3> $oIE = _IECreate("https://portal.exchange.nl/") $oUsername = _IEGetObjByName($oIE, "userId") $oPassword = _IEGetObjByName($oIE, "password") $oSubmit = _IETagnameGetCollection($oIE, "input", 2) _IEFormElementSetValue($oUsername, "your-username") _IEFormElementSetValue($oPassword, "you-password") _IEAction($oSubmit, "click") Dale Free Internet Tools: DebugBar, AutoIt IE Builder, HTTP UDF, MODIV2, IE Developer Toolbar, IEDocMon, Fiddler, HTML Validator, WGet, curlMSDN docs: InternetExplorer Object, Document Object, Overviews and Tutorials, DHTML Objects, DHTML Events, WinHttpRequest, XmlHttpRequest, Cross-Frame Scripting, Office object modelAutomate input type=file (Related)Alternative to _IECreateEmbedded? better: _IECreatePseudoEmbedded Better Better?IE.au3 issues with Vista - WorkaroundsSciTe 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 Share this post Link to post Share on other sites