Giter Club home page Giter Club logo

Comments (7)

BatyrSeven avatar BatyrSeven commented on July 18, 2024 2

You can set scale factor for Chrome in launch options:

// cypress.config.js
setupNodeEvents(on, config) {
  getCompareSnapshotsPlugin(on, config)
  
  on('before:browser:launch', (browser, launchOptions) => {
    if (browser.name === 'chrome') {
      // force screen to be non-retina
      launchOptions.args.push('--force-device-scale-factor=1')
    }

    return launchOptions
  })
}

from cypress-image-diff.

nmkataoka avatar nmkataoka commented on July 18, 2024 1

Thanks @Lyokolux , the logic there is pretty simple: https://github.com/meinaart/cypress-plugin-snapshots/blob/master/src/tasks/matchImageSnapshot.js#L32. I'll try it out.

from cypress-image-diff.

yuyan68 avatar yuyan68 commented on July 18, 2024 1

I am facing the same issue. Set scale factor for Chrome in launch option doesn't work well for me. Force resolution size following create double size (2000*1320) when I do cypress open and cypress run.

{
  "viewportWidth": 1000, // Default value: 1280
  "viewportHeight": 660 // Default value: 720
}

When I run in CI I can get correct resolution (1000*660). Does anyone figure out a good solution? I am hoping there could be some optional parameters we can set for screenshot size e.g. { capture: "viewport" } in this plugin.

from cypress-image-diff.

Lyokolux avatar Lyokolux commented on July 18, 2024

I am looking for this too because we are using MacBooks at my company but I would integrate it in the CI too.

from cypress-image-diff.

Lyokolux avatar Lyokolux commented on July 18, 2024

Here is a visual regression plugin that does it with the resizeDevicePixelRatio key in the configuration: https://github.com/meinaart/cypress-plugin-snapshots#make-changes-to-default-configuration

from cypress-image-diff.

Lyokolux avatar Lyokolux commented on July 18, 2024

You can set scale factor for Chrome in launch options:

// cypress.config.js
setupNodeEvents(on, config) {
  getCompareSnapshotsPlugin(on, config)
  
  on('before:browser:launch', (browser, launchOptions) => {
    if (browser.name === 'chrome') {
      // force screen to be non-retina
      launchOptions.args.push('--force-device-scale-factor=1')
    }

    return launchOptions
  })
}

This is great workaround, but it does not provide a solution for every browsers. I checked for Firefox and didn't find a solution.
Maybe we can add this workaround on the README after the warning though: it is possible, but only on chrome.

from cypress-image-diff.

admapop avatar admapop commented on July 18, 2024

You can set scale factor for Chrome in launch options:

// cypress.config.js
setupNodeEvents(on, config) {
  getCompareSnapshotsPlugin(on, config)
  
  on('before:browser:launch', (browser, launchOptions) => {
    if (browser.name === 'chrome') {
      // force screen to be non-retina
      launchOptions.args.push('--force-device-scale-factor=1')
    }

    return launchOptions
  })
}

Really good workaround, it's worked in my case!
Thanks!

from cypress-image-diff.

Related Issues (20)

Recommend Projects

  • React photo React

    A declarative, efficient, and flexible JavaScript library for building user interfaces.

  • Vue.js photo Vue.js

    🖖 Vue.js is a progressive, incrementally-adoptable JavaScript framework for building UI on the web.

  • Typescript photo Typescript

    TypeScript is a superset of JavaScript that compiles to clean JavaScript output.

  • TensorFlow photo TensorFlow

    An Open Source Machine Learning Framework for Everyone

  • Django photo Django

    The Web framework for perfectionists with deadlines.

  • D3 photo D3

    Bring data to life with SVG, Canvas and HTML. 📊📈🎉

Recommend Topics

  • javascript

    JavaScript (JS) is a lightweight interpreted programming language with first-class functions.

  • web

    Some thing interesting about web. New door for the world.

  • server

    A server is a program made to process requests and deliver data to clients.

  • Machine learning

    Machine learning is a way of modeling and interpreting data that allows a piece of software to respond intelligently.

  • Game

    Some thing interesting about game, make everyone happy.

Recommend Org

  • Facebook photo Facebook

    We are working to build community through open source technology. NB: members must have two-factor auth.

  • Microsoft photo Microsoft

    Open source projects and samples from Microsoft.

  • Google photo Google

    Google ❤️ Open Source for everyone.

  • D3 photo D3

    Data-Driven Documents codes.