Reposting the issue from #510 (reply in thread) (/CC @Robdel12)
when the percy cli iterates over the widths:
|
// trigger resize events for other widths |
|
for (let width of widths) { |
|
await page.resize({ width, height: conf.minHeight }); |
|
} |
it will cause the browser to at first request a different image from the sourceset / based on CSS but then cancel that request when the image is no longer needed. You may need to make a
await this.network.idle() call between sizes.