How can we test the alert and text inside is displaying using Cypress.io Js automation framework? I am unable to figure out the relevant example in Cypress documentation, please advise.
JavaScript
x
10
10
1
describe('Test an alert and the text displaying', function() {
2
it('Verify alert and its text content', function(){
3
cy.visit('http://www.seleniumeasy.com/test/javascript-alert-box-demo.html')
4
cy.get('button').contains('Click me!').click()
5
cy.on ('window:alert', 'I am an alert box!')
6
7
})
8
9
})
10
Advertisement
Answer
Figured out the answer using cy.stub() method as advised by Richard Matsen:
JavaScript
1
16
16
1
describe('Test an alert and the text displaying', function() {
2
it('Verify alert and its text content', function(){
3
cy.visit('http://www.seleniumeasy.com/test/javascript-alert-box-demo.html')
4
5
const stub = cy.stub()
6
cy.on ('window:alert', stub)
7
cy
8
.get('button').contains('Click me!').click()
9
.then(() => {
10
expect(stub.getCall(0)).to.be.calledWith('I am an alert box!')
11
})
12
13
})
14
15
})
16