I am using selenium webdriver with python to navigate through a site and I can not figure out how to select this button.
<button onclick="addAutoTrade();blur();" type="button" style="background-
color:#c7c7c7;">Add</button>
The button is surrounded by a class but within the class are 2 buttons. I have tried using
driver.find_element_by_link_text("Add")
driver.find_element_by_partial_link_text("Add")
driver.find_element_by_name("Add")
There is no obvious id so I am stuck and I apologize if this is trivial. How can I click this button?