I am writing an Excel VBA code to fetch data from website.
The displayed data is paginated and select option is given to display the number of records
There are more than 500 records. I want to display all data in one page so as grab them easily.
For that I need to change one of the above values from
to
and fire selection.
Is it possible change option value of select tag once the page is loaded using excel VBA?
Help needed.
The displayed data is paginated and select option is given to display the number of records
HTML:
<select class="ui-paginator-rpp-options ui-widget ui-state-default ui-corner-left" value="20">
<option value="20" selected="selected">20</option><option value="50">50</option><option value="100">100</option></select>
For that I need to change one of the above values from
HTML:
<option value="100">100</option>
HTML:
<option value="800">100</option>
Is it possible change option value of select tag once the page is loaded using excel VBA?
Help needed.
Last edited: