Creates a chained locator for finding nested elements.
public static By Chained(params By[] locators)
The locators to chain.
var element = driver.FindElement(By.Chained(By.Id("container"), By.ClassName("Button")));