blob: f8e2a91da5c3a9f2fe33ef8d916c1ac311fca381 (
plain)
1
2
3
4
5
6
7
8
9
|
function focusedElementDescription()
{
var element = accessibilityController.focusedElement;
return element.description + ', ' + element.valueDescription + ', intValue:' + element.intValue + ', range:'+ element.minValue + '-' + element.maxValue;
}
function checkFocusedElementAXAttributes(expected) {
shouldBeEqualToString('focusedElementDescription()', expected);
}
|