Java & Selenium Code:
List<WebElement> ele_list_search = driver .findElements(By.xpath("//div[@class='home-content__search-item-section ']")); ele_list_search.get(0).click();
Question: How to perform above using Karate for UI automation where collect elements into list and click on the particular element based on the index in the list?