Hi I'm fairly new to web automation and I'm testing new things out. I'm having trouble getting the list of elements as shown in the picture. i have selected the Xpath of the highlighted code but still no success.
WebDriver driver = DriverFactory.getWebDriver()
WebElement LauncheddAppTest = driver.findElement(By.xpath(Xpath))
List<WebElement> DLauncheddAppTest = LauncheddAppTest.findElements(By.tagName('li'))
println("\n\nIm inside search and click")
println("\n\n Size is: "+DLauncheddAppTest.size())
the size returned is 0 so the tag "li" was not found.
Any. poiters would be greatly appreciated