@commercetools-frontend/cypress-cookie-consent
v1.0.47
Published
Cypress package to set a cookie consent cookie
Readme
@commercetools-frontend/cypress-cookie-consent
This package allows to set a cookie consent cookie using the
@commercetools-frontend/cypress-cookie-consentpackage.
Installation
$ npm install --save @commercetools-frontend/cypress-cookie-consentUsage
You need to extend your Cypress commands. You might have an e2e.ts file containing your library and custom commands. If so add this to it:
import '@commercetools-frontend/cypress-cookie-consent/add-commands';This will register a setConsentCookie on Cypress which you can invoke as cy.setConsentCookie. It accepts an argument called commandOptions which has a property named consentGroups. The consent groups are the groups you want to give consent for, for your Cypress test. So in summary you may call it as:
cy.setConsentCookie({
consentGroups: {
essentialCookies: true,
performanceCookies: true,
functionalCookies: true,
targetingCookies: true,
socialMediaCookies: true,
},
});