IWebObjectQuerySelectorAllT Method |
Finds all child objects that match the specified CSS selector.
Namespace:
SmartBear.TestLeft.TestObjects.Web
Assembly:
SmartBear.TestLeft (in SmartBear.TestLeft.dll) Version: 14.70.237.11 (14.70.237.11)
Syntax IEnumerable<T> QuerySelectorAll<T>(
string selector
)
where T : class, IWebObject
Function QuerySelectorAll(Of T As {Class, IWebObject}) (
selector As String
) As IEnumerable(Of T)
Dim instance As IWebObject
Dim selector As String
Dim returnValue As IEnumerable(Of T)
returnValue = instance.QuerySelectorAll(selector)
generic<typename T>
where T : ref class, IWebObject
IEnumerable<T>^ QuerySelectorAll(
String^ selector
)
Parameters
- selector
- Type: SystemString
A CSS selector that describes the objects to be returned.
Type Parameters
- T
- The interface that will be implemented in the collection items.
Return Value
Type:
IEnumerableTA collection of found objects.
Exceptions See Also