Unable to click on specified li element using Selenium Java

invzbl3 :

I need to click on specified li element using dropdown list: All subject areas on website. The problem is: cannot click on specified li element using Selenium.

For example, if I'm writting like:

 String textInput = "Agricultural and Biological Sciences";  

 //...

 // open the dropdown so the options are visible
 driver.findElement(By.className("dropdown"));

 // Get all of the options of dropdown list
 WebElement ulElement  = driver.findElement(By.cssSelector("ul.dropdown-options.dropdown-element"));
 List<WebElement> opts = ulElement.findElements(By.xpath(".//li/a"));

And trying to choose specified li element:

// Loop through the options and select the one that matches
        for (WebElement opt : opts) {
            if(opt.getText().equals(textInput)){
               opt.click();
               //...
            }
        }

The condition is simply skipped by the program.

If I changed to variant like:

  // Loop through the options and select the one that matches
        for (WebElement opt : opts) {
            if(!opt.findElements(By.xpath("//*[contains(text(), '" + textInput + "')]")).isEmpty()) {
                opt.click();
                //...
            }
        }

The condition isn't ignored and successfully passes, but then the program doesn't click on the button, and the list is closed.

Can someone suggest me how to solve the problem here?

DebanjanB :

To click() on the element with text as Agricultural and Biological Sciences (miscellaneous) from the dropdown you need to induce WebDriverWait for the elementToBeClickable() and you can use the following Locator Strategies:

  • xpath:

    driver.navigate().to("https://www.scimagojr.com/journalrank.php?country=UA&page=1");
    new WebDriverWait(driver, 20).until(ExpectedConditions.elementToBeClickable(By.xpath("//div[normalize-space()='All subject areas']"))).click();
    new WebDriverWait(driver, 20).until(ExpectedConditions.elementToBeClickable(By.xpath("//div[normalize-space()='All subject areas']//following-sibling::ul[1]//li/a[normalize-space()='Agricultural and Biological Sciences']"))).click();
    
  • Browser Snapshot:

scimagojr

Guess you like

Origin http://43.154.161.224:23101/article/api/json?id=16131&siteId=1