Git Product home page Git Product logo

Comments (9)

filiphric avatar filiphric commented on August 12, 2024

Hey @matifniaz I don’t think I follow. What exactly is not showing on the snapshot that should be there?

from cypress-plugin-api.

matifniaz avatar matifniaz commented on August 12, 2024

Two issues:

  1. In before have login API that is not showing.
  2. After merge with my last API "emailTemplateList"

12121212

from cypress-plugin-api.

filiphric avatar filiphric commented on August 12, 2024

So do I understand correctly that the scrolling does not work here? What OS & browser is this please?

from cypress-plugin-api.

matifniaz avatar matifniaz commented on August 12, 2024

OS - Windows 11 Browser Chrome

Not a scrolling issue. Before not showing and After the payload request response merges with the last API request.

from cypress-plugin-api.

filiphric avatar filiphric commented on August 12, 2024

oooooooh I think I understand now. I’ll take a look and make sure to fix this

from cypress-plugin-api.

filiphric avatar filiphric commented on August 12, 2024

oooooooh I think I understand now. I’ll take a look and make sure to fix this

from cypress-plugin-api.

filiphric avatar filiphric commented on August 12, 2024

hey @matifniaz can you please send a reproducible issue? I cannot seem to replicate this. before and after hooks work well, I don’t see any merging of payloads.

from cypress-plugin-api.

matifniaz avatar matifniaz commented on August 12, 2024

@filiphric - Thanks for helping us and sorry for the late response.
Please see the below code and snapshot, In the last when I click on the "After All" Request its showing the result with the last API Request/Response.
`///
const url = 'https://reqres.in';
describe("API TestCases",()=>{
before(()=>{
cy.api('GET', url + '/api/users?page=2')
.then((response) => {
expect(response).to.have.property('status', 200)
expect(response.body.data[0].email).to.equal('[email protected]')
})
})

after(()=>{
        cy.api('GET', url + '/api/users/2')
            .then((response) => {
                expect(response).to.have.property('status', 200)
                expect(response.body.data.email).to.equal('[email protected]')
            })
})

it('POST --> CREATE', () => {
cy.api({
'method': 'POST',
'url': url + '/api/users',
headers: {
'Content-Type': 'application/json'
},
body: {
"name": "AtifNiaz",
"job": "Lead SQA"
}

})
    .then((response) => {
        expect(response).to.have.property('status', 201)
        expect(response.body.name).to.equal('AtifNiaz')
        expect(response.body.job).to.equal('Lead SQA')
        expect(response.body.id).not.to.be.null
        expect(response.body.createdAt).not.to.be.null
    })

})
it('PUT --> UPDATE', () => {
cy.api({
'method': 'PUT',
'url': url + '/api/users/2',
headers: {
'Content-Type': 'application/json'
},
body: {
"name": "AtifNiaz",
"job": "Lead SQA"
}
})
.then((response) => {
expect(response).to.have.property('status', 200)
expect(response.body.name).to.equal('AtifNiaz')
expect(response.body.job).to.equal('Lead SQA')
expect(response.body.createdAt).not.to.be.null
})
})
})
`
image

from cypress-plugin-api.

filiphric avatar filiphric commented on August 12, 2024

this is how Cypress works, there’s not too much I can do with that. you will see the api call from before() hook as part of your first test and api call from after() hook in your last test.

from cypress-plugin-api.

Related Issues (20)

Recommend Projects

  • React photo React

    A declarative, efficient, and flexible JavaScript library for building user interfaces.

  • Vue.js photo Vue.js

    🖖 Vue.js is a progressive, incrementally-adoptable JavaScript framework for building UI on the web.

  • Typescript photo Typescript

    TypeScript is a superset of JavaScript that compiles to clean JavaScript output.

  • TensorFlow photo TensorFlow

    An Open Source Machine Learning Framework for Everyone

  • Django photo Django

    The Web framework for perfectionists with deadlines.

  • D3 photo D3

    Bring data to life with SVG, Canvas and HTML. 📊📈🎉

Recommend Topics

  • javascript

    JavaScript (JS) is a lightweight interpreted programming language with first-class functions.

  • web

    Some thing interesting about web. New door for the world.

  • server

    A server is a program made to process requests and deliver data to clients.

  • Machine learning

    Machine learning is a way of modeling and interpreting data that allows a piece of software to respond intelligently.

  • Game

    Some thing interesting about game, make everyone happy.

Recommend Org

  • Facebook photo Facebook

    We are working to build community through open source technology. NB: members must have two-factor auth.

  • Microsoft photo Microsoft

    Open source projects and samples from Microsoft.

  • Google photo Google

    Google ❤️ Open Source for everyone.

  • D3 photo D3

    Data-Driven Documents codes.