29 lines
767 B
Markdown
29 lines
767 B
Markdown
|
<!-- Do not edit this file. It is automatically generated by API Documenter. -->
|
||
|
|
||
|
[Home](./index.md) > [puppeteer](./puppeteer.md) > [Page](./puppeteer.page.md) > [$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<[ElementHandle](./puppeteer.elementhandle.md)\[\]>
|
||
|
|
||
|
## Remarks
|
||
|
|
||
|
Shortcut for [Page.mainFrame().$x(expression)](./puppeteer.frame._x.md).
|
||
|
|