Skip to content

Instantly share code, notes, and snippets.

@dannyshain
Last active May 25, 2021 21:02
Show Gist options
  • Star 0 You must be signed in to star a gist
  • Fork 0 You must be signed in to fork a gist
  • Save dannyshain/1f8ece8a2bcfd6a997a00c1dc2011a33 to your computer and use it in GitHub Desktop.
Save dannyshain/1f8ece8a2bcfd6a997a00c1dc2011a33 to your computer and use it in GitHub Desktop.
it('should trigger a prompt with a message', () => {
cy.window().then(win => {
cy.stub(win, 'prompt').returns('This is my answer.');
cy.get('#prompt-button').click();
cy.get('#prompt-answer').contains('Answer: This is my answer.');
});
});
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment