Here is a snippet of source code with <select>. I am struggling to find the right selector:
<label class="control-label pull-right" style="margin-right: 10px; font-weight: 100;">
    <small>Show</small> 
    <select class="input-sm grid-per-pager" name="per-page">
        <option value="https://www.mysite-com/admin/order?per_page=10" >10</option>
        <option value="https://www.mysite-com/admin/order?per_page=20" selected>20</option>
        <option value="https://www.mysite-com/admin/order?per_page=30" >30</option>
        <option value="https://www.mysite-com/admin/order?per_page=50" >50</option>
        <option value="https://www.mysited-com/admin/order?per_page=100" >100</option>
    </select>
     <small>Piece</small>
</label>
I would like to select the option of per_page=100 for page.click() in Puppeteer. The following selector tried was not correct and error was node not found.
"select[value='https://www.mysited-com/admin/order?per_page=100']"
 
     
    