About this question
I need to select an element from a drop-down menu.
For example:
<select id="fruits01" class="select" name="fruits">
</select>
First I have to click on it. I do this:
inputElementFruits = driver.find_element_by_xpath("//select[id='fruits']").click()
After that I have to select the good element, let us say Mango.
I tried to do it with inputElementFruits.send_keys(...) but it did not work.