@schurakov/agent-js-cypress
Version:
Report Portal plugin for Cypress fork
13 lines (12 loc) • 386 B
JavaScript
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();
});
});