Upload Results to Mobile Dashboard
Not for use with personal data
Once the scan has finished it is automatically published to the axe DevTools Mobile Dashboard!
The axe DevTools Mobile Dashboard is a central location where your whole team can view and manage accessibility issues found in your app.
From the dashboard you are able to:
- Find results for accessibility scans
- Group scans
- Share a scan/group of scans
- Filter scans
- Decide which results matter most and adapt your tests
Visit the docs for axe DevTools Mobile Dashboard to learn more.
Note: You can disable posting scan results to the dashboard, to reduce the number of network requests and improve scan speed. The default value of uploadToDashboard
is true. Set this value to false to disable the upload.
const axeSettings = {
apiKey: "<your-api-key-here>",
uploadToDashboard: false
}
const result = await driver.execute('mobile: axeScan', axeSettings)
At this point, you can navigate to the next screen in your app and take another scan.