Tell me more ×
Stack Overflow is a question and answer site for professional and enthusiast programmers. It's 100% free, no registration required.

I'm using selenium RC and I would like, for example, to get all the links elements with attribute href that match:

http://[^/]*\d+com

I would like to use:

sel.get_attribute( '//a[regx:match(@href, "http://[^/]*\d+.com")]/@name' )

which would return a list of the name attribute of all the links that match the regex. (or something like it)

thanks

share|improve this question
So what's not working, and in what way is it not working? Can you post the HTML (or a fragment of it) that you're matching against? – Paul Sep 9 '09 at 10:14
@Paul, given example and method get_attribute() only returns a single item, not a list. Poster is asking what's the equivalent for returning a list of attributes for example. – David Nov 9 '11 at 20:59

4 Answers

The answer above is probably the right way to find ALL of the links that match a regex, but I thought it'd also be helpful to answer the other part of the question, how to use regex in Xpath locators. You need to use the regex matches() function, like this:

xpath=//div[matches(@id,'che.*boxes')]

(this, of course, would click the div with 'id=checkboxes', or 'id=cheANYTHINGHEREboxes')

Be aware, though, that the matches function is not supported by all native browser implementations of Xpath (most conspicuously, using this in FF3 will throw an error: invalid xpath[2]).

If you have trouble with your particular browser (as I did with FF3), try using Selenium's allowNativeXpath("false") to switch over to the JavaScript Xpath interpreter. It'll be slower, but it does seem to work with more Xpath functions, including 'matches' and 'ends-with'. :)

share|improve this answer
how do you check your xpath? I usually use firefox's add on xpath-checker. But it doesn't recognize the regex in the xpath. – Guy Jan 5 '10 at 15:48
Using that xpath-checker add-on is a great idea! I never thought to look for one. I don't have write too many xpath locators, though. At my job, I built a tool-independent test framework that builds locators for multiple tools, including Selenium, using our own simple syntax. I only had to learn these xpath locators well enough to write some code that could generate them. :) – Chris Jaynes Jan 7 '10 at 20:08
+1 for allowNaticeXPath(false) tip. Saved me a lot of head-scratching right now :) – Saurabh Nanda Feb 28 '12 at 8:54

You can use the Selenium command getAllLinks to get an array of the ids of links on the page, which you could then loop through and check the href using the getAttribute, which takes the locator followed by an @ and the attribute name. For example in Java this might be:

String[] allLinks = session().getAllLinks();
List<String> matchingLinks = new ArrayList<String>();

for (String linkId : allLinks) {
    String linkHref = selenium.getAttribute("id=" + linkId + "@href");
    if (linkHref.matches("http://[^/]*\\d+.com")) {
        matchingLinks.add(link);
    }
}
share|improve this answer
I don't think that's what he wanted - he wants to find an element using a regex as the locator (as part of the XPATH) – noam Sep 9 '09 at 11:39
The question mentions getting all links that match the regex. As Selenium doesn't support this (to my knowledge), getting all links from the page and then using your client language to check the locations against a regular expression is a sensible solution. – Dave Hunt Sep 9 '09 at 11:41
I've edited my example code to do a regular expression match. I didn't do this originally because it depends on the client language in use, and wanted to keep the answer simple. – Dave Hunt Sep 9 '09 at 11:54
2  
There's no way to use regular expressions in the locators. There's some stuff that can be done, like using the contains() function in xpath. Anyway, for regexp, I think this is the best alternative. +1 – Santi Sep 9 '09 at 14:09
Note that getAllLinks() I believe is only useful if the links have IDs. Otherwise, you end up with a list of empty string / null items "" to iterate through. – David Nov 9 '11 at 20:52
up vote 1 down vote accepted

A possible solution is to use sel.get_eval() and write a JS script that returns a list of the links. something like the following answer: http://stackoverflow.com/questions/2007367/selenium-is-it-possible-to-use-the-regexp-in-selenium-locators/2007531#2007531

share|improve this answer

Here's some alternate methods as well for Selenium RC. These aren't pure Selenium solutions, they allow interaction with your programming language data structures and Selenium.

You can also get get HTML page source, then regular expression the source to return a match set of links. Use regex grouping to separate out URLs, link text/ID, etc. and you can then pass them back to selenium to click on or navigate to.

Another method is get HTML page source or innerHTML (via DOM locators) of a parent/root element then convert the HTML to XML as DOM object in your programming language. You can then traverse the DOM with desired XPath (with regular expression or not), and obtain a nodeset of only the links of interest. From their parse out the link text/ID or URL and you can pass back to selenium to click on or navigate to.

share|improve this answer
Where are they? ('Here's some alternate methods...') please give more explicit code examples. – Michael Durrant Feb 27 at 16:59
Ok, I'll update the answer with actual example or link to one when I get a chance (maybe in a few days or weeks, kinda busy right now). – David Feb 28 at 5:33
That would be much appreciated. Thank You. – Michael Durrant Feb 28 at 12:46

Your Answer

 
discard

By posting your answer, you agree to the privacy policy and terms of service.

Not the answer you're looking for? Browse other questions tagged or ask your own question.