Tag Results
Not for use with personal data
Tagging is a helpful feature to organize, share and search for scans within the axe DevTools Mobile Dashboard. Some helpful tags for your team may be the team name, build number, simulator version, etc.
Tagged scans are visible to everyone within your organization, whereas scans without tags are visible only to the user that created them.
Send a Scan with a Tag
Add the key tags
in the settings object, with the value(s) of any tag you'd like to add. In the JavaScript example below, a scan will be pushed to the dashboard with two tags, "v0.0.1" and "iOS 17.4". Note: tags can be added to axeSettings
with or without the scanName
key.
const axeSettings = {
apiKey: '<your-api-key-here>',
scanName: '<your-scan-name-here>',
tags: ['v0.0.1', 'iOS 17.4']
}
const result = await driver.execute('mobile: axeScan', axeSettings)