I am trying to use Selenium to click a "Search" Button but I cant seem to locate it.
<div class="search">
<input type="submit" title="Search" value="Search" class="spinner">
</div>
My code looks like this:
search_button = driver.find_element_by_class_name("spinner")
search_button.send_keys(Keys.RETURN)
Any help would be much much appreciated. Thank you