Jump to content

Captsha input


Recommended Posts

I had recently made a code so it would automatically log myself in a website. It had also gotten a captsha recently. I was wondering how i would make a text box that had an input option to where once i entered the captsha and pressed ok then it would enter the code into the necessary input box on the website.

I've just been using this

;pop up question

$answer = MsgBox(4, "Vote", "Do you want to vote for Bear and Orisci now?" & @LF & "Must have tab 1 open")

If $answer = 7 Then

Exit

EndIf

If $answer = 6 Then

;opens molten wow home page

shellexecute ("https://www.molten-wow.com/#content-top")

sleep (3000)

;clicks on username input

MouseClick ( "left" , 214, 595 , 2 , 0 )

send ("user")

;clicks on password input

send ("{tab}")

send ("pass")

;goes to caption

send ("{tab}")

EndIf

Edited by eddie114
Link to comment
Share on other sites

Step 1. Delete your duplicate post

Step 2. Look at the _IE functions in the Help file for how to navigate/utilize websites in a much more reliable fashion.

Example:

#include <IE.au3>
$oIE = _IECreate("https://www.molten-wow.com/#content-top")

Step 3. If you haven't played around with GUIs at all, fire up Koda from your SciTE --> Tools menu, design yourself a quick gui.

Step 4. Try to get it all to work together, and if you can't, then post what you come up with at that point and we'll see what we can do.

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