TA的每日心情 | 擦汗 4 小时前 |
---|
签到天数: 527 天 连续签到: 4 天 [LV.9]测试副司令
|
1测试积点
问题:
求助,通过 Appium 将图片 push 到 ios 设备中
最近做自动化测试需要将图片push到设备中来检测显示情况,尝试调用Appium的方法:
driver.push_file(remote_path, data.encode('base64'))
但是在ios设备上碰到了报错:
- <font face="微软雅黑" size="3">
- self._driver.push_file(remote_path, data.encode('base64'))
- File "build/bdist.macosx-10.11-intel/egg/appium/webdriver/webdriver.py", line 474, in push_file
- self.execute(Command.PUSH_FILE, data)
- File "/Library/Python/2.7/site-packages/selenium/webdriver/remote/webdriver.py", line 233, in execute
- self.error_handler.check_response(response)
- File "build/bdist.macosx-10.11-intel/egg/appium/webdriver/errorhandler.py", line 29, in check_response
- raise wde
- WebDriverException: Message: Method has not yet been implemented</font>
复制代码
请问这个报错是因为将文件push到ios设备的API还没有实现吗?还是我调用的方法有错误?
如果是API还没有实现,各位大牛有什么好的方法来实现将图片push到设备的方法?
|
|