I have a select
html item.
<select name="badge" data-validate="true"><option value="">none</option><option value="usd">USD</option>
<option value="eur">EURO</option>
<option value="ils">GBP</option></select>
I want to use selenium webdriver to
(1) select a item EURO
from the list
(2) check EURO
from the list is selected
How can I do this?