Classe di Test di Esempio

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

Nel seguente frammento di codice, puoi vedere un esempio completo di test per Espresso. Innanzitutto, la AxeDevTools libreria viene importata e poi inizializzata. Passare il registro delle informazioni ad axe DevTools nel @Before blocco consente la connessione alla gerarchia delle viste. Nello stesso blocco, viene fornito un esempio su come personalizzare la configurazione. Infine, viene eseguita una scansione e i risultati vengono caricati sul dashboard. Trova maggiori dettagli su ogni parte di questo frammento nella nostra documentazione.

class ExampleTest {

    private val axe = AxeDevTools()

    init {
        // Connect using an API key 
        axe.startScanSession(apiKey = "<DEQUE_APIKEY>",
        projectId = "<DEVHUB_PROJECT_ID>")
        // Include the projectId to post results to axe Developer Hub (recommended)
    }

    @Before
    fun setup() {
        // Pass the information registry to axe DevTools
        axe.setInstrumentation(InstrumentationRegistry.getInstrumentation())

        // Optional: Add tags or utilize other customization features here
        axe.tagScanAs(setOf("Team A"))
    }

    @Test
    fun foobar() {
        // Scan the app for accessibility issues and upload to the dashboard
        axe.scan()?.uploadToDashboard()
        axe.tearDown()
    }
}