hi there .. i need a little help regarding imacro making as i am experiencing some difficulties in making one ....
i need a simple imacro which fills random name , email and other permanent form field from a csv file in webpage like youtube signup page ...
column 1 is email
column 2 is password
Due to this code only first column is always pasted and i want a random text every time..please help me to modify this code
i need a simple imacro which fills random name , email and other permanent form field from a csv file in webpage like youtube signup page ...
VERSION BUILD=6230608 RECORDER=FX
TAB T=1
SET !DATASOURCE datasource.csv
SET !DATASOURCE_COLUMNS 4
SET !DATASOURCE_LINE {{!LOOP}}
CLEAR
URL GOTO=http://www.youtube.com/
TAG POS=1 TYPE=A ATTR=HREF:https://accounts.google.com/ServiceLogin?uilel=3&service=youtube&passive=true&continue=http%3A%2F%2Fwww.youtube.com%2Fsignin%3Faction_handle_signin%3Dtrue%26nomobiletemp%3D1%26hl%3Den_US%26next%3D%252F&hl=en_US<mpl=sso&&CLASS:end&&TXT:Sign<SP>In
TAG POS=1 TYPE=INPUT:TEXT FORM=ACTION:https://accounts.google.com/ServiceLoginAuth ATTR=ID:Email CONTENT={{!COL1}}
SET !ENCRYPTION NO
TAG POS=1 TYPE=INPUTASSWORD FORM=ACTION:https://accounts.google.com/ServiceLoginAuth ATTR=ID
asswd CONTENT={{!COL2}}
TAG POS=1 TYPE=INPUT:SUBMIT FORM=ID:gaia_loginform ATTR=ID:signIn
column 1 is email
column 2 is password
Due to this code only first column is always pasted and i want a random text every time..please help me to modify this code