Webdriver - 查找具有相同类的前x个元素

时间:2018-05-09 07:30:11

标签: java webdriver

有人可以帮助我解决以下问题: 我的网页上有很多 li 元素,如下所示:

<ul class="feed-tips" id="Grid" data-sport="" data-country="" data-league="">
<li class="feed-item vevent tip-list-row" data-sort-bookmaker="12" data-sort-datetime="1525849200" data-sort-match="1" data-sort-odds="1.80" data-sort-rating="3" data-sort-status="1" data-sort-yield="-2.106" data-tip-id="6900510">
<li class="feed-item vevent tip-list-row" data-sort-bookmaker="22" data-sort-datetime="1525852800" data-sort-match="2" data-sort-odds="2.59" data-sort-rating="2" data-sort-status="1" data-sort-yield="-3.082" data-tip-id="6900483">
<li class="feed-item vevent tip-list-row" data-sort-bookmaker="22" data-sort-datetime="1525852800" data-sort-match="3" data-sort-odds="2.21" data-sort-rating="2" data-sort-status="1" data-sort-yield="-4.118" data-tip-id="6899865">

li 列表中,每个元素都有以下类:

<span class="original-language-image flag-icon flag-icon-gb"</span>

所有 li 元素都有 span 类,只有差异显示在 -gb 之上,它是不同的国家/地区代码。

我必须找到具有相同 gb 代码的第一个 n 元素(并且这些元素必须一个接一个),并且比较if是否与第一个元素相同。用不同的代码休息,我不需要。

尝试使用以下代码但做错了(或者在 if 语句中使用等于时出错):

List<WebElement> tipsGB = driver.findElements(By.xpath("//ul[@class='feed-tips']/li/div[@class='author medium-3 small-12 column padding-reset tip-list-row__author']\n"
            + "//div[@class='original-tip-language-container']/span[contains(@class,'flag-icon-gb')]"));
    WebElement firstTip = tipsGB.get(0);
    for (int p = 1; p < tipsGB.size(); p++) {
        System.out.println(tipsGB.get(p));
        WebElement nextTip = tipsGB.get(p);
        if (nextTip.equals(firstTip)) {
            WebElement tipLink = nextTip.findElement(By.xpath("../../../..\n"
                    + "/div[@class='tip medium-9 small-12 column padding-reset dtstart tip-list-row__tip']\n"
                    + "/div[@class='tip-match medium-12 column']/div[@class='tip-teams']/a"));
            System.out.println("Link to a tip with same language is: " + tipLink.getAttribute("href"));
        } else {
            System.out.println("No more tips in same language on top of page");
            continue;
        }
    }

提前谢谢

1 个答案:

答案 0 :(得分:1)

请尝试以下方案:

1 。选择其类包含术语'flag-icon-gb'的所有元素。 (您可以通过替换上面的*来将搜索限制为一种元素。 例如,要搜索所有li,您可以输入// li [...]

<强> 2 即可。迭代您的列表以操纵您希望的第一个 n 元素。

3 。对循环中的每个元素做你想要的东西(比较,得到孩子,点击等等......)

//Get all flags containing GB
List<WebElement> tipsGB = driver.findElements((By.xpath("//*[contains(@class,\'flag-icon-gb\')]"))

//Iterate over the list and do your stuff

for(int i=0; i<numberofElementsYouWant<;i++){

  Webelement currentElement = tipsGB.get(i);
  //manipulate your elements here
  currentElement.Dostuff();

}

编辑:您的问题似乎与比较相关。 您正在尝试比较对象(WebElements)和那些不相等的对象。只有它们的文本是。 请尝试这样:

String firstTip = tipsGB.get(0).getAttribute("data-tip-id");

然后在循环内执行相同操作,然后进行比较

String nextTip = tipsGB.get(p).getAttribute("data-tip-id");
if (nextTip.equals(firstTip)) {
....
}