Instructions for WebdriverIO Testrunner and TypeScript
Configuring your tests with WebdriverIO Testrunner and TypeScript
-
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
wdio.config.tsfile, import thewdioTestRunner()function, thewrapWdio()function, and theWdioControllerclass from@axe-core/watcher:import { wdioTestRunner, wrapWdio, WdioController } from '@axe-core/watcher' -
Before exporting your WebdriverIO configuration, wrap it with a call to
wdioTestRunner()while providing your API key:// Original code: export const config = { // Your config options here... } // Becomes: const API_KEY = process.env.API_KEY export const config = wdioTestRunner({ axe: { apiKey: API_KEY }, { // Your config options here... } }) -
In your test setup code (typically in a
beforeorbeforeAllblock), create an instance of theWdioControllerclass, and then wrap yourbrowserobject:const controller = new WdioController(browser) 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
afterFetchblock):afterEach(async () => { await controller.flush() })
