Pilfer7
Regular Member
- Sep 3, 2012
- 385
- 199
I'm new to imacros and just making some simple bots to learn. This one
Takes you to google
clicks "sign in"
enters your email
enters your password
signs you in
clicks your name in top right hand corner
selects "account"
selects "products" on left side menu
selects "adsense" which for me is the very first icon on the top left of the page.
If you have anything different about your google account I would guess that it won't work
Hopefully, all you should have to do is customize the script with your
email where it says REPLACETHISWITHYOUREMAIL (if it is a gmail address you just need to enter it without the @gmail.com, if it is a non gmail you need to enter your entire email address)
and then replace password where it says REPLACETHISWITHYOURPASSWORD
Takes you to google
clicks "sign in"
enters your email
enters your password
signs you in
clicks your name in top right hand corner
selects "account"
selects "products" on left side menu
selects "adsense" which for me is the very first icon on the top left of the page.
If you have anything different about your google account I would guess that it won't work
Hopefully, all you should have to do is customize the script with your
email where it says REPLACETHISWITHYOUREMAIL (if it is a gmail address you just need to enter it without the @gmail.com, if it is a non gmail you need to enter your entire email address)
and then replace password where it says REPLACETHISWITHYOURPASSWORD
Code:
VERSION BUILD=7601105 RECORDER=FX
TAB T=1
URL GOTO=https://www.google.com/
TAG POS=2 TYPE=SPAN ATTR=TXT:Sign<SP>in
TAG POS=1 TYPE=INPUT:EMAIL FORM=ACTION:https://accounts.google.com/ServiceLoginAuth ATTR=ID:Email CONTENT=[COLOR=#ffff00]REPLACETHISWITHYOUREMAIL[/COLOR]
SET !ENCRYPTION NO
TAG POS=1 TYPE=INPUT:PASSWORD FORM=ACTION:https://accounts.google.com/ServiceLoginAuth ATTR=ID:Passwd CONTENT=[COLOR=#ffff00]REPLACETHISWITHYOURPASSWORD[/COLOR]
TAG POS=1 TYPE=INPUT:SUBMIT FORM=ID:gaia_loginform ATTR=ID:signIn
TAG POS=1 TYPE=SPAN ATTR=ID:gbi4t
TAG POS=1 TYPE=A ATTR=ID:gb_156
TAG POS=1 TYPE=DIV ATTR=TXT:Products
TAG POS=2 TYPE=DIV ATTR=TXT:AdSense
Last edited: