Jump to content

log in script not working the way i intend


Recommended Posts

Excuse the messy code, there is probably a much better way to do this but for some reason everytime the page refreshes it does not retype the password, I know its something to do with my if statements.

 

#include <IE.au3>
#include <Misc.au3>

;opens internet explorer window
$oIE = _IECreate(;hidden)

;refrences to username and password fields
$username = _IEGetObjById($oIE, ;hidden)
$password = _IEGetObjById($oIE, ;hidden)


;default day,month and year
$day = "2"
$month = "2"
$year = "1999"

$id = "19836265" ;username






    _IEFormElementSetValue ($password, $day&$month&$year) 
    _IEFormElementSetValue ($username,$id)




while 0 < 2 ;used to keep the code running

            
            send("{ENTER}") ;used to submit instead of pressing the button on page

            _IELoadWait($oIE)

            $day = $day + 1 ;adds 1 to day everytime the page attempts to log in

            _IELoadWait($oIE)

        
        if $day < 10 and $month < 10 then
            
            
            
            _IEFormElementSetValue ($password, "0"&$day&"0"&$month&$year) ;used to have the date in the format dd/mm/yyyy





        elseif $day < 10 and $month > 10 Then

            _IEFormElementSetValue ($password,"0"&$day&$month&$year) ;used to have the date in the format dd/mm/yyyy




        ElseIf $day > 10 and $month < 10 then

            _IEFormElementSetValue ($password, $day&"0"&$month&$year) ;used to have the date in the format dd/mm/yyyy




        ElseIf $day > 10 and $month > 10 then

            _IEFormElementSetValue ($password, $day&$month&$year) ;used to have the date in the format dd/mm/yyyy






        ElseIf $day > 31 then 
            $month = $month + 1 ;moving to the next month 
            $day = "1" ;resetting day back to 1

            _


        ElseIf $month > 12 then

            $day = "1" ;resetting day back to 1

            $month = $month + 1 ;resetting month back to 1

            $year = $year - 1 ;moving back a year e.g 1998



        EndIf ;ending if statements



        WEnd

 

 

Link to comment
Share on other sites

Is it possible to have the link to the website? So I can test it

 

Quote

1. Do not ask for help with AutoIt scripts, post links to, or start discussion topics on the following subjects:

  • Malware of any form - trojan, virus, keylogger, spam tool, "joke/spoof" script, etc.
  • Bypassing of security measures - log-in and security dialogs, CAPTCHAs, anti-bot agents, software activation, etc.
  • Automation of software/sites contrary to their EULA (see Reporting bullet below).
  • Launching, automation or script interaction with games or game servers, regardless of the game.
  • Running or injecting any code (in any form) intended to alter the original functionality of another process.
  • Decompilation of AutoIt scripts or details of decompiler software.

 

Edited by Dgameman1
Link to comment
Share on other sites

The OP isn't trying bypass the log in, he is trying to automate it, which is allowed.

If you have questions about someone's post, report it and move on.

If I posted any code, assume that code was written using the latest release version unless stated otherwise. Also, if it doesn't work on XP I can't help with that because I don't have access to XP, and I'm not going to.
Give a programmer the correct code and he can do his work for a day. Teach a programmer to debug and he can do his work for a lifetime - by Chirag Gude
How to ask questions the smart way!

I hereby grant any person the right to use any code I post, that I am the original author of, on the autoitscript.com forums, unless I've specifically stated otherwise in the code or the thread post. If you do use my code all I ask, as a courtesy, is to make note of where you got it from.

Back up and restore Windows user files _Array.au3 - Modified array functions that include support for 2D arrays.  -  ColorChooser - An add-on for SciTE that pops up a color dialog so you can select and paste a color code into a script.  -  Customizable Splashscreen GUI w/Progress Bar - Create a custom "splash screen" GUI with a progress bar and custom label.  -  _FileGetProperty - Retrieve the properties of a file  -  SciTE Toolbar - A toolbar demo for use with the SciTE editor  -  GUIRegisterMsg demo - Demo script to show how to use the Windows messages to interact with controls and your GUI.  -   Latin Square password generator

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