Back to Puppeteer

Page.setGeolocation() method

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

19.2.2726 B
Original Source

Page.setGeolocation() method

Sets the page's geolocation.

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

</td><td> </td></tr> </tbody></table>

Returns:

Promise<void>

Remarks

Consider using BrowserContext.overridePermissions() to grant permissions for the page to read its geolocation.

Example

ts
await page.setGeolocation({latitude: 59.95, longitude: 30.31667});