Ejemplo n.º 1
0
    def device_name(self, id=None):
        """
        获取指定设备的名称

        返回字符串格式:
        {
            "01e5169b322": "google-Nexus_5X"
        }

        :param id: 设备 id
        :return: 设备名称
        """
        name = ''
        model = run_command(
            'adb -s {0} shell getprop ro.product.model'.format(id)).replace(
                ' ', '_')
        model = re.sub('\r\n|\n', '', model)
        brand = run_command(
            'adb -s {0} shell getprop ro.product.brand'.format(id))
        brand = re.sub('\r\n|\n', '', brand)
        # 找到字符串返回0,找不到返回-1
        if model.find(brand) == 0:
            name = model.replace('_', '-')
        else:
            name = '{0}-{1}'.format(brand, model)
        logging.info(r"获取到设备'{0}'的名称:'{1}'".format(id, name))
        return name
Ejemplo n.º 2
0
 def __init__(self):
     check_ios_is_ok = run_command('idevice_id -l')
     if 'command not found' in check_ios_is_ok:
         logging.error(r'请安装 iOS 开发环境.')
         raise EnvironmentError(
             r'Please install iOS development environment first.')
     self.ids = self.devices()
Ejemplo n.º 3
0
 def devices(self):
     """
     获取当前连接的设备
     :return: 设备列表
     """
     devices = []
     output = run_command('adb devices')
     lines = output.split('\n')
     for i in range(1, len(lines)):
         if 'device' in lines[i]:
             devices.append(lines[i].replace('\tdevice', ''))
     logging.info(r'获取到已连接的设备:{0}'.format(devices))
     if check_is_none(devices):
         logging.warning(r'当前无 Android 设备连接')
         return None
     return devices
Ejemplo n.º 4
0
 def devices(self):
     """
     获取当前连接的设备
     :return: 设备列表
     """
     devices = []
     output = run_command('idevice_id -l')
     # 先判断有没有设备连接
     if check_is_none(output):
         logging.warning(r'当前无 iOS 设备连接')
         return None
     origin_list = output.split('\n')
     for d in origin_list:
         if not check_is_none(d):
             devices.append(d)
     logging.info(r'获取到已连接的设备:{0}'.format(devices))
     return devices
Ejemplo n.º 5
0
    def device_wm_size(self, id=None):
        """
        获取指定设备的屏幕大小

        返回字符串格式:
        {
            "010799de5169b322": "1080x1920"
        }

        :param id: 设备号
        :return: 设备大小
        """
        size = ''
        size = run_command('adb -s {0} shell wm size'.format(id))
        size = size.split(':')[1].strip()
        size = re.sub('\r\n|\n', '', size)
        logging.info(r"获取到设备'{0}'的屏幕大小为'{1}'".format(id, size))
        return size
Ejemplo n.º 6
0
    def device_version(self, id=None):
        """
        获取指定设备的系统版本

        返回字符串格式:
        {
            "010799de5169b322": "7.1.1"
        }

        :param id: 设备 id
        :return: 系统版本
        """
        version = ''
        version_or = run_command(
            'adb -s {0} shell getprop ro.build.version.release'.format(id))
        version = re.sub('\r\n|\n', '', version_or)
        logging.info(r"获取到设备'{0}'的系统版本号为'{1}'".format(id, version))
        return version
Ejemplo n.º 7
0
    def device_name(self, id=None):
        """
        获取指定设备的名称

        返回字符串格式:
        {
            "01e5169b322": "google-Nexus_5X"
        }

        :param id: 设备 id
        :return: 设备名称
        """
        name = ''
        model = run_command('idevicename -u {0}'.format(id)).replace(' ', '_')
        model = re.sub('\r\n|\n', '', model)
        name = model
        logging.info(r"获取到设备'{0}'的名称:'{1}'".format(id, name))
        return name
Ejemplo n.º 8
0
    def device_version(self, id=None):
        """
        获取指定设备的系统版本

        返回字符串格式:
        {
            "010799de5169b322": "7.1.1"
        }

        :param id: 设备 id
        :return: 系统版本
        """
        version = ''
        product_version = run_command(
            'ideviceinfo -u {0} | grep "ProductVersion"'.format(id))
        version = product_version.split(':')[1].strip()
        version[id] = re.sub('\r\n|\n', '', version)
        logging.info(r"获取到设备'{0}'的系统版本号为'{1}'".format(id, version))
        return version
Ejemplo n.º 9
0
 def device_screenshot(self, id=None):
     """
     对指定设备进行截屏,并放到电脑的桌面上
     :param id: 设备号
     """
     device_name = self.device_name(id)
     version = self.device_version(id)
     screen_file = '{0}-{1}-{2}.png'.format(device_name, version,
                                            get_time())
     screen_path = '{0}/Desktop/{1}'.format(os.environ['HOME'], screen_file)
     logging.info(r'截图存放路径:{0}'.format(screen_path))
     screen_log = run_command('idevicescreenshot -u {0} {1}'.format(
         id, screen_path))
     if not check_is_none(
             screen_log
     ) and 'Could not start screenshotr service' in screen_log:
         print(r'iOS 截屏服务出错,请修复')
         logging.error(screen_log)
         exit(1)
     print(r"'{0}'截屏成功,存放路径为'{1}'".format(device_name, screen_path))
Ejemplo n.º 10
0
 def device_screenshot(self, id=None):
     """
     对指定设备进行截屏,并放到电脑的桌面上
     :param id: 设备号
     """
     device_name = self.device_name(id)
     version = self.device_version(id)
     screen_file = '{0}-{1}-{2}.png'.format(device_name, version,
                                            get_time())
     screen_path = '{0}/Desktop/{1}'.format(os.environ['HOME'], screen_file)
     logging.info(r'截图存放路径:{0}'.format(screen_path))
     screen_in_device = '/sdcard/{0}'.format(screen_file)
     run_command('adb -s {0} shell screencap {1}'.format(
         id, screen_in_device))
     run_command('adb -s {0} pull {1} {2}'.format(id, screen_in_device,
                                                  screen_path))
     run_command('adb -s {0} shell rm {1}'.format(id, screen_in_device))
     print(r"'{0}'截屏成功,存放路径为'{1}'".format(device_name, screen_path))
Ejemplo n.º 11
0
 def test_run_command(self):
     self.assertIsNotNone(utils.run_command('ls'))
Ejemplo n.º 12
0
 def __init__(self):
     check_adb_is_ok = run_command('adb start-server')
     if 'command not found' in check_adb_is_ok:
         logging.error(r'请添加 ANDROID_HOME 环境变量')
         raise EnvironmentError(r'Please set ANDROID_HOME first.')
     self.ids = self.devices()