how to search for an element witch has text in a tag in seleni code example
Example: how to locate element by using text
The only locator that works with text is xpath.
Matching exact text : //tag[.=‘text’]
Matching partial text : //tag[contains(text(), ’text’)]