2022-07-05 13:41:43 +00:00
---
sidebar_label: Page.$x
---
# 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.
2022-10-24 07:07:05 +00:00
#### Signature:
2022-07-05 13:41:43 +00:00
```typescript
class Page {
2022-07-06 07:05:37 +00:00
$x(expression: string): Promise< Array < ElementHandle < Node > >>;
2022-07-05 13:41:43 +00:00
}
```
## Parameters
| Parameter | Type | Description |
| ---------- | ------ | ---------------------- |
| expression | string | Expression to evaluate |
**Returns:**
2022-07-06 07:05:37 +00:00
Promise< Array< [ElementHandle](./puppeteer.elementhandle.md)< Node> > >
2022-07-05 13:41:43 +00:00
## Remarks
Shortcut for [Page.mainFrame().$x(expression) ](./puppeteer.frame._x.md ).