I have created a form, inside the form for various form elements I have divs, and inside the div it has input or select element. I want to select the select/input elements without class name or ID.
<div class="ui-form-element section-row" id="uid-0">
  <div class="ui-from-title">
    <span class="ui-form-title-text" style="display: inline;">
      Data plotting method
    </span>
  </div>
  <select id="select-uid-0">
    <option value="0">Heat Map</option>
    <option value="1">Box Plot</option>
    <option value="2">Scatter Plot</option>
    <option value="3">Word Cloud</option>
  </select>
</div>
How to do it?