Jump to content

Search the Community

Showing results for tags 'IECreate IE.au3'.

  • Search By Tags

    Type tags separated by commas.
  • Search By Author

Content Type


Forums

  • General
    • Announcements and Site News
    • Administration
  • AutoIt v3
    • AutoIt Help and Support
    • AutoIt Technical Discussion
    • AutoIt Example Scripts
  • Scripting and Development
    • Developer General Discussion
    • Language Specific Discussion
  • IT Administration
    • Operating System Deployment
    • Windows Client
    • Windows Server
    • Office

Categories

  • AutoIt Team
    • Beta
    • MVP
  • AutoIt
    • Automation
    • Databases and web connections
    • Data compression
    • Encryption and hash
    • Games
    • GUI Additions
    • Hardware
    • Information gathering
    • Internet protocol suite
    • Maths
    • Media
    • PDF
    • Security
    • Social Media and other Website API
    • Windows
  • Scripting and Development
  • IT Administration
    • Operating System Deployment
    • Windows Client
    • Windows Server
    • Office

Categories

  • Forum FAQ
  • AutoIt

Calendars

  • Community Calendar

Find results in...

Find results that contain...


Date Created

  • Start

    End


Last Updated

  • Start

    End


Filter by number of...

Joined

  • Start

    End


Group


Member Title


Location


WWW


Interests

Found 1 result

  1. Each time I run the Autoit script below, I get any of the following 2 error messages: message 1: Line 1124 AutoIt3\Include\IE.au3: Local $o_col = $o_object.document.forms.item($s_Name) Local $o_col = $o_object.document^ ERROR Error: The requested action with this object has failed. message 2: Line 560 AutoIt3\Include\IE.au3: WEnd WEnd^ ERROR Error: The requested action with this object has failed. AutoIt Version: 3.3.8.1 Windows 7 IE 8 Autoit script: #include <IE.au3> $oIE = _IECreate("http://10.215.144.66/apps/portal/index_login.php") $oForm = _IEFormGetObjByName($oIE, "form1") $oUser = _IEFormElementGetObjByName($oForm, "user") $oPasswd = _IEFormElementGetObjByName($oForm, "password") $user = "user" $passwd = "password" _IEFormElementSetValue($oUser, $user) _IEFormElementSetValue($oPasswd, $passwd) LAN web page ("http://10.215.144.66/apps/portal/index_login.php"): <html> <body> <table width="100%" border="0" height="90%"> <tr> <td valign="top" width="120" bgcolor="#CCCCCC" height="100%"> <div align="right"> <form name="form1" id="form1" method="post" action="https://webapps.domain.org/apps/portal/index.php"> <table border="0" bordercolor="#003399" width="100%" cellspacing="0" cellpadding="0"> <tr bgcolor="#003399"> <td colspan="2"> User </td> </tr> <tr> <td> <br>&#160;User </td> <td> <br><input type="text" name="user" id="user"> </td> </tr> <tr> <td> &#160;Password </td> <td> <input type="password" name="password" id="password"> </td> </tr> <tr> <td align="right" colspan="2"> <input type="submit" name="btsubmit" value="Enter"> </td> </tr> </table> </form> </div> </td> </tr> </table> </body> </html> Any ideas? Thanks Vieri
×
×
  • Create New...