May 1, 2012

[iMacros Script] Yahoo: Email Signup

 Because you can never get enough email addresses.
Just change the items in Red.

 ' ------------------------------------------ Start Script ----------------------------------------
 'you need to change highlighted in Red

VERSION BUILD=7401110 RECORDER=FX
TAB T=1


URL GOTO=https://edit.yahoo.com/registration?.intl=us
TAG POS=1 TYPE=INPUT:TEXT FORM=NAME:regFormBody ATTR=ID:firstname CONTENT=firstname
TAG POS=1 TYPE=INPUT:TEXT FORM=NAME:regFormBody ATTR=ID:secondname CONTENT=lastname
'm for male, f for female, keep the %
TAG POS=1 TYPE=SELECT FORM=NAME:regFormBody ATTR=ID:gender CONTENT=%m
'month is a number, ex. 2 for February
TAG POS=1 TYPE=SELECT FORM=NAME:regFormBody ATTR=ID:mm CONTENT=%month
'birthday day is a number
TAG POS=1 TYPE=INPUT:TEXT FORM=NAME:regFormBody ATTR=ID:dd CONTENT=birthday_day
TAG POS=1 TYPE=INPUT:TEXT FORM=NAME:regFormBody ATTR=ID:yyyy CONTENT=year
'country: us is united states, uk is united kindom
TAG POS=1 TYPE=SELECT FORM=NAME:regFormBody ATTR=ID:country CONTENT=%us
'zip code: 5 numbers
TAG POS=1 TYPE=INPUT:TEXT FORM=NAME:regFormBody ATTR=ID:postalcode CONTENT=ZIP
'choose the yahoo ID here, the stuff that goes in front of @yahoo.com
TAG POS=1 TYPE=INPUT:TEXT FORM=NAME:regFormBody ATTR=ID:yahooid CONTENT=YahooID
SET !ENCRYPTION NO
TAG POS=1 TYPE=INPUT:PASSWORD FORM=NAME:regFormBody ATTR=ID:password CONTENT=password
WAIT SECONDS=2
SET !ENCRYPTION NO
TAG POS=1 TYPE=INPUT:PASSWORD FORM=NAME:regFormBody ATTR=ID:passwordconfirm CONTENT=password
WAIT SECONDS=4
'alternate email address, this doesn't need to be real
TAG POS=1 TYPE=INPUT:TEXT FORM=NAME:regFormBody ATTR=ID:altemail CONTENT=alternate@alternate.com
'custom question can be left as is, sometimes these change
TAG POS=1 TYPE=SELECT FORM=NAME:regFormBody ATTR=ID:secquestion CONTENT=%custom
TAG POS=1 TYPE=INPUT:TEXT FORM=NAME:regFormBody 
'this question can be anything, keep the quotation marks
ATTR=ID:customsecquestion1 CONTENT="What is your favorite movie?"
TAG POS=1 TYPE=INPUT:TEXT FORM=NAME:regFormBody ATTR=ID:secquestionanswer CONTENT=Answer1
'Better to keep it custom, question 2
TAG POS=1 TYPE=SELECT FORM=NAME:regFormBody ATTR=ID:secquestion2 CONTENT=%custom
TAG POS=1 TYPE=INPUT:TEXT FORM=NAME:regFormBody ATTR=ID:customsecquestion2 CONTENT="What is your favorite rock band?"
TAG POS=1 TYPE=INPUT:TEXT FORM=NAME:regFormBody ATTR=ID:secquestionanswer2 CONTENT=Answer2
PROMPT Enter<SP>Captcha !VAR1
TAG POS=1 TYPE=INPUT:TEXT FORM=NAME:regFormBody ATTR=ID:cword CONTENT={{!VAR1}}
TAG POS=1 TYPE=INPUT:SUBMIT FORM=ID:regFormBody ATTR=ID:IAgreeBtn
WAIT SECONDS=2
'continue button
TAG POS=1 TYPE=INPUT:SUBMIT FORM=ID:regConfirmBodyFrm ATTR=ID:ContinueBtn
WAIT SECONDS=2
'signout so the next signup is ready
TAG POS=1 TYPE=A ATTR=TXT:Sign<SP>Out
'this wait time can be taken out if your connection is good enough
WAIT SECONDS=5
































' ------------------------------------------- End Script ----------------------------------------

No comments:

Post a Comment

iMacros Script