Handling capchas with imacro

air360

Regular Member
Joined
Apr 15, 2007
Messages
424
Reaction score
197
I am setting up a script to submit to submit some content to some websites. On these websites there are captchas that have to be filled out before you can submit the info.

How can I tell my script in imacro to stop at the captcha and let me enter it and then continue on to the next page/site once i hit submit? I could put a timer i guess but im not always that fast with captchas so i would like for it to simply halt when it hits the captcha box until i hit submit and then continue on to the next step....
 
Right before the macro gets to the captcha add this line:
Code:
PROMPT Please<SP>enter<SP>captcha: !VAR1
Then on the captcha line where it says "CONTENT" add "!VAR1"
 
Back
Top