ByChained ClassWebDriver
Mechanism used to locate elements within a document using a series of other lookups. This class will find all DOM elements that matches each of the locators in sequence
Inheritance Hierarchy

OnlineSystem Object
  OpenQA.Selenium By
    OpenQA.Selenium.Support.PageObjects ByChained

Namespace: OpenQA.Selenium.Support.PageObjects
Assembly: WebDriver.Support (in WebDriver.Support.dll) Version: 2.35.0.0 (2.35.0.0)
Syntax

public class ByChained : By
Examples

The following code will will find all elements that match by2 and appear under an element that matches by1.
driver.findElements(new ByChained(by1, by2))
See Also