0

我如何从中选择一个元素menu-popup?例如我想选择先生。

这是网站代码:

<div class="menu-popup-items"><span class="menu-popup-item menu-popup-no-icon "><span class="menu-popup-item-icon"></span><span class="menu-popup-item-text">Not selected</span></span><span class="menu-popup-item menu-popup-no-icon "><span class="menu-popup-item-icon"></span><span class="menu-popup-item-text">**Mr.**</span></span><span class="menu-popup-item menu-popup-no-icon "><span class="menu-popup-item-icon"></span><span class="menu-popup-item-text">Mrs.</span></span><span class="menu-popup-item menu-popup-no-icon "><span class="menu-popup-item-icon"></span><span class="menu-popup-item-text">Ms.</span></span><span class="menu-popup-item menu-popup-no-icon "><span class="menu-popup-item-icon"></span><span class="menu-popup-item-text">Dr.</span></span></div>
4

3 回答 3

2

我认为您应该尝试使用此 XPath

"//*[@class='menu-popup-items']" 

它将帮助您将每个元素定位到您的 div 标签中

如果您正在寻找特定的文本,那么它将帮助您在菜单弹出窗口中找到一个元素

 //*[contains(text(),'Mr.')]

它将在菜单弹出窗口中找到您的先生

于 2019-01-18T10:26:48.390 回答
0

在回答这个问题之前,我想指出,如果您可以为每个菜单项添加一个 id,它将使查找方式更容易和更高效。

在这种情况下,您可以执行以下操作:

WebElement result = driver.findElement(By.id("myId"));

如果您无法添加 id,您可以执行以下操作:

    WebElement result = driver.findElements(By.className("menu-popup-item-text")).stream()
                .filter(webElement -> webElement.getText().contains("Mr."))
                .findFirst().get();
于 2019-01-18T09:05:32.387 回答
0

我会用我的例子来解释

      //In Page Object File
      public static WebElement idProof(WebDriver driver)
        {
            WebElement element=null;
            WebDriverWait wait=new WebDriverWait(driver, 50);
            element=wait.until(ExpectedConditions.elementToBeClickable(By.xpath("//div[@class='panel-body']//div[3]//div[2]//div[1]//a[1]//span[1]")));
            return element;
        }

     ` `//In Test File
      WebElement idProof = Page1.idProof(driver);
      idProof.click();

       //In Test File
       WebElement voterId = FarmerRegPage.idProofVoterId(driver, "Voter id");
       voterId.click();

  // In Page Object File
  public static WebElement idProofVoterId(WebDriver driver, String idVal)
{
    WebElement element=null;
    WebDriverWait wait=new WebDriverWait(driver, 50);
    element=wait.until(ExpectedConditions.elementToBeClickable(By.xpath("//li[contains(text(),'" + idVal +"')]")));
    return element;
}

变量String idVal是我在下拉列表中传递的值

HTML 片段:-<span>Select an Option</span>

我们有同样的情况,我想告诉你,你应该先点击下拉菜单,然后你只需将 xpath 更改spanli并保持原样,发送你必须选择的项目的名称这应该可以正常工作

于 2019-01-18T10:34:55.193 回答