跳至主要内容
版本: 22.5.0

Page.setGeolocation() 方法

设置页面的地理位置。

签名:

class Page {
abstract setGeolocation(options: GeolocationOptions): Promise<void>;
}

参数

参数类型描述
optionsGeolocationOptions

返回值

Promise<void>

备注

考虑使用 BrowserContext.overridePermissions() 来授予页面读取其地理位置的权限。

示例

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