OLD | NEW |
1 function focusedElementDescription() | 1 function focusedElementDescription() |
2 { | 2 { |
3 var element = accessibilityController.focusedElement; | 3 var element = accessibilityController.focusedElement; |
4 return element.deprecatedHelpText + ', ' + element.valueDescription + ', in
tValue:' + element.intValue + ', range:'+ element.minValue + '-' + element.maxVa
lue; | 4 return element.description + ', ' + element.valueDescription + ', intValue:
' + element.intValue + ', range:'+ element.minValue + '-' + element.maxValue; |
5 } | 5 } |
6 | 6 |
7 function checkFocusedElementAXAttributes(expected) { | 7 function checkFocusedElementAXAttributes(expected) { |
8 shouldBeEqualToString('focusedElementDescription()', expected); | 8 shouldBeEqualToString('focusedElementDescription()', expected); |
9 } | 9 } |
OLD | NEW |