https://cypress.io logo
Join Discord
Powered by
# general-chat
  • l

    lively-library-21721

    01/31/2023, 11:54 AM
    Thank you, found the issue, I need to add delay until response is ready before extracting the value.
  • b

    busy-lamp-21053

    01/31/2023, 3:30 PM
    Hello, Can someone recommend me a good open-source lib/plugin to create a small suite for visual regression testing ? I don’t want to use Applitools or Percy, however, I’d like some reliability.
  • c

    colossal-table-38461

    01/31/2023, 4:15 PM
    Hello All, I have did the POC for Mailosaur to test Email Content & SMS in Cypress. We are using Azure Devops Pipeline. It will work in CICD as well, right ? Anybody did it with CICD Pipeline ?
  • b

    best-flower-17510

    01/31/2023, 4:44 PM
    @careful-insurance-62240 would be a great person to ask - https://qaautomationlabs.com/how-to-setup-and-run-cypress-test-cases-in-azure-devops-pipeline/
  • t

    thousands-scooter-31458

    01/31/2023, 6:07 PM
    Howdy, when can we expect cypress v13 to be released? We're trying to scope out work upgrading to cy 12 in our org but would wait if cy13 is coming up soon
  • b

    best-flower-17510

    01/31/2023, 6:26 PM
    Hey @thousands-scooter-31458 you can follow our priorities here - https://github.com/orgs/cypress-io/projects/13/views/1 v13 is currently in the "building" phase 😀
  • i

    icy-oyster-18375

    02/01/2023, 12:42 AM
    Hi team. I have been trying to implement BDD with my cypress scripts and have been facing this error for a long time. Please look into my question https://stackoverflow.com/questions/75281838/integrating-bdd-testing-with-cypress-12-3-0-integration-tests-throws-expected Any help is much appreciated as I have been stuck with this issue for a long time @freezing-piano-2792
  • f

    freezing-scientist-25758

    02/01/2023, 1:40 PM
    I have tests that only the bodies are duplicating like this. Anyone have any ideas as to why?
    Copy code
    describe('Contract Test', () => {
      beforeEach(async () => {
        cy.visit('login');
        cypressUtil.logIn();
        await CypressUtilities.removeFixedElements();
        cy.wait(5000);
        cy.visit('my-account');
        await CypressUtilities.removeFixedElements();
        cy.wait(50000);
      })
    
      it('valid email', () => {
        cy.get('[data-cy="input_form_EmailAddress"]')
          .clear()
          .type('erin@morriscs.com');
        cy.get('[data-cy="input_form_CellPhone"]')
          .click();
        cy.get('div.ed-card-form--item--errors')
          .should('not.exist');
      })
  • f

    freezing-piano-2792

    02/01/2023, 2:20 PM
    @icy-oyster-18375, you're defining multiple
    setupNodeEvents
    in cypress.config.ts
  • g

    gray-kilobyte-89541

    02/01/2023, 3:28 PM
    don't use
    async
    in your hooks and tests
  • f

    freezing-scientist-25758

    02/01/2023, 3:29 PM
    Are you referring to the
    beforeEach
    cause I need that to make sure the removeFixedElements happens after the pages are loaded.
  • f

    freezing-scientist-25758

    02/01/2023, 3:42 PM
    That worked using cy.wait instead
  • l

    late-planet-4481

    02/01/2023, 3:54 PM
    You'll be happier if you figure out how to eliminate all those fixed waits 🙂 Maybe there's an element state you can put a
    .should()
    on?
  • f

    freezing-scientist-25758

    02/01/2023, 3:56 PM
    There isn't.... I'm not sure what you are getting at.
  • l

    late-planet-4481

    02/01/2023, 4:42 PM
    I'm referring to these
  • e

    echoing-painting-40909

    02/01/2023, 4:53 PM
    Hi you can find the requirements here : https://www.cypress.io/ambassadors
  • s

    sticky-energy-17458

    02/01/2023, 5:06 PM
    Can anyone help me with running test cases parallely without cypress cloud through Circle CI
  • g

    gray-kilobyte-89541

    02/01/2023, 5:23 PM
    https://glebbahmutov.com/blog/cypress-parallel-free/
  • c

    creamy-cricket-77058

    02/02/2023, 6:57 AM
    hi. i am still observing the same issue. did this get resolved?
  • c

    cuddly-thailand-33926

    02/02/2023, 8:56 AM
    Hey guys, I'm trying to create Cypress Custom methods at runtime, So something like Const addClick: (ofObject) => Cypress.Commands.add("Click" + ofObject, {prevSubject:true}, (subject) => { cy.wrap(subject).click() }) export default{ addClick } ...... //Inside e2e.js Import gen from "../gen.js" gen.addClick("Button") //Inside spec Cy.get("#element").ClickButton() ... Note: not the exact code but the principal, I got stuck, if didn't work, any Idea how I can work around adding custom commands at runtime?
  • a

    ancient-beach-22254

    02/02/2023, 6:03 PM
    Hello, I'm trying to create an action on github but it's showing the following error:
    Copy code
    Browserslist: caniuse-lite is disabled. Please run:
    npx browserslist@latest --update-db
    does anyone know how to resolve?
  • f

    freezing-scientist-25758

    02/02/2023, 7:36 PM
    I have this button that I need to click. This is not working...
    Copy code
    cy.get('[data-cy="my_account_add_fav"]')
          .trigger('mouseover').click();
        cy.wait(500);
    I have tried
    .click()
    and
    .click({force: true})
    and
    trigger('click')
    as well as the above. I have no idea why nothing is working. The error is coming up because the click doesn't actually click. If it does click a pop up box comes up which includes 2
    buyNow
    buttons. Which is what it would get and click on if the original
    .click()
    worked. So, it appears like it works in the test body and in the console when I check it BUT it doesn't bring up the pop up in the window to the right. It is very strange.
    w
    d
    • 3
    • 4
  • a

    adamant-magazine-53646

    02/03/2023, 3:24 AM
    Hi Folks, I am having issue in accessing clipboard in cypress when running the test on google chrome headless
  • a

    adventurous-yacht-20396

    02/03/2023, 5:13 AM
    Some praise before I ask for advice later 😄 Cypress 12 has been one of the coolest releases the team did in a long time. Combined with Cloud, we're saving our project from a lot of regressions now due to the fast turnaround time we have on identifying issues with tests (is it the test, or is it a bug, etc). Cheers al!
  • c

    creamy-cricket-77058

    02/03/2023, 10:19 AM
    observing same issue
  • n

    narrow-cpu-2218

    02/03/2023, 10:55 AM
    hello, i have a short question, is it okay if i ask here instead of making a post in #1064946933187235880 ?
  • l

    late-dinner-1440

    02/03/2023, 9:57 PM
    Hi, is there a way to rerun pipelines in the cloud connected to GitLab?
  • a

    adorable-smartphone-87280

    02/03/2023, 11:47 PM
    @gray-kilobyte-89541 This is the first video you've published in a while where I just have no idea what's going on. I really need to dive into lodash more I think.

    https://www.youtube.com/watch?v=eVe4ySgW0qw&ab_channel=glebbahmutov▾

  • g

    gray-kilobyte-89541

    02/04/2023, 1:51 AM
    I don't think this is a video after a long break, I mean videos appear every couple of days, so watch my playlist https://www.youtube.com/playlist?list=PLP9o9QNnQuAYYRpJzDNWpeuOVTwxmIxcI
  • a

    adorable-smartphone-87280

    02/04/2023, 2:34 AM
    I should rephrase. In most of your videos, I know what’s going on. For the first time in a while, you’ve made a video that is confusing to me. I have things to read about now.
1...108109110...127Latest