这是我的代码:
context('Actions', () => {
beforeEach(() => {
cy.visit('http://www.staging.365dropship.com')
cy.contains('Login').click()
cy.wait(10000)
.get('#fancybox-frame').then(($iframe) => {
const $body = $iframe.contents().find('body')
cy.wrap($body).find('#login-username').type('testtust100@gmail.com')
cy.wrap($body).find('#login-password').type('1234567')
cy.wrap($body).find('button').click()
})
})
it('continue', () => {
cy.wait(10000)
cy.url().should('include', '/owner/index')
cy.get('a.icon-sale').click()
cy.wait(10000)
})
})
在登录测试停止执行后的第一个等待中,无故且日志中没有错误...有人可以帮我解决我的错误吗?
that is the last screen I caught before test stops, the wait is not complete