I want the scrapper to change the default values of a display menu via "element select" or whatever way its possible. Specifically a menu intended to config how many entries are shown in each page, so i can scrap a single page with 100 entries and not 10 pages with 10 entries which is the default state. That's my main issue.
Now, the second thing is that I want the scrapper to interact typing for example: +0 or so. Or selecting refine =, and then typing +7, to be more meticulous. That's the only way possible in this site to filter results, so that's why Im asking this troublesome thing.
Url: https://www.novaragnarok.com/?module=vending&action=itemhistory&id=607
HTML of the two things
table: <div class="dataTables_length" id="itemtable_length"><label>Show <select name="itemtable_length" aria-controls="itemtable" class=""><option value="10">10</option><option value="25">25</option><option value="50">50</option><option value="100">100</option></select> entries</label></div>
filter: <div id="itemtable_filter" class="dataTables_filter"><label>Filter:<input type="search" class="" placeholder="" aria-controls="itemtable"></label><span id="refine-search" class="input-nova" style="vertical-align: middle; white-space: nowrap; border-radius: 0px 6px 6px 0px; border-left-width: 0px;"> <table class="search-table"> <tbody><tr> <td> <div style="width: 100px; vertical-align: middle; border-radius: 0px; text-align: left; border-left-width: 0px; border-bottom-width: 0px; border-top-width: 0px;" id="dd-refine" class="dropdown-nova" name="type" tabindex="1"> <span>Refine >=</span> <ul class="ndropdown"> <li id="gt" data-refine-type="Refine >=" data-selected="0"><a href="#">Refine >=</a></li> <li id="lt" data-refine-type="Refine <=" data-selected="0"><a href="#">Refine <=</a></li> <li id="eq" data-refine-type="Refine =" data-selected="0"><a href="#">Refine =</a></li> </ul> </div> </td> <td> <input type="text" class="search-input" name="refine" id="refine" style="width:30px; border-radius: 0px; margin: 0px; border-width: 0px; text-align: center;" value=""> </td> <td class="search-table-td-reset"><span id="search-refine-reset" class="glyphicon glyphicon-remove search-table-reset" style="display: none;"></span></td> </tr> </tbody></table> </span></div>