1.iOS手机的滑动 相关代码 #python class IOS(Device): ... @property #获取屏幕的尺寸 def display_info(self): if not self._size['width'] or not self._size['height']: self.snapshot() return {'width': self._size['width'], 'height': self._size['height'], 'orientation': sel…