You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
describe("First Test", ()=>{
beforeEach(()=>{
cy.visit('/');
})
it("should visit the home page", ()=>{
cy.get('h1').matchImageSnapshot();
})
})
On running the command npx cypress run, I was facing the following error
1) First Test
should visit the home page:
CypressError: `cy.screenshot()` failed because it requires a DOM element.
The subject received was:
> `null`
The previous command that ran was:
> `cy.task()`