Skip to main content
Version: Next

Frame.$x() method

This method evaluates the given XPath expression and returns the results.

Signature:

class Frame {
$x(expression: string): Promise<Array<ElementHandle<Node>>>;
}

Parameters

ParameterTypeDescription
expressionstringthe XPath expression to evaluate.

Returns:

Promise<Array<ElementHandle<Node>>>