File tree Expand file tree Collapse file tree 2 files changed +2
-2
lines changed
Expand file tree Collapse file tree 2 files changed +2
-2
lines changed Original file line number Diff line number Diff line change @@ -548,7 +548,7 @@ def children_list(self):
548548 :return: XCUIElement children list
549549 :rtype: list[lldb.SBValue]
550550 """
551- return [self .children .GetChildAtIndex (i ) for i in xrange ( 0 , self .children_count )]
551+ return [self .children .GetChildAtIndex (i ) for i in range ( self .children_count )]
552552
553553 @property
554554 def enabled (self ):
Original file line number Diff line number Diff line change @@ -72,7 +72,7 @@ def subviewsOfView(view):
7272 (view , level ) = views .pop (0 )
7373 subviews = fb .evaluateExpression ('(id)[%s subviews]' % view )
7474 subviewsCount = int (fb .evaluateExpression ('(int)[(id)%s count]' % subviews ))
75- for i in xrange (subviewsCount ):
75+ for i in range (subviewsCount ):
7676 subview = fb .evaluateExpression ('(id)[%s objectAtIndex:%i]' % (subviews , i ))
7777 views .append ((subview , level + 1 ))
7878 yield (subview , level + 1 )
You can’t perform that action at this time.
0 commit comments