Instructions for WebdriverIO and JavaScript
Configuring your tests with WebdriverIO and JavaScript
-
In the root level of your testing folder, install the
@axe-core/watcherpackage and all of its dependencies usingnpmor your preferred package manager (for example,yarnorpnpm).npm install --save-dev @axe-core/watcher -
In your test files, import the
wdioConfig()function, thewrapWdio()function, and theWdioControllerclass from@axe-core/watcher/wdio:const { wdioConfig, wrapWdio, WdioController } = require('@axe-core/watcher/wdio') -
In your test setup code (typically in a
beforeorbeforeAllblock), wrap any existing code for creating abrowserinstance with a call towdioConfig(), while providing your API key:const ACCESSIBILITY_API_KEY = process.env.ACCESSIBILITY_API_KEY const PROJECT_ID = process.env.PROJECT_ID const browser = await wdio.remote( wdioConfig({ axe: { apiKey: ACCESSIBILITY_API_KEY, projectId: PROJECT_ID } }) )Be sure to set
ACCESSIBILITY_API_KEYandPROJECT_IDin your environment to your personal API key (found in your axe Account, API KEYS tab) and your project ID (shown at the top of these instructions when you created your project or available from the Projects page by choosing Configure project under Settings). -
Once you have a
browserinstance, create an instance of theWdioControllerclass:const controller = new WdioController(browser) -
Wrap your
browserinstance with thewrapWdio()function, providing thebrowserinstance and thecontrollerinstance:wrapWdio(browser, controller) -
Finally, ensure all test results from axe Watcher are flushed out. To do this, add the following block of code to your test teardown code (typically in an
afterEachblock):afterEach(async () => { await controller.flush() })
