何时怎么样才能减肥继续wwWlulu52com欣赏,里面的98WE那写节目com呀

404 Not Found
404 Not Found
The requested URL was not found on this server.
您要找的内容已被删除『精选』电影里常用的搞笑背景音乐 - 歌单 - 网易云音乐
『精选』电影里常用的搞笑背景音乐
听了会让你发现这是首听过不知道名字的BGM!精选了各种电影、综艺节目、搞笑视频、直播、电视剧、广告的背景音乐。里面有几首英文歌,也是很多地方常用的。希望大家能够喜欢
随机一首都是经典
3.25号 更...
听了会让你发现这是首听过不知道名字的BGM!精选了各种电影、综艺节目、搞笑视频、直播、电视剧、广告的背景音乐。里面有几首英文歌,也是很多地方常用的。希望大家能够喜欢
随机一首都是经典
3.25号 更新 第4首
谁知道封面图作者请私我
播放:8276313次
喜欢这个歌单的人
网易云音乐多端下载
同步歌单,随时畅听320k好音乐
网易公司版权所有(C)杭州乐读科技有限公司运营:
违法和不良信息举报电话:6
举报邮箱:404 Not Found
404 Not Found
The requested URL was not found on this server.
您要找的内容已被删除404 Not Found
404 Not Found
The requested URL was not found on this server.
您要找的内容已被删除本帖已被设为精华帖!
大家请使用 appium-desktop
以下内容陈旧,不建议看了。
使用 gui 启动的 appium 1.2.2 也会有这个问题,所以你要把 deviceconsole 复制到 /Applications/Appium.app/Contents/Resources/node_modules/appium/build/deviceconsole 下面。你自己的路径可能和我不一样,切记。
同意如果这个问题不解决, iOS 上的 真机 inspector 也打不开。
英文好的同学请移步官方文档 ,
推荐自己边看边试验。
首先 Appium 支持 iOS 真机以下条件必须满足:
苹果开发者账号和开发者证书
苹果设备,确保这个设备已经被配置为开发机器。
签名过的 .ipa 文件或者源代码
A Mac with Xcode and the Xcode Command Line Developer Tools,有 xcode和xcode command line 的
苹果系统。别来问我,windows 怎么测试 iOS 应用。
Provisioning Profile
再次强调真机需要有效的开发分发证书和开发的 Provisioning Profile。
你的应用需要签名。Appium 会参试使用 Fruitstrap 安装应用。
但是使用 xcode 安装到真机会方便很多。
要指定真机运行有两种方式:
appium 启动的时候,指定 udid 和 app bundle appium -U &udid& --app &path or bundle&
或者在脚本里指定两个 desired capability
desired_capabilities={
'app':'com.xxx.iphone',
'udid':'b0f3ce433a48b5531ee6',
'platformName': 'iOS',
'deviceName': 'iPhone'
注意: 如果设备中未安装 app 可以指定 ipa 地址,如果安装了,
则指定 bundle ID。
所以对于第一种情况,代码可以这样写:
self.driver = webdriver.Remote(
command_executor='http://127.0.0.1:4723/wd/hub',
desired_capabilities={
'deviceName':'',
'platformName': 'iOS',
对于第二种情况,代码可以这样写:
app = "io.appium.TestApp"
self.driver = webdriver.Remote(
command_executor='http://127.0.0.1:4723/wd/hub',
desired_capabilities={
'deviceName':'',
'platformName': 'iOS',
'app': app,
'udid': 'cc6bcd6a94aebc5b318bfbfafb3bb'
调试的思路
确保 UDID 的正确,是真机的 UDID。(20+ 字符串)
确保在模拟器上已经能运行无误了。
直接使用 Instruments 看看是否能在真机上运行。有些情况连 xcode 的 instruments 都不能在真机上调试,那更别谈 appium 了
确保运行 appium 用例前, instruments 没有启动过。看看有没有 instruments 的进程。
目前 1.2.2 的坑
目前 appium 1.2.2 上运行 iOS 真机测试的话,可能会遇到如下的错误:
info: [debug] Starting iOS device log capture via deviceconsole
error: iOS log capture failed: spawn ENOENT
info: [debug] Cleaning up appium session
error: Failed to start an Appium session, err was: Error: spawn ENOENT
info: [debug] Error: spawn ENOENT
at errnoException (child_process.js:1000:11)
at Process.ChildProcess._handle.onexit (child_process.js:791:34)
info: [debug] Responding to client with error: {"status":33,"value":{"message":"A new session could not be created. (Original
error: spawn ENOENT)","code":"ENOENT","errno":"ENOENT","syscall":"spawn","origValue":"spawn ENOENT"},"sessionId":null}
info: &-- POST /wd/hub/session 500
这是因为在 /usr/local/lib/node_modules/appium/build/deviceconsole/ 下面缺失了 deviceconsole。已经有
解决方法如下:
到该目录底下 cd /usr/local/lib/node_modules/appium/build/deviceconsole/
打开这个deviceconsole project。 open deviceconsole.xcodeproj
重新 build 一把。把 build 出来的 deviceconsole,复制到 /usr/local/lib/node_modules/appium/build/deviceconsole/去。
然后重新运行 Appium
注意: deviceName 就算为空也一定要,代码写死的。。。
如果觉得我的文章对您有用,请随意打赏。您的支持将鼓励我继续创作!
很赞,这个问题困扰了我很多天,终于解决了。
另外,我想请教一下,appium 中用java语言,下拉刷新视图以及多手势的问题,你也发一个帖子吧。我弄了好多天都没得出结果。有什么办法没有?估计很多人都有这样的疑问。
太棒了,这个问题搞了一天没搞出来 ,楼主是大神,崇拜你~~~么么哒~~~~~
启动inspector
的时候 一定要设备那个ForceDevice ,否则 会弹 出个报错信息
这个名字可以随便选 ,我用ipod ,选 Iphone也是没有问题的。
感谢楼主。
IOS上运行robotframework+appium自动化测试,在RIDE上的参数配置Open App ,需要那几个必填的参数设置,比如${APP},${BUNDLEID},${UDID},等等,谢谢
我按照这个思路改了,还是报
在我本机下找不到cd /usr/local/lib/node_modules/appium/build/deviceconsole/这个文件
我用的是MAC系统
求楼主解答
请把问题描述清楚
error: iOS log capture failed: spawn ENOENT
info: &-- POST /wd/hub/session 500
info: [debug] Not setting device type since we're connected to a device
info: [debug] Creating iDevice object with udid ede8ea883c49ad1d71297
info: [debug] Couldn't find ideviceinstaller, trying built-in at /Applications/Appium.app/Contents/Resources/node_modules/appium/build/libimobiledevice-macosx/ideviceinstaller
info: [debug] Checking app install status using: /Applications/Appium.app/Contents/Resources/node_modules/appium/build/fruitstrap/fruitstrap isInstalled --id ede8ea883c49ad1d71297 --bundle com.hipalsports.hipal
error: Failed to start an Appium session, err was: Error: spawn ENOENT
提示我这个错误!
我的设置是这个
error: iOS log capture failed: spawn ENOENT
info: [debug] Dynamic bootstrap code:
info: [debug] Dynamic bootstrap path:
info: [debug] Reusing dynamic bootstrap:
info: [debug] Not setting iOS and app preferences since we're on a real device
info: [debug] Starting iOS device log capture via deviceconsole
info: [debug] Cleaning up appium session
info: [debug] Error: spawn ENOENT
at errnoException (child_process.js:1001:11)
at Process.ChildProcess._handle.onexit (child_process.js:792:34)
info: [debug] Responding to client with error: {"status":33,"value":{"message":"A new session could not be created. (Original error: spawn ENOENT)","code":"ENOENT","errno":"ENOENT","syscall":"spawn","origValue":"spawn ENOENT"},"sessionId":null}
info: &-- POST /wd/hub/session 500 145.563 ms - 197
info: [debug] Not setting device type since we're connected to a device
info: [debug] Creating iDevice object with udid 962f806a222b297fa4daf
info: [debug] Couldn't find ideviceinstaller, trying built-in at /Applications/Appium.app/Contents/Resources/node_modules/appium/build/libimobiledevice-macosx/ideviceinstaller
info: [debug] Checking app install status using: /Applications/Appium.app/Contents/Resources/node_modules/appium/build/fruitstrap/fruitstrap isInstalled --id 962f806a222b297fa4daf --bundle com.hipalsports.hipal
error: Failed to start an Appium session, err was: Error: spawn ENOENT
以上错误是我连iphone时的报错!
提示的已经非常清楚了:
Couldn't find ideviceinstaller, trying built-in at /Applications/Appium.app/Contents/Resources/node_modules/appium/build/libimobiledevice-macosx/ideviceinstaller
这个要怎么built呀?我查了这个路径是有这个文件 的呀
楼主这个和你上面描述的是一个问题吗?求解呀,我用的是MAC,想用录制的方式录IOS!谢谢了!
那你用 /Applications/Appium.app/Contents/Resources/node_modules/appium/build/fruitstrap/fruitstrap isInstalled --id ede8ea883c49ad1d71297 --bundle com.hipalsports.hipal
在命令行运行看看。 你想用录制的方式录制 iOS, 那就录制啊。
info: --& POST /wd/hub/session {"desiredCapabilities":{"platformName":"iOS","platformVersion":"7.1","newCommandTimeout":"999999","automationName":"Appium","deviceName":"iPhone Retina (4-inch 64-bit)"}}
info: [debug] App is an iOS bundle, will attempt to run as pre-existing
info: [debug] Creating new appium session ef17f59f-ece8-46f4-ad67-8ccdc89b514b
info: [debug] Removing any remaining instruments sockets
info: [debug] Cleaned up instruments socket /tmp/instruments_sock
info: [debug] Setting Xcode folder
info: [debug] Setting Xcode version
info: [debug] Setting iOS SDK Version
info: [debug] iOS SDK Version set to 7.1
info: [debug] Detecting automation tracetemplate
info: [debug] Not auto-detecting udid, running on sim
info: [debug] Localizable.strings is not currently supported when using real devices.
info: [debug] Not setting locale because we're using a real device
info: [debug] Creating instruments
info: [debug] Preparing uiauto bootstrap
info: [debug] Dynamic bootstrap dir:
info: [debug] Dynamic env:
error: iOS log capture failed: spawn ENOENT
info: [debug] Dynamic bootstrap code:
info: [debug] Dynamic bootstrap path:
info: [debug] Reusing dynamic bootstrap:
info: [debug] Not setting iOS and app preferences since we're on a real device
info: [debug] Starting iOS device log capture via deviceconsole
info: [debug] Cleaning up appium session
info: [debug] Error: spawn ENOENT
at errnoException (child_process.js:1001:11)
at Process.ChildProcess._handle.onexit (child_process.js:792:34)
info: [debug] Responding to client with error: {"status":33,"value":{"message":"A new session could not be created. (Original error: spawn ENOENT)","code":"ENOENT","errno":"ENOENT","syscall":"spawn","origValue":"spawn ENOENT"},"sessionId":null}
info: &-- POST /wd/hub/session 500 147.450 ms - 197
info: [debug] Not setting device type since we're connected to a device
error: Failed to start an Appium session, err was: Error: spawn ENOENT
info: [debug] Creating iDevice object with udid ede8ea883c49ad1d71297
info: [debug] Couldn't find ideviceinstaller, trying built-in at /Volumes/Appium/Appium.app/Contents/Resources/node_modules/appium/build/libimobiledevice-macosx/ideviceinstaller
info: [debug] Checking app install status using: /Volumes/Appium/Appium.app/Contents/Resources/node_modules/appium/build/fruitstrap/fruitstrap isInstalled --id ede8ea883c49ad1d71297 --bundle com.hipalsports.hipal
info: [debug] App is installed.
info: [debug] fullReset not requested. No need to install.
info: [debug] Starting command proxy.
info: [debug] Instruments socket server started at /tmp/instruments_sock
info: [debug] Starting instruments
info: [debug] Instruments is at: /Applications/Xcode 5.1.app/Contents/Developer/usr/bin/instruments
info: Launching instruments
info: [debug] Attempting to run app on real device with UDID ede8ea883c49ad1d71297
info: [debug] Spawning instruments with command: /Applications/Xcode 5.1.app/Contents/Developer/usr/bin/instruments -t /Applications/Xcode 5.1.app/Contents/Applications/Instruments.app/Contents/PlugIns/AutomationInstrument.bundle/Contents/Resources/Automation.tracetemplate -D /tmp/appium-instruments/instrumentscli0.trace -w ede8ea883c49ad1d71297 com.hipalsports.hipal -e UIASCRIPT /Users/hipal/Library/Application Support/appium/bootstrap/bootstrap-286b5fee.js -e UIARESULTSPATH /tmp/appium-instruments
info: [debug] And extra without-delay env: {}
info: [debug] And launch timeouts (in ms): {"global":90000}
info: --& GET /wd/hub/status {}
info: [debug] Responding to client with success: {"status":0,"value":{"build":{"version":"1.2.2","revision":"cf6ff5939ddc6b4d45fcbabfbfe13c950e0058c4"}}}
运行时提示了我以上错误,按照你的方法直接在命令行中运行
JackdeMac-mini:~ hipal$ /Volumes/Appium/Appium.app/Contents/Resources/node_modules/appium/build/fruitstrap/fruitstrap isInstalled --id ede8ea883c49ad1d71297 --bundle com.hipalsports.hipal
[....] Waiting for iOS device to be connected
found device id
0%] Found device (ede8ea883c49ad1d71297), beginning check
App is installed!
[100%] Check completed com.hipalsports.hipal
JackdeMac-mini:~ hipal$
安装应该是成功的了!但是还是报错
Could not start a new session
Be sure the Appium server is running with an application opened by using the "App Path" parameter in Appium.app (along with package and activity for Android) or by connecting with selenium client and supplying this in the desired capabilities object.
弄了几天了这个问题!依然找不到出路!
楼主这个问题你有遇到过吗?
这里的server address需要设置吗?
好文,解决了我的困扰,谢谢。
感谢楼主,问题弄了好多天终于解决了这个报错的问题,但是又有一个新问题,运行点inspector 后appium就自动退出去了!手机可以正常启动了,这个又是什么问题引起的
啥问题都不描述,我怎么知道。。。 别让我猜。
appium 1.2.2 运行正常没有报错,点inspector 后record 的 界面出现了一下然后appium就异常关闭!
Appium可以控制iOS内置的app么或其他从AppStore中下载的app?如果可以,是不是随便一个开发账号和证书就可以了?
当然不可以。 只有自己使用开发证书分发的才能。
没有日志我帮不了你。
连接真机测试时提示这个
[IOS_SYSLOG_ROW ] Oct 13 20:05:19 jing lockdownd[52] :
spawn_service_agent: Could not look up service in the map
info: [IOS_SYSLOG_ROW ] Oct 13 20:05:19 jing lockdownd[52] :
spawn_and_handle_checkin: Could not spawn the com.apple.instruments.remoteserver service agent:InvalidService
info: [debug] [INST STDERR]
20:05:18.903 instruments[] Failed to start Instruments daemon for 'iOS' on 'jing (v7.1.2)' (The service is invalid.)
info: [IOS_SYSLOG_ROW ] Oct 13 20:05:19 jing lockdownd[52] :
spawn_service_agent: Could not look up service in the map
info: [debug] [INST STDERR]
20:05:18.907 instruments[] Device 'Build Version 11D257, iPhone ID 2ad744c4d85acfe21415edcad3fd78a' is not setup as a development device.
Use Xcode to setup.
info: [IOS_SYSLOG_ROW ] Oct 13 20:05:19 jing lockdownd[52] :
spawn_and_handle_checkin: Could not spawn the com.apple.instruments.server service agent:InvalidService
info: [debug] [INSTSERVER] Instruments exited with code 253
info: [debug] Killall instruments
info: [debug] Instruments crashed on startup
info: [debug] We exceeded the number of retries allowed for instruments t failing launch
info: [debug] Stopping iOS log capture
info: [debug] Killing the simulator process
info: [debug] Killing any other simulator daemons
info: [debug] Cleaning app state.
info: [debug] No folders found to remove
error: Failed to start an Appium session, err was: Error: Instruments crashed on startup
info: [debug] Cleaning up appium session
info: [debug] Error: Instruments crashed on startup
at Instruments.onInstrumentsExit (/Applications/Appium.app/Contents/Resources/node_modules/appium/node_modules/appium-instruments/lib/instruments.js:344:31)
at null. (/Applications/Appium.app/Contents/Resources/node_modules/appium/node_modules/appium-instruments/lib/instruments.js:281:12)
at ChildProcess.emit (events.js:98:17)
at Process.ChildProcess._handle.onexit (child_process.js:810:12)
info: [debug] Responding to client with error: {"status":33,"value":{"message":"A new session could not be created. (Original error: Instruments crashed on startup)","origValue":"Instruments crashed on startup"},"sessionId":null}
info: &-- POST /wd/hub/session 500
楼主,我的问题是当我点inspector会弹出那个报错框,但是真机会启动程序,就是那个 录制界面不出来
ios真机运行点inspector会报
错误,但是手机上的程序启动了,也不会出
请问一下你点inspector无法启动的那个第一个问题是怎么解决的啊?是通过那个命令行吗?
我也遇到同样问题,inspector无法启动。你解决了吗?怎么解决的?
我是直接跳回了1.2.0的版本就可以了,用1.2.3的版本老是连不上,解决的方法是因为之前放的是测试包,但是bundleID却是正式环境下的,所以匹配不上就报错了,后来找到原因了替换一下就可以了!
按guide提示运行成功,想知道测试用例怎么运行啊
楼主,我的是在模拟器上build的,也有这个问题,怎么解决。能加您qq么
info: [debug] Not pre-launching simulator
info: [debug] Creating iDevice object with udid 2ED6A33C-39B6-47B2-B27E-9ACE
info: [debug] Couldn't find ideviceinstaller, trying built-in at /usr/local/lib/node_modules/appium/build/libimobiledevice-macosx/ideviceinstaller
error: Could not initial make sure it is installed and works on your system
我的帖子里没说清楚么?ideviceinstaller 这个没找到,就编译一个啊。
我碰到同样的 inspector 无法启动的问题,
nancymac:fruitstrap lixia$ pwd
/Applications/Appium.app/Contents/Resources/node_modules/appium/build/fruitstrap
nancymac:fruitstrap lixia$ ls -l
-rwxr-xr-x@ 1 lixia
37476 Mar 26 04:09 fruitstrap
我这下面没有 fruitstrap 文件夹,不知道是安装哪里出错了么?还有我的 deviceconsole 路径下面是这样的:
nancymac:deviceconsole lixia$ pwd
/Applications/Appium.app/Contents/Resources/node_modules/appium/build/deviceconsole
nancymac:deviceconsole lixia$ ls -la
drwxr-xr-x@
102 Mar 26 04:09 .
drwxr-xr-x@ 13 lixia
442 Mar 26 18:03 ..
-rwxr-xr-x@
16332 Mar 26 04:09 deviceconsole
两位前辈可以帮忙看下问题出在哪了么? 我的 appium 是1.4.0的版本。。。
xcode版本:6.3
appium版本:1.3.7
ipod版本:8.3
请问:我按照上述的操作仍然存在报错信息
请问要如何解决?
Launching Appium with command: '/Applications/Appium.app/Contents/Resources/node/bin/node' lib/server/main.js --address "127.0.0.1" --command-timeout "7200" --platform-version "8.3" --platform-name "iOS" --app "com.ruijie.whistle.activity" --udid "95C36DA6F8907AECD" --device-name "iPhone 6"
info: Welcome to Appium v1.3.7 (REV 72fbfaa116d3d9f6acf02f6d0e2182)
info: Appium REST http interface listener started on 127.0.0.1:4723
info: [debug] Non-default server args: {"app":"com.ruijie.whistle.activity","udid":"95C36DA6F8907AECD","address":"127.0.0.1","deviceName":"iPhone 6","platformName":"iOS","platformVersion":"8.3","defaultCommandTimeout":7200}
info: Console LogLevel: debug
info: --& GET /wd/hub/status {}
info: [debug] Responding to client with success: {"status":0,"value":{"build":{"version":"1.3.7","revision":"72fbfaa116d3d9f6acf02f6d0e2182"}}}
info: &-- GET /wd/hub/status 200 7.044 ms - 104 {"status":0,"value":{"build":{"version":"1.3.7","revision":"72fbfaa116d3d9f6acf02f6d0e2182"}}}
info: --& GET /wd/hub/status {}
info: [debug] Responding to client with success: {"status":0,"value":{"build":{"version":"1.3.7","revision":"72fbfaa116d3d9f6acf02f6d0e2182"}}}
info: &-- GET /wd/hub/status 200 3.161 ms - 104 {"status":0,"value":{"build":{"version":"1.3.7","revision":"72fbfaa116d3d9f6acf02f6d0e2182"}}}
info: --& GET /wd/hub/sessions {}
info: [debug] Responding to client with success: {"status":0,"value":[]}
info: &-- GET /wd/hub/sessions 200 0.949 ms - 23 {"status":0,"value":[]}
info: --& POST /wd/hub/session {"desiredCapabilities":{"platformName":"iOS","platformVersion":"8.3","newCommandTimeout":"999999","automationName":"Appium","deviceName":"iPhone 6"}}
info: Client User-Agent string: Appium (unknown version) CFNetwork/720.3.13 Darwin/14.3.0 (x86_64)
info: [debug] App is an iOS bundle, will attempt to run as pre-existing
info: [debug] Creating new appium session 1a4ac54c-a53e-4d5d-9c65-f6095efaa2e1
info: [debug] Removing any remaining instruments sockets
info: [debug] Cleaned up instruments socket /tmp/instruments_sock
info: [debug] Setting Xcode folder
info: [debug] Setting Xcode version
info: [debug] Setting iOS SDK Version
info: [debug] Getting sdk version from xcrun with a timeout
info: [debug] iOS SDK Version set to 8.3
info: [debug] Not checking whether simulator is available since we're on a real device
info: [debug] Detecting automation tracetemplate
info: [debug] Not auto-detecting udid, running on sim
info: [debug] Could not parse plist file (as binary) at /Applications/Appium.app/Contents/Resources/node_modules/appium/com.ruijie.whistle.activity/en.lproj/Localizable.strings
info: Will try to parse the plist file as XML
info: [debug] Could not parse plist file (as XML) at /Applications/Appium.app/Contents/Resources/node_modules/appium/com.ruijie.whistle.activity/en.lproj/Localizable.strings
warn: Could not parse app Localizable.strings assuming it doesn't exist
info: [debug] Creating instruments
info: On some xcode 6 platforms, instruments-without-delay does not work. If you experience this, you will need to re-run appium with the --native-instruments-lib flag
info: [debug] Preparing uiauto bootstrap
info: [debug] Dynamic bootstrap dir: /Users/limei/Library/Application Support/appium/bootstrap
info: [debug] Dynamic env: {"nodePath":"/Applications/Appium.app/Contents/Resources/node/bin/node","commandProxyClientPath":"/Applications/Appium.app/Contents/Resources/node_modules/appium/node_modules/appium-uiauto/bin/command-proxy-client.js","instrumentsSock":"/tmp/instruments_sock","interKeyDelay":null,"justLoopInfinitely":false,"autoAcceptAlerts":false,"autoDismissAlerts":false,"sendKeyStrategy":"grouped"}
info: [debug] Dynamic bootstrap code: // This file is automatically generated. Do not manually modify!
info: [debug] Dynamic bootstrap path: /Users/limei/Library/Application Support/appium/bootstrap/bootstrap-d5a0fbd3.js
info: [debug] Reusing dynamic bootstrap: /Users/limei/Library/Application Support/appium/bootstrap/bootstrap-d5a0fbd3.js
info: [debug] Getting device string from opts: {"forceIphone":false,"forceIpad":false,"xcodeVersion":"6.3","iOSSDKVersion":"8.3","deviceName":"iPhone 6","platformVersion":"8.3"}
info: [debug] fixDevice is on
info: [debug] Final device string is: 'iPhone 6 (8.3 Simulator)'
info: [debug] Not setting device type since we're on a real device
info: [debug] Checking whether we need to set app preferences
info: [debug] Not setting iOS and app preferences since we're on a real device
info: [debug] Running ios sim reset flow
info: [debug] Killing the simulator process
info: [debug] Killall iOS Simulator
info: [debug] Killing any other simulator daemons
info: [debug] O cannot clean device state
info: [debug] Not setting locale because we're using a real device
info: [debug] No iOS / app preferences to set
info: [debug] Starting iOS device log capture via deviceconsole
info: --& GET /wd/hub/status {}
info: [debug] Responding to client with success: {"status":0,"value":{"build":{"version":"1.3.7","revision":"72fbfaa116d3d9f6acf02f6d0e2182"},"isShuttingDown":false},"sessionId":"1a4ac54c-a53e-4d5d-9c65-f6095efaa2e1"}
info: &-- GET /wd/hub/status 200 1.101 ms - 178 {"status":0,"value":{"build":{"version":"1.3.7","revision":"72fbfaa116d3d9f6acf02f6d0e2182"},"isShuttingDown":false},"sessionId":"1a4ac54c-a53e-4d5d-9c65-f6095efaa2e1"}
info: [debug] Cleaning up appium session
info: [debug] Error: Log capture did not start in a reasonable amount of time
at null._onTimeout (/Applications/Appium.app/Contents/Resources/node_modules/appium/lib/devices/ios/ios-log.js:137:10)
at Timer.listOnTimeout (timers.js:110:15)
error: Log capture did not start in a reasonable amount of time
info: [debug] Responding to client with error: {"status":33,"value":{"message":"A new session could not be created. (Original error: Log capture did not start in a reasonable amount of time)","origValue":"Log capture did not start in a reasonable amount of time"},"sessionId":null}
info: &-- POST /wd/hub/session 500
error: Failed to start an Appium session, err was: Error: Log capture did not start in a reasonable amount of time
info: [debug] Not pre-launching simulator
info: [debug] Creating iDevice object with udid 95C36DA6F8907AECD
info: [debug] Checking app install status using: /Applications/Appium.app/Contents/Resources/node_modules/appium/build/fruitstrap/fruitstrap isInstalled --id 95C36DA6F8907AECD --bundle com.ruijie.whistle.activity
问题已解决,udid一定要小写
尝试了很久,必须前来求指导了。
appium:1.4.1
Xcode:6.3.2
连接真机打开inspector报错
error: Could not initial make sure it is installed and works on your system
info: [debug] Error: Could not initial make sure it is installed and works on your system
at [object Object].IOS.getIDeviceObj (/Applications/Appium.app/Contents/Resources/node_modules/appium/lib/devices/ios/ios.js:909:13)
at [object Object].IOS.installToRealDevice (/Applications/Appium.app/Contents/Resources/node_modules/appium/lib/devices/ios/ios.js:856:32)
at /Applications/Appium.app/Contents/Resources/node_modules/appium/node_modules/async/lib/async.js:607:21
at /Applications/Appium.app/Contents/Resources/node_modules/appium/node_modules/async/lib/async.js:246:17
at iterate (/Applications/Appium.app/Contents/Resources/node_modules/appium/node_modules/async/lib/async.js:146:13)
at /Applications/Appium.app/Contents/Resources/node_modules/appium/node_modules/async/lib/async.js:157:25
at /Applications/Appium.app/Contents/Resources/node_modules/appium/node_modules/async/lib/async.js:248:21
at /Applications/Appium.app/Contents/Resources/node_modules/appium/node_modules/async/lib/async.js:612:34
at [object Object].&anonymous& (/Applications/Appium.app/Contents/Resources/node_modules/appium/lib/devices/ios/ios-crash-log.js:52:5)
at [object Object].&anonymous& (/Applications/Appium.app/Contents/Resources/node_modules/appium/lib/devices/ios/ios-crash-log.js:27:5)
at f (/Applications/Appium.app/Contents/Resources/node_modules/appium/node_modules/glob/node_modules/once/once.js:17:25)
at Glob.&anonymous& (/Applications/Appium.app/Contents/Resources/node_modules/appium/node_modules/glob/glob.js:131:7)
at Glob.emit (events.js:107:17)
at Glob._finish (/Applications/Appium.app/Contents/Resources/node_modules/appium/node_modules/glob/glob.js:168:8)
at done (/Applications/Appium.app/Contents/Resources/node_modules/appium/node_modules/glob/glob.js:157:12)
at Glob._processReaddir2 (/Applications/Appium.app/Contents/Resources/node_modules/appium/node_modules/glob/glob.js:351:12)
at /Applications/Appium.app/Contents/Resources/node_modules/appium/node_modules/glob/glob.js:288:17
at RES (/Applications/Appium.app/Contents/Resources/node_modules/appium/node_modules/glob/node_modules/inflight/inflight.js:23:14)
at f (/Applications/Appium.app/Contents/Resources/node_modules/appium/node_modules/glob/node_modules/once/once.js:17:25)
at Glob._readdirEntries (/Applications/Appium.app/Contents/Resources/node_modules/appium/node_modules/glob/glob.js:480:10)
at /Applications/Appium.app/Contents/Resources/node_modules/appium/node_modules/glob/glob.js:457:12
at FSReqWrap.oncomplete (fs.js:95:15)
info: [debug] Responding to client with error: {"status":33,"value":{"message":"A new session could not be created. (Original error: Could not initial make sure it is installed and works on your system)","origValue":"Could not initial make sure it is installed and works on your system"},"sessionId":null}
info: &-- POST /wd/hub/session 500 1468.450 ms - 300
error: Failed to start an Appium session, err was: Error: Could not initialize ideviceinstaller; make sure it is installed and works on your system
我得设置:
deviceconsole:
在Xcode里面Product-&profile,手机上能正常运行成功。
我得配置在IOS模拟器也能正常运行。真机就报错。
忘了附上 ideviceinstaller的图。系统是有的。
/Applications/Appium.app/Contents/Resources/node_modules/appium/build/fruitstrap/fruitstrap isInstalled --id ede8ea883c49ad1d71297 --bundle com.hipalsports.hipal
-bash: /Applications/Appium.app/Contents/Resources/node_modules/appium/build/fruitstrap/fruitstrap: No such file or directory
wo用1.4.1的appium 启动真机
和你是一样的情况,请问你的问题解决了吗
楼上的问题解决了么,我的也是这样的问题~跪求楼主现身
在这里跪求有什么用?你贴出你的问题来啊
这是真机的 inspector
info: [debug] Removing any remaining instruments sockets
info: [debug] Cleaned up instruments socket /tmp/instruments_sock
info: [debug] Auto-detecting iOS udid...
info: [debug] Not auto-detecting udid, running on sim
info: [debug] Could not parse plist file (as binary) at /Applications/Appium.app/Contents/Resources/node_modules/appium/com.ttyongche.ttyc/en.lproj/Localizable.strings
info: Will try to parse the plist file as XML
info: [debug] Could not parse plist file (as XML) at /Applications/Appium.app/Contents/Resources/node_modules/appium/com.ttyongche.ttyc/en.lproj/Localizable.strings
warn: Could not parse app Localizable.strings assuming it doesn't exist
info: [debug] Creating instruments
info: [debug] Preparing uiauto bootstrap
info: [debug] Dynamic bootstrap dir: /Users/wangyao/Library/Application Support/appium/bootstrap
info: [debug] Dynamic env: {"nodePath":"/Applications/Appium.app/Contents/Resources/node/bin/node","commandProxyClientPath":"/Applications/Appium.app/Contents/Resources/node_modules/appium/node_modules/appium-uiauto/bin/command-proxy-client.js","instrumentsSock":"/tmp/instruments_sock","interKeyDelay":null,"justLoopInfinitely":false,"autoAcceptAlerts":false,"autoDismissAlerts":false,"sendKeyStrategy":"grouped"}
info: [debug] Dynamic bootstrap code: // This file is automatically generated. Do not manually modify!
info: [debug] Dynamic bootstrap path: /Users/wangyao/Library/Application Support/appium/bootstrap/bootstrap-bb0c0.js
info: [debug] Reusing dynamic bootstrap: /Users/wangyao/Library/Application Support/appium/bootstrap/bootstrap-bb0c0.js
info: [debug] Attempting iOS device log capture via libimobiledevice idevicesyslog
warn: Could not capture device log using libimobiledevice idevicesyslog. Libimobiledevice probably isn't installed
info: [debug] Attempting iOS device log capture via deviceconsole
warn: Could not capture logs from device. Continuing without capturing logs.
info: [debug] Creating iDevice object with udid F0188AAE55CA344A2FFDE339AE4DCCD5EFCA9CFC
info: [debug] Couldn't find ideviceinstaller, trying built-in at /Applications/Appium.app/Contents/Resources/node_modules/appium/build/libimobiledevice-macosx/ideviceinstaller
error: Log capture did not start in a reasonable amount of time
我的问题如上,帮忙看看怎么解决~
Couldn't find ideviceinstaller, trying built-in at /Applications/Appium.app/Contents/Resources/node_modules/appium/build/libimobiledevice-macosx/ideviceinstaller
日志里不是写了吗? 找不到 ideviceinstaller, 安装 ideviceinstaller 这个啊。
新手还不太会看log,只看了error和warn。找到路径下的ideviceinstaller,安装还是有问题。Last login: Thu Nov 12 11:08:27 on ttys002
172-15-70-48:~ wangyao$ /Applications/Appium.app/Contents/Resources/node_modules/appium/build/libimobiledevice-macosx/
dyld: Library not loaded: /../lib/libimobiledevice.3.dylib
Referenced from: /Applications/Appium.app/Contents/Resources/node_modules/appium/build/libimobiledevice-macosx/ideviceinstaller
Reason: image not found
Trace/BPT trap: 5
[进程已完成]
再帮忙看看~多谢
问题已解决~多谢多谢。
按着错误 谷歌下 很快就解决了。
54楼 已删除
55楼 已删除
楼主,iOS真机启动Inspector时,报错如下,麻烦帮忙看一下,谢谢!
info: [debug] App is an iOS bundle, will attempt to run as pre-existing
info: [debug] Creating new appium session 2cf-47c4-7a772d
info: [debug] Removing any remaining instruments sockets
info: [debug] Cleaned up instruments socket /tmp/instruments_sock
info: [debug] Auto-detecting iOS udid...
info: [debug] Not auto-detecting udid, running on sim
info: [debug] Could not parse plist file (as binary) at /Applications/Appium.app/Contents/Resources/node_modules/appium/com.boohee.food/en.lproj/Localizable.strings
info: Will try to parse the plist file as XML
info: [debug] Could not parse plist file (as XML) at /Applications/Appium.app/Contents/Resources/node_modules/appium/com.boohee.food/en.lproj/Localizable.strings
warn: Could not parse app Localizable.strings assuming it doesn't exist
info: [debug] Creating instruments
info: [debug] Preparing uiauto bootstrap
info: [debug] Dynamic bootstrap dir: /Users/zhuquan/Library/Application Support/appium/bootstrap
info: [debug] Dynamic env: {"nodePath":"/Applications/Appium.app/Contents/Resources/node/bin/node","commandProxyClientPath":"/Applications/Appium.app/Contents/Resources/node_modules/appium/submodules/appium-uiauto/bin/command-proxy-client.js","instrumentsSock":"/tmp/instruments_sock","interKeyDelay":null,"justLoopInfinitely":false,"autoAcceptAlerts":false,"autoDismissAlerts":false,"sendKeyStrategy":"grouped"}
info: [debug] Dynamic bootstrap code: // This file is automatically generated. Do not manually modify!
info: [debug] Dynamic bootstrap path: /Users/zhuquan/Library/Application Support/appium/bootstrap/bootstrap-5923cadea0343e3f.js
info: [debug] Reusing dynamic bootstrap: /Users/zhuquan/Library/Application Support/appium/bootstrap/bootstrap-5923cadea0343e3f.js
info: [debug] Attempting iOS device log capture via libimobiledevice idevicesyslog
info: [debug] Creating iDevice object with udid 7f5d1c1cb5e7eac52d371e24fa0a8c3
在这就报错了
不是每次报错,弹框都是提示这个吗,解决ideviceinstaller问题前也是提示这个啊
英文不是说 App Path 参数没有提供吗?
我用的这个设置,真机build了测试App的,填了bundleid
你真机的app已经装好了吧?
真机上已经build了com.boohee.food这个App了
63楼 已删除
在这个帖子问问题的同学,请自己看帖子,我帖子里明确说明你是可以进行真机调试的。
65楼 已删除
这个问题解决了吗?运行时也报
org.openqa.selenium.SessionNotCreatedException: A new session could not be created. (Original error: Instruments crashed on startup) (WARNING: The server did not provide any stacktrace information)
Command duration or timeout: 44.86 seconds
Build info: version: '2.53.0', revision: '35ae25b', time: '2016-03-15 16:57:40'
System info: host: 'zhangdeiMac.local', ip: '10.xxx.3.236', os.name: 'Mac OS X', os.arch: 'x86_64', os.version: '10.11.3', java.version: '1.8.0_40'
Driver info: io.appium.java_client.ios.IOSDriver
at sun.reflect.NativeConstructorAccessorImpl.newInstance0(Native Method)
at sun.reflect.NativeConstructorAccessorImpl.newInstance(NativeConstructorAccessorImpl.java:62)
at sun.reflect.DelegatingConstructorAccessorImpl.newInstance(DelegatingConstructorAccessorImpl.java:45)
at java.lang.reflect.Constructor.newInstance(Constructor.java:422)
mac连真机,报这个错,用dmg装的appium1.4.13版本,下载了ideviceinstaller,运行了steps但是还是提示这个错误。
你的问题解决了么 我也是一样的情况
请问一直卡在这个界面,大致是什么原因引起的啊? 刚在Mac上装了appium环境,真机调试出现这个问题
你解决了么?我也是这样 一直卡在这个界面,弹框这样子的。
楼主简直是天使~完美的解决了我的问题,谢谢哒
你问题解决了吗? 我也遇到一样的问题。
问题解决了,将服务器IP地址修改成127.0.0.1就解决了。 之前我的IP地址是设置成内网的一个IP。你可以试一下看是不是这个问题导致的
问题解决了,将服务器IP地址修改成127.0.0.1就解决了。 之前我的IP地址是设置成内网的一个IP。你可以试一下看是不是这个问题导致的
[MJSONWP] Encountered internal error running command: Error: Command failed: ideviceinstaller -u 39d4cc7a73d63d4b2c -u App
at ChildProcess.exithandler (child_process.js:202:12)
at emitTwo (events.js:100:13)
at ChildProcess.emit (events.js:185:7)
at maybeClose (internal/child_process.js:850:16)
at Socket.&anonymous& (internal/child_process.js:323:11)
at emitOne (events.js:90:13)
at Socket.emit (events.js:182:7)
at Pipe._onclose (net.js:475:12)
已经发现是ideviceinstaller -u 39d4cc7a73d63d4b2c -u App命令有问题(后面的-u需要大写),但是去哪个文件里面改?还是说需要用源码改?
什么版本的啊?
1.4.16和1.5.2都有这个问题
依赖包有的问题, node-idevice
?谢谢楼主```应该是换一下node-idevice的版本,我试试去``
问题解决了
修改node-idevice的main.js的exec(this._build_cmd(['-u', app]), function (err, stdout, stderr),中的-u为大写即可
Responding to client with driver.getStatus() result: {"build":{"version":"1.5.2","revision":null}}
[HTTP] &-- GET /wd/hub/status 200 10 ms - 83
[HTTP] --& GET /wd/hub/sessions {}
[MJSONWP] Calling AppiumDriver.getSessions() with args: []
[MJSONWP] Responding to client with driver.getSessions() result: []
[HTTP] &-- GET /wd/hub/sessions 200 3 ms - 40
[HTTP] --& POST /wd/hub/session {"desiredCapabilities":{"platformName":"iOS","platformVersion":"9.3.1","udid":"D8A98E35-BD85-5A5C-9C51-CFAA","automationName":"Appium","bundleId":"com.weizuche076.WeRentCar","deviceName":"iPhone 6"}}
[MJSONWP] Calling AppiumDriver.createSession() with args: [{"platformName":"iOS","platformVersion":"9.3.1","udid":"D8A98E35-BD85-5A5C-9C51-CFAA","automationName":"Appium","bundleId":"com.weizuche07...
[Appium] Creating new IosDriver session
[Appium] Capabilities:
platformName: 'iOS'
platformVersion: '9.3.1'
udid: 'D8A98E35-BD85-5A5C-9C51-CFAA'
automationName: 'Appium'
bundleId: 'com.weizuche076.WeRentCar'
deviceName: 'iPhone 6'
app: 'com.weizuche076.WeRentCar'
noReset: true
showIOSLog: true
[BaseDriver] Session created with session id: 24d224e8-42c4-4525-b2cd-f5485cbbe15b
[debug] [iOS] Not auto-detecting udid.
[debug] [iOS] App is an iOS bundle, will attempt to run as pre-existing
[debug] [iOS] Removing any remaining instruments sockets
[debug] [iOS] Cleaned up instruments socket /var/folders/yw/s47v0nk54yzg04p2ls7m3m0r0000gn/T/instruments_sock
[debug] [iOS] No language specified. Using default strings
[debug] [iOS] Strings file not found. Looking in 'en.lproj' directory
[iOS] Could not file localizable strings file 'Localizable.strings'!
[debug] [iOS] Creating instruments
[debug] [UIAuto] Preparing bootstrap code
[debug] [UIAuto] Dynamic bootstrap dir: /Users/pengbingxiang/Library/Application Support/appium/bootstrap
[debug] [UIAuto] Dynamic env: {"nodePath":"/Applications/Appium.app/Contents/Resources/node/bin/node","commandProxyClientPath":"/Applications/Appium.app/Contents/Resources/node_modules/appium/node_modules/appium-ios-driver/node_modules/appium-uiauto/build/lib/bin/command-proxy-client.js","instrumentsSock":"/var/folders/yw/s47v0nk54yzg04p2ls7m3m0r0000gn/T/instruments_sock","interKeyDelay":null,"justLoopInfinitely":false,"autoAcceptAlerts":false,"autoDismissAlerts":false,"sendKeyStrategy":"grouped"}
[debug] [UIAuto] Dynamic bootstrap code: // This file is automatically generated. Do not manually modify!
[debug] [UIAuto] Dynamic bootstrap path: /Users/pengbingxiang/Library/Application Support/appium/bootstrap/bootstrap-7a90aecc8b979ac8.js
[debug] [UIAuto] Reusing dynamic bootstrap: /Users/pengbingxiang/Library/Application Support/appium/bootstrap/bootstrap-7a90aecc8b979ac8.js
[debug] [iOS] Reset not set, not ending real device
[debug] [iOSLog] Attempting iOS device log capture via libimobiledevice idevicesyslog
[debug] [iOSLog] Found idevicesyslog: '/usr/local/bin/idevicesyslog'
[MJSONWP] Encountered internal error running command: Error: Command failed: ideviceinstaller -U D8A98E35-BD85-5A5C-9C51-CFAA -l
at ChildProcess.exithandler (child_process.js:202:12)
at emitTwo (events.js:100:13)
at ChildProcess.emit (events.js:185:7)
at maybeClose (internal/child_process.js:850:16)
at Process.ChildProcess._handle.onexit (internal/child_process.js:215:5)
[debug] [iOS] Creating iDevice object with udid D8A98E35-BD85-5A5C-9C51-CFAA
[HTTP] &-- POST /wd/hub/session 500 124 ms - 215
[HTTP] --& GET /wd/hub/status {}
[MJSONWP] Calling AppiumDriver.getStatus() with args: []
[MJSONWP] Responding to client with driver.getStatus() result: {"build":{"version":"1.5.2","revision":null}}
[HTTP] &-- GET /wd/hub/status 200 16 ms - 83
楼主帮忙看看是怎么回事?
也是依赖包 node-idevice的原因吗
你的问题后来这么解决的
我和你一样的问题
我把这条命令拿出来直接执行,报的错误信息是 Invalid UDID specified
但是我的udid应该是没有问题的。你这个问题解决了吗
你用模拟器,捣乱啥啊。。。
idevice_id是不是不支持ios9.3?
appium 定位ios的元素太慢了,有什么快点的定位方法吗?driver.executeScript这个方法倒是快,但是跟XPATH一样依赖于全路径
我遇到了相同的问题,不知道怎么解答,之前是可以的,升级了xcode后,就出现了这个问题。
Appium 1.4.13
请问楼主,我appium连接模拟器,起不来是什么原因哦,用Instruments可以录制,但是用appium就是连不上
iOS上有的App会弹出提示框,会造成自动化测试中断,这种问题一般是怎么解决的呢?
Traceback (most recent call last):
File "helloWorld.py", line 107, in
File "helloWorld.py", line 97, in main
testcase = TestCase(desired_caps)
File "helloWorld.py", line 24, in init
self.driver = webdriver.Remote('', desired_caps)
File "build/bdist.macosx-10.11-intel/egg/appium/webdriver/webdriver.py", line 36, in init
File "/Library/Python/2.7/site-packages/selenium-2.53.5-py2.7.egg/selenium/webdriver/remote/webdriver.py", line 90, in init
self.start_session(desired_capabilities, browser_profile)
File "/Library/Python/2.7/site-packages/selenium-2.53.5-py2.7.egg/selenium/webdriver/remote/webdriver.py", line 177, in start_session
response = self.execute(Command.NEW_SESSION, capabilities)
File "/Library/Python/2.7/site-packages/selenium-2.53.5-py2.7.egg/selenium/webdriver/remote/webdriver.py", line 236, in execute
self.error_handler.check_response(response)
File "/Library/Python/2.7/site-packages/selenium-2.53.5-py2.7.egg/selenium/webdriver/remote/errorhandler.py", line 194, in check_response
raise exception_class(message, screen, stacktrace)
selenium.common.exceptions.WebDriverException: Message: An unknown server-side error occurred while processing the command. Original error: Command failed: /bin/sh -c ideviceinstaller -u ba7f3db55fba5f -l
一直报这个错,帮忙看下吧,谢谢!
模拟器可以起来。
依赖包怎么改?
deviceconsole在哪里啊,我的imac上没有
1.5.2/node_modules/appium/node_modules/appium-ios-driver/node_modules/node-idevice这个目录下的main.js文件的138行exec(this._build_cmd(['-U', app]), function (err, stdout, stderr) {
1.5.2/node_modules/appium/node_modules/appium-ios-driver/node_modules/node-idevice这个目录找不到啊。
/Applications/Appium.app/Contents/Resources/node_modules/appium/build/deviceconsole这个目录也没有。
试试这个目录/Applications/Appium.app/Contents/Resources/node_modules/appium/node_modules/appium-ios-driver/node_modules/node-idevice
目录是找到了,把U-&u,问题还在。
是小写改成大写,问题还在的话,你和我碰到的就不是一个问题。
61行有个小写,138是大写,本来就是这么写的。很奇怪的是:Command failed: /bin/sh -c ideviceinstaller -u ba7f3db55fba5f -l ,-l后面就这样断了?
我建议你单独开一个帖子,把所有信息描述的清楚一些,可能会找到问题。
你好,我现在有个页面,开发在外面套了层东西,导致appium inspect 点不到里面的元素,怎么解决?
你都知道原因了。。。那我有啥办法。。
请教下,appium inspect能点到元素的前提是什么?
元素是可见的,或者你可以理解为该元素有 accessible 的属性。
请教一下哈~
ios 真机测试 切换webwiew 后找不到控件了
Set&String& contextNames = driver.getContextHandles();
for (String contextName : contextNames) {
System.out.println(contextName);
if(contextName.contains("WEB")){
driver.context(contextName).switchTo();
System.out.println(driver.findElement(By.name("预约服务人员了解产品")).isDisplayed());
driver.findElement(By.name("预约服务人员了解产品")).click();
System.out.println 输出信息和idea 报错信息:
NATIVE_APP
WEBVIEW_131
org.openqa.selenium.NoSuchElementException: An element could not be located on the page using the given search parameters. (WARNING: The server did not provide any stacktrace information)
Launching Appium server with command: D:\Program Files (x86)\Appium\node.exe lib\server\main.js --address 127.0.0.1 --port 4723 --app D:\androidworkspace\appium_demo\apps\ContactManager.apk --platform-name Android --platform-version 21 --automation-name Appium --device-name "mx5" --log-no-color
info: Welcome to Appium v1.4.16 (REV ae6877eff28d457bd285c0cc62430d)
info: Appium REST http interface listener started on 127.0.0.1:4723
info: [debug] Non-default server args: {"app":"D:\androidworkspace\appium_demo\apps\ContactManager.apk","address":"127.0.0.1","logNoColors":true,"deviceName":"mx5","platformName":"Android","platformVersion":"21","automationName":"Appium"}
info: Console LogLevel: debug
info: --& POST /wd/hub/session {"desiredCapabilities":{"platformVersion":"5.0.1","app":"D:\androidworkspace\appium_demo\apps\ContactManager.apk","platformName":"Android","deviceName":"mx5","browserName":"","appActivity":".ContactManager","appPackage":"com.example.android.contactmanager"}}
info: Client User-Agent string: Apache-HttpClient/4.3.4 (java 1.5)
info: [debug] Using local app from desired caps: D:\androidworkspace\appium_demo\apps\ContactManager.apk
info: [debug] Creating new appium session cb849dfa-ca5e-4f85-b5cf-b4ea53cb5551
info: Starting android appium
info: [debug] Getting Java version
info: Java version is: 1.7.0_67
info: [debug] Checking whether adb is present
info: [debug] Using adb from D:\Program Files (x86)\Android\android-sdk\platform-tools\adb.exe
info: [debug] Using fast reset? true
info: [debug] Preparing device for session
info: [debug] Checking whether app is actually present
info: Retrieving device
info: [debug] Trying to find a connected android device
info: [debug] Getting connected devices...
info: [debug] executing cmd: "D:\Program Files (x86)\Android\android-sdk\platform-tools\adb.exe" devices
info: [debug] 1 device(s) connected
info: Found device 85GBBM922JJY
info: [debug] Setting device id to 85GBBM922JJY
info: [debug] Waiting for device to be ready and to respond to shell commands (timeout = 5)
info: [debug] executing cmd: "D:\Program Files (x86)\Android\android-sdk\platform-tools\adb.exe" -s 85GBBM922JJY wait-for-device
info: [debug] executing cmd: "D:\Program Files (x86)\Android\android-sdk\platform-tools\adb.exe" -s 85GBBM922JJY shell "echo 'ready'"
info: [debug] Starting logcat capture
info: [debug] Getting device API level
info: [debug] executing cmd: "D:\Program Files (x86)\Android\android-sdk\platform-tools\adb.exe" -s 85GBBM922JJY shell "getprop ro.build.version.sdk"
info: [debug] Device is at API Level 21
info: Device API level is: 21
info: [debug] Extracting strings for language: default
info: [debug] executing cmd: "D:\Program Files (x86)\Android\android-sdk\platform-tools\adb.exe" -s 85GBBM922JJY shell "getprop persist.sys.language"
info: [debug] Current device persist.sys.language:
info: [debug] java -jar "D:\Program Files (x86)\Appium\node_modules\appium\node_modules\appium-adb\jars\appium_apk_tools.jar" "stringsFromApk" "D:\androidworkspace\appium_demo\apps\ContactManager.apk" "C:\Users\寰愭稕娑沑AppData\Local\Temp\com.example.android.contactmanager"
info: [debug] Reading strings from converted strings.json
info: [debug] Setting language to default
info: [debug] executing cmd: "D:\Program Files (x86)\Android\android-sdk\platform-tools\adb.exe" -s 85GBBM922JJY push "C:\Users\寰愭稕娑沑\AppData\Local\Temp\com.example.android.contactmanager\strings.json" /data/local/tmp
info: [debug] Checking whether aapt is present
info: [debug] Using aapt from D:\Program Files (x86)\Android\android-sdk\build-tools\23.0.2\aapt.exe
info: [debug] Retrieving process from manifest.
info: [debug] executing cmd: "D:\Program Files (x86)\Android\android-sdk\build-tools\23.0.2\aapt.exe" dump xmltree D:\androidworkspace\appium_demo\apps\ContactManager.apk AndroidManifest.xml
info: [debug] Set app process to: com.example.android.contactmanager
info: [debug] Not uninstalling app since server not started with --full-reset
info: [debug] Checking app cert for D:\androidworkspace\appium_demo\apps\ContactManager.apk.
info: [debug] executing cmd: java -jar "D:\Program Files (x86)\Appium\node_modules\appium\node_modules\appium-adb\jars\verify.jar" D:\androidworkspace\appium_demo\apps\ContactManager.apk
info: [debug] App already signed.
info: [debug] Zip-aligning D:\androidworkspace\appium_demo\apps\ContactManager.apk
info: [debug] Checking whether zipalign is present
info: [debug] Using zipalign from D:\Program Files (x86)\Android\android-sdk\build-tools\23.0.2\zipalign.exe
info: [debug] Zip-aligning apk.
info: [debug] executing cmd: "D:\Program Files (x86)\Android\android-sdk\build-tools\23.0.2\zipalign.exe" -f 4 D:\androidworkspace\appium_demo\apps\ContactManager.apk C:\Users\寰愭稕娑沑AppData\Local\Temp\-11xuowd\appium.tmp
info: [debug] MD5 for app is b2de1dc281ec3e71ef1234
info: [debug] executing cmd: "D:\Program Files (x86)\Android\android-sdk\platform-tools\adb.exe" -s 85GBBM922JJY shell "ls /data/local/tmp/b2de1dc281ec3e71ef1234.apk"
info: [debug] Getting install status for com.example.android.contactmanager
info: [debug] Getting device API level
info: [debug] executing cmd: "D:\Program Files (x86)\Android\android-sdk\platform-tools\adb.exe" -s 85GBBM922JJY shell "getprop ro.build.version.sdk"
info: [debug] Device is at API Level 21
info: [debug] executing cmd: "D:\Program Files (x86)\Android\android-sdk\platform-tools\adb.exe" -s 85GBBM922JJY shell "pm list packages -3 com.example.android.contactmanager"
info: [debug] App is installed
info: App is already installed, resetting app
info: [debug] Running fast reset (stop and clear)
info: [debug] executing cmd: "D:\Program Files (x86)\Android\android-sdk\platform-tools\adb.exe" -s 85GBBM922JJY shell "am force-stop com.example.android.contactmanager"
info: [debug] executing cmd: "D:\Program Files (x86)\Android\android-sdk\platform-tools\adb.exe" -s 85GBBM922JJY shell "pm clear com.example.android.contactmanager"
info: [debug] Forwarding system:4724 to device:4724
info: [debug] executing cmd: "D:\Program Files (x86)\Android\android-sdk\platform-tools\adb.exe" -s 85GBBM922JJY forward tcp:4724 tcp:4724
info: [debug] Pushing appium bootstrap to device...
info: [debug] executing cmd: "D:\Program Files (x86)\Android\android-sdk\platform-tools\adb.exe" -s 85GBBM922JJY push "D:\Program Files (x86)\Appium\node_modules\appium\build\android_bootstrap\AppiumBootstrap.jar" /data/local/tmp/
info: [debug] Pushing settings apk to device...
info: [debug] executing cmd: "D:\Program Files (x86)\Android\android-sdk\platform-tools\adb.exe" -s 85GBBM922JJY install "D:\Program Files (x86)\Appium\node_modules\appium\build\settings_apk\settings_apk-debug.apk"
info: [debug] Pushing unlock helper app to device...
info: [debug] executing cmd: "D:\Program Files (x86)\Android\android-sdk\platform-tools\adb.exe" -s 85GBBM922JJY install "D:\Program Files (x86)\Appium\node_modules\appium\build\unlock_apk\unlock_apk-debug.apk"
info: Starting App
info: [debug] Attempting to kill all 'uiautomator' processes
info: [debug] Getting all processes with 'uiautomator'
info: [debug] executing cmd: "D:\Program Files (x86)\Android\android-sdk\platform-tools\adb.exe" -s 85GBBM922JJY shell "ps 'uiautomator'"
info: [debug] No matching processes found
info: [debug] Running bootstrap
info: [debug] spawning: D:\Program Files (x86)\Android\android-sdk\platform-tools\adb.exe -s 85GBBM922JJY shell uiautomator runtest AppiumBootstrap.jar -c io.appium.android.bootstrap.Bootstrap -e pkg com.example.android.contactmanager -e disableAndroidWatchers false
info: [debug] [UIAUTOMATOR STDOUT] INSTRUMENTATION_STATUS: numtests=1
info: [debug] [UIAUTOMATOR STDOUT] INSTRUMENTATION_STATUS: stream=
info: [debug] [UIAUTOMATOR STDOUT] io.appium.android.bootstrap.Bootstrap:
info: [debug] [UIAUTOMATOR STDOUT] INSTRUMENTATION_STATUS: id=UiAutomatorTestRunner
info: [debug] [UIAUTOMATOR STDOUT] INSTRUMENTATION_STATUS: test=testRunServer
info: [debug] [UIAUTOMATOR STDOUT] INSTRUMENTATION_STATUS: class=io.appium.android.bootstrap.Bootstrap
info: [debug] [UIAUTOMATOR STDOUT] INSTRUMENTATION_STATUS: current=1
info: [debug] [UIAUTOMATOR STDOUT] INSTRUMENTATION_STATUS_CODE: 1
info: [debug] [BOOTSTRAP] [debug] Socket opened on port 4724
info: [debug] [BOOTSTRAP] [debug] Appium Socket Server Ready
info: [debug] [BOOTSTRAP] [debug] Loading json...
info: [debug] [BOOTSTRAP] [debug] json loading complete.
info: [debug] [BOOTSTRAP] [debug] Registered crash watchers.
info: [debug] Waking up device if it's not alive
info: [debug] Pushing command to appium work queue: ["wake",{}]
info: [debug] [BOOTSTRAP] [debug] Client connected
info: [debug] [BOOTSTRAP] [debug] Got data from client: {"cmd":"action","action":"wake","params":{}}
info: [debug] [BOOTSTRAP] [debug] Got command of type ACTION
info: [debug] [BOOTSTRAP] [debug] Got command action: wake
info: [debug] [BOOTSTRAP] [debug] Returning result: {"status":0,"value":true}
info: [debug] executing cmd: "D:\Program Files (x86)\Android\android-sdk\platform-tools\adb.exe" -s 85GBBM922JJY shell "dumpsys window"
info: [debug] Stopping logcat capture
info: [debug] Logcat terminated with code null, signal SIGTERM
info: [debug] [BOOTSTRAP] [debug] Got data from client: {"cmd":"shutdown"}
info: [debug] [BOOTSTRAP] [debug] Got command of type SHUTDOWN
info: [debug] [BOOTSTRAP] [debug] Returning result: {"status":0,"value":"OK, shutting down"}
info: [debug] [UIAUTOMATOR STDOUT] [CDS]close[4724]
info: [debug] [BOOTSTRAP] [debug] Closed client connection
info: [debug] [UIAUTOMATOR STDOUT] INSTRUMENTATION_STATUS: numtests=1
info: [debug] [UIAUTOMATOR STDOUT] INSTRUMENTATION_STATUS: stream=.
info: [debug] [UIAUTOMATOR STDOUT] INSTRUMENTATION_STATUS: id=UiAutomatorTestRunner
info: [debug] [UIAUTOMATOR STDOUT] INSTRUMENTATION_STATUS: test=testRunServer
info: [debug] [UIAUTOMATOR STDOUT] INSTRUMENTATION_STATUS: class=io.appium.android.bootstrap.Bootstrap
info: [debug] [UIAUTOMATOR STDOUT] INSTRUMENTATION_STATUS: current=1
info: [debug] [UIAUTOMATOR STDOUT] INSTRUMENTATION_STATUS_CODE: 0
info: [debug] [UIAUTOMATOR STDOUT] INSTRUMENTATION_STATUS: stream=
info: [debug] [UIAUTOMATOR STDOUT] Test results for WatcherResultPrinter=.
info: [debug] [UIAUTOMATOR STDOUT] Time: 1.027
info: [debug] [UIAUTOMATOR STDOUT] OK (1 test)
info: [debug] [UIAUTOMATOR STDOUT] INSTRUMENTATION_STATUS_CODE: -1
info: [debug] Sent shutdown command, waiting for UiAutomator to stop...
error: Failed to start an Appium session, err was: Error: stdout maxBuffer exceeded.
info: [debug] UiAutomator shut down normally
info: [debug] Cleaning up android objects
info: [debug] Cleaning up appium session
info: [debug] Error: stdout maxBuffer exceeded.
at Socket. (child_process.js:792:12)
at Socket.emit (events.js:107:17)
at readableAddChunk (_stream_readable.js:163:16)
at Socket.Readable.push (_stream_readable.js:126:10)
at Pipe.onread (net.js:540:20)
info: [debug] Responding to client with error: {"status":33,"value":{"message":"A new session could not be created. (Original error: stdout maxBuffer exceeded.)","cmd":"C:\Windows\system32\cmd.exe /s /c \"\"D:\Program Files (x86)\Android\android-sdk\platform-tools\adb.exe\" -s 85GBBM922JJY shell \"dumpsys window\"\"","origValue":"stdout maxBuffer exceeded."},"sessionId":null}
info: &-- POST /wd/hub/session 500
info: --& POST /wd/hub/session {"desiredCapabilities":{"platformVersion":"5.0.1","app":"D:\androidworkspace\appium_demo\apps\ContactManager.apk","platformName":"Android","deviceName":"mx5","browserName":""}}
info: Client User-Agent string: Apache-HttpClient/4.3.4 (java 1.5)
info: [debug] No appActivity desired capability or server param. Parsing from apk.
info: [debug] No appPackage desired capability or server param. Parsing from apk.
info: [debug] Using local app from desired caps: D:\androidworkspace\appium_demo\apps\ContactManager.apk
info: [debug] Creating new appium session 6d0e2b97-5a6e-4e41-a787-af
info: Starting android appium
info: [debug] Getting Java version
info: Java version is: 1.7.0_67
info: [debug] Checking whether adb is present
info: [debug] Using adb from D:\Program Files (x86)\Android\android-sdk\platform-tools\adb.exe
info: [debug] Parsing package and activity from app manifest
info: [debug] Checking whether aapt is present
info: [debug] Using aapt from D:\Program Files (x86)\Android\android-sdk\build-tools\23.0.2\aapt.exe
info: [debug] Extracting package and launch activity from manifest.
info: [debug] executing cmd: "D:\Program Files (x86)\Android\android-sdk\build-tools\23.0.2\aapt.exe" dump badging D:\androidworkspace\appium_demo\apps\ContactManager.apk
info: [debug] badging package: com.example.android.contactmanager
info: [debug] badging act: com.example.android.contactmanager.ContactManager
info: [debug] Parsed package and activity are: com.example.android.contactmanager/com.example.android.contactmanager.ContactManager
info: [debug] Using fast reset? true
info: [debug] Preparing device for session
info: [debug] Checking whether app is actually present
info: Retrieving device
info: [debug] Trying to find a connected android device
info: [debug] Getting connected devices...
info: [debug] executing cmd: "D:\Program Files (x86)\Android\android-sdk\platform-tools\adb.exe" devices
info: [debug] 1 device(s) connected
info: Found device 85GBBM922JJY
info: [debug] Setting device id to 85GBBM922JJY
info: [debug] Waiting for device to be ready and to respond to shell commands (timeout = 5)
info: [debug] executing cmd: "D:\Program Files (x86)\Android\android-sdk\platform-tools\adb.exe" -s 85GBBM922JJY wait-for-device
info: [debug] executing cmd: "D:\Program Files (x86)\Android\android-sdk\platform-tools\adb.exe" -s 85GBBM922JJY shell "echo 'ready'"
info: [debug] Starting logcat capture
info: [debug] Getting device API level
info: [debug] executing cmd: "D:\Program Files (x86)\Android\android-sdk\platform-tools\adb.exe" -s 85GBBM922JJY shell "getprop ro.build.version.sdk"
info: [debug] Device is at API Level 21
info: Device API level is: 21
info: [debug] Extracting strings for language: default
info: [debug] executing cmd: "D:\Program Files (x86)\Android\android-sdk\platform-tools\adb.exe" -s 85GBBM922JJY shell "getprop persist.sys.language"
info: [debug] Current device persist.sys.language:
info: [debug] java -jar "D:\Program Files (x86)\Appium\node_modules\appium\node_modules\appium-adb\jars\appium_apk_tools.jar" "stringsFromApk" "D:\androidworkspace\appium_demo\apps\ContactManager.apk" "C:\Users\寰愭稕娑沑AppData\Local\Temp\com.example.android.contactmanager"
info: [debug] Reading strings from converted strings.json
info: [debug] Setting language to default
info: [debug] executing cmd: "D:\Program Files (x86)\Android\android-sdk\platform-tools\adb.exe" -s 85GBBM922JJY push "C:\Users\寰愭稕娑沑\AppData\Local\Temp\com.example.android.contactmanager\strings.json" /data/local/tmp
info: [debug] Checking whether aapt is present
info: [debug] Using aapt from D:\Program Files (x86)\Android\android-sdk\build-tools\23.0.2\aapt.exe
info: [debug] Retrieving process from manifest.
info: [debug] executing cmd: "D:\Program Files (x86)\Android\android-sdk\build-tools\23.0.2\aapt.exe" dump xmltree D:\androidworkspace\appium_demo\apps\ContactManager.apk AndroidManifest.xml
info: [debug] Set app process to: com.example.android.contactmanager
info: [debug] Not uninstalling app since server not started with --full-reset
info: [debug] Checking app cert for D:\androidworkspace\appium_demo\apps\ContactManager.apk.
info: [debug] executing cmd: java -jar "D:\Program Files (x86)\Appium\node_modules\appium\node_modules\appium-adb\jars\verify.jar" D:\androidworkspace\appium_demo\apps\ContactManager.apk
info: [debug] App already signed.
info: [debug] Zip-aligning D:\androidworkspace\appium_demo\apps\ContactManager.apk
info: [debug] Checking whether zipalign is present
info: [debug] Using zipalign from D:\Program Files (x86)\Android\android-sdk\build-tools\23.0.2\zipalign.exe
info: [debug] Zip-aligning apk.
info: [debug] executing cmd: "D:\Program Files (x86)\Android\android-sdk\build-tools\23.0.2\zipalign.exe" -f 4 D:\androidworkspace\appium_demo\apps\ContactManager.apk C:\Users\寰愭稕娑沑AppData\Local\Temp\-7rmlqa\appium.tmp
info: [debug] MD5 for app is b2de1dc281ec3e71ef1234
info: [debug] executing cmd: "D:\Program Files (x86)\Android\android-sdk\platform-tools\adb.exe" -s 85GBBM922JJY shell "ls /data/local/tmp/b2de1dc281ec3e71ef1234.apk"
info: [debug] Getting install status for com.example.android.contactmanager
info: [debug] Getting device API level
info: [debug] executing cmd: "D:\Program Files (x86)\Android\android-sdk\platform-tools\adb.exe" -s 85GBBM922JJY shell "getprop ro.build.version.sdk"
info: [debug] Device is at API Level 21
info: [debug] executing cmd: "D:\Program Files (x86)\Android\android-sdk\platform-tools\adb.exe" -s 85GBBM922JJY shell "pm list packages -3 com.example.android.contactmanager"
info: [debug] App is installed
info: App is already installed, resetting app
info: [debug] Running fast reset (stop and clear)
info: [debug] executing cmd: "D:\Program Files (x86)\Android\android-sdk\platform-tools\adb.exe" -s 85GBBM922JJY shell "am force-stop com.example.android.contactmanager"
info: [debug] executing cmd: "D:\Program Files (x86)\Android\android-sdk\platform-tools\adb.exe" -s 85GBBM922JJY shell "pm clear com.example.android.contactmanager"
info: [debug] Forwarding system:4724 to device:4724
info: [debug] executing cmd: "D:\Program Files (x86)\Android\android-sdk\platform-tools\adb.exe" -s 85GBBM922JJY forward tcp:4724 tcp:4724
info: [debug] Pushing appium bootstrap to device...
info: [debug] executing cmd: "D:\Program Files (x86)\Android\android-sdk\platform-tools\adb.exe" -s 85GBBM922JJY push "D:\Program Files (x86)\Appium\node_modules\appium\build\android_bootstrap\AppiumBootstrap.jar" /data/local/tmp/
info: [debug] Pushing settings apk to device...
info: [debug] executing cmd: "D:\Program Files (x86)\Android\android-sdk\platform-tools\adb.exe" -s 85GBBM922JJY install "D:\Program Files (x86)\Appium\node_modules\appium\build\settings_apk\settings_apk-debug.apk"
info: [debug] Pushing unlock helper app to device...
info: [debug] executing cmd: "D:\Program Files (x86)\Android\android-sdk\platform-tools\adb.exe" -s 85GBBM922JJY install "D:\Program Files (x86)\Appium\node_modules\appium\build\unlock_apk\unlock_apk-debug.apk"
info: Starting App
info: [debug] Attempting to kill all 'uiautomator' processes
info: [debug] Getting all processes with 'uiautomator'
info: [debug] executing cmd: "D:\Program Files (x86)\Android\android-sdk\platform-tools\adb.exe" -s 85GBBM922JJY shell "ps 'uiautomator'"
info: [debug] No matching processes found
info: [debug] Running bootstrap
info: [debug] spawning: D:\Program Files (x86)\Android\android-sdk\platform-tools\adb.exe -s 85GBBM922JJY shell uiautomator runtest AppiumBootstrap.jar -c io.appium.android.bootstrap.Bootstrap -e pkg com.example.android.contactmanager -e disableAndroidWatchers false
info: [debug] [UIAUTOMATOR STDOUT] INSTRUMENTATION_STATUS: numtests=1
info: [debug] [UIAUTOMATOR STDOUT] INSTRUMENTATION_STATUS: stream=
info: [debug] [UIAUTOMATOR STDOUT] io.appium.android.bootstrap.Bootstrap:
info: [debug] [UIAUTOMATOR STDOUT] INSTRUMENTATION_STATUS: id=UiAutomatorTestRunner
info: [debug] [UIAUTOMATOR STDOUT] INSTRUMENTATION_STATUS: test=testRunServer
info: [debug] [UIAUTOMATOR STDOUT] INSTRUMENTATION_STATUS: class=io.appium.android.bootstrap.Bootstrap
info: [debug] [UIAUTOMATOR STDOUT] INSTRUMENTATION_STATUS: current=1
info: [debug] [UIAUTOMATOR STDOUT] INSTRUMENTATION_STATUS_CODE: 1
info: [debug] [BOOTSTRAP] [debug] Socket opened on port 4724
info: [debug] [BOOTSTRAP] [debug] Appium Socket Server Ready
info: [debug] [BOOTSTRAP] [debug] Loading json...
info: [debug] [BOOTSTRAP] [debug] json loading complete.
info: [debug] [BOOTSTRAP] [debug] Registered crash watchers.
info: [debug] Waking up device if it's not alive
info: [debug] Pushing command to appium work queue: ["wake",{}]
info: [debug] [BOOTSTRAP] [debug] Client connected
info: [debug] [BOOTSTRAP] [debug] Got data from client: {"cmd":"action","action":"wake","params":{}}
info: [debug] [BOOTSTRAP] [debug] Got command of type ACTION
info: [debug] [BOOTSTRAP] [debug] Got command action: wake
info: [debug] [BOOTSTRAP] [debug] Returning result: {"status":0,"value":true}
info: [debug] executing cmd: "D:\Program Files (x86)\Android\android-sdk\platform-tools\adb.exe" -s 85GBBM922JJY shell "dumpsys window"
info: [debug] Stopping logcat capture
info: [debug] Logcat terminated with code null, signal SIGTERM
info: [debug] [BOOTSTRAP] [debug] Got data from client: {"cmd":"shutdown"}
info: [debug] [BOOTSTRAP] [debug] Got command of type SHUTDOWN
info: [debug] [BOOTSTRAP] [debug] Returning result: {"status":0,"value":"OK, shutting down"}
info: [debug] [UIAUTOMATOR STDOUT] [CDS]close[4724]
info: [debug] [BOOTSTRAP] [debug] Closed client connection
info: [debug] [UIAUTOMATOR STDOUT] INSTRUMENTATION_STATUS: numtests=1
info: [debug] [UIAUTOMATOR STDOUT] INSTRUMENTATION_STATUS: stream=.
info: [debug] [UIAUTOMATOR STDOUT] INSTRUMENTATION_STATUS: id=UiAutomatorTestRunner
info: [debug] [UIAUTOMATOR STDOUT] INSTRUMENTATION_STATUS: test=testRunServer
info: [debug] [UIAUTOMATOR STDOUT] INSTRUMENTATION_STATUS: class=io.appium.android.bootstrap.Bootstrap
info: [debug] [UIAUTOMATOR STDOUT] INSTRUMENTATION_STATUS: current=1
info: [debug] [UIAUTOMATOR STDOUT] INSTRUMENTATION_STATUS_CODE: 0
info: [debug] [UIAUTOMATOR STDOUT] INSTRUMENTATION_STATUS: stream=
info: [debug] [UIAUTOMATOR STDOUT] Test results for WatcherResultPrinter=.
info: [debug] [UIAUTOMATOR STDOUT] Time: 1.06
info: [debug] [UIAUTOMATOR STDOUT] OK (1 test)
info: [debug] [UIAUTOMATOR STDOUT] INSTRUMENTATION_STATUS_CODE: -1
info: [debug] Sent shutdown command, waiting for UiAutomator to stop...
info: [debug] UiAutomator shut down normally
info: [debug] Cleaning up android objects
info: [debug] Cleaning up appium session
error: Failed to start an Appium session, err was: Error: stdout maxBuffer exceeded.
info: [debug] Error: stdout maxBuffer exceeded.
at Socket. (child_process.js:792:12)
at Socket.emit (events.js:107:17)
at readableAddChunk (_stream_readable.js:163:16)
at Socket.Readable.push (_stream_readable.js:126:10)
at Pipe.onread (net.js:540:20)
模拟器下可以使用,求解,谢谢
我这个帖子是ios的,android你起什么劲?
楼主我也遇到 inspector打不开,你说要把
device console 复制到相应的路径,我想问下怎么找到
device console 这个文件
请问这个是什么原因
看英文,你的问题是英文提示的。
info: [debug] Responding to client with success: {"status":0,"value":{"build":{"version":"1.4.13","revision":"c75d8adcb66afec21f76a"},"isShuttingDown":false}}
info: &-- GET /wd/hub/status 200 0.721 ms - 128 {"status":0,"value":{"build":{"version":"1.4.13","revision":"c75d8adcb66afec21f76a"},"isShuttingDown":false}}
info: [debug] /Users/kugou/Downloads/KugouFM_V4.3.0_4310.ipa copied to /var/folders/26/m53drpcd2ms2_8lw_9fmxnsw0000gn/T/-qhe416/appium-app.zip
info: [debug] Unzipping /var/folders/26/m53drpcd2ms2_8lw_9fmxnsw0000gn/T/-qhe416/appium-app.zip
info: [debug] Testing zip archive: /var/folders/26/m53drpcd2ms2_8lw_9fmxnsw0000gn/T/-qhe416/appium-app.zip
info: [debug] Zip archive tested clean
info: [debug] Unzip successful
info: [debug] Using locally extracted app: /var/folders/26/m53drpcd2ms2_8lw_9fmxnsw0000gn/T/-qhe416/Payload/KugouFM.app
info: [debug] Creating new appium session dc30a0f2-d8cc-4f6b-a124-0c228be27f00
info: [debug] Removing any remaining instruments sockets
info: [debug] Cleaned up instruments socket /tmp/in

我要回帖

更多关于 怎样才能变白 的文章

 

随机推荐