Welcome to OGeek Q&A Community for programmer and developer-Open, Learning and Share
Welcome To Ask or Share your Answers For Others

Categories

0 votes
593 views
in Technique[技术] by (71.8m points)

regex - selenium: Is it possible to use the regexp in selenium locators

I want to get the xpath count of all the divs/links/.. that have text matching some regular expression. For example:

<span> day 2 night </span>
<span> day 4 night </span>
<span> day 17 night</span>

I would like to be able to call:

sel.get_xpath_count('regexp:day d night')

and have it return 2. (This is a simple example of course, I would like to use all kinds of regular expressions)

Is this possible, and how to do it?

See Question&Answers more detail:os

与恶龙缠斗过久,自身亦成为恶龙;凝视深渊过久,深渊将回以凝视…
Welcome To Ask or Share your Answers For Others

1 Reply

0 votes
by (71.8m points)

Use the dom= protocol which allows you to use javascript. And javascript has regexp:

# sorry, example in Perl:
$sel->get(qq{dom=(function(){
    var x = document.getElementsByTagName('span');
    var result = [];
    for (var i=0;i<x.length;i++) {
        var txt = x[i].innerHTML;
        if (txt.match(/day d night/)) {
            result.push(x[i]);
        }
    }
    return result;
})()});

与恶龙缠斗过久,自身亦成为恶龙;凝视深渊过久,深渊将回以凝视…
OGeek|极客中国-欢迎来到极客的世界,一个免费开放的程序员编程交流平台!开放,进步,分享!让技术改变生活,让极客改变未来! Welcome to OGeek Q&A Community for programmer and developer-Open, Learning and Share
Click Here to Ask a Question

...