I am looking to get a web form filled with excel data wherein VBA opens the URL from the list and then fill the data as per the excel cells data (B2, C2, D2...)
Refereed some online data and tried to get the code of the web page which might help you in getting a solution
Steps to follow:
Open web page using URL
enter/fill data as per excel
submit the page
Next URL and loop
Web page has drop down as well as text box
It will be of great help as it becomes a long job to fill a list of 1000+ data. Rest I may follow through and this is to start with (Ignore me as I am just getting close to programming as starter only)
Refereed some online data and tried to get the code of the web page which might help you in getting a solution
Code:
<form name="CREATE" method="post" action="Test.pl">
<fieldset id="ui-Test_widget-1" class="Test_widget ui-Test_widget">
<legend>Test Widget</legend>
<div class="Test_company_ident optional">
<label>Test Company</label>
<select id="ui-Test_widget-1_Test_company_ident" name="Test_company_ident" data-widget="Test_widget">
<option value="">Choose</option>
<option value="2002913">xxx 1234</option>
<option value="18238">xxx 4569</option>
<option value="205336">xxx 8745</option>
</select>
</div>
<div class="Test_client_ident optional">
<label>Test Client</label>
<select id="ui-Test_widget-1_Test_client_ident" name="Test_client_ident" data-widget="Test_widget">
<option value="">Choose</option>
<option value="360338">BBB 1456</option>
<option value="34238">DDD 45236</option>
<option value="122318">WWW 12589</option>
</select>
</div>
<div class="Test_ident required">
<label>Test</label>
<select id="ui-Test_widget-1_Test_ident" name="Test_ident" data-widget="Test_widget">
<option value="">Choose</option>
<option value="3314948">Test Form 1</option>
<option value="3316660">Test Form 2</option>
<option value="3327180">Test Form 3</option>
</optgroup>
</select>
</div>
</fieldset>
******** type="text/javascript">......
*********>
<fieldset class="action_area">
<div class="form_submit">
<input type="button" class="cancel button" value="Cancel" *******="self.close();">
<input type="submit" class="submit" value="Submit">
</div>
</fieldset>
</form>
Steps to follow:
Open web page using URL
enter/fill data as per excel
submit the page
Next URL and loop
Web page has drop down as well as text box
It will be of great help as it becomes a long job to fill a list of 1000+ data. Rest I may follow through and this is to start with (Ignore me as I am just getting close to programming as starter only)