On my html page I have a dropdown list:
<select name="somelist">
<option value="234234234239393">Some Text</option>
</select>
So do get this list I am doing:
ddl = soup.findAll('select', name="somelist")
if(ddl):
???
Now I need help with this collection/dictionary, I want to be able to lookup by both 'Some Text' and 234234234239393.
Is this possible?