Having issues. try ing to fill a form multiple times using data from a csv & having issues w/ parsing one of those forms. My macros file is:
VERSION BUILD=6210320 RECORDER=FX
TAB T=1
CMDLINE !DATASOURCE c:\mydata.csv
' Number of columns in the CSV file:
SET !DATASOURCE_COLUMNS 8
' Increase the current position in the file with each loop
SET !DATASOURCE_LINE {{!LOOP}}
URL GOTO=http://www.XXXXXXXX.com
TAG POS=1 TYPE=INPUT:TEXT FORM=ACTION:AWeber Form Submission ATTR=ID:name CONTENT={{!COL4}}
TAG POS=1 TYPE=INPUT:TEXT FORM=ACTION:AWeber Form Submission ATTR=ID:from CONTENT={{!COL5}}
TAG POS=1 TYPE=INPUT:SUBMIT FORM=ID:joinform ATTR=NAME:submit&&VALUE:Submit
TAG POS=1 TYPE=INPUT
ASSWORD FORM=TYPE
ASSWORD ATTR=NAME
assOne CONTENT=delta
TAG POS=1 TYPE=INPUT
ASSWORD FORM=TYPE
ASSWORD ATTR=NAME
assTwo CONTENT=delta
TAG POS=1 TYPE=INPUT:SUBMIT FORM=NAME:referer ATTR=NAME:action_submit&&VALUE:Submit<SP>My<SP>Details
and it is breaking down on the "passOne" line. Here is the source for that part of the form...
<form method="post">
<input type="hidden" name="referer" value="43663" /><table cellpadding="5px" style="border:2px dotted #0f0;">
<tr><td>Your Full Name</td><td>jef5<input type="hidden" name="fullName" value="jef5" /></td></tr>
<tr><td>Your primary email</td><td>jef5@gmail.com<input type="hidden" name="email" value="jef5@gmail.com" /></td></tr>
<tr><td>Choose a password</td><td><input type="password" name="passOne" /></td></tr>
<tr><td>Confirm your password</td><td><input type="password" name="passTwo" /></td></tr>
<tr><td colspan="2" align="center"><input type="submit" name="action_submit" value="Submit My Details" /></td></tr>
I've tried just about every combo of form names, attributes, etc. and looked at the first part of the script that worked - totally stuck. I checked that thread about ajax & didn't apply to this situation. Anyone know how to edit that script to complete the form?
VERSION BUILD=6210320 RECORDER=FX
TAB T=1
CMDLINE !DATASOURCE c:\mydata.csv
' Number of columns in the CSV file:
SET !DATASOURCE_COLUMNS 8
' Increase the current position in the file with each loop
SET !DATASOURCE_LINE {{!LOOP}}
URL GOTO=http://www.XXXXXXXX.com
TAG POS=1 TYPE=INPUT:TEXT FORM=ACTION:AWeber Form Submission ATTR=ID:name CONTENT={{!COL4}}
TAG POS=1 TYPE=INPUT:TEXT FORM=ACTION:AWeber Form Submission ATTR=ID:from CONTENT={{!COL5}}
TAG POS=1 TYPE=INPUT:SUBMIT FORM=ID:joinform ATTR=NAME:submit&&VALUE:Submit
TAG POS=1 TYPE=INPUT



TAG POS=1 TYPE=INPUT



TAG POS=1 TYPE=INPUT:SUBMIT FORM=NAME:referer ATTR=NAME:action_submit&&VALUE:Submit<SP>My<SP>Details
and it is breaking down on the "passOne" line. Here is the source for that part of the form...
<form method="post">
<input type="hidden" name="referer" value="43663" /><table cellpadding="5px" style="border:2px dotted #0f0;">
<tr><td>Your Full Name</td><td>jef5<input type="hidden" name="fullName" value="jef5" /></td></tr>
<tr><td>Your primary email</td><td>jef5@gmail.com<input type="hidden" name="email" value="jef5@gmail.com" /></td></tr>
<tr><td>Choose a password</td><td><input type="password" name="passOne" /></td></tr>
<tr><td>Confirm your password</td><td><input type="password" name="passTwo" /></td></tr>
<tr><td colspan="2" align="center"><input type="submit" name="action_submit" value="Submit My Details" /></td></tr>
I've tried just about every combo of form names, attributes, etc. and looked at the first part of the script that worked - totally stuck. I checked that thread about ajax & didn't apply to this situation. Anyone know how to edit that script to complete the form?