1 2 3 4 5 6 7 8 9 10 11 12 13
describe('Guide Test', () => { it('navigates to the getting started section', () => { // given cy.visit('/'); // when cy.get('a').contains('Get Started').click(); // then cy.url().should('include', '/guide/'); cy.contains('Getting Started'); }); });