我创建了一个订户类来存储订户详细信息,并使用静态方法返回该类的实例,但是我无法使用该实例设置值
这是订户类别:
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());
});
这是赛普拉斯控制台上的输出
问题:
before
块中设置了SubscriberID,也为null 这是订户对象的输出
答案 0 :(得分:0)
属性username
和password
在before()
中同步定义,因此在测试时存在于对象上。
但是subscriberId
是异步获取的,因此您需要等待测试内的完成,例如
cy.wrap(Subscriber.getSubscriber()).should(function(subscriber){
expect(subscriber.getSubsciberId()).not.to.be.null
})
请参阅wrap - Objects,了解如何使用赛普拉斯命令处理对象。
另一方面,将回调函数与.should()或.and()一起使用时,有特殊的逻辑来重新运行该回调函数,直到其中没有任何断言。
换句话说,should
将重试(最多5秒钟),直到回调内部的expect
不会失败(即您的异步调用已完成)。