I have below html.
<button>save</button>
<button>Cancel</button>
<button>View</button>
I want to click on button if name is save.
button = driver.find_element_by_xpath(
"(//button[contains(@name, 'save')])")
I am able to do it if button has a name. But if button has no name like my example how can I click on it?