getCookies
Retrieve a cookie visible to the current page. You can query a specific cookie by providing the cookie name or retrieve all.
Usage
browser.getCookies(filter)
Parameters
Name | Type | Details |
---|---|---|
filter | param | an object that allows to filter for cookies with specific attributes |
Example
getCookies.js
it('should return a cookie for me', async () => {
await browser.setCookies([
{name: 'test', value: '123'},
{name: 'test2', value: '456'}
])
const testCookie = await browser.getCookies(['test'])
console.log(testCookie); // outputs: [{ name: 'test', value: '123' }]
const allCookies = await browser.getCookies()
console.log(allCookies);
// outputs:
// [
// { name: 'test', value: '123' },
// { name: 'test2', value: '456' }
// ]
// filter cookies by domain
const stagingCookies = await browser.getCookies({
domain: 'staging.myapplication.com'
})
})