All Downloads are FREE. Search and download functionalities are using the official Maven repository.

estro-ai.1.38.1.source-code.askForDefects_schema.json Maven / Gradle / Ivy

Go to download

Maestro is a server-driven platform-agnostic library that allows to drive tests for both iOS and Android using the same implementation through an intuitive API.

The newest version!
{
  "name": "askForDefects",
  "description": "Returns a list of possible defects found in the mobile app's UI",
  "strict": true,
  "schema": {
    "type": "object",
    "required": ["defects"],
    "additionalProperties": false,
    "properties": {
      "defects": {
        "type": "array",
        "items": {
          "type": "object",
          "required": ["category", "reasoning"],
          "additionalProperties": false,
          "properties": {
            "category": {
              "type": "string",
              "enum": [
                "layout",
                "localization"
              ]
            },
            "reasoning": {
              "type": "string"
            }
          }
        }
      }
    }
  }
}




© 2015 - 2024 Weber Informatics LLC | Privacy Policy