Risultati di tagging

This page is not available in the language you requested. You have been redirected to the English version of the page.
Link to this page copied to clipboard
Not for use with personal data

Il tagging è una funzionalità utile per organizzare, condividere e cercare scansioni all'interno della dashboard mobile di axe DevTools. Alcuni tag utili per il tuo team potrebbero essere il nome del team, il numero di build, la versione del simulatore, ecc.

Invia una scansione con un tag

Nell'esempio seguente utilizziamo il parametro withTags e alleghiamo un tag denominato "build: 0.0.1" alla scansione.

func testAccessibility() throws {
    guard let result = try axe?.run(onElement: XCUIApplication()) else {
        XCTFail()
        return
    }
    try axe?.postResult(result, withTags: ["build: 0.0.1"])
}