拒绝在帧中显示“ https://url”,因为它将“ X-Frame-Options”设置为“ deny”。
在cypress框架中从一个URL重定向到另一个URL时
it('.type() - type into a DOM element', () => {
cy.visit('https://url')
cy.wait(7000)
cy.get('#id')
.type('abc@gmail.com').should('have.value', 'abc@gmail.com')
})