I have a select
that looks like this:
<select data-origvalue="" multiple="multiple" name="project_9999" id="project_9999" style="display: none;">
<option value="1">Option1</option>
<option value="2">Option2</option>
</select>
I am trying to view the options like this...
select = Select(driver.find_element_by_id('project_9999'))
print([o.text for o in select.options])
...which results in:
['','']
Why is the text of each option not appearing in the list? How would I select one of the options without the options being fully visible?