WebdriverIO Quickstart
Learn how to setup visual testing using the Argos WebdriverIO SDK.
Prerequisites
1
2
Take screenshots
import { browser } from "@wdio/globals";
import { argosScreenshot } from "@argos-ci/webdriverio";
describe("Integration test with visual testing", () => {
it("covers homepage", async () => {
await browser.url("http://localhost:3000");
await argosScreenshot(browser, "homepage");
});
});Congratulations on installing Argos! 👏
Additional resources
Last updated
Was this helpful?