UNPKG

@schurakov/agent-js-cypress

Version:
13 lines (12 loc) 386 B
context('Check content of Google', () => { beforeEach('Visit Google page', () => { return cy.visit('https://www.google.com/'); }); it('url should contain google', () => { cy.url().should('include', 'google'); }); it('check contain of google page (failed)', () => { cy.get('#hplogo').screenshot('customFileName'); cy.contains('example').screenshot(); }); });