Please note: A more refined version of this question, with an appropriate answer can be found here.
I would like to use the Selenium Python bindings to find elements with a given text on a web page. For example, suppose I have the following HTML:
<html>
<head>...</head>
<body>
<someElement>This can be found</someElement>
<someOtherElement>This can <em>not</em> be found</someOtherElement>
</body>
</html>
I need to search by text and am able to find <someElement>
using the following XPath:
//*[contains(text(), 'This can be found')]
I am looking for a similar XPath that lets me find <someOtherElement>
using the plain text "This can not be found"
. The following does not work:
//*[contains(text(), 'This can not be found')]
I understand that this is because of the nested em
element that "disrupts" the text flow of "This can not be found". Is it possible via XPaths to, in a way, ignore such or similar nestings as the one above?