Help with Imacros make an auto post script

chiaramarina

Newbie
Joined
Nov 10, 2011
Messages
14
Reaction score
0
I would like navigate a list of url from a text file. And fill each url name,email, comment and url (from spin text file). Can you help me?
 
Can't help you out with the spintax but somethings better than nothing.

Your imacro file:
Code:
SET !REPLAYSPEED FAST
SET !ERRORIGNORE YES
SET !DATASOURCE datasource.csv
SET !DATASOURCE_COLUMNS 5
SET !TIMEOUT 45
TAB T=1
URL GOTO={{!COL1}}
TAG POS=1 TYPE=INPUT:TEXT ATTR=your-name CONTENT={{!COL2}}
TAG POS=1 TYPE=INPUT:TEXT ATTR=your-email CONTENT={{!COL3}}
TAG POS=1 TYPE=INPUT:TEXT ATTR=your-comment CONTENT={{!COL4}}
TAG POS=1 TYPE=INPUT:TEXT ATTR=your-url CONTENT={{!COL5}}
TAG POS=1 TYPE=INPUT:SUBMIT ATTR=ID:submit-button

Your datasource.csv file:
Code:
http://link.com/1,name1,email1,comment1,url1
http://link.com/2,name2,email2,comment2,url2
http://link.com/3,name3,email3,comment3,url3
....
 
Back
Top