Wait for background images
Wait for CSS background images to load before capturing with the waitForBackgroundImages stabilization option.
Flagging elements
<section class="hero" data-visual-test-wait-bg-img>…</section>Scanning the whole document
await argosScreenshot(page, "homepage", {
stabilize: { waitForBackgroundImages: true },
});cy.argosScreenshot("homepage", {
stabilize: { waitForBackgroundImages: true },
});await argosScreenshot(page, "homepage", {
stabilize: { waitForBackgroundImages: { selector: ".hero, [data-bg]" } },
});Disabling it
Last updated
Was this helpful?