Metadata-Version: 1.1
Name: uiautomatorplug
Version: 1.0.3
Summary: enhancement for the python binding of android uiautomator. provides image comparision method
Home-page: UNKNOWN
Author: bao hongbin
Author-email: hongbin.bao@gmail.com
License: MIT
Description: 
        reference:
        
        the python binding of android uiautomator:
        
            https://pypi.python.org/pypi/uiautomator/
        
        
        dependency:
        
        1: sudo apt-get install python-opencv
        
        2: sudo apt-get install python-numpy
        
        3: target android device: sdk_version>=16
        
        
        usage:
        
        >>> from uiautomatorplug.android import device as d
        
        >>> d.info
        
        >>> d.orientation
        
        >>> d.orientation = 'l'
        
        >>> d.wakeup()
        
        >>> d.start_activity(action='android.intent.action.DIAL', data='tel:xxxx', flags=0x04000000)
        
        >>> d.find('phone_launch_success.png') 
        
        >>> d.click(100, 200) 
        
        >>> d.click('DPAD_NUMBER_1.png') 
        
        >>> d.click('DPAD_NUMBER_1.png', rotation=90) 
        
        >>> d.exists(text='string_value_of_screen_layout_component_text_attribute') 
        
        >>> d.expect('phone_launch_success.png') 
        
        >>> d(text='Settings').click() 
        
        
Platform: any
Classifier: Development Status :: 2 - Pre-Alpha
Classifier: Environment :: Console
Classifier: Intended Audience :: Developers
Classifier: Operating System :: POSIX :: Linux
Classifier: Programming Language :: Python
Classifier: Topic :: Software Development :: Libraries
Classifier: Topic :: Software Development :: Testing
