how to find element based on what text the tag is containing in selenium in python code example
Example: selenium find element by content
driver.find_elements_by_xpath("//*[contains(text(), 'My Button')]")
driver.find_elements_by_xpath("//*[contains(text(), 'My Button')]")