我正在使用restler在node中运行http请求,我想在一个排毒测试中运行一个。
例如:我要创建一个用户,并在成功请求后,尝试使用先前创建的用户帐户登录到我的应用程序。
如何实现?到目前为止,我只有以下代码。
login() {
return it("login", async () => {
let testAccount = await getTestAccountDetails();
await restler
.post("/user", JSON.parse(testAccount))
.on("complete", async () => {
await element(by.id("emailTxtInput")).tap();
await element(by.id("emailTxtInput")).typeText(
testAccount.user.email
);
});
});
}
谢谢