A quick question. How do I click on the following button link using selenium in python? The button does not have any ID or value
<a href="/" login="" class="classname123">Login</a> == $0
I receive below mentioned error:
Unable to locate element: //input[@type="submit" and @title="login"]
Thanks!
driver.find_element_by_class('classname123').click()