Using Imacro to signup on websites. NOOB NEDDS HELP!

emailbuyer4good

Regular Member
Joined
Aug 1, 2011
Messages
330
Reaction score
187
How can I get Imacro to input a new email each time (from a list) onto a webpage. Any ideas?
 
lookup using "datasources" or CSV files for datasources in imacros on the net. There should be some tutorials.

This script may be of some use:

http://www.blackhatworld.com/blackhat-seo/black-hat-seo-tools/391660-web-2-0-imacro-automation-script.html
 
Here is slightly edited example :p - one of my wp doorways I've been generating using Imacros (Firefox)

Code:
TAB T=1
TAB CLOSEALLOTHERS
SET !ERRORIGNORE YES
[COLOR=Red][B]SET !DATASOURCE A81.txt
SET !DATASOURCE_COLUMNS 1[/B]
[B]SET !LOOP 1000[/B][/COLOR] 
URL GOTO=http://xxxxxxxxxxxxx.html
TAG POS=1 TYPE=LABEL ATTR=ID:title-prompt-text
TAG POS=1 TYPE=INPUT:TEXT FORM=NAME:post ATTR=ID:title CONTENT=[COLOR=Red][B]{{!COL1}}[/B][/COLOR]<SP>Something
TAG POS=1 TYPE=INPUT:CHECKBOX FORM=NAME:post ATTR=ID:in-category-3254 CONTENT=YES
TAG POS=1 TYPE=TEXTAREA FORM=NAME:post ATTR=ID:content CONTENT=<center><font<SP>size=5<SP>color=blue>[COLOR=Red][B]{{!COL1}}[/B][/COLOR]</font><br><BR><font<SP>size=5<SP>color=red><SP>EDITED<SP>EDITED</font></center>
TAG POS=1 TYPE=INPUT:SUBMIT FORM=ID:post ATTR=ID:publish

Hope it helps :)
 
Back
Top