I have a form that I am trying to select some drop down options using watir. I am having trouble finding the correct way to select these options (in this case "bob") using watir. Any suggestions?
<form action="blahsome.php" method="post">
<select onchange="clearFields();" size="1" name="credential">
<option>tom</option>
<option>bob</option>
<option>susan</option>
</select>