Skip to main content

Why WebdriverIO?

WebdriverIO is an open source test automation framework for Node.js. With one test runner and one API you can automate web browsers, native and hybrid mobile apps, desktop apps and editor extensions, and add visual, accessibility and component testing on top. It is run by its community under the umbrella of the OpenJS Foundation.

One framework for every platform

Most teams ship more than a website. WebdriverIO lets you test all of it with the same selectors, assertions, reporters and CI setup:

PlatformHow WebdriverIO automates itStart here
Web browsersWebDriver and WebDriver BiDi in Chrome, Firefox, Safari and EdgeWeb Browsers
Web componentsComponent tests in a real browser for React, Vue, Svelte, Solid, Preact, Lit and StencilComponent Testing
Mobile appsNative, hybrid and mobile web on iOS and Android via Appium, including FlutterMobile Apps
Desktop appsElectron, Tauri and Dioxus apps on macOS, Windows and Linux, native macOS apps via AppiumDesktop Apps
Editors and extensionsVS Code extensions and browser extensionsExtensions & Editors
Visual regressionsScreen, element and full-page comparisons for web and mobileVisual Testing

The same test can even drive several of these at once, e.g. a mobile app and a web dashboard in one scenario, with Multiremote.

Built on web standards

WebdriverIO automates browsers through WebDriver and WebDriver BiDi, the W3C standards that every browser vendor implements and tests. Your tests run against the same browser builds your users have, and interactions such as clicks and key presses are dispatched by the browser itself instead of being emulated with JavaScript. WebDriver BiDi adds network mocking, console and log events and more across browsers, not only Chromium.

When you need browser-specific power, WebdriverIO gives you access to the Chrome DevTools Protocol through Puppeteer. Read more in Automation Protocols.

Community driven and openly governed

WebdriverIO is not a product of a testing vendor. The project:

  • is owned by the OpenJS Foundation, a vendor-neutral non-profit, which legally binds it to serve the interests of all its users
  • follows a public governance model: anyone can contribute, and committers and the Technical Steering Committee grow out of the community
  • has no paid tier and no feature gates; every feature is free and you can run your tests anywhere, locally or on any cloud provider
  • channels sponsorship back to the people who build it through a contributor stipend program
  • offers free community support on Discord and GitHub Discussions

Ready for coding agents

The docs, the tooling and the test artifacts are designed so that coding agents can work with WebdriverIO on their own:

  • Agent-ready docs: every page is available as Markdown, there is a curated llms.txt and a docs MCP server at https://webdriver.io/mcp.
  • WebdriverIO MCP: the @wdio/mcp server lets an agent drive browsers and mobile apps to explore your UI and verify selectors.
  • Traces: DevTools trace mode writes a Markdown transcript, screenshots and accessibility snapshots for every failing test.

See WebdriverIO for Coding Agents for the setup.

Batteries included, easy to extend

When to choose something else

WebdriverIO is a good fit when you test more than one platform, want to run against real browsers and devices, or value an independent, community-owned tool. If you only ever test a single web app in a single browser and don't need mobile, desktop or cloud devices, a browser-only tool may feel lighter to start with. If you are unsure, create a project with npm init wdio@latest and try it: the setup takes about a minute.

Next steps

Welcome! How can I help?

WebdriverIO AI Copilot