Sets the page’s geolocation.
class Page {
abstract setGeolocation(options: GeolocationOptions): Promise<void>;
}
Parameter | Type | Description |
---|---|---|
options | [GeolocationOptions](./puppeteer.geolocationoptions.md) |
Returns:
Promise<void>
Consider using BrowserContext.overridePermissions() to grant permissions for the page to read its geolocation.
await page.setGeolocation({latitude: 59.95, longitude: 30.31667});