cy-api icon indicating copy to clipboard operation
cy-api copied to clipboard

Cypress custom command "cy.api" for end-to-end API testing

Results 22 cy-api issues
Sort by recently updated
recently updated
newest added

[![Mend Renovate](https://app.renovatebot.com/images/banner.svg)](https://renovatebot.com) This PR contains the following updates: | Package | Change | Age | Adoption | Passing | Confidence | |---|---|---|---|---|---| | [cypress](https://togithub.com/cypress-io/cypress) | [`9.7.0` -> `10.4.0`](https://renovatebot.com/diffs/npm/cypress/9.7.0/10.4.0) | [![age](https://badges.renovateapi.com/packages/npm/cypress/10.4.0/age-slim)](https://docs.renovatebot.com/merge-confidence/)...

Pretty similar to #165 I guess, but this is a request for advice. I am using nasty functions in order to store and reuse data between requests. In order to...

This issue lists Renovate updates and detected dependencies. Read the [Dependency Dashboard](https://docs.renovatebot.com/key-concepts/dashboard/) docs to learn more. ## Open These updates have all been created already. Click a checkbox below to...

When using this plugin, API request & responses are missing in allure report

enhancement

Hi, While running tests in the Cypress test runner, when I hover over the command logs, the requests/responses are added to the frame gradually. Eventually, I end up with a...

Good morning.. please, could you create a flag so that the request and response cy-api are returned when the tests are executed in headless mode. **Open mode:** ![image](https://user-images.githubusercontent.com/12953400/165305782-d3a00502-5bab-4c30-8fa4-92b2781c594a.png) - [...

enhancement

When the body looks like this : { "forwardTo": " " } , Cypress cy.api returns an error. It works fine with the cy.request and with the previous cy.api version.

Common use case: need to login, then perform authorized API calls ```js it('user cannot follow themselves', () => { const user = Cypress.env('user') cy.getLoginToken(user).then(token => { const apiUrl = Cypress.env('apiUrl')...

Hi! First of all, thank you for the plugin! It works really well. I have a question/suggestion. If I use default `cy.request()`, on failure I get this behaviour: ![image](https://user-images.githubusercontent.com/81577230/139905580-a15141ca-f0e2-44df-9082-62781aa154f5.png) So...

enhancement

I use config files to switch between environment URL's. I have multiple URL's I need to initiate with as well on my different test suites. Hence, I am not using...