Dennis Thisner

Results 2 issues of Dennis Thisner

Cypress 11, our logout functionality is working just fine With Cypress 12+, it stopped working We are seeing: Our logout command: ```javascript Cypress.Commands.add('logoutKC', () => cy.logout({ root: ENVS.keycloak_root, realm: Cypress.env('keycloak_realm'),...

Is **Cypress-Keycloak** supporting the ability just to grab the token? This old Cypress-Keycloak-Commands repo is supporting following: ``` describe("Keycloak Login", () => { beforeEach(() => { cy.kcLogout(); cy.kcLogin("user").as("tokens"); cy.visit("/"); });...