Imacro Code

askerman

Registered Member
Joined
Mar 29, 2010
Messages
72
Reaction score
4
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 ...
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&ltmpl=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=INPUT:PASSWORD FORM=ACTION:https://accounts.google.com/ServiceLoginAuth ATTR=ID:Passwd 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
 
VERSION BUILD=7401004 RECORDER=FX
SET !ERRORIGNORE YES
SET !EXTRACT_TEST_POPUP NO
SET !EXTRACT NULL
SET !TIMEOUT 60
SET !DATASOURCE youtubedatasource.csv
set !var2 1
add !var2 {{!loop}}
SET !DATASOURCE_COLUMNS 4
SET !DATASOURCE_LINE {{!LOOP}}
CLEAR
URL GOTO=https://accounts.google.com/NewAccount?followup=http%3A%2F%2Fwww.youtube.com%2Femail_confirm&uilel=0&service=youtube&shdf=ChYLEgxub1F1YXJhbnRpbmUaBFRydWUMEgd5b3V0dWJlGgRTSEExIhQ5AohP01QnWUqPgeSzr-rgowEJxCgBMhRao_TZr1b6UpBIq9V2pnjuJPR62A%3D%3D&skipll=true&passive=true&skipvpage=true&continue=http%3A%2F%2Fwww.youtube.com%2Fsignin%3Faction_handle_signin%3Dtrue%26new%3Dtrue%26nomobiletemp%3D1%26hl%3Den_GB%26next%3D%252F&hl=en_GB&nui=17&ltmpl=ssu2
TAG POS=1 TYPE=INPUT:TEXT FORM=NAME:createaccount ATTR=ID:Email CONTENT={{!COL1}}
SET !ENCRYPTION NO
TAG POS=1 TYPE=INPUT:PASSWORD FORM=NAME:createaccount ATTR=ID:Passwd CONTENT={{!COL2}}
TAG POS=1 TYPE=INPUT:PASSWORD FORM=NAME:createaccount ATTR=ID:PasswdAgain CONTENT={{!COL2}}
TAG POS=1 TYPE=SELECT FORM=NAME:createaccount ATTR=ID:loc CONTENT=%GB
TAG POS=1 TYPE=INPUT:TEXT FORM=NAME:createaccount ATTR=ID:Birthday CONTENT={{!COL3}}
PAUSE
 
Is this what you mean? you need to rename your csv file to "youtubedatasource"
 
thanks for the reply dude ... i tried your code but still i am not getting my required result... i need to display random login from column 1 and its corresponding password column 2 , from the csv when i run the imacro ... but from this macro i always get id and password of first row .... .
 
thanks , i got your point regarding play loop thing ... but i need a modification that shows random text not in sequence like row 1 first and then row 2 ... is that possible ?
 
Hey! Why don't you try fiverr to see if anyone can help... I am sorry I dont have a ready answer for your problem:(
 
i will but if i can find it here for free then it would be good :)
 
no idea maybe create your own random name site and copy information there everytime imacros is looping...

I still have problem how to connect captcha site to my imacros to bypass the yahoo registration form

I will try it on hotmail
 
Back
Top