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 w
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: selenium: Is it possible to use the regexp in selenium locators
sel.get_eval()