How to find webElement from within context of a element using webdriver.io
I am trying to find element from within context of existing element. H
Webelement elem1 = driver.findElement(By.id("some id"));
Webelement elem2 = elem1.findElements(By.xpath("some xpath")); //some xpath or css selector within context of elem1's HTML context
How to achieve this using webdriver.io?