{
    "description": {
        "author": "Salesforce",
        "text": [
            "Selector: briefcase_object_row.",
            "Represents the Android Briefcase Object row view.",
            "Verify the downloaded objects."
        ]
    },
    "implements": "utam-salesforceapp/pageObjects/offlineapp/offlineObjectRow",
    "exposeRootElement": true,
    "type": [
        "clickable",
        "actionable"
    ],
    "platform": "native",
    "profile": [
        {
            "platform": [
                "android_phone",
                "android_tablet"
            ]
        }
    ],
    "elements": [
        {
            "name": "title",
            "selector": {
                "uiautomator": "resourceId(\"briefcase_object_row_label/title\")"
            }
        },
        {
            "name": "text",
            "selector": {
                "uiautomator": "resourceId(\"briefcase_object_row_text\")"
            }
        }
    ],
    "methods": [
        {
            "name": "getTitle",
            "compose": [
                {
                    "element": "title",
                    "apply": "getText"
                }
            ]
        },
        {
            "name": "getText",
            "compose": [
                {
                    "element": "text",
                    "apply": "getText"
                }
            ]
        },
        {
            "name": "clickRow",
            "compose": [
                {
                    "element": "root",
                    "apply": "click"
                }
            ]
        }
    ]
}