File tree Expand file tree Collapse file tree 13 files changed +15
-15
lines changed
Expand file tree Collapse file tree 13 files changed +15
-15
lines changed Original file line number Diff line number Diff line change 33from setuptools import setup , find_packages
44
55setup (name = 'androidviewclient' ,
6- version = '20.4.0 ' ,
6+ version = '20.4.1 ' ,
77 description = '''AndroidViewClient is a 100% pure python library and tools
88 that simplifies test script creation providing higher level
99 operations and the ability of obtaining the tree of Views present at
Original file line number Diff line number Diff line change 2626
2727from com .dtmilano .android .adb .dumpsys import Dumpsys
2828
29- __version__ = '20.4.0 '
29+ __version__ = '20.4.1 '
3030
3131import sys
3232import warnings
Original file line number Diff line number Diff line change 2323import sys
2424from _warnings import warn
2525
26- __version__ = '20.4.0 '
26+ __version__ = '20.4.1 '
2727
2828DEBUG = False
2929
Original file line number Diff line number Diff line change 2020
2121from __future__ import print_function
2222
23- __version__ = '20.4.0 '
23+ __version__ = '20.4.1 '
2424
2525import ast
2626import os
Original file line number Diff line number Diff line change 2222import random
2323
2424__author__ = 'diego'
25- __version__ = '20.4.0 '
25+ __version__ = '20.4.1 '
2626
2727DEBUG = True
2828
Original file line number Diff line number Diff line change 2020 '''
2121import platform
2222
23- __version__ = '20.4.0 '
23+ __version__ = '20.4.1 '
2424
2525import tkinter
2626import tkinter .ttk
Original file line number Diff line number Diff line change 3333from com .dtmilano .android .concertina import Concertina
3434from com .dtmilano .android .viewclient import ViewClient
3535
36- __version__ = '20.4.0 '
36+ __version__ = '20.4.1 '
3737
3838import sys
3939import threading
Original file line number Diff line number Diff line change 3131
3232from com .dtmilano .android .adb .dumpsys import Dumpsys
3333
34- __version__ = '20.4.0 '
34+ __version__ = '20.4.1 '
3535
3636DEBUG = True
3737
Original file line number Diff line number Diff line change 1818@author: Diego Torres Milano
1919'''
2020
21- __version__ = '20.4.0 '
21+ __version__ = '20.4.1 '
2222__author__ = 'diego'
2323
2424import sys
Original file line number Diff line number Diff line change 2020
2121from __future__ import print_function
2222
23- __version__ = '20.4.0 '
23+ __version__ = '20.4.1 '
2424
2525import json
2626import os
@@ -231,12 +231,12 @@ class Device(ApiBase):
231231 def __init__ (self , uiAutomatorHelper ) -> None :
232232 super ().__init__ (uiAutomatorHelper )
233233
234- def get_display_real_size (self ):
234+ def display_real_size (self ):
235235 """
236236 :see https://github.com/dtmilano/CulebraTester2-public/blob/master/openapi.yaml
237237 :return: the display real size
238238 """
239- return self .uiAutomatorHelper .api_instance .device_display_real_size ()
239+ return self .uiAutomatorHelper .api_instance .device_display_real_size_get ()
240240
241241 def getDisplayRealSize (self ):
242242 """
You can’t perform that action at this time.
0 commit comments