puppeteer/website/versioned_docs/version-22.10.0/api/puppeteer.page.setgeolocation.md

57 lines
772 B
Markdown
Raw Permalink Normal View History

---
sidebar_label: Page.setGeolocation
---
# Page.setGeolocation() method
Sets the page's geolocation.
2022-10-24 14:31:12 +00:00
#### Signature:
```typescript
class Page {
abstract setGeolocation(options: GeolocationOptions): Promise<void>;
}
```
## Parameters
<table><thead><tr><th>
Parameter
</th><th>
Type
</th><th>
Description
</th></tr></thead>
<tbody><tr><td>
options
</td><td>
[GeolocationOptions](./puppeteer.geolocationoptions.md)
</td><td>
</td></tr>
</tbody></table>
**Returns:**
Promise&lt;void&gt;
## Remarks
Consider using [BrowserContext.overridePermissions()](./puppeteer.browsercontext.overridepermissions.md) to grant permissions for the page to read its geolocation.
## Example
```ts
await page.setGeolocation({latitude: 59.95, longitude: 30.31667});
```