default <T extends TestBenchElement> ElementQuery<T> |
HasElementQuery.$(Class<T> clazz) |
Prepare a ElementQuery instance to use for locating components on
the client.
|
default ElementQuery<TestBenchElement> |
HasElementQuery.$(String tagName) |
Prepare a ElementQuery instance to use for locating components on
the client.
|
ElementQuery<T> |
ElementQuery.attribute(String name,
String value) |
Requires the given attribute to match the given value.
|
ElementQuery<T> |
ElementQuery.attributeContains(String name,
String token) |
Requires the given attribute to contain the given value.
|
ElementQuery<T> |
ElementQuery.context(org.openqa.selenium.SearchContext searchContext) |
Sets the context to search inside.
|
ElementQuery<T> |
ElementQuery.hasAttribute(String name) |
Requires the given attribute to be set.
|
ElementQuery<T> |
ElementQuery.onPage() |
Defines that the query should start the search from the root of the page,
in practice from the <body> tag.
|