Injecting CSS
Add CSS while taking the screenshot
// Usage in Playwright or Puppeteer
await argosScreenshot(page, "my-screenshot", {
argosCSS: `iframe { display: none; }`,
});
// Usage in Cypress
cy.argosScreenshot("my-screenshot", {
argosCSS: `iframe { display: none; }`,
});Add CSS in your code
.__argos__ iframe {
display: none;
}Was this helpful?