puppeteer/website/versioned_docs/version-21.5.1/api/puppeteer.page.emulatetimezone.md

24 lines
1.2 KiB
Markdown
Raw Normal View History

---
sidebar_label: Page.emulateTimezone
---
# Page.emulateTimezone() method
2022-10-24 14:31:12 +00:00
#### Signature:
```typescript
class Page {
emulateTimezone(timezoneId?: string): Promise<void>;
}
```
## Parameters
| Parameter | Type | Description |
| ---------- | ------ | ----------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------- |
| timezoneId | string | _(Optional)_ Changes the timezone of the page. See [ICUs metaZones.txt](https://source.chromium.org/chromium/chromium/deps/icu.git/+/faee8bc70570192d82d2978a71e2a615788597d1:source/data/misc/metaZones.txt) for a list of supported timezone IDs. Passing <code>null</code> disables timezone emulation. |
**Returns:**
Promise&lt;void&gt;