https://cypress.io logo
Join Discord
Powered by
# help
  • c

    colossal-match-42171

    12/05/2022, 6:53 PM
    beforeEach(() => { cy.session('EMSession', () => { baseSteps.navigateToApp(); baseSteps.selectohid(); baseSteps.login(constants.username_ohid, constants.password_ohid); // sets a cookie baseSteps.setTeamContext(constants.TEAM_NAME); }) })
  • c

    colossal-match-42171

    12/05/2022, 6:54 PM
    i changed the steps to this
  • c

    colossal-match-42171

    12/05/2022, 6:55 PM
    but the problem here is about interacting with the app.i don't see the website interaction and the tests fail bcoz of it
  • c

    colossal-match-42171

    12/05/2022, 6:58 PM
    any ideas plz?
  • f

    fresh-doctor-14925

    12/05/2022, 7:50 PM
    Aha sorry didn t see you already had a
  • d

    dry-scooter-25612

    12/05/2022, 9:46 PM
    As you are colleagues I am making an automated process of password recovery, I have 2 Script the first runs and sends the recovery link to this public inbox: https://www.mailinator.com/ the second Script, is to perform the entire process of changing password, I have the 2 functional detail is that the URL sent to the mail, that process I do manually that is to copy that url and place it in my script and; that the process continues normally. I have tried to do it in many ways but I don't know how, could you give me an orientation?
  • l

    lemon-holiday-89994

    12/05/2022, 11:14 PM
    Is there a way to have cy.origin wait for the new page to load. At the moment, it's taking 30-45 seconds for the redirect to work correctly and open the new page. I've tried a variety of places to add the {timeout: 45000}, but am not seeing it work for me
  • d

    dry-scooter-25612

    12/05/2022, 11:47 PM
    @lemon-holiday-89994 have you tried to implement cy.wait(10000);
  • g

    gray-beard-8992

    12/06/2022, 12:04 AM
    has anyone encounter
    Copy code
    EACCES: permission denied, open '/github/home/.config/Cypress/cy/production/cache'
    Error: EACCES: permission denied, open '/github/home/.config/Cypress/cy/production/cache'
    errors in CI?
  • a

    adorable-smartphone-87280

    12/06/2022, 2:20 AM
    Did you recently upgrade Xcode or MacOS? Could be a permissions thing with the CLI Git tooling.
  • t

    tall-animal-58018

    12/06/2022, 6:02 AM
    Hello everyone, does everyone here speak German and have expirience with Cypress and Synology NAS System? Regards ✌️
  • t

    tall-animal-58018

    12/06/2022, 6:05 AM
    I would like to install cypress on the Synology NAS Server with Docker or another way. Cypress should test several Websites on the same Client. Cypress should be accessible via the Internet/WAN. Is this recommend?
  • t

    tall-animal-58018

    12/06/2022, 6:05 AM
    And does someone have expirience to do that?
  • t

    tall-animal-58018

    12/06/2022, 6:06 AM
    *does someone
  • f

    fresh-doctor-14925

    12/06/2022, 7:28 AM
    I wouldn't recommend adding arbitrary waits like this as a permanent solution. Increases the risk of test flake, and is considered an antipattern in Cypress You can use
    wait(10000)
    to what happens when Cypress is given some extra time, but then you should always replace that with something more definite. For example: looking for elements that will appear when the page has loaded, waiting for api calls to resolve @lemon-holiday-89994, 45 seconds sounds excessive. Can you share a video recording
  • c

    crooked-microphone-65524

    12/06/2022, 8:15 AM
    How to capture hover UI /tooltip in cypress?I want to capture the screenshot and then compare
  • f

    flaky-eve-68891

    12/06/2022, 8:51 AM
    Does anyone know in the free plan on Cypress Cloud - can you delete test runs to reset the 500 limit? We can't afford cypress just now but I'm sure we'll use it in the future.
    f
    • 2
    • 2
  • f

    fresh-doctor-14925

    12/06/2022, 9:48 AM
    You're unlikely to get an answer to this question because it is too vague. Take a look at #763097415896268840 for some tips on how to improve your question
  • c

    crooked-microphone-65524

    12/06/2022, 10:25 AM
    1) hover a button and hover background is displayed. Want to capture the hover background color .realHover() using cy.matchImageSnapshot() .But there is no hover background color captured.Do you have any idea?
  • c

    crooked-microphone-65524

    12/06/2022, 10:27 AM
    2)There is tooltip displayed when hover/click a tab.Want to capture the tooltip using cy.matchImageSnapshot() .But there is no tooltip captured.Do you have any idea?
    f
    • 2
    • 1
  • v

    victorious-advantage-96717

    12/06/2022, 11:27 AM
    I'm having issue with scrolling on modal and I tried to run some examples that Gleb prepared for version 9.7.0. As I can see scroll is not performing here either for me. I assume when I pin scrollTo command it should be already scrolled to the right on snapshot, right?
  • g

    gray-kilobyte-89541

    12/06/2022, 12:30 PM
    if you search https://cypress.tips/search for "hover" you can find my solution
  • c

    crooked-microphone-65524

    12/06/2022, 12:36 PM
    Can I know which item is suitable?
  • t

    tall-winter-88846

    12/06/2022, 12:38 PM
    hello 🙂 does anyone have any idea if i can set a certain chrome version for running the cypress tests?
  • s

    stocky-kilobyte-57323

    12/06/2022, 12:43 PM
    Using Cypress with Laravel. My E2E tests are running on the baseUrl set in cypress.config.js, but i'm only getting 404's on component testing, and it's not using my site.test domain, but it tries to load from this url that i can see in the networks tab. Request URL:
    http://localhost:5174/__cypress/iframes//Users/macuser/code/nkdb/cypress/component/Button.cy.js
  • s

    stocky-kilobyte-57323

    12/06/2022, 12:44 PM
    A nudge in the right direction would really be appreciated
  • g

    green-jordan-14676

    12/06/2022, 12:47 PM
    Hello. Kindly anyone help me in loading issue. we tried with cy.wait(), intercept() and waituntil() but still getting same loading issues in few test cases. is there any other solution for the same?
  • d

    dry-ice-92667

    12/06/2022, 12:50 PM
    Hi Team , Can anyone help me , I have a framework with both Javascript and Typescript , and I have 2 e2e file in both js and ts and commands file in both js and ts . Its showing error to combine the support files. Can anyone help me ?
  • m

    millions-scientist-9990

    12/06/2022, 1:22 PM
    How can I clean up the docker files created by running cypress in docker?
  • c

    colossal-match-42171

    12/06/2022, 2:04 PM
    my first test fails countless times
1...221222223...252Latest