chrome-devtools-kotlin / org.hildan.chrome.devtools.domains.network / DeleteCookiesRequest

DeleteCookiesRequest

data class DeleteCookiesRequest

Request object containing input parameters for the NetworkDomain.deleteCookies command.

Constructors

<init>

Request object containing input parameters for the NetworkDomain.deleteCookies command.

DeleteCookiesRequest(name: String, url: String? = null, domain: String? = null, path: String? = null)

Properties

domain

If specified, deletes only cookies with the exact domain.

val domain: String?

name

Name of the cookies to remove.

val name: String

path

If specified, deletes only cookies with the exact path.

val path: String?

url

If specified, deletes all the cookies with the given name where domain and path match provided URL.

val url: String?