TestKase
TestKase
|Docs
Accessibility TestingChrome Toolkit

Toolkit vs Web App

When to use the Chrome Toolkit and when to use the Website Scanner in the web app.

Toolkit vs Web App

Both use the same axe-core engine and push results to the same workspace. They differ in what they can reach and what they can do.

Quick comparison

CapabilityChrome ToolkitWeb App (Website Scanner)
Number of URLs per scan1 (active tab)Up to 10
Authenticated scanningUses your current browser sessionConfigurable: cookies / login form / HTTP headers
Workflow Analyzer (recorded flows)❌ no✅ yes
WCAG version / rule pack configurationUses workspace defaultsPer-scan
Element inspectionNative Chrome DevToolsPage snapshot viewer
Report export (PDF / CSV / JSON)In the web appIn the web app
Team sharingIn the web appIn the web app
Best for…Quick checks during developmentBatch audits, compliance reports

Pick the toolkit when…

  • You're actively developing and want to re-scan a page after a fix without leaving DevTools.
  • You want to scan whatever page you happen to have open, without copying URLs.
  • You want to inspect a failing element with the native Chrome picker, not a snapshot.

Pick the web app when…

  • You need to scan multiple URLs in one run.
  • You need configurable authentication (cookies / login form / headers).
  • You need a Workflow Analyzer session to catch interaction-triggered bugs.
  • You need exports or formal WCAG conformance reporting.
  • You want to share a report with an accessibility team.

Can I use both?

Yes — they share the same workspace. A common pattern is:

  1. Use the toolkit during development to catch issues as you code.
  2. Use the web app in CI or for periodic audits to produce shareable reports against a bigger URL list.