Spectron测试用例的REST操作

时间:2019-04-03 08:42:20

标签: typescript jasmine spectron

给出以下E2E测试用例:

我有一个Spectron测试用例,该用例将数据放入REST端点,然后调用程序窗口以检查数据是否与我已添加到REST端点的数据相同。

var request = require("request");

describe("shoud communicate with endpoint", () => {
  it("should get data from endpoint", function (done) {
    request.get("https://reqres.in/api/users", function(error, response, body) {
      console.log(JSON.parse(body));
      console.log(response);
      done();
    });
  });
});

我设法从端点获取数据,但不知道如何向端点添加数据。

Internet上的示例正在使用Angular Project。但是使用角度依赖性超出了我的范围

0 个答案:

没有答案