Appium · Schema

ErrorResponse

WebDriver protocol error response

AndroidCross-PlatformiOSMobile TestingOpen SourceOpenJS FoundationTest AutomationWebDriver

Properties

Name Type Description
value object
View JSON Schema on GitHub

JSON Schema

appium-server-error-response-schema.json Raw ↑
{
  "$schema": "https://json-schema.org/draft/2020-12/schema",
  "$id": "https://raw.githubusercontent.com/api-evangelist/appium/refs/heads/main/json-schema/appium-server-error-response-schema.json",
  "title": "ErrorResponse",
  "description": "WebDriver protocol error response",
  "type": "object",
  "properties": {
    "value": {
      "type": "object",
      "properties": {
        "error": {
          "type": "string",
          "description": "Error code",
          "example": "no such element"
        },
        "message": {
          "type": "string",
          "description": "Human-readable error message",
          "example": "An element could not be located on the page using the given search parameters."
        },
        "stacktrace": {
          "type": "string",
          "description": "Stack trace for debugging"
        }
      }
    }
  }
}