puppeteer/website/versioned_docs/version-10.0.0/puppeteer.page._x.md

29 lines
767 B
Markdown
Raw Normal View History

<!-- Do not edit this file. It is automatically generated by API Documenter. -->
[Home](./index.md) &gt; [puppeteer](./puppeteer.md) &gt; [Page](./puppeteer.page.md) &gt; [$x](./puppeteer.page._x.md)
## Page.$x() method
The method evaluates the XPath expression relative to the page document as its context node. If there are no such elements, the method resolves to an empty array.
<b>Signature:</b>
```typescript
$x(expression: string): Promise<ElementHandle[]>;
```
## Parameters
| Parameter | Type | Description |
| --- | --- | --- |
| expression | string | Expression to evaluate |
<b>Returns:</b>
Promise&lt;[ElementHandle](./puppeteer.elementhandle.md)\[\]&gt;
## Remarks
Shortcut for [Page.mainFrame().$x(expression)](./puppeteer.frame._x.md).