我在本地构建react项目。在赛普拉斯中创建了测试场景,通过单击它来运行它,但失败了。然后,我对其进行了更改并再次运行,但是在修复的同一步骤中它仍然失败。
然后,我通过单击run all specs
按钮来运行测试方案。测试运行和上一步已通过,但又失败了。我对其进行了修复,然后再次运行,但是尽管它已更改,但它在同一位置失败。
有人知道如何解决此问题吗?赛普拉斯3.2.0版
describe('Calculate the Budget', () => {
it('Add an item to budget', () => {
cy
.visit('http://localhost:8000/budget')
cy
.get('select').select('Car')
cy
.get(':nth-child(2) > input')
.type('Rent')
cy
.get(':nth-child(3) > input')
.type('320')
cy
.get('.submit').select('Car')
cy
.get(':nth-child(7) > .MBPvA > ._3-t-g')
.should('have.text', '-$320.00')
cy
.get(':nth-child(5) > ._3S2Fs > .sG1fB')
.should('have.text', '$1,893.93')
})
})