从一个URL重定向到另一个URL时显示错误 我选择并输入用户名的登录页面
it('.type() - type into a DOM element', () => {
cy.visit('https://example.com')
})
it('.type() - type into a DOM element', () => {
cy.visit('https://xyz', {
onBeforeLoad: (win) => {
Object.defineProperty(win, 'self', {
get: () => {
return window.top
}
})
}
});
它应该重定向并捕获该页面的cy.get('#id)
的ID。