Skip to main content
Version: 23.10.1

Page.cookies() 方法

¥Page.cookies() method

警告:此 API 现已过时。

¥Warning: This API is now obsolete.

页面级 cookie API 已弃用。改用 Browser.cookies()BrowserContext.cookies()

¥Page-level cookie API is deprecated. Use Browser.cookies() or BrowserContext.cookies() instead.

如果未指定 URL,则此方法返回当前页面 URL 的 cookie。如果指定了 URL,则仅返回这些 URL 的 cookie。

¥If no URLs are specified, this method returns cookies for the current page URL. If URLs are specified, only cookies for those URLs are returned.

签名

¥Signature

class Page {
abstract cookies(...urls: string[]): Promise<Cookie[]>;
}

参数

¥Parameters

范围

类型

描述

urls

string[]

Returns:

Promise<Cookie[]>