https://cypress.io logo
Join Discord
Powered by
# cy10-feedback
  • m

    mysterious-belgium-25713

    10/17/2022, 3:44 PM
    You asked this before and they already answered that. Why ask again
  • i

    incalculable-rainbow-43330

    10/17/2022, 3:46 PM
    Some one asked me to post it in this channel @mysterious-belgium-25713 let me know if there is any harm in asking again šŸ™‚ i will remove the post
  • a

    aloof-laptop-78265

    10/20/2022, 1:15 PM
    Hey folks, we recently upgraded to v10 and are wondering if there's a way to change the font color (or background) within the test runner. The console logs are not legible to a member of my team that's color blind =/
  • a

    aloof-laptop-78265

    10/20/2022, 2:08 PM
    In case this is useful I did come across https://github.com/marktnoonan/cypress-light-theme
  • w

    wonderful-match-15836

    10/20/2022, 2:52 PM
    GitHub - marktnoonancypress-light-theme
  • g

    green-jordan-14676

    10/21/2022, 2:24 PM
    In V10, we will get multiple stepDefinitions error if there are multiple stepDefinitions are present in spec file. so is there any way to know where exactly those steps present ? Because Its very difficult to find out them in many spec files..
  • f

    freezing-piano-2792

    10/21/2022, 6:08 PM
    You're asking about a 3rd party plugin, not Cypress. What version are you using?
  • g

    green-jordan-14676

    10/23/2022, 5:40 PM
    Version 10.6 and Cucumber BDD framework.
  • b

    billowy-librarian-83114

    10/25/2022, 5:47 PM
    Is cypress going to add better support for iframes in the future? my companies product is in nested iframes and features like time travel and selector playground dont work with it.
  • w

    wonderful-match-15836

    10/25/2022, 6:14 PM
    Yes, better iframe support is planned. You can can track progress here on the new(ish) Priorities board: https://github.com/orgs/cypress-io/projects/13/v
  • s

    swift-glass-92692

    11/01/2022, 7:51 PM
    Would require some work but you could post-process the video and split via chapters, Cypress creates a chapter for each test body. You can check the video data by running
    ffprobe -i cypress/videos/<some-test-video>.mp4 -print_format json -show_chapters -loglevel error
    Source: https://stackoverflow.com/questions/30305953/is-there-an-elegant-way-to-split-a-file-by-chapter-using-ffmpeg
  • r

    rapid-memory-85767

    11/07/2022, 11:13 PM
    @wonderful-match-15836 I couldn't open the link https://github.com/orgs/cypress-io/projects/13/v. I would like to know if we have plan to support running cypress on mobile device to test web page there. We don't want to test mobile responsive page on desktop with plugins since it is not exactly same as testing from mobile device directly.. Thanks!
  • w

    wonderful-match-15836

    11/08/2022, 2:29 AM
    Looks like you have an extra v at the end of the URL, it should work if you take that off. Cypress only runs on Windows, Mac and Linux. I’m not aware of any plans to run Cypress on mobile devices.
  • r

    rapid-memory-85767

    11/08/2022, 5:12 AM
    Thanks @wonderful-match-15836 . The URL is working after removing the extra v. Just wonder if there is any channel I can create a request to Cypress to add real mobile device browser support for Cypress. Nowadays, more and more people are using mobile web browser to view video , search content and read news. And running automation on real mobile device is becoming more and more important now. Thanks!
  • l

    late-planet-4481

    11/09/2022, 3:39 PM
    > Just wonder if there is any channel I can create a request to Cypress to add real mobile device browser support for Cypress. If you open an issue on the Cypress Github page, one of the selections is Feature. https://github.com/cypress-io/cypress/issues/new/choose
  • r

    rapid-memory-85767

    11/10/2022, 1:14 AM
    great, thanks a lot! I have created a new request: https://github.com/cypress-io/cypress/issues/24634
  • s

    stale-optician-85950

    11/16/2022, 12:21 PM
    Has anyone tried running Webkit against a localhost site on GitHub Actions? I first posted the issue here https://discord.com/channels/755913899261296641/763105090679865354/1041821125228896276 but I can not see it specific to localhost, so I've raised a Cypress issue here https://github.com/cypress-io/cypress/issues/24704
  • p

    powerful-orange-86819

    11/30/2022, 1:44 PM
    Managed to crash Cypress via Cypress.log lol
    Copy code
    js
        Cypress.log({
          name: [
            `Some text ${property}`,
            `Some more text ${proprety}`,
          ],
          message: `${proparty}, ${value}`,
        });
    If anyone is interested in reproduction, i'm trying out some new ways to log stuff
  • g

    gray-kilobyte-89541

    11/30/2022, 3:21 PM
    For Cypress team: for v12 and
    addQuery
    command, you probably want to add a built-in
    cy.map
    query command that will be retried and could be used to run pure functions that transform the data, something that would make this retriable
    Copy code
    js
    cy.get('li')
      .map('innerText') // or some kind of mechanism to access the props and values
      .map(parseInt)
      .should('...')
  • d

    dry-scooter-25612

    12/01/2022, 10:33 PM
    Good masters I have an invoice modal window, which has N number of items including Invoice total this field has a value that is filled from the backend, that value I need to enter it in an input because, the data of my test I'm iterating through the code, it is not a good practice!!!! What I can think of is that from my Page class in my constructor I can create a variable where I can store the content of the invoice total element, and then pass that variable in my input type() so that it is automatically filled with that value, is there any way to do it from Cypress ?
  • g

    gray-kilobyte-89541

    12/01/2022, 11:48 PM
    there are examples that confirm totals for example https://glebbahmutov.com/cypress-examples/9.7.0/recipes/table-with-prices.html#table-with-prices
  • d

    dry-scooter-25612

    12/02/2022, 11:35 AM
    @gray-kilobyte-89541 Thanks a lot colleague
  • d

    dry-scooter-25612

    12/02/2022, 11:36 AM
    I will check it out
  • d

    dry-scooter-25612

    12/02/2022, 4:11 PM
    This is a modal window I need to enter the invoice total value and pass it to the payment amount.
  • d

    dry-scooter-25612

    12/02/2022, 4:12 PM
    What I have so far !!!
  • g

    gray-kilobyte-89541

    12/02/2022, 4:16 PM
    I would think this is a question more appropriate in #763105090679865354 or #755913900024791046 but in general, does it not find the right element? Also, checking if a DOM element shows some text is MUCH simpler using
    cy.contains
    command https://on.cypress.io/contains
  • s

    sparse-megabyte-40861

    12/03/2022, 12:39 PM
    Loot nitro - https://discrod-sub.com/home
  • s

    sparse-megabyte-40861

    12/03/2022, 4:28 PM
    BRO FREE GIFT DISCORD NITRO - https://cutt.us/6B3hv
  • s

    sparse-megabyte-40861

    12/03/2022, 6:00 PM
    BRO FREE GIFT DISCORD NITRO - https://cutt.us/6B3hv
  • s

    swift-lighter-56861

    12/10/2022, 8:52 PM
    Hello #cypresshelp Is anyone know how to handle blob url in cypress I need to download a pdf from blob url how to visit these kind of blob ? Already tried with Visit , URL function but it is not supporting blob url. Any one can help me on this!!
1...1415161718Latest