使用 ztest 浏览器测试未经授权的页面
在功能测试用例中检查当前登录用户是否可以访问该页面的正确步骤是什么?
请指出一个工作示例:)
What's the correct procedure to check in the functional test case whether or not the page is accessible by the currently logged in user?
Please point a working example :)
如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(2)
检查页面是否可访问很容易。您通常会
在 browser.contents 中执行并检查某些内容。
为了确保页面无法访问并引发实例,您可以导入 HTTPError
获取浏览器实例,使用它登录,然后执行
To check if the page IS accessible is easy. You typically do
and check for something in browser.contents.
To make sure the page is inaccessible and for instance raises, you could import HTTPError
obtain a browser instance, login with it, and do