Hi. I am getting an items(s) not found in <select> html element error. But when I inspect the element, I am getting the following:
<div class="selectize-input items has-options full has-items">
<div class="item" data-value="20111">Test Report Name</div>
<input tabindex="-32222" id="RefreshTESTName-selectized" style="left: -10000px; width: 4px; position: absolute; opacity: 0;"
type="text" autocomplete="off"></div>
I checked the element id:
<div class="uk-form-controls">
<select id="RefreshTESTName">
<option></option>
</select>
</div>
My code is:
Call browser.FindElement("select", "id=RefreshTESTName").Select("20111")
I even tried:
Call browser.FindElement("select", "id=RefreshTESTName").Select("Test Report Name")
Is there something I am missing or another way to go about this?