commands/FBAccessibilityCommands.py [213:223]:
- - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - -
        print(indentString + ("{} {}".format(classDesc, view)))
        # We call private method that gives back all visible accessibility children
        # for view
        a11yElements = accessibilityElements(view)
        accessibilityElementsCount = int(
            fb.evaluateExpression("(int)[%s count]" % a11yElements)
        )
        for index in range(0, accessibilityElementsCount):
            subview = fb.evaluateObjectExpression(
                "[%s objectAtIndex:%i]" % (a11yElements, index)
            )
- - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - -



commands/FBAccessibilityCommands.py [239:249]:
- - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - -
        print(indentString + ("{} {}".format(classDesc, view)))
        # We call private method that gives back all visible accessibility children
        # for view
        a11yElements = accessibilityElements(view)
        accessibilityElementsCount = int(
            fb.evaluateExpression("(int)[%s count]" % a11yElements)
        )
        for index in range(0, accessibilityElementsCount):
            subview = fb.evaluateObjectExpression(
                "[%s objectAtIndex:%i]" % (a11yElements, index)
            )
- - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - -



