C# Syntax
TChild[] FindChildren<TChild>( IDescription selector ) where TChild: class, ITestObject
Parameters
- selector
- A description containing the set of properties and values that should be common to all objects that are returned.
Type Parameters
- TChild
- The test object interface type to find. To avoid limiting to a specific test object type, use ITestObject.
Return Value
var suggestionList = suggestions.FindChildren<IWebElement>(new WebElementDescription { TagName = "LI" });