narrow-artist-87113
10/07/2022, 11:30 AMnarrow-artist-87113
10/07/2022, 11:32 AMmysterious-kitchen-59722
10/07/2022, 1:48 PMmysterious-kitchen-59722
10/07/2022, 1:48 PMwhite-activity-68996
10/07/2022, 1:57 PMsquare-pager-46841
10/07/2022, 4:47 PMmysterious-belgium-25713
10/07/2022, 5:23 PMincalculable-pager-85339
10/07/2022, 6:39 PMstale-optician-85950
10/07/2022, 7:43 PMwhite-activity-68996
10/07/2022, 10:05 PMnarrow-artist-87113
10/08/2022, 4:45 AMnarrow-artist-87113
10/08/2022, 4:47 AMlate-monitor-15915
10/08/2022, 5:18 AMnarrow-artist-87113
10/08/2022, 5:55 AMlate-monitor-15915
10/08/2022, 6:33 AMnarrow-artist-87113
10/08/2022, 8:20 AMnarrow-artist-87113
10/08/2022, 8:23 AMnarrow-artist-87113
10/08/2022, 8:23 AMmysterious-belgium-25713
10/08/2022, 11:12 AMmysterious-belgium-25713
10/08/2022, 11:13 AMmysterious-belgium-25713
10/08/2022, 11:14 AMnarrow-artist-87113
10/08/2022, 11:19 AMflaky-raincoat-53097
10/08/2022, 2:31 PMflaky-raincoat-53097
10/08/2022, 2:31 PMflaky-raincoat-53097
10/08/2022, 2:32 PMflaky-raincoat-53097
10/08/2022, 2:33 PMflaky-raincoat-53097
10/08/2022, 2:34 PMflaky-raincoat-53097
10/08/2022, 2:35 PMstale-optician-85950
10/08/2022, 8:48 PMCypress.on('uncaught:exception', () => false);
in your cypress/support/e2e.ts
file.
1 )
The problem with your application is that it's riddled with cookies and requests, even when I reject any additional cookies your application still drops approximately 70 cookies. So when you are trying to click the save button, the application requests have not all been completed. As Cypress is moving onto the next click save
step, your application is not ready for it. So you need to wait for all the troublesome requests to finish. I have selected a couple of the requests that look to take longest but you will need to study the behaviour of your application in Dev Tools > Network to be in control here.
I also added setCookie
to block the cookie banner from appearing. Please note the comments I have added to the test code:
describe('Test application', () => {
it('Validate save button', () => {
// prepare the requests list
cy.intercept('https://cdn.privacy-mgmt.com/**').as('content');
cy.intercept('**/consent-status?*').as('contentStatus');
// stop the cookie banner from appearing by setting the cookie
cy.setCookie('consentUUID', '57261086-58c8-4b80-9c02-647d417b9861_12');
// wait for the requests to finish
cy.visit('https://www.businessinsider.com/ikea-nyc-store-planning-studio-tour-2019-4');
cy.wait('@contentStatus');
cy.get('[title="Save Article"]').click();
// login form has appeared and now you can enter credentials
cy.get('[class*="authentication-wrapper-login"]').within(() => {
cy.get('[type="email"]').type('myemail@gmail.com');
cy.get('[type="password"]').type('Password123');
cy.get('[class="dialog-base-button-bar"] [data-event-label="login"]').click();
});
});
});
flaky-raincoat-53097
10/08/2022, 9:00 PM