com.deque.networking.models.devtools.serializable.AxeContext.kt Maven / Gradle / Ivy
Go to download
Show more of this group Show more artifacts with this name
Show all versions of axe-devtools-android-data Show documentation
Show all versions of axe-devtools-android-data Show documentation
The Axe Devtools Android Data Library
package com.deque.networking.models.devtools.serializable
/**
* Manages global state for a set of tests relating back to one particular test run.
*/
data class AxeContext(
var axeView: AxeView? = null,
var axeDevice: AxeDevice? = null,
var screenshot: String? = null,
var axeMetaData: AxeMetaData? = null
)