Skip to main content
Version: Next

Frame.$x() method

Warning: This API is now obsolete.

Use Frame.$$() with the xpath prefix.

Example: await frame.$$('xpath/' + xpathExpression)

This method evaluates the given XPath expression and returns the results. If xpath starts with // instead of .//, the dot will be appended automatically.

Signature:

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

Parameters

ParameterTypeDescription
expressionstringthe XPath expression to evaluate.

Returns:

Promise<Array<ElementHandle<Node>>>