在量角器Jasmine中获得“预期未定义为假”

时间:2019-09-22 08:15:15

标签: jasmine protractor

我正在验证是否必须不显示元素之一。

代码如下:

规格文件:

expect(usersPage.isCreateTabDisplayed()).toBe(false);

方法的usersPage定义:

this.isCreateTabDisplayed = function()
    {
        waitUtil.isElementVisible(usersTab,repo.configData.configuration.longWaitTime);
        createUserTab.isPresent()
            .then( function(displayed) {
                console.log("create user tab  : "+ displayed);
                return displayed;
            });
    }

元素定义如下:

<li ng-class="{active: (subview == 'add')}" ng-show="iSU || dp.ua" class="ng-hide"><a href="#/setup/users/all/add/" class="ng-binding">Create user</a></li>

运行代码时,我收到“预期未定义为假”错误消息。

控制台日志显示为“创建用户选项卡:false”,但是为什么我收到错误消息以及如何处理它。

1 个答案:

答案 0 :(得分:1)

您需要具有then序列和return

this.isCreateTabDisplayed = function()
    {
        return waitUtil.isElementVisible(usersTab,repo.configData.configuration.longWaitTime).then(() => {
            return createUserTab.isPresent().then( function(displayed) { // or you can just "return createUserTab.isPresent()"
                console.log("create user tab  : "+ displayed);
                return displayed;
            });
        });
    }

此外,您的问题中还有量角器标签,那么为什么不使用它呢? 您的代码应如下所示:

expect(usersPage.getCreateTab().isDisplayed()).toBe(false);

getCreateTab(): ElementFinder {
    browser.wait(ExpectedConditions.visibilityOf(usersTab), repo.configData.configuration.longWaitTime).then(() => {
        return createUserTab; // or put there locator to "element" (find) createUserTab
    });
}

如果我错过了什么,请在评论中注意我。