iMacros Adsense Login Bot

Pilfer7

Regular Member
Joined
Sep 3, 2012
Messages
385
Reaction score
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

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:
You could just go to the Adsense.com website after logging in. No need to click on products & Adsense.
 
I didn't even know there was a seperate adsense.com website...I see it now tho, thx
 
iMacros is super straightforward and fun to learn, especially once you move into the Scripting edition! Great work getting started with it, I'm sure you'll find it becomes a very useful tool for you.
 
Back
Top