| Package | Description |
|---|---|
| com.microsoft.playwright |
| Modifier and Type | Interface and Description |
|---|---|
interface |
ElementHandle
ElementHandle represents an in-page DOM element.
|
| Modifier and Type | Method and Description |
|---|---|
default JSHandle |
Page.evaluateHandle(String expression)
Returns the value of the
expression invocation as a JSHandle. |
default JSHandle |
Frame.evaluateHandle(String expression)
Returns the return value of
expression as a JSHandle. |
default JSHandle |
Worker.evaluateHandle(String expression)
Returns the return value of
expression as a JSHandle. |
default JSHandle |
JSHandle.evaluateHandle(String expression)
Returns the return value of
expression as a JSHandle. |
JSHandle |
Page.evaluateHandle(String expression,
Object arg)
Returns the value of the
expression invocation as a JSHandle. |
JSHandle |
Frame.evaluateHandle(String expression,
Object arg)
Returns the return value of
expression as a JSHandle. |
JSHandle |
Worker.evaluateHandle(String expression,
Object arg)
Returns the return value of
expression as a JSHandle. |
JSHandle |
JSHandle.evaluateHandle(String expression,
Object arg)
Returns the return value of
expression as a JSHandle. |
JSHandle |
JSHandle.getProperty(String propertyName)
Fetches a single property from the referenced object.
|
default JSHandle |
Page.waitForFunction(String expression)
Returns when the
expression returns a truthy value. |
default JSHandle |
Frame.waitForFunction(String expression)
Returns when the
expression returns a truthy value, returns that value. |
default JSHandle |
Page.waitForFunction(String expression,
Object arg)
Returns when the
expression returns a truthy value. |
default JSHandle |
Frame.waitForFunction(String expression,
Object arg)
Returns when the
expression returns a truthy value, returns that value. |
JSHandle |
Frame.waitForFunction(String expression,
Object arg,
Frame.WaitForFunctionOptions options)
Returns when the
expression returns a truthy value, returns that value. |
JSHandle |
Page.waitForFunction(String expression,
Object arg,
Page.WaitForFunctionOptions options)
Returns when the
expression returns a truthy value. |
| Modifier and Type | Method and Description |
|---|---|
List<JSHandle> |
ConsoleMessage.args()
List of arguments passed to a
console function call. |
Map<String,JSHandle> |
JSHandle.getProperties()
The method returns a map with **own property names** as keys and JSHandle instances for the property values.
|
Copyright © 2021. All rights reserved.