How to use iMacros to fill form from spreadsheet or csv file. Starting from column 2 and looping though each row. You’ll need to change the “URL GOTO” to match the website you’re trying to auto fill with iMacros. You’ll also want to change the “SET !DATASOURCE” to the CSV file name that you saved your data.
Here’s a sample iMacros script that fills an online form from a csv file.
[code]VERSION BUILD=7500718 RECORDER=FX
‘Uses a Windows script to submit several datasets to a website, e. g. for filling an online database
TAB CLOSEALLOTHERS
TAB T=1
‘ Specify input file (if !COL variables are used, IIM automatically assume a CSV format of the input file
‘CSV = Comma Separated Values in each line of the file
SET !DATASOURCE Address.csv
‘There is no need to inform the number of columns in the CSV file
‘SET !DATASOURCE_COLUMNS 8
‘Start at line 2 to skip the header in the file
SET !LOOP 2
‘Increase the current position in the file with each loop
SET !DATASOURCE_LINE {{!LOOP}}
‘ Fill web form
URL GOTO=http://demo.imacros.net/Automate/AutoDataEntry
TAG POS=1 TYPE=INPUT:TEXT FORM=ID:demo ATTR=NAME:fname CONTENT={{!COL1}}
TAG POS=1 TYPE=INPUT:TEXT FORM=ID:demo ATTR=NAME:lname CONTENT={{!COL2}}
TAG POS=1 TYPE=INPUT:TEXT FORM=ID:demo ATTR=NAME:address CONTENT={{!COL3}}
TAG POS=1 TYPE=INPUT:TEXT FORM=ID:demo ATTR=NAME:city CONTENT={{!COL4}}
TAG POS=1 TYPE=INPUT:TEXT FORM=ID:demo ATTR=NAME:zip CONTENT={{!COL5}}
‘
‘Note * is used to ignore leading and trailing blanks that could be in the input data
‘
‘The precent (%) symbol is used to select the stateid by VALUE as defined in the website select statement and not by its index.
TAG POS=1 TYPE=SELECT FORM=ID:demo ATTR=NAME:state CONTENT=$*{{!COL6}}*
‘
‘The string ($) symbol is used to select the country by TEXT, not by its index.
‘Index would be the position of an entry in the combo box list, e. g. 161 for United States
TAG POS=1 TYPE=SELECT FORM=ID:demo ATTR=NAME:country CONTENT=$*{{!COL7}}*
‘
TAG POS=1 TYPE=INPUT:TEXT FORM=ID:demo ATTR=NAME:email CONTENT={{!COL8}}
TAG POS=1 TYPE=BUTTON:submit FORM=ID:demo ATTR=TXT:Submit
[/code]