Refactor A Test Part 4: A Better Delete Method

Published: 02 March 2024
on channel: gleb bahmutov
551
23

In this video, I refactor the page object method that deletes a customer.
add a log message
use cy.contains(selector, text) rather than the longer cy.get(selector).contains(text)
explicit "confirm" stub and check that the stub was called with expected argument
confirm the application routes to the correct URL after deleting
delete() {
cy.log('**deleting the customer**');
cy.on(
'window:confirm',
cy
.stub()
.returns(true)
// @ts-expect-error
.as('confirm')
);
cy.contains('button', 'Delete').click();
cy.get('@confirm').should('have.been.calledOnceWith', 'Really delete?');
cy.location('pathname').should('eq', '/customer');
}
Find the original code at https://github.com/bahmutov/basta-spr...


Watch video Refactor A Test Part 4: A Better Delete Method online, duration hours minute second in high quality that is uploaded to the channel gleb bahmutov 02 March 2024. Share the link to the video on social media so that your subscribers and friends will also watch this video. This video clip has been viewed 551 times and liked it 23 visitors.