Cypress - 获取和发送请求


GET 和 POST 方法是应用程序编程接口 (API) 测试的一部分,Cypress 可以执行此测试。

GET 方法

要执行 GET 操作,我们将使用 cy.request() 发出 HTTP 请求,并将方法 GET 和 URL 作为参数传递给该方法。

状态码反映请求是否已正确接受和处理。代码 200(表示成功)和 201(表示已创建)。

GET 方法的实现

以下是 Cypress 中 GET 方法的实现:

describe("Get Method", function(){
   it("Scenario 2", function(){
      cy.request("GET", "https://jsonplaceholder.cypress.io/comments", {
      }).then((r) => {
         expect(r.status).to.eq(200)
         expect(r).to.have.property('headers')
         expect(r).to.have.property('duration')
      });
   })
})

执行结果

输出如下:

Get Method

POST 方法

使用 POST 方法时,我们实际上是在发送信息。如果我们有一组实体,我们可以使用 POST 在末尾追加新的实体。

要执行 POST 操作,我们将使用 cy.request() 发出 HTTP 请求,并将方法 POST 和 URL 作为参数传递给该方法。

POST 方法的实现

以下是 Cypress 中 POST 方法的实现:

describe("Post Method", function(){
   it("Scenario 3", function(){
      cy.request('https://jsonplaceholder.cypress.io/users?_limit=1')
      .its('body.0') // yields the first element of the returned list
      // make a new post on behalf of the user
      cy.request('POST', 'https://jsonplaceholder.cypress.io/posts', {
         title: 'Cypress',
         body: 'Automation Tool',
      })
   })
});

执行结果

输出如下:

Post Method
广告