Jump to content

Simple Question


Recommended Posts

anyone know what im doing wrong here?

I get this error:

Line 777 ie.au3

If IsObj($o_object.elements) Then

If IsObj($o_object.e^ERROR

Error: Unable to parse line.

#include <ie.au3>
While 1
    If WinExists( "https://www.website.com" ) Then
        _LoginAnico()
    EndIf
WEnd

Func _LoginAnico()
            $anicologin1 = "user"
            $anicopass1 = "pass"
            $oIE = _IEAttach("https://www.website.com - Internet Explorer")
            $o_form = _IEFormGetObjByName ($oIE, "form")
            $o_login = _IEFormElementGetObjByName ($o_form, "username")
            $o_password = _IEFormElementGetObjByName ($o_form, "password")
            _IEFormElementSetValue ($o_login, $anicologin1)
            _IEFormElementSetValue ($o_password, $anicopass1)
            _IEFormSubmit ($o_form)
EndFunc
Link to comment
Share on other sites

That's a good guess. Check the output prior to that error and it will tell you what version of AutoIt is being used at the time. There have also been strange errors something like that when people downloaded the IE.au3 file as text in their browser and then cut and paste... if that happens to you, right-click the file and Save As...

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