37 lines
847 B
Markdown
37 lines
847 B
Markdown
|
<!-- Do not edit this file. It is automatically generated by API Documenter. -->
|
||
|
|
||
|
[Home](./index.md) > [puppeteer](./puppeteer.md) > [Page](./puppeteer.page.md) > [setGeolocation](./puppeteer.page.setgeolocation.md)
|
||
|
|
||
|
## Page.setGeolocation() method
|
||
|
|
||
|
Sets the page's geolocation.
|
||
|
|
||
|
<b>Signature:</b>
|
||
|
|
||
|
```typescript
|
||
|
setGeolocation(options: GeolocationOptions): Promise<void>;
|
||
|
```
|
||
|
|
||
|
## Parameters
|
||
|
|
||
|
| Parameter | Type | Description |
|
||
|
| --- | --- | --- |
|
||
|
| options | [GeolocationOptions](./puppeteer.geolocationoptions.md) | |
|
||
|
|
||
|
<b>Returns:</b>
|
||
|
|
||
|
Promise<void>
|
||
|
|
||
|
## Remarks
|
||
|
|
||
|
NOTE: Consider using [BrowserContext.overridePermissions()](./puppeteer.browsercontext.overridepermissions.md) to grant permissions for the page to read its geolocation.
|
||
|
|
||
|
## Example
|
||
|
|
||
|
|
||
|
```js
|
||
|
await page.setGeolocation({latitude: 59.95, longitude: 30.31667});
|
||
|
|
||
|
```
|
||
|
|