1

I am trying to list all elements from the bootstrap dropdown and then select a certain value. However, it returns 0 values. Any suggestions will be greatly appreciated.

driver.findElement(By.id("imgSelectButton")).click();
Thread.sleep(3000);
List<WebElement> list = driver.findElements(By.xpath("//ul/li[@class='logoSelectOpt']//li"));
System.out.println(list.size());
for(int i=0; i<list.size(); i++){
    System.out.println(list.get(i).getText());
    if (list.get(i).getText().contains("History")){
        list.get(i).click();
        break;
    }
}

DOM:

<div class="logoSelect" style="z-index:1; top:878px;">==$0
 <ul>
  <li class="logoSelectOpt" id="12" onmouseover="jQuery(QWE01Title.activate(this);" onmouseout="jQuery(QWE01Title.deactivate(this);" onmousedown="jQuery(QWE01Title.selectItem(this);" logoColor="#FFF">Facts</li>==0
  <li class="logoSelectOpt" id="12" onmouseover="jQuery(QWE01Title.activate(this);" onmouseout="jQuery(QWE01Title.deactivate(this);" onmousedown="jQuery(QWE01Title.selectItem(this);" logoColor="#FFF">History</li>==0
  <li class="logoSelectOpt" id="12" onmouseover="jQuery(QWE01Title.activate(this);" onmouseout="jQuery(QWE01Title.deactivate(this);" onmousedown="jQuery(QWE01Title.selectItem(this);" logoColor="#FFF">Opinions</li>==0
  <li class="logoSelectOpt" id="12" onmouseover="jQuery(QWE01Title.activate(this);" onmouseout="jQuery(QWE01Title.deactivate(this);" onmousedown="jQuery(QWE01Title.selectItem(this);" logoColor="#FFF">Questions</li>==0
 </ul>
</div>

undetected Selenium
  • 183,867
  • 41
  • 278
  • 352
Alex Alex
  • 27
  • 4

1 Answers1

2

The elements are jQuery enabled element so to locate the elements you have to induce WebDriverWait for the visibilityOfAllElementsLocatedBy() and you can use either of the following Locator Strategies:

  • Using cssSelector:

    driver.findElement(By.id("imgSelectButton")).click();
    List<WebElement> list = new WebDriverWait(driver, 20).until(ExpectedConditions.visibilityOfAllElementsLocatedBy(By.cssSelector("div.logoSelect > ul li.logoSelectOpt")));
    System.out.println(list.size());
    for(int i=0; i<list.size(); i++){
        System.out.println(list.get(i).getText());
        if (list.get(i).getText().contains("History")){
            list.get(i).click();
            break;
        }
    }
    
  • Using xpath:

    driver.findElement(By.id("imgSelectButton")).click();
    List<WebElement> list = new WebDriverWait(driver, 20).until(ExpectedConditions.visibilityOfAllElementsLocatedBy(By.xpath("//div[@class='logoSelect']/ul//li[@class='logoSelectOpt']")));
    System.out.println(list.size());
    for(int i=0; i<list.size(); i++){
        System.out.println(list.get(i).getText());
        if (list.get(i).getText().contains("History")){
            list.get(i).click();
            break;
        }
    }
    
undetected Selenium
  • 183,867
  • 41
  • 278
  • 352
  • DebanjanB thank you so much for your response. I've tried your methods but is throws a TimeoutExeption. – Alex Alex Jan 10 '20 at 22:20
  • @AlexAlex _TimeoutException_ is the outcome of **failed** _ExpectedConditions_. Debug your code through `findElement()` inconjunction with `Thread.sleep()`. If you are able to locate the element, update the question with the observations. Check the HTML and traverse upwards and observe if the element is within an – undetected Selenium Jan 10 '20 at 22:24
  • 1
    There was problem with my xpath. I removed the WebDriverWait, used your version of the xpath and it worked! Thank you so much! – Alex Alex Jan 10 '20 at 22:29