1 function focusedElementDescription()
3 var element = accessibilityController.focusedElement;
4 return element.helpText + ', ' + element.valueDescription + ', intValue:' + element.intValue + ', range:'+ element.minValue + '-' + element.maxValue;
7 function checkFocusedElementAXAttributes(expected) {
8 shouldBeEqualToString('focusedElementDescription()', expected);