I have an element on my webpage which I call base element. I'm looking for all children with a certain tag of base. In pure Selenium & Java I would do something like:
WebElement base = driver.findElement(...);
List<WebElement> children = base.findElements(By.tagName("button"));
How can I do this in Selenide?