puppeteer/docs/api/puppeteer.page.emulatetimezone.md

47 lines
716 B
Markdown
Raw Permalink Normal View History

2022-07-05 13:41:43 +00:00
---
sidebar_label: Page.emulateTimezone
---
# Page.emulateTimezone() method
#### Signature:
2022-07-05 13:41:43 +00:00
```typescript
class Page {
abstract emulateTimezone(timezoneId?: string): Promise<void>;
2022-07-05 13:41:43 +00:00
}
```
## Parameters
<table><thead><tr><th>
2022-07-05 13:41:43 +00:00
Parameter
</th><th>
Type
</th><th>
Description
</th></tr></thead>
<tbody><tr><td>
timezoneId
</td><td>
string
</td><td>
_(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 `null` disables timezone emulation.
</td></tr>
</tbody></table>
2022-07-05 13:41:43 +00:00
**Returns:**
Promise&lt;void&gt;