Jump to content

Search the Community

Showing results for tags 'Clicking a button'.

  • 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

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. Hello Everyone - I'm working on automating a simple internal website that has a login form but the submit button doesn't have a name. Below is the HTML code for the form I'm trying to work with. I have tried to using _IEFormSubmit() but this didn't submit the form as expected. Can someone help me with explaining how to click this button with no name? <form name="login" method="post" action="/login_validate"> <div style="margin-left: 370px; margin-right: 370px;" class="tableborder"> <table cellspacing="0" cellpadding="0" border="0" align="center"> <tr> <th colspan="1">Login</th> <th colspan="2" style="text-align: right;"> <a href="/forgot_passwd" class="header">Forgot Password?</a> </th> </tr> <tr> <td class="">Username</td> <td align="center"><input type="text" name="login_username" id="login_username" class="logininput"></td> <td></td> </tr> <tr> <td class="">Password</td> <td align="center"><input type="password" name="login_passwd" id="login_passwd" class="logininput"></td> <td valign="bottom" align="right"><input type="submit" class="button" value="Login"> </tr> </table> </div> </form> Thanks for any help in advance.
×
×
  • Create New...