gentle-accountant-4760
06/28/2022, 11:41 AMts
Suite('Cypress support, I need help', () => {
before(() => {
prepare();
cy.visit('https://helloworld.com');
});
Scenario('Test', () => {
When('we are testing get', () => {
cy.get('.test')
});
Then('we are testing cy.visit', () => {
cy.visit('https://helloworld.com/Barrythrill')
});
Basically whats happening is the cookies from prepare() goes to the first cy.visit but in the second cy.visit, it is all restored. how can I re-use all the needs?