I am selecting an element from a drop-down menu. Like this:
<select id="games1" class="select" name="games">
<option value="0">Choose your games:</option>
<option value="1">Call Of Duty</option>
<option value="2">Ninja</option>
</select>
First I clicked on it and working fine
inputElementGames = driver.find_element_by_xpath("//select["id='games']).click()
And when I select the element, let's say, Ninja. I tried the different thing with inputElementFruits.send_keys(...) but it did not work.