Cypress:在运行 cypress 时,自动重定向到登录页面
Posted
技术标签:
【中文标题】Cypress:在运行 cypress 时,自动重定向到登录页面【英文标题】:Cypress: while running cypress ,automatically redirecting to login page 【发布时间】:2021-11-19 14:17:46 【问题描述】:当我运行 cypress 代码时,它会自动重定向到主页,并填写登录部分,如何停止这种情况?
it('SubInterfaces',function()
cy.url().should('include','/spoke/create')
cy.get('input').eq(15).type('cypress')
cy.get('input').eq(16).type('34.43.45.56')
cy.get('input').eq(17).type('22')
cy.get('input').eq(18).type('345')
)
【问题讨论】:
【参考方案1】:尝试在函数开头使用cy.visit('/desired-URL');
。
【讨论】:
这个选项已经累了,但没有变化,仍然重定向到新的 url 你确定 cypress 正在重定向你? 能否将代码添加到问题中? 检查,我是这样的 我是否理解正确:一开始,您在正确的页面上,您得到第 15 个输入字段并在其中键入 cypress。之后,你会被重定向吗?以上是关于Cypress:在运行 cypress 时,自动重定向到登录页面的主要内容,如果未能解决你的问题,请参考以下文章
使用 Keycloak 的 Cypress UI 自动登录失败