How to load urls from txt file on Imacros?

cryptopsy

Registered Member
Joined
Jan 25, 2013
Messages
98
Reaction score
37
Hey guys, sorry if I posted this in the wrong section.
Can anyone please tell me how to load urls from a txt file on imacros and visit them one by one with random "wait seconds" from 50-60?:stoned:
Any help would be greatly appreciated, thanks in advance.:dance:
 
hi dit you found a way. ? .. looking for that too...
 
You need to put all your urls into a .csv file
Easiest way to do this is to open up excel, or any spreadsheet program, and put 1 url per line. Then save the file as a .csv.
For Imacros, your script should contain something like this
Code:
SET !DATASOURCE C:\datasource\urls.csv 
SET !DATASOURCE_LINE {{!LOOP}}
goto url={{col1}}
Hope this helps. I would show u an example I had doing exactly what you described but my hdd died on that computer.

If you need more assistance, the imacros wiki is a good resource for documentation.
 
Back
Top