无法使用静态方法返回的类实例访问类方法

时间:2018-08-17 19:32:20

标签: javascript ecmascript-6 cypress

我创建了一个订户类来存储订户详细信息,并使用静态方法返回该类的实例,但是我无法使用该实例设置值

这是订户类别:

let _instance;

export class Subscriber {

    constructor(username, password) {
        this._username = username;
        this._password = password;
    }


    setSubscriberId(subscriberId) {
        cy.log(subscriberId);
        this._subscriberId = subscriberId;
    }

    setSessionId(sessionId) {
        this.sessionId = sessionId;
    }


    getUserName = () => {
        return this._username;
    }
    getPassword = () => {
        return this._password;
    }

    getSubsciberId() {
        return this._subscriberId;
    }

    getSessionId() {
        return this.sessionId;
    }


    static createSubscriber(username, password) {
        if (!_instance) {
            _instance = new Subscriber(username, password);
        }
        return _intance;
    }

    static getSubscriber() {
        return _instance;
    }
}

我正在before块中创建该类的实例,并在Given块中访问该实例

before("Create a new subscriber before the tests and set local storage", () => {
    const username = `TestAutomation${Math.floor(Math.random() * 1000)}@sharklasers.com`;
    const password = "test1234";
    subscriberHelpers.createSubscriber(username, password, true).then((response) => {
        cy.log(response);
        Subscriber.createSubscriber(username, password);
        Subscriber.getSubscriber().setSubscriberId(response.Subscriber.Id);
        Subscriber.getSubscriber().setSessionId(response.SessionId);
    }).catch((error) => {
        cy.log(error);
    });
});

Given(/^I launch selfcare app$/, () => {
    cy.launchApp();
});

Given(/^I Set the environemnt for the test$/, () => {
    cy.log(Subscriber.getSubscriber());
    cy.log(Subscriber.getSubscriber().getSubsciberId());
});

这是赛普拉斯控制台上的输出

Cypress

问题:

  1. 为什么即使我在before块中设置了SubscriberID,也为null
  2. 如果我打印出订户对象,为什么我看不到订户ID

这是订户对象的输出

subscriber Object

1 个答案:

答案 0 :(得分:0)

属性usernamepasswordbefore()中同步定义,因此在测试时存在于对象上。

但是subscriberId是异步获取的,因此您需要等待测试内的完成,例如

cy.wrap(Subscriber.getSubscriber()).should(function(subscriber){
  expect(subscriber.getSubsciberId()).not.to.be.null
})

请参阅wrap - Objects,了解如何使用赛普拉斯命令处理对象。

并查看should - Differences

  

另一方面,将回调函数与.should()或.and()一起使用时,有特殊的逻辑来重新运行该回调函数,直到其中没有任何断言。

换句话说,should将重试(最多5秒钟),直到回调内部的expect不会失败(即您的异步调用已完成)。