当前位置:  开发笔记 > 编程语言 > 正文

量角器等待命令无法等待引导模式出现

如何解决《量角器等待命令无法等待引导模式出现》经验,为你挑选了0个好方法。

场景:每当用户使用不正确的凭据登录时,引导模式将显示1-2秒,并显示消息"抱歉,凭据不正确".下面是模态的HTML.


我需要验证预期的错误文本是否等于实际的错误文本.

我的代码

PageObject.js

var errorModal = element(by.css('.modal-body.note-error.text-center.ng-binding'));

this.getErrorText = function(){

var until = protractor.ExpectedConditions;
browser.wait(until.textToBePresentInElement(errorModal, "Sorry, invalid credentials!"), 3000, "Not able to find");


     return errorModal.getText();

 };

Spec.js

expect(Login_Page.getErrorText()).toMatch('Sorry, invalid credentials!');

产量

消息:预计''匹配'抱歉,凭证无效!'.

我不知道为什么这个等待不起作用.

推荐阅读
无名有名我无名_593
这个屌丝很懒,什么也没留下!
DevBox开发工具箱 | 专业的在线开发工具网站    京公网安备 11010802040832号  |  京ICP备19059560号-6
Copyright © 1998 - 2020 DevBox.CN. All Rights Reserved devBox.cn 开发工具箱 版权所有