sten
sten

Reputation: 7486

Cover two cases with single XPath?

I want to find element with XPath in Selenium, which contain text, but has two possible cases. Here there are :

.//li/a[contains(., 'blah')]
.//li/a/span[contains(., 'blah')]

How to cover the two cases with single XPath?

Second question if possible I want to get as result pointer to the a element, not to the span in both cases.

Also, is there a general way to return as a match parent of the matched element, instead ?

Upvotes: 2

Views: 154

Answers (3)

Bill Hileman
Bill Hileman

Reputation: 2836

You should test the xpath I'm giving you to make sure it doesn't return more matches than you want, but I'd just use: //a[contains(.,'blah')]

Upvotes: 2

kjhughes
kjhughes

Reputation: 111726

In general, XPaths expressions can be combined with | (eg: xpath1 | xpath2), however you don't really need to do so in this case...

As Josh Crozier asks in the comments, yes, .//li/a[contains(., 'blah')] covers both cases.

The string value of a necessarily will contain "blah" if any of its descendant span element's string values contain "blah".

Second question if possible I want to get as result pointer to the a-element, not to the span in both cases.

.//li/a[contains(., 'blah')] will return such a elements.

Be aware that it will also return such a elements as

 <a>xxxblah</a>
 <a><span>blah</span></a>
 <a><span>bl</span><span>ah</span></a>

PS> BTW is there a general way to return as a match parent of the matched element, instead ?

Well, appending /.. to an XPath will return the parent, but I suspect you'd benefit from learning about the string value of XML elements. See Testing text() nodes vs string values in XPath

Upvotes: 4

Connor
Connor

Reputation: 43

You can try something like this .//li/*[contains(., 'blah')]

Upvotes: -1

Related Questions