Click or drag to resize

RemoteDriver.FindAll<T> Method

Searches for objects that match the specified pattern. The search depth is specified as an optional parameter.

Namespace:  SmartBear.TestLeft
Assembly:  SmartBear.TestLeft (in SmartBear.TestLeft.dll) Version: 14.70.237.11 (14.70.237.11)
Syntax
public IEnumerable<T> FindAll<T>(
	ISearchPattern pattern,
	int depth = 1
)
where T : class, IObjectTreeNode

Parameters

pattern
Type: SmartBear.TestLeft.ISearchPattern
The search pattern.
depth (Optional)
Type: System.Int32
The search depth.

Type Parameters

T
The interface of the elements in the returned sequence.

Return Value

Type: IEnumerable<T>
The sequence of the found objects.

Implements

IDriver.FindAll<T>(ISearchPattern, Int32)
See Also