I'm currently new using robot frame framework and having issue with select or click an element with/under same locator (e.g id in this case) So, I have an element $id=search that have 4 elements (not a dropdown)
I want to select one of them.
In Selenium's Java I can used like this
List<WebElement> elem=driver.findElements(By.id(search)); elem.get(1).click(); But can't find a way using robot framework yet.
Please advise, Thanks