测试积点老人 发表于 2018-4-23 10:14:50

Day2-8测试积点任务

问题:
求助,通过 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到设备的方法?

abcsell 发表于 2018-4-24 10:19:47

客户端没有响应,估计是连接iOS设备的问题

jingzizx 发表于 2018-4-24 10:23:29

感觉是调用的问题

梦想家 发表于 2018-4-24 11:13:51

如果是java可以用 runtime.exec("adb push ......")

qqq911 发表于 2018-4-24 12:16:27

应该还是调用的方法问题

libingyu135 发表于 2018-4-24 12:24:40

提示是方法调用有问题
页: [1]
查看完整版本: Day2-8测试积点任务