Click or drag to resize

SearchContextExtensionsGetElementsT(ISearchContext, ElementLocator, FuncIWebElement, Boolean) Method

Framework to automate tests using Selenium WebDriver
Finds elements that meet specified conditions.

Namespace: Ocaramba.Extensions
Assembly: OcarambaLite (in OcarambaLite.dll) Version: 1.0.0+d8e789f8644d1a9b63485ad7914acf4f489f3ef9
Syntax
C#
public static IList<T> GetElements<T>(
	this ISearchContext searchContext,
	ElementLocator locator,
	Func<IWebElement, bool> condition
)
where T : class, IWebElement
Request Example

Parameters

searchContext  ISearchContext
The search context.
locator  ElementLocator
The locator.
condition  FuncIWebElement, Boolean
The condition to be met.

Type Parameters

T
IWebComponent like Checkbox, Select, etc.

Return Value

IListT
Located elements.

Usage Note

In Visual Basic and C#, you can call this method as an instance method on any object of type ISearchContext. When you use instance method syntax to call this method, omit the first parameter. For more information, see Extension Methods (Visual Basic) or Extension Methods (C# Programming Guide).
Example
How to find displayed elements and specify element type to get additional actions for them :
C#
var checkboxes = this.Driver.GetElements<Checkbox>(this.stackOverFlowCheckbox, e => e.Displayed);
checkboxes[0].TickCheckbox();
See Also