ncatestify / cypress-base-plugin

Cypress.IO plugin to start website testing
3 stars 7 forks source link

Navigation on tab with focus outline #25

Open rogoit opened 1 year ago

rogoit commented 1 year ago

describe('Keyboard test', () => { it('Navigation is first element and has focus', () => { cy.visit('https://www.example.com') cy.get('body').tab() // Springt zum ersten fokussierbaren Element auf der Website cy.focused().should('have.attr', 'role', 'navigation') // Stellt sicher, dass das fokussierte Element eine Navigationsleiste ist cy.get('nav a').first().focus().should('have.css', 'outline-style', 'solid') // Fokussiert das erste Navigationslink und prüft, ob die Umrandung (outline) sichtbar ist