Object Creation
let CookieStoreClass = require("@brightsign/cookiestore"); let cookieStore = new CookieStoreClass();
Cookie
getCookies()
Array<Cookie> getCookies()
[string] domain:
Specifies the hosts that are allowed to receive the cookie, including subdomains.[string] path:
To send the Cookie header, this URL path must exist in the URL request.[string] name:
The name of the cookie[string] value:
The value of the cookie
Example
To list the cookies saved on a browser instance on a console:
let CookieStoreClass = require("@brightsign/cookiestore"); let cookieStore = new CookieStoreClass(); let cookies = cookieStore.getCookies(); cookies.forEach((cookie) => {console.log("Cookie domain: " + cookie.domain + " Cookie path:" + cookie.path + " Cookie name:" + cookie.name + " Cookie value:" + cookie.value)});