enough-truck-68085
11/18/2022, 6:33 PMcy.intercept('GET', '/data/pacing?**').as('pacingRequest');
You don't need to specific a glob pattern before /data
to match on your base url.
https://docs.cypress.io/api/commands/intercept#Matching-urlsquare-honey-48197
11/18/2022, 6:34 PMroutes
at the top of the command pane is showing 0 matches:square-honey-48197
11/18/2022, 6:41 PMsquare-honey-48197
11/18/2022, 6:41 PMhappy-dinner-13480
11/18/2022, 7:37 PMtypescript
cy.el('inputEmailAddress').type('********@**.com');
cy.el('inputPassword').type('******');
just to test if the user can log in, but sometimes on the CI Cypress will type the password in the same input as the email address. Does Cypress not wait for a type
command to finish before moving to the next command?gray-kilobyte-89541
11/18/2022, 7:41 PMhappy-dinner-13480
11/18/2022, 8:45 PMgray-kilobyte-89541
11/18/2022, 9:57 PMbig-sundown-77934
11/18/2022, 10:05 PMacceptable-fall-11897
11/19/2022, 4:14 AMbored-coat-44991
11/19/2022, 7:00 AMstale-wire-41120
11/19/2022, 3:26 PMstale-wire-41120
11/19/2022, 3:45 PMstale-wire-41120
11/19/2022, 3:51 PMnice-controller-92461
11/19/2022, 6:19 PMmysterious-belgium-25713
11/19/2022, 6:20 PMmysterious-belgium-25713
11/19/2022, 6:20 PMnice-controller-92461
11/19/2022, 6:22 PMmysterious-belgium-25713
11/19/2022, 6:23 PMnice-controller-92461
11/19/2022, 6:26 PMnice-controller-92461
11/19/2022, 6:36 PMmysterious-belgium-25713
11/19/2022, 7:26 PMjs
const { defineConfig } = require("cypress");
module.exports = defineConfig({
e2e: {
experimentalSessionAndOrigin: true,
setupNodeEvents(on, config) {
// implement node event listeners here
},
},
});
And this is my test file.
js
describe('empty spec', () => {
it('passes', () => {
cy.visit('https://example.cypress.io')
cy.origin('https://the-internet.herokuapp.com/', () => {
cy.visit('https://the-internet.herokuapp.com/')
cy.contains('Checkboxes').click()
})
})
})
mysterious-belgium-25713
11/19/2022, 7:27 PMmysterious-belgium-25713
11/19/2022, 7:27 PMbitter-judge-96754
11/19/2022, 9:02 PMacceptable-fall-11897
11/20/2022, 3:47 AMeager-zoo-47289
11/20/2022, 10:07 AMkind-artist-92362
11/20/2022, 3:10 PMrough-jordan-79228
11/20/2022, 5:58 PMgray-kilobyte-89541
11/20/2022, 8:39 PM