|
现在我们在一个项目中,要进行自动化处理,自动化的原则就是解放双手,我们先写一个简单的自动化用例,使我们的Java代码实现安装apk,然后启动,滑动,自动输入账号密码,自动登录,首页板块每个功能模块进行点击。
代码如下:
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
149
150
151
152
153
154
155
156
157
158
159
160
161
162
163
164
165
166
167
168
169
170
171
172
173
174
175
176
177
178
179
180
181
182
183
184
185
186
187
188
189
190
191
192
193
194
195
196
197
198
199
200
201
202
203
204
205
206
207
208
209
210
211
212
213
214
215
216
217
218
219
220
221
222
223
224
225
226
227
228
229
230
231
232
233
234
235
236
237
238
239
240
241
242
243
244
245
246
247
248
249
250
251
252
253
254
255
256
257
258
259
260
261
262
263
264
265
266
267
268
269
270
271
272
273
274
275
276
277
278
279
280
281
282
283
284
285
286
287
288
289
290
291
292
293
294
295
296
297
298
299
300
301
302
303
304
305
306
307
308
309
310
311
312
313
314
315
316
317
318
319
320
321
322
323
324
325
326
327
328
329
330
331
332
333
334
335
336
337
338
339
340
341
342
343
344
345
346
347
348
349
350
351
352
353
| package com.glen.demo;
import io.appium.java_client.AppiumDriver;
import io.appium.java_client.android.AndroidDriver;
import io.appium.java_client.android.AndroidKeyCode;
import java.io.File;
import java.net.URL;
import org.junit.After;
import org.junit.Before;
import org.junit.Test;
import org.openqa.selenium.By;
import org.openqa.selenium.remote.CapabilityType;
import org.openqa.selenium.remote.DesiredCapabilities;
public class DreamHouseClick {
private static AppiumDriver driver;
@Before
public void setUp() throws Exception {
//设置apk的路径
File classpathRoot = new File(System.getProperty("user.dir"));
File appDir = new File(classpathRoot, "apps");
File app = new File(appDir, "DreamHouse.apk");
//设置自动化相关设置
DesiredCapabilities capabilities = new DesiredCapabilities();
capabilities.setCapability(CapabilityType.BROWSER_NAME, "");
capabilities.setCapability("platformName", "Android");
capabilities.setCapability("deviceName", "DreamHouse");
//设置安卓系统版本
capabilities.setCapability("platformVersion", "4.2.2");
//设置apk路径
capabilities.setCapability("app", app.getAbsolutePath());
//设置app的主包名和主类名
capabilities.setCapability("appPackage", "com.uama.dreamhouseforlc");
capabilities.setCapability("appActivity", "com.uama.dreamhouseforlc.actvity.LaunchActivity");
//初始化
//driver = new AppiumDriver(new URL("http://127.0.0.1:4723/wd/hub"), capabilities);
driver = new AndroidDriver(new URL("http://127.0.0.1:4723/wd/hub"), capabilities);
}
@After
public void tearDown() throws Exception {
//driver.quit();
System.out.println("开始滑动!");
}
@Test
public void swipe() throws InterruptedException{
Thread.sleep(10000);
int width = driver.manage().window().getSize().width;
int height = driver.manage().window().getSize().height;
driver.swipe(width *7/8, height/6, width/8, height/6, 500);
System.out.println("滑动第一页!");
driver.swipe(width *7/8, height/6, width/8, height/6, 500);
Thread.sleep(5000);
System.out.println("滑动第二页!");
driver.swipe(width *7/8, height/6, width/8, height/6, 500);
System.out.println("滑动第三页!");
Thread.sleep(5000);
Thread.sleep(5000);
//点击第四页立即启用
driver.findElement(By.className("android.widget.ImageView")).click();
{
//输入帐号
driver.findElementById("com.uama.dreamhouseforlc:id/edit_userName").click();
Thread.sleep(1000);
driver.findElementById("com.uama.dreamhouseforlc:id/edit_userName").sendKeys("18868890572");
//输入密码
driver.findElementById("com.uama.dreamhouseforlc:id/edit_userPass").click();
Thread.sleep(1000);
driver.findElementById("com.uama.dreamhouseforlc:id/edit_userPass").sendKeys("123456");
Thread.sleep(1000);
//点击确认
driver.findElementById("com.uama.dreamhouseforlc:id/text_login_index").click();
Thread.sleep(2000);
}
//往下滑动
swipedown();
//点击项目信息
ObjectProject();
//点击楼盘图片
BuildingPictures();
//点击周边配套
Peripheralmatching();
//工程进度
Projectprogress();
//看房预约
Housereservation();
//意见征询
Opinionconsultation();
//绿城信用贷
Greencredit();
//黄龙饭店
DragonHotel();
//生活服务
Lifeservice();
System.out.println("生活服务头!");
//健康服务
Healthservices();
//金融服务
financialservice();
//文化服务
CulturalService();
//头部切换
Chooserealestate();
//导航
Navigation();
//动态
dynamic();
//动态详情
DynamicDetails();
//-----------------底部板块--------------------
//成长记
Citylengthrecord();
//业工会
Tradeunion();
//我的
my();
}
//登陆后首页往下刷新
private void swipedown() throws InterruptedException {
int width = driver.manage().window().getSize().width;
int height = driver.manage().window().getSize().height;
Thread.sleep(2000);
driver.swipe(width/2,height/4, width/2, 3*height/4,1000);
Thread.sleep(2000);
}
//点击项目信息,然后点击返回
private void ObjectProject() throws InterruptedException {
driver.findElement(By.name("项目信息")).click();
Thread.sleep(1000);
((AndroidDriver) driver).sendKeyEvent(AndroidKeyCode.BACK);
return;
}
//点击楼盘图片,然后点击返回
private void BuildingPictures() throws InterruptedException {
driver.findElement(By.name("楼盘图片")).click();
Thread.sleep(1000);
((AndroidDriver) driver).sendKeyEvent(AndroidKeyCode.BACK);
return;
}
//点击周边配套
private void Peripheralmatching() throws InterruptedException {
driver.findElement(By.name("周边配套")).click();
Thread.sleep(1000);
((AndroidDriver) driver).sendKeyEvent(AndroidKeyCode.BACK);
return;
}
//工程进度
private void Projectprogress() throws InterruptedException{
driver.findElement(By.name("工程进度")).click();
Thread.sleep(1000);
((AndroidDriver) driver).sendKeyEvent(AndroidKeyCode.BACK);
}
//看房预约
private void Housereservation() throws InterruptedException{
driver.findElement(By.name("看房预约")).click();
Thread.sleep(1000);
((AndroidDriver) driver).sendKeyEvent(AndroidKeyCode.BACK);
return;
}
//意见征询
private void Opinionconsultation() throws InterruptedException{
driver.findElement(By.name("意见征询")).click();
//点击确认
driver.findElementById("com.uama.dreamhouseforlc:id/know").click();
Thread.sleep(1000);
((AndroidDriver) driver).sendKeyEvent(AndroidKeyCode.BACK);
return;
}
//绿城信贷
private void Greencredit() throws InterruptedException {
driver.findElement(By.name("绿城信用贷")).click();
Thread.sleep(1000);
((AndroidDriver) driver).sendKeyEvent(AndroidKeyCode.BACK);
return;
}
//黄龙饭店
private void DragonHotel()throws InterruptedException {
driver.findElement(By.name("黄龙饭店")).click();
Thread.sleep(1000);
((AndroidDriver) driver).sendKeyEvent(AndroidKeyCode.BACK);
return;
}
//滑动未实现
//生活服务
private void Lifeservice()throws InterruptedException {
driver.findElement(By.name("生活服务")).click();
Thread.sleep(1000);
((AndroidDriver) driver).sendKeyEvent(AndroidKeyCode.BACK);
System.out.println("生活服务尾部");
return;
}
//健康服务
private void Healthservices()throws InterruptedException {
driver.findElement(By.name("健康服务")).click();
Thread.sleep(1000);
((AndroidDriver) driver).sendKeyEvent(AndroidKeyCode.BACK);
return;
}
//金融服务
private void financialservice()throws InterruptedException {
driver.findElement(By.name("金融服务")).click();
Thread.sleep(1000);
((AndroidDriver) driver).sendKeyEvent(AndroidKeyCode.BACK);
return;
}
//文化服务
private void CulturalService()throws InterruptedException {
driver.findElement(By.name("文化服务")).click();
Thread.sleep(1000);
((AndroidDriver) driver).sendKeyEvent(AndroidKeyCode.BACK);
return;
}
//头部楼房切换
private void Chooserealestate() throws InterruptedException {
driver.findElementById("com.uama.dreamhouseforlc:id/tx_bar_title").click();
Thread.sleep(1000);
((AndroidDriver) driver).sendKeyEvent(AndroidKeyCode.BACK);
return;
}
//导航
private void Navigation() throws InterruptedException {
driver.findElementById("com.uama.dreamhouseforlc:id/navigate").click();
Thread.sleep(1000);
((AndroidDriver) driver).sendKeyEvent(AndroidKeyCode.BACK);
return;
}
//动态
private void dynamic()throws InterruptedException {
driver.findElement(By.name("动态")).click();
Thread.sleep(1000);
((AndroidDriver) driver).sendKeyEvent(AndroidKeyCode.BACK);
return;
}
//动态详情
private void DynamicDetails()throws InterruptedException {
driver.findElementById("com.uama.dreamhouseforlc:id/tv_adrolling").click();
Thread.sleep(1000);
((AndroidDriver) driver).sendKeyEvent(AndroidKeyCode.BACK);
return;
}
//----------------------------底部板块------------------------------------
//城长记
private void Citylengthrecord() throws InterruptedException {
driver.findElementById("com.uama.dreamhouseforlc:id/tab_grow").click();
Thread.sleep(1500);
((AndroidDriver) driver).sendKeyEvent(AndroidKeyCode.BACK);
return;
}
//业工会
private void Tradeunion()throws InterruptedException {
driver.findElementById("com.uama.dreamhouseforlc:id/tab_yegong").click();
Thread.sleep(1500);
((AndroidDriver) driver).sendKeyEvent(AndroidKeyCode.BACK);
return;
}
//我的
private void my() throws InterruptedException{
driver.findElementById("com.uama.dreamhouseforlc:id/tab_mine").click();
Thread.sleep(1500);
((AndroidDriver) driver).sendKeyEvent(AndroidKeyCode.BACK);
return;
}
}
|
软件截图如下:
appium日志如下:
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
149
150
151
152
153
154
155
156
157
158
159
160
161
162
163
164
165
166
167
168
169
170
171
172
173
174
175
176
177
178
179
180
181
182
183
184
185
186
187
188
189
190
191
192
193
194
195
196
197
198
199
200
201
202
203
204
205
206
207
208
209
210
211
212
213
214
215
216
217
218
219
220
221
222
223
224
225
226
227
228
229
230
231
232
233
234
235
236
237
238
239
240
241
242
243
244
245
246
247
248
249
250
251
252
253
254
255
256
257
258
259
260
261
262
263
264
265
266
267
268
269
270
271
272
273
274
275
276
277
278
279
280
281
282
283
284
285
286
287
288
289
290
291
292
293
294
295
296
297
298
299
300
301
302
303
304
305
306
307
308
309
310
311
312
313
314
315
316
317
318
319
320
321
322
323
324
325
326
327
328
329
330
331
332
333
334
335
336
337
338
339
340
341
342
343
344
345
346
347
348
349
350
351
352
353
354
355
356
357
358
359
360
361
362
363
364
365
366
367
368
369
370
371
372
373
374
375
376
377
378
379
380
381
382
383
384
385
386
387
388
389
390
391
392
393
394
395
396
397
398
399
400
401
402
403
404
405
406
407
408
409
410
411
412
413
414
415
416
417
418
419
420
421
422
423
424
425
426
427
428
429
430
431
432
433
434
435
436
437
438
439
440
441
442
443
444
445
446
447
448
449
450
451
452
453
454
455
456
457
458
459
460
461
462
463
464
465
466
467
468
469
470
471
472
473
474
475
476
477
478
479
480
481
482
483
484
485
486
487
488
489
490
491
492
493
494
495
496
497
498
499
500
501
502
503
504
505
506
507
508
509
510
511
512
513
514
515
516
517
518
519
520
521
522
523
524
525
526
527
528
529
530
531
532
533
534
535
536
537
538
539
540
541
542
543
544
545
546
547
548
549
550
551
552
553
554
555
556
557
558
559
560
561
562
563
564
565
566
567
568
569
570
571
572
573
574
575
576
577
578
579
580
581
582
583
584
585
586
587
588
589
590
591
592
593
594
595
596
597
598
599
600
601
602
603
604
605
606
607
608
609
610
611
612
613
614
615
616
617
618
619
620
621
622
623
624
625
626
627
628
629
630
631
632
633
634
635
636
637
638
639
640
641
642
643
644
645
646
647
648
649
650
651
652
653
654
655
656
657
658
659
660
661
662
663
664
665
666
667
668
669
670
671
672
673
674
675
676
677
678
679
680
681
682
683
684
685
686
687
688
689
690
691
692
693
694
695
696
697
698
699
700
701
702
703
704
705
706
707
708
709
710
711
712
713
714
715
716
717
718
719
720
721
722
723
724
725
726
727
728
729
730
731
732
733
734
735
736
737
738
739
740
741
742
743
744
745
746
747
748
749
750
751
752
753
754
755
756
757
758
759
760
761
762
763
764
765
766
767
768
769
770
771
772
773
774
775
776
777
778
779
780
781
782
783
784
785
786
787
788
789
790
791
792
793
794
795
796
797
798
799
800
801
802
803
804
805
806
807
808
809
810
811
812
813
814
815
816
817
818
819
820
821
822
823
824
825
826
827
828
829
830
831
832
833
834
835
836
837
838
839
840
841
842
843
844
845
846
847
848
849
850
851
852
853
854
855
856
857
858
859
860
861
862
863
864
865
866
867
868
869
870
871
872
873
874
875
876
877
878
879
880
881
882
883
884
885
| > Checking if an update is available
> Launching Appium server with command: C:\Program Files (x86)\Appium\node.exe lib\server\main.js --address 127.0.0.1 --port 4723 --platform-name Android --platform-version 23 --automation-name Appium --log-no-color
> Update not available
> info: Welcome to Appium v1.4.16 (REV ae6877eff263066b26328d457bd285c0cc62430d)
> info: Appium REST http interface listener started on 127.0.0.1:4723
> info: [debug] Non-default server args: {"address":"127.0.0.1","logNoColors":true,"platformName":"Android","platformVersion":"23","automationName":"Appium"}
> info: Console LogLevel: debug
> info: --> POST /wd/hub/session {"desiredCapabilities":{"platformVersion":"4.2.2","app":"C:\\workspace\\Appium_demo\\apps\\DreamHouse.apk","platformName":"Android","deviceName":"DreamHouse","browserName":"","appActivity":"com.uama.dreamhouseforlc.actvity.LaunchActivity","appPackage":"com.uama.dreamhouseforlc"}}
> info: Client User-Agent string: Apache-HttpClient/4.3.4 (java 1.5)
> info: [debug] Using local app from desired caps: C:\workspace\Appium_demo\apps\DreamHouse.apk
> info: [debug] Creating new appium session 198560cc-d57b-407b-8c7b-51712a7e14a5
> info: Starting android appium
> info: [debug] Getting Java version
> info: Java version is: 1.7.0_55
> info: [debug] Checking whether adb is present
> info: [debug] Using adb from E:\adt-bundle-windows-x86_64-20140321\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: E:\adt-bundle-windows-x86_64-20140321\sdk\platform-tools\adb.exe devices
> info: [debug] 1 device(s) connected
> info: Found device 127.0.0.1:62001
> info: [debug] Setting device id to 127.0.0.1:62001
> info: [debug] Waiting for device to be ready and to respond to shell commands (timeout = 5)
> info: [debug] executing cmd: E:\adt-bundle-windows-x86_64-20140321\sdk\platform-tools\adb.exe -s 127.0.0.1:62001 wait-for-device
> info: [debug] executing cmd: E:\adt-bundle-windows-x86_64-20140321\sdk\platform-tools\adb.exe -s 127.0.0.1:62001 shell "echo 'ready'"
> info: [debug] Starting logcat capture
> info: [debug] Getting device API level
> info: [debug] executing cmd: E:\adt-bundle-windows-x86_64-20140321\sdk\platform-tools\adb.exe -s 127.0.0.1:62001 shell "getprop ro.build.version.sdk"
> info: [debug] Device is at API Level 19
> info: Device API level is: 19
> info: [debug] Extracting strings for language: default
> info: [debug] executing cmd: E:\adt-bundle-windows-x86_64-20140321\sdk\platform-tools\adb.exe -s 127.0.0.1:62001 shell "getprop persist.sys.language"
> info: [debug] Current device persist.sys.language: zh
> info: [debug] java -jar "C:\Program Files (x86)\Appium\node_modules\appium\node_modules\appium-adb\jars\appium_apk_tools.jar" "stringsFromApk" "C:\workspace\Appium_demo\apps\DreamHouse.apk" "C:\Users\FW\AppData\Local\Temp\com.uama.dreamhouseforlc" zh
> info: [debug] Reading strings from converted strings.json
> info: [debug] Setting language to default
> info: [debug] executing cmd: E:\adt-bundle-windows-x86_64-20140321\sdk\platform-tools\adb.exe -s 127.0.0.1:62001 push "C:\\Users\\FW\\AppData\\Local\\Temp\\com.uama.dreamhouseforlc\\strings.json" /data/local/tmp
> info: [debug] Checking whether aapt is present
> info: [debug] Using aapt from E:\adt-bundle-windows-x86_64-20140321\sdk\build-tools\android-4.4.2\aapt.exe
> info: [debug] Retrieving process from manifest.
> info: [debug] executing cmd: E:\adt-bundle-windows-x86_64-20140321\sdk\build-tools\android-4.4.2\aapt.exe dump xmltree C:\workspace\Appium_demo\apps\DreamHouse.apk AndroidManifest.xml
> info: [debug] Set app process to: com.uama.dreamhouseforlc
> info: [debug] Not uninstalling app since server not started with --full-reset
> info: [debug] Checking app cert for C:\workspace\Appium_demo\apps\DreamHouse.apk.
> info: [debug] executing cmd: java -jar "C:\Program Files (x86)\Appium\node_modules\appium\node_modules\appium-adb\jars\verify.jar" C:\workspace\Appium_demo\apps\DreamHouse.apk
> info: [debug] App already signed.
> info: [debug] Zip-aligning C:\workspace\Appium_demo\apps\DreamHouse.apk
> info: [debug] Checking whether zipalign is present
> info: [debug] Using zipalign from E:\adt-bundle-windows-x86_64-20140321\sdk\tools\zipalign.exe
> info: [debug] Zip-aligning apk.
> info: [debug] executing cmd: E:\adt-bundle-windows-x86_64-20140321\sdk\tools\zipalign.exe -f 4 C:\workspace\Appium_demo\apps\DreamHouse.apk C:\Users\FW\AppData\Local\Temp\116628-1520-r8zdej\appium.tmp
> info: [debug] MD5 for app is 3bac6ec4271550c37a256fff5df09b0d
> info: [debug] executing cmd: E:\adt-bundle-windows-x86_64-20140321\sdk\platform-tools\adb.exe -s 127.0.0.1:62001 shell "ls /data/local/tmp/3bac6ec4271550c37a256fff5df09b0d.apk"
> info: [debug] Getting install status for com.uama.dreamhouseforlc
> info: [debug] Getting device API level
> info: [debug] executing cmd: E:\adt-bundle-windows-x86_64-20140321\sdk\platform-tools\adb.exe -s 127.0.0.1:62001 shell "getprop ro.build.version.sdk"
> info: [debug] Device is at API Level 19
> info: [debug] executing cmd: E:\adt-bundle-windows-x86_64-20140321\sdk\platform-tools\adb.exe -s 127.0.0.1:62001 shell "pm list packages -3 com.uama.dreamhouseforlc"
> info: [debug] App is not installed
> info: Installing App
> info: [debug] executing cmd: E:\adt-bundle-windows-x86_64-20140321\sdk\platform-tools\adb.exe -s 127.0.0.1:62001 shell "mkdir -p /data/local/tmp/"
> info: [debug] Removing any old apks
> info: [debug] executing cmd: E:\adt-bundle-windows-x86_64-20140321\sdk\platform-tools\adb.exe -s 127.0.0.1:62001 shell "ls /data/local/tmp/*.apk"
> info: [debug] Found an apk we want to keep at /data/local/tmp/3bac6ec4271550c37a256fff5df09b0d.apk
> info: [debug] Couldn't find any apks to remove
> info: [debug] Uninstalling com.uama.dreamhouseforlc
> info: [debug] executing cmd: E:\adt-bundle-windows-x86_64-20140321\sdk\platform-tools\adb.exe -s 127.0.0.1:62001 shell "am force-stop com.uama.dreamhouseforlc"
> info: [debug] executing cmd: E:\adt-bundle-windows-x86_64-20140321\sdk\platform-tools\adb.exe -s 127.0.0.1:62001 uninstall com.uama.dreamhouseforlc
> info: [debug] App was not uninstalled, maybe it wasn't on device?
> info: [debug] executing cmd: E:\adt-bundle-windows-x86_64-20140321\sdk\platform-tools\adb.exe -s 127.0.0.1:62001 shell "pm install -r /data/local/tmp/3bac6ec4271550c37a256fff5df09b0d.apk"
> info: [debug] Forwarding system:4724 to device:4724
> info: [debug] executing cmd: E:\adt-bundle-windows-x86_64-20140321\sdk\platform-tools\adb.exe -s 127.0.0.1:62001 forward tcp:4724 tcp:4724
> info: [debug] Pushing appium bootstrap to device...
> info: [debug] executing cmd: E:\adt-bundle-windows-x86_64-20140321\sdk\platform-tools\adb.exe -s 127.0.0.1:62001 push "C:\\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: E:\adt-bundle-windows-x86_64-20140321\sdk\platform-tools\adb.exe -s 127.0.0.1:62001 install "C:\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: E:\adt-bundle-windows-x86_64-20140321\sdk\platform-tools\adb.exe -s 127.0.0.1:62001 install "C:\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: E:\adt-bundle-windows-x86_64-20140321\sdk\platform-tools\adb.exe -s 127.0.0.1:62001 shell "ps 'uiautomator'"
> info: [debug] No matching processes found
> info: [debug] Running bootstrap
> info: [debug] spawning: E:\adt-bundle-windows-x86_64-20140321\sdk\platform-tools\adb.exe -s 127.0.0.1:62001 shell uiautomator runtest AppiumBootstrap.jar -c io.appium.android.bootstrap.Bootstrap -e pkg com.uama.dreamhouseforlc -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] executing cmd: E:\adt-bundle-windows-x86_64-20140321\sdk\platform-tools\adb.exe -s 127.0.0.1:62001 shell "dumpsys window"
> info: [debug] [BOOTSTRAP] [debug] Returning result: {"value":true,"status":0}
> info: [debug] Screen already unlocked, continuing.
> info: [debug] Pushing command to appium work queue: ["getDataDir",{}]
> info: [debug] [BOOTSTRAP] [debug] Got data from client: {"cmd":"action","action":"getDataDir","params":{}}
> info: [debug] [BOOTSTRAP] [debug] Got command of type ACTION
> info: [debug] [BOOTSTRAP] [debug] Got command action: getDataDir
> info: [debug] [BOOTSTRAP] [debug] Returning result: {"value":"\/data","status":0}
> info: [debug] dataDir set to: /data
> info: [debug] Pushing command to appium work queue: ["compressedLayoutHierarchy",{"compressLayout":false}]
> info: [debug] [BOOTSTRAP] [debug] Got data from client: {"cmd":"action","action":"compressedLayoutHierarchy","params":{"compressLayout":false}}
> info: [debug] [BOOTSTRAP] [debug] Got command of type ACTION
> info: [debug] [BOOTSTRAP] [debug] Got command action: compressedLayoutHierarchy
> info: [debug] [BOOTSTRAP] [debug] Returning result: {"value":false,"status":0}
> info: [debug] Getting device API level
> info: [debug] executing cmd: E:\adt-bundle-windows-x86_64-20140321\sdk\platform-tools\adb.exe -s 127.0.0.1:62001 shell "getprop ro.build.version.sdk"
> info: [debug] Device is at API Level 19
> info: [debug] executing cmd: E:\adt-bundle-windows-x86_64-20140321\sdk\platform-tools\adb.exe -s 127.0.0.1:62001 shell "am start -S -a android.intent.action.MAIN -c android.intent.category.LAUNCHER -f 0x10200000 -n com.uama.dreamhouseforlc/com.uama.dreamhouseforlc.actvity.LaunchActivity"
> info: [debug] Waiting for pkg "com.uama.dreamhouseforlc" and activity "com.uama.dreamhouseforlc.actvity.LaunchActivity" to be focused
> info: [debug] Getting focused package and activity
> info: [debug] executing cmd: E:\adt-bundle-windows-x86_64-20140321\sdk\platform-tools\adb.exe -s 127.0.0.1:62001 shell "dumpsys window windows"
> info: [debug] executing cmd: E:\adt-bundle-windows-x86_64-20140321\sdk\platform-tools\adb.exe -s 127.0.0.1:62001 shell "getprop ro.build.version.release"
> info: [debug] Device is at release version 4.4.2
> info: [debug] Device launched! Ready for commands
> info: [debug] Setting command timeout to the default of 60 secs
> info: [debug] Appium session started with sessionId 198560cc-d57b-407b-8c7b-51712a7e14a5
> info: <-- POST /wd/hub/session 303 14599.530 ms - 74
> info: --> GET /wd/hub/session/198560cc-d57b-407b-8c7b-51712a7e14a5 {}
> info: [debug] Responding to client with success: {"status":0,"value":{"platform":"LINUX","browserName":"","platformVersion":"4.4.2","webStorageEnabled":false,"takesScreenshot":true,"javascriptEnabled":true,"databaseEnabled":false,"networkConnectionEnabled":true,"locationContextEnabled":false,"warnings":{},"desired":{"platformVersion":"4.2.2","app":"C:\\workspace\\Appium_demo\\apps\\DreamHouse.apk","platformName":"Android","deviceName":"DreamHouse","browserName":"","appActivity":"com.uama.dreamhouseforlc.actvity.LaunchActivity","appPackage":"com.uama.dreamhouseforlc"},"app":"C:\\workspace\\Appium_demo\\apps\\DreamHouse.apk","platformName":"Android","deviceName":"127.0.0.1:62001","appActivity":"com.uama.dreamhouseforlc.actvity.LaunchActivity","appPackage":"com.uama.dreamhouseforlc"},"sessionId":"198560cc-d57b-407b-8c7b-51712a7e14a5"}
> info: <-- GET /wd/hub/session/198560cc-d57b-407b-8c7b-51712a7e14a5 200 3.816 ms - 794 {"status":0,"value":{"platform":"LINUX","browserName":"","platformVersion":"4.4.2","webStorageEnabled":false,"takesScreenshot":true,"javascriptEnabled":true,"databaseEnabled":false,"networkConnectionEnabled":true,"locationContextEnabled":false,"warnings":{},"desired":{"platformVersion":"4.2.2","app":"C:\\workspace\\Appium_demo\\apps\\DreamHouse.apk","platformName":"Android","deviceName":"DreamHouse","browserName":"","appActivity":"com.uama.dreamhouseforlc.actvity.LaunchActivity","appPackage":"com.uama.dreamhouseforlc"},"app":"C:\\workspace\\Appium_demo\\apps\\DreamHouse.apk","platformName":"Android","deviceName":"127.0.0.1:62001","appActivity":"com.uama.dreamhouseforlc.actvity.LaunchActivity","appPackage":"com.uama.dreamhouseforlc"},"sessionId":"198560cc-d57b-407b-8c7b-51712a7e14a5"}
> info: --> GET /wd/hub/session/198560cc-d57b-407b-8c7b-51712a7e14a5/window/current/size {}
> info: [debug] Pushing command to appium work queue: ["getDeviceSize"]
> info: [debug] [BOOTSTRAP] [debug] Got data from client: {"cmd":"action","action":"getDeviceSize","params":{}}
> info: [debug] [BOOTSTRAP] [debug] Got command of type ACTION
> info: [debug] [BOOTSTRAP] [debug] Got command action: getDeviceSize
> info: [debug] Responding to client with success: {"status":0,"value":{"width":720,"height":1280},"sessionId":"198560cc-d57b-407b-8c7b-51712a7e14a5"}
> info: <-- GET /wd/hub/session/198560cc-d57b-407b-8c7b-51712a7e14a5/window/current/size 200 32.040 ms - 99 {"status":0,"value":{"width":720,"height":1280},"sessionId":"198560cc-d57b-407b-8c7b-51712a7e14a5"}
> info: --> GET /wd/hub/session/198560cc-d57b-407b-8c7b-51712a7e14a5/window/current/size {}
> info: [debug] Pushing command to appium work queue: ["getDeviceSize"]
> info: [debug] [BOOTSTRAP] [debug] Returning result: {"value":{"width":720,"height":1280},"status":0}
> info: [debug] [BOOTSTRAP] [debug] Got data from client: {"cmd":"action","action":"getDeviceSize","params":{}}
> info: [debug] [BOOTSTRAP] [debug] Got command of type ACTION
> info: [debug] [BOOTSTRAP] [debug] Got command action: getDeviceSize
> info: [debug] Responding to client with success: {"status":0,"value":{"width":720,"height":1280},"sessionId":"198560cc-d57b-407b-8c7b-51712a7e14a5"}
> info: <-- GET /wd/hub/session/198560cc-d57b-407b-8c7b-51712a7e14a5/window/current/size 200 14.871 ms - 99 {"status":0,"value":{"width":720,"height":1280},"sessionId":"198560cc-d57b-407b-8c7b-51712a7e14a5"}
> info: [debug] [BOOTSTRAP] [debug] Returning result: {"value":{"width":720,"height":1280},"status":0}
> info: --> POST /wd/hub/session/198560cc-d57b-407b-8c7b-51712a7e14a5/touch/perform {"actions":[{"action":"press","options":{"x":630,"y":213}},{"action":"wait","options":{"ms":500}},{"action":"moveTo","options":{"x":90,"y":213}},{"action":"release","options":{}}]}
> info: [debug] Pushing command to appium work queue: ["swipe",{"startX":630,"startY":213,"endX":90,"endY":213,"steps":14}]
> info: [debug] [BOOTSTRAP] [debug] Got data from client: {"cmd":"action","action":"swipe","params":{"startX":630,"startY":213,"endX":90,"endY":213,"steps":14}}
> info: [debug] [BOOTSTRAP] [debug] Got command of type ACTION
> info: [debug] [BOOTSTRAP] [debug] Got command action: swipe
> info: [debug] [BOOTSTRAP] [debug] Display bounds: [0,0][720,1280]
> info: [debug] [BOOTSTRAP] [debug] Display bounds: [0,0][720,1280]
> info: [debug] [BOOTSTRAP] [debug] Swiping from [x=630.0, y=213.0] to [x=90.0, y=213.0] with steps: 14
> info: [debug] [BOOTSTRAP] [debug] Returning result: {"value":true,"status":0}
> info: [debug] Responding to client with success: {"status":0,"value":true,"sessionId":"198560cc-d57b-407b-8c7b-51712a7e14a5"}
> info: <-- POST /wd/hub/session/198560cc-d57b-407b-8c7b-51712a7e14a5/touch/perform 200 289.730 ms - 76 {"status":0,"value":true,"sessionId":"198560cc-d57b-407b-8c7b-51712a7e14a5"}
> info: --> POST /wd/hub/session/198560cc-d57b-407b-8c7b-51712a7e14a5/touch/perform {"actions":[{"action":"press","options":{"x":630,"y":213}},{"action":"wait","options":{"ms":500}},{"action":"moveTo","options":{"x":90,"y":213}},{"action":"release","options":{}}]}
> info: [debug] Pushing command to appium work queue: ["swipe",{"startX":630,"startY":213,"endX":90,"endY":213,"steps":14}]
> info: [debug] [BOOTSTRAP] [debug] Got data from client: {"cmd":"action","action":"swipe","params":{"startX":630,"startY":213,"endX":90,"endY":213,"steps":14}}
> info: [debug] [BOOTSTRAP] [debug] Got command of type ACTION
> info: [debug] [BOOTSTRAP] [debug] Got command action: swipe
> info: [debug] [BOOTSTRAP] [debug] Display bounds: [0,0][720,1280]
> info: [debug] [BOOTSTRAP] [debug] Display bounds: [0,0][720,1280]
> info: [debug] [BOOTSTRAP] [debug] Swiping from [x=630.0, y=213.0] to [x=90.0, y=213.0] with steps: 14
> info: [debug] [BOOTSTRAP] [debug] Returning result: {"value":true,"status":0}
> info: [debug] Responding to client with success: {"status":0,"value":true,"sessionId":"198560cc-d57b-407b-8c7b-51712a7e14a5"}
> info: <-- POST /wd/hub/session/198560cc-d57b-407b-8c7b-51712a7e14a5/touch/perform 200 355.127 ms - 76 {"status":0,"value":true,"sessionId":"198560cc-d57b-407b-8c7b-51712a7e14a5"}
> info: --> POST /wd/hub/session/198560cc-d57b-407b-8c7b-51712a7e14a5/touch/perform {"actions":[{"action":"press","options":{"x":630,"y":213}},{"action":"wait","options":{"ms":500}},{"action":"moveTo","options":{"x":90,"y":213}},{"action":"release","options":{}}]}
> info: [debug] Pushing command to appium work queue: ["swipe",{"startX":630,"startY":213,"endX":90,"endY":213,"steps":14}]
> info: [debug] [BOOTSTRAP] [debug] Got data from client: {"cmd":"action","action":"swipe","params":{"startX":630,"startY":213,"endX":90,"endY":213,"steps":14}}
> info: [debug] [BOOTSTRAP] [debug] Got command of type ACTION
> info: [debug] [BOOTSTRAP] [debug] Got command action: swipe
> info: [debug] [BOOTSTRAP] [debug] Display bounds: [0,0][720,1280]
> info: [debug] [BOOTSTRAP] [debug] Display bounds: [0,0][720,1280]
> info: [debug] [BOOTSTRAP] [debug] Swiping from [x=630.0, y=213.0] to [x=90.0, y=213.0] with steps: 14
> info: [debug] [BOOTSTRAP] [debug] Returning result: {"value":true,"status":0}
> info: [debug] Responding to client with success: {"status":0,"value":true,"sessionId":"198560cc-d57b-407b-8c7b-51712a7e14a5"}
> info: <-- POST /wd/hub/session/198560cc-d57b-407b-8c7b-51712a7e14a5/touch/perform 200 319.506 ms - 76 {"status":0,"value":true,"sessionId":"198560cc-d57b-407b-8c7b-51712a7e14a5"}
> info: --> POST /wd/hub/session/198560cc-d57b-407b-8c7b-51712a7e14a5/element {"using":"class name","value":"android.widget.ImageView"}
> info: [debug] Waiting up to 0ms for condition
> info: [debug] Pushing command to appium work queue: ["find",{"strategy":"class name","selector":"android.widget.ImageView","context":"","multiple":false}]
> info: [debug] [BOOTSTRAP] [debug] Got data from client: {"cmd":"action","action":"find","params":{"strategy":"class name","selector":"android.widget.ImageView","context":"","multiple":false}}
> info: [debug] [BOOTSTRAP] [debug] Got command of type ACTION
> info: [debug] [BOOTSTRAP] [debug] Got command action: find
> info: [debug] [BOOTSTRAP] [debug] Finding android.widget.ImageView using CLASS_NAME with the contextId: multiple: false
> info: [debug] [BOOTSTRAP] [debug] Using: UiSelector[CLASS=android.widget.ImageView, INSTANCE=0]
> info: [debug] [BOOTSTRAP] [debug] Returning result: {"value":{"ELEMENT":"1"},"status":0}
> info: [debug] Responding to client with success: {"status":0,"value":{"ELEMENT":"1"},"sessionId":"198560cc-d57b-407b-8c7b-51712a7e14a5"}
> info: <-- POST /wd/hub/session/198560cc-d57b-407b-8c7b-51712a7e14a5/element 200 10.992 ms - 87 {"status":0,"value":{"ELEMENT":"1"},"sessionId":"198560cc-d57b-407b-8c7b-51712a7e14a5"}
> info: --> POST /wd/hub/session/198560cc-d57b-407b-8c7b-51712a7e14a5/element/1/click {"id":"1"}
> info: [debug] Pushing command to appium work queue: ["element:click",{"elementId":"1"}]
> info: [debug] [BOOTSTRAP] [debug] Got data from client: {"cmd":"action","action":"element:click","params":{"elementId":"1"}}
> info: [debug] [BOOTSTRAP] [debug] Got command of type ACTION
> info: [debug] [BOOTSTRAP] [debug] Got command action: click
> info: [debug] [BOOTSTRAP] [debug] Returning result: {"value":true,"status":0}
> info: [debug] Responding to client with success: {"status":0,"value":true,"sessionId":"198560cc-d57b-407b-8c7b-51712a7e14a5"}
> info: <-- POST /wd/hub/session/198560cc-d57b-407b-8c7b-51712a7e14a5/element/1/click 200 308.816 ms - 76 {"status":0,"value":true,"sessionId":"198560cc-d57b-407b-8c7b-51712a7e14a5"}
> info: --> POST /wd/hub/session/198560cc-d57b-407b-8c7b-51712a7e14a5/element {"using":"id","value":"com.uama.dreamhouseforlc:id/edit_userName"}
> info: [debug] Waiting up to 0ms for condition
> info: [debug] Pushing command to appium work queue: ["find",{"strategy":"id","selector":"com.uama.dreamhouseforlc:id/edit_userName","context":"","multiple":false}]
> info: [debug] [BOOTSTRAP] [debug] Got data from client: {"cmd":"action","action":"find","params":{"strategy":"id","selector":"com.uama.dreamhouseforlc:id/edit_userName","context":"","multiple":false}}
> info: [debug] [BOOTSTRAP] [debug] Got command of type ACTION
> info: [debug] [BOOTSTRAP] [debug] Got command action: find
> info: [debug] [BOOTSTRAP] [debug] Finding com.uama.dreamhouseforlc:id/edit_userName using ID with the contextId: multiple: false
> info: [debug] [BOOTSTRAP] [debug] Using: UiSelector[INSTANCE=0, RESOURCE_ID=com.uama.dreamhouseforlc:id/edit_userName]
> info: [debug] [BOOTSTRAP] [debug] Returning result: {"value":{"ELEMENT":"2"},"status":0}
> info: [debug] Responding to client with success: {"status":0,"value":{"ELEMENT":"2"},"sessionId":"198560cc-d57b-407b-8c7b-51712a7e14a5"}
> info: <-- POST /wd/hub/session/198560cc-d57b-407b-8c7b-51712a7e14a5/element 200 551.395 ms - 87 {"status":0,"value":{"ELEMENT":"2"},"sessionId":"198560cc-d57b-407b-8c7b-51712a7e14a5"}
> info: --> POST /wd/hub/session/198560cc-d57b-407b-8c7b-51712a7e14a5/element/2/click {"id":"2"}
> info: [debug] Pushing command to appium work queue: ["element:click",{"elementId":"2"}]
> info: [debug] [BOOTSTRAP] [debug] Got data from client: {"cmd":"action","action":"element:click","params":{"elementId":"2"}}
> info: [debug] [BOOTSTRAP] [debug] Got command of type ACTION
> info: [debug] [BOOTSTRAP] [debug] Got command action: click
> info: [debug] [BOOTSTRAP] [debug] Returning result: {"value":true,"status":0}
> info: [debug] Responding to client with success: {"status":0,"value":true,"sessionId":"198560cc-d57b-407b-8c7b-51712a7e14a5"}
> info: <-- POST /wd/hub/session/198560cc-d57b-407b-8c7b-51712a7e14a5/element/2/click 200 632.580 ms - 76 {"status":0,"value":true,"sessionId":"198560cc-d57b-407b-8c7b-51712a7e14a5"}
> info: --> POST /wd/hub/session/198560cc-d57b-407b-8c7b-51712a7e14a5/element {"using":"id","value":"com.uama.dreamhouseforlc:id/edit_userName"}
> info: [debug] Waiting up to 0ms for condition
> info: [debug] Pushing command to appium work queue: ["find",{"strategy":"id","selector":"com.uama.dreamhouseforlc:id/edit_userName","context":"","multiple":false}]
> info: [debug] [BOOTSTRAP] [debug] Got data from client: {"cmd":"action","action":"find","params":{"strategy":"id","selector":"com.uama.dreamhouseforlc:id/edit_userName","context":"","multiple":false}}
> info: [debug] [BOOTSTRAP] [debug] Got command of type ACTION
> info: [debug] [BOOTSTRAP] [debug] Got command action: find
> info: [debug] [BOOTSTRAP] [debug] Finding com.uama.dreamhouseforlc:id/edit_userName using ID with the contextId: multiple: false
> info: [debug] [BOOTSTRAP] [debug] Using: UiSelector[INSTANCE=0, RESOURCE_ID=com.uama.dreamhouseforlc:id/edit_userName]
> info: [debug] [BOOTSTRAP] [debug] Returning result: {"value":{"ELEMENT":"3"},"status":0}
> info: [debug] Responding to client with success: {"status":0,"value":{"ELEMENT":"3"},"sessionId":"198560cc-d57b-407b-8c7b-51712a7e14a5"}
> info: <-- POST /wd/hub/session/198560cc-d57b-407b-8c7b-51712a7e14a5/element 200 33.709 ms - 87 {"status":0,"value":{"ELEMENT":"3"},"sessionId":"198560cc-d57b-407b-8c7b-51712a7e14a5"}
> info: --> POST /wd/hub/session/198560cc-d57b-407b-8c7b-51712a7e14a5/element/3/value {"id":"3","value":["18868890572"]}
> info: [debug] Pushing command to appium work queue: ["element:setText",{"elementId":"3","text":"18868890572","replace":false}]
> info: [debug] [BOOTSTRAP] [debug] Got data from client: {"cmd":"action","action":"element:setText","params":{"elementId":"3","text":"18868890572","replace":false}}
> info: [debug] [BOOTSTRAP] [debug] Got command of type ACTION
> info: [debug] [BOOTSTRAP] [debug] Got command action: setText
> info: [debug] [BOOTSTRAP] [debug] Using element passed in.
> info: [debug] [BOOTSTRAP] [debug] Attempting to clear using UiObject.clearText().
> info: [debug] [BOOTSTRAP] [debug] Text remains after clearing, but it appears to be hint text.
> info: [debug] [BOOTSTRAP] [debug] Text not cleared. Assuming remainder is hint text.
> info: [debug] [BOOTSTRAP] [debug] Sending plain text to element: 18868890572
> info: [debug] [BOOTSTRAP] [debug] Returning result: {"value":true,"status":0}
> info: [debug] Responding to client with success: {"status":0,"value":true,"sessionId":"198560cc-d57b-407b-8c7b-51712a7e14a5"}
> info: <-- POST /wd/hub/session/198560cc-d57b-407b-8c7b-51712a7e14a5/element/3/value 200 4927.323 ms - 76 {"status":0,"value":true,"sessionId":"198560cc-d57b-407b-8c7b-51712a7e14a5"}
> info: --> POST /wd/hub/session/198560cc-d57b-407b-8c7b-51712a7e14a5/element {"using":"id","value":"com.uama.dreamhouseforlc:id/edit_userPass"}
> info: [debug] Waiting up to 0ms for condition
> info: [debug] Pushing command to appium work queue: ["find",{"strategy":"id","selector":"com.uama.dreamhouseforlc:id/edit_userPass","context":"","multiple":false}]
> info: [debug] [BOOTSTRAP] [debug] Got data from client: {"cmd":"action","action":"find","params":{"strategy":"id","selector":"com.uama.dreamhouseforlc:id/edit_userPass","context":"","multiple":false}}
> info: [debug] [BOOTSTRAP] [debug] Got command of type ACTION
> info: [debug] [BOOTSTRAP] [debug] Got command action: find
> info: [debug] [BOOTSTRAP] [debug] Finding com.uama.dreamhouseforlc:id/edit_userPass using ID with the contextId: multiple: false
> info: [debug] [BOOTSTRAP] [debug] Using: UiSelector[INSTANCE=0, RESOURCE_ID=com.uama.dreamhouseforlc:id/edit_userPass]
> info: [debug] [BOOTSTRAP] [debug] Returning result: {"value":{"ELEMENT":"4"},"status":0}
> info: [debug] Responding to client with success: {"status":0,"value":{"ELEMENT":"4"},"sessionId":"198560cc-d57b-407b-8c7b-51712a7e14a5"}
> info: <-- POST /wd/hub/session/198560cc-d57b-407b-8c7b-51712a7e14a5/element 200 499.985 ms - 87 {"status":0,"value":{"ELEMENT":"4"},"sessionId":"198560cc-d57b-407b-8c7b-51712a7e14a5"}
> info: --> POST /wd/hub/session/198560cc-d57b-407b-8c7b-51712a7e14a5/element/4/click {"id":"4"}
> info: [debug] Pushing command to appium work queue: ["element:click",{"elementId":"4"}]
> info: [debug] [BOOTSTRAP] [debug] Got data from client: {"cmd":"action","action":"element:click","params":{"elementId":"4"}}
> info: [debug] [BOOTSTRAP] [debug] Got command of type ACTION
> info: [debug] [BOOTSTRAP] [debug] Got command action: click
> info: [debug] [BOOTSTRAP] [debug] Returning result: {"value":true,"status":0}
> info: [debug] Responding to client with success: {"status":0,"value":true,"sessionId":"198560cc-d57b-407b-8c7b-51712a7e14a5"}
> info: <-- POST /wd/hub/session/198560cc-d57b-407b-8c7b-51712a7e14a5/element/4/click 200 164.939 ms - 76 {"status":0,"value":true,"sessionId":"198560cc-d57b-407b-8c7b-51712a7e14a5"}
> info: --> POST /wd/hub/session/198560cc-d57b-407b-8c7b-51712a7e14a5/element {"using":"id","value":"com.uama.dreamhouseforlc:id/edit_userPass"}
> info: [debug] Waiting up to 0ms for condition
> info: [debug] Pushing command to appium work queue: ["find",{"strategy":"id","selector":"com.uama.dreamhouseforlc:id/edit_userPass","context":"","multiple":false}]
> info: [debug] [BOOTSTRAP] [debug] Got data from client: {"cmd":"action","action":"find","params":{"strategy":"id","selector":"com.uama.dreamhouseforlc:id/edit_userPass","context":"","multiple":false}}
> info: [debug] [BOOTSTRAP] [debug] Got command of type ACTION
> info: [debug] [BOOTSTRAP] [debug] Got command action: find
> info: [debug] [BOOTSTRAP] [debug] Finding com.uama.dreamhouseforlc:id/edit_userPass using ID with the contextId: multiple: false
> info: [debug] [BOOTSTRAP] [debug] Using: UiSelector[INSTANCE=0, RESOURCE_ID=com.uama.dreamhouseforlc:id/edit_userPass]
> info: [debug] [BOOTSTRAP] [debug] Returning result: {"value":{"ELEMENT":"5"},"status":0}
> info: [debug] Responding to client with success: {"status":0,"value":{"ELEMENT":"5"},"sessionId":"198560cc-d57b-407b-8c7b-51712a7e14a5"}
> info: <-- POST /wd/hub/session/198560cc-d57b-407b-8c7b-51712a7e14a5/element 200 20.359 ms - 87 {"status":0,"value":{"ELEMENT":"5"},"sessionId":"198560cc-d57b-407b-8c7b-51712a7e14a5"}
> info: --> POST /wd/hub/session/198560cc-d57b-407b-8c7b-51712a7e14a5/element/5/value {"id":"5","value":["123456"]}
> info: [debug] Pushing command to appium work queue: ["element:setText",{"elementId":"5","text":"123456","replace":false}]
> info: [debug] [BOOTSTRAP] [debug] Got data from client: {"cmd":"action","action":"element:setText","params":{"elementId":"5","text":"123456","replace":false}}
> info: [debug] [BOOTSTRAP] [debug] Got command of type ACTION
> info: [debug] [BOOTSTRAP] [debug] Got command action: setText
> info: [debug] [BOOTSTRAP] [debug] Using element passed in.
> info: [debug] [BOOTSTRAP] [debug] Attempting to clear using UiObject.clearText().
> info: [debug] [BOOTSTRAP] [debug] Sending plain text to element: 123456
> info: [debug] [BOOTSTRAP] [debug] Returning result: {"value":true,"status":0}
> info: [debug] Responding to client with success: {"status":0,"value":true,"sessionId":"198560cc-d57b-407b-8c7b-51712a7e14a5"}
> info: <-- POST /wd/hub/session/198560cc-d57b-407b-8c7b-51712a7e14a5/element/5/value 200 4766.020 ms - 76 {"status":0,"value":true,"sessionId":"198560cc-d57b-407b-8c7b-51712a7e14a5"}
> info: --> POST /wd/hub/session/198560cc-d57b-407b-8c7b-51712a7e14a5/element {"using":"id","value":"com.uama.dreamhouseforlc:id/text_login_index"}
> info: [debug] Waiting up to 0ms for condition
> info: [debug] Pushing command to appium work queue: ["find",{"strategy":"id","selector":"com.uama.dreamhouseforlc:id/text_login_index","context":"","multiple":false}]
> info: [debug] [BOOTSTRAP] [debug] Got data from client: {"cmd":"action","action":"find","params":{"strategy":"id","selector":"com.uama.dreamhouseforlc:id/text_login_index","context":"","multiple":false}}
> info: [debug] [BOOTSTRAP] [debug] Got command of type ACTION
> info: [debug] [BOOTSTRAP] [debug] Got command action: find
> info: [debug] [BOOTSTRAP] [debug] Finding com.uama.dreamhouseforlc:id/text_login_index using ID with the contextId: multiple: false
> info: [debug] [BOOTSTRAP] [debug] Using: UiSelector[INSTANCE=0, RESOURCE_ID=com.uama.dreamhouseforlc:id/text_login_index]
> info: [debug] [BOOTSTRAP] [debug] Returning result: {"value":{"ELEMENT":"6"},"status":0}
> info: [debug] Responding to client with success: {"status":0,"value":{"ELEMENT":"6"},"sessionId":"198560cc-d57b-407b-8c7b-51712a7e14a5"}
> info: <-- POST /wd/hub/session/198560cc-d57b-407b-8c7b-51712a7e14a5/element 200 81.213 ms - 87 {"status":0,"value":{"ELEMENT":"6"},"sessionId":"198560cc-d57b-407b-8c7b-51712a7e14a5"}
> info: --> POST /wd/hub/session/198560cc-d57b-407b-8c7b-51712a7e14a5/element/6/click {"id":"6"}
> info: [debug] Pushing command to appium work queue: ["element:click",{"elementId":"6"}]
> info: [debug] [BOOTSTRAP] [debug] Got data from client: {"cmd":"action","action":"element:click","params":{"elementId":"6"}}
> info: [debug] [BOOTSTRAP] [debug] Got command of type ACTION
> info: [debug] [BOOTSTRAP] [debug] Got command action: click
> info: [debug] [BOOTSTRAP] [debug] Returning result: {"value":true,"status":0}
> info: [debug] Responding to client with success: {"status":0,"value":true,"sessionId":"198560cc-d57b-407b-8c7b-51712a7e14a5"}
> info: <-- POST /wd/hub/session/198560cc-d57b-407b-8c7b-51712a7e14a5/element/6/click 200 2869.885 ms - 76 {"status":0,"value":true,"sessionId":"198560cc-d57b-407b-8c7b-51712a7e14a5"}
> info: --> GET /wd/hub/session/198560cc-d57b-407b-8c7b-51712a7e14a5/window/current/size {}
> info: [debug] Pushing command to appium work queue: ["getDeviceSize"]
> info: [debug] [BOOTSTRAP] [debug] Got data from client: {"cmd":"action","action":"getDeviceSize","params":{}}
> info: [debug] [BOOTSTRAP] [debug] Got command of type ACTION
> info: [debug] [BOOTSTRAP] [debug] Got command action: getDeviceSize
> info: [debug] Responding to client with success: {"status":0,"value":{"width":720,"height":1280},"sessionId":"198560cc-d57b-407b-8c7b-51712a7e14a5"}
> info: <-- GET /wd/hub/session/198560cc-d57b-407b-8c7b-51712a7e14a5/window/current/size 200 9.555 ms - 99 {"status":0,"value":{"width":720,"height":1280},"sessionId":"198560cc-d57b-407b-8c7b-51712a7e14a5"}
> info: [debug] [BOOTSTRAP] [debug] Returning result: {"value":{"width":720,"height":1280},"status":0}
> info: --> GET /wd/hub/session/198560cc-d57b-407b-8c7b-51712a7e14a5/window/current/size {}
> info: [debug] Pushing command to appium work queue: ["getDeviceSize"]
> info: [debug] [BOOTSTRAP] [debug] Got data from client: {"cmd":"action","action":"getDeviceSize","params":{}}
> info: [debug] [BOOTSTRAP] [debug] Got command of type ACTION
> info: [debug] [BOOTSTRAP] [debug] Got command action: getDeviceSize
> info: [debug] Responding to client with success: {"status":0,"value":{"width":720,"height":1280},"sessionId":"198560cc-d57b-407b-8c7b-51712a7e14a5"}
> info: <-- GET /wd/hub/session/198560cc-d57b-407b-8c7b-51712a7e14a5/window/current/size 200 8.246 ms - 99 {"status":0,"value":{"width":720,"height":1280},"sessionId":"198560cc-d57b-407b-8c7b-51712a7e14a5"}
> info: [debug] [BOOTSTRAP] [debug] Returning result: {"value":{"width":720,"height":1280},"status":0}
> info: --> POST /wd/hub/session/198560cc-d57b-407b-8c7b-51712a7e14a5/touch/perform {"actions":[{"action":"press","options":{"x":360,"y":320}},{"action":"wait","options":{"ms":1000}},{"action":"moveTo","options":{"x":360,"y":960}},{"action":"release","options":{}}]}
> info: [debug] Pushing command to appium work queue: ["swipe",{"startX":360,"startY":320,"endX":360,"endY":960,"steps":28}]
> info: [debug] [BOOTSTRAP] [debug] Got data from client: {"cmd":"action","action":"swipe","params":{"startX":360,"startY":320,"endX":360,"endY":960,"steps":28}}
> info: [debug] [BOOTSTRAP] [debug] Got command of type ACTION
> info: [debug] [BOOTSTRAP] [debug] Got command action: swipe
> info: [debug] [BOOTSTRAP] [debug] Display bounds: [0,0][720,1280]
> info: [debug] [BOOTSTRAP] [debug] Display bounds: [0,0][720,1280]
> info: [debug] [BOOTSTRAP] [debug] Swiping from [x=360.0, y=320.0] to [x=360.0, y=960.0] with steps: 28
> info: [debug] [BOOTSTRAP] [debug] Returning result: {"value":true,"status":0}
> info: [debug] Responding to client with success: {"status":0,"value":true,"sessionId":"198560cc-d57b-407b-8c7b-51712a7e14a5"}
> info: <-- POST /wd/hub/session/198560cc-d57b-407b-8c7b-51712a7e14a5/touch/perform 200 621.814 ms - 76 {"status":0,"value":true,"sessionId":"198560cc-d57b-407b-8c7b-51712a7e14a5"}
> info: --> POST /wd/hub/session/198560cc-d57b-407b-8c7b-51712a7e14a5/element {"using":"name","value":"椤圭洰淇℃伅"}
> warn: [DEPRECATED] The name locator strategy has been deprecated and will be removed. Please use the accessibility id locator strategy instead.
> info: [debug] Waiting up to 0ms for condition
> info: [debug] Pushing command to appium work queue: ["find",{"strategy":"name","selector":"椤圭洰淇℃伅","context":"","multiple":false}]
> info: [debug] [BOOTSTRAP] [debug] Got data from client: {"cmd":"action","action":"find","params":{"strategy":"name","selector":"椤圭洰淇℃伅","context":"","multiple":false}}
> info: [debug] [BOOTSTRAP] [debug] Got command of type ACTION
> info: [debug] [BOOTSTRAP] [debug] Got command action: find
> info: [debug] [BOOTSTRAP] [debug] Finding 椤圭洰淇℃伅 using NAME with the contextId: multiple: false
> info: [debug] [BOOTSTRAP] [debug] Using: UiSelector[DESCRIPTION=椤圭洰淇℃伅, INSTANCE=0]
> info: [debug] [BOOTSTRAP] [debug] Using: UiSelector[TEXT=椤圭洰淇℃伅, INSTANCE=0]
> info: [debug] [BOOTSTRAP] [debug] Returning result: {"value":{"ELEMENT":"7"},"status":0}
> info: [debug] Responding to client with success: {"status":0,"value":{"ELEMENT":"7"},"sessionId":"198560cc-d57b-407b-8c7b-51712a7e14a5"}
> info: <-- POST /wd/hub/session/198560cc-d57b-407b-8c7b-51712a7e14a5/element 200 273.868 ms - 87 {"status":0,"value":{"ELEMENT":"7"},"sessionId":"198560cc-d57b-407b-8c7b-51712a7e14a5"}
> info: --> POST /wd/hub/session/198560cc-d57b-407b-8c7b-51712a7e14a5/element/7/click {"id":"7"}
> info: [debug] Pushing command to appium work queue: ["element:click",{"elementId":"7"}]
> info: [debug] [BOOTSTRAP] [debug] Got data from client: {"cmd":"action","action":"element:click","params":{"elementId":"7"}}
> info: [debug] [BOOTSTRAP] [debug] Got command of type ACTION
> info: [debug] [BOOTSTRAP] [debug] Got command action: click
> info: [debug] Responding to client with success: {"status":0,"value":true,"sessionId":"198560cc-d57b-407b-8c7b-51712a7e14a5"}
> info: <-- POST /wd/hub/session/198560cc-d57b-407b-8c7b-51712a7e14a5/element/7/click 200 1097.219 ms - 76 {"status":0,"value":true,"sessionId":"198560cc-d57b-407b-8c7b-51712a7e14a5"}
> info: [debug] [BOOTSTRAP] [debug] Returning result: {"value":true,"status":0}
> info: --> POST /wd/hub/session/198560cc-d57b-407b-8c7b-51712a7e14a5/appium/device/keyevent {"keycode":4}
> warn: [DEPRECATED] The keyevent function has been deprecated and will be removed. Please use the pressKeyCode function instead.
> info: [debug] Pushing command to appium work queue: ["pressKeyCode",{"keycode":4,"metastate":null}]
> info: [debug] [BOOTSTRAP] [debug] Got data from client: {"cmd":"action","action":"pressKeyCode","params":{"keycode":4,"metastate":null}}
> info: [debug] [BOOTSTRAP] [debug] Got command of type ACTION
> info: [debug] [BOOTSTRAP] [debug] Got command action: pressKeyCode
> info: [debug] Responding to client with success: {"status":0,"value":true,"sessionId":"198560cc-d57b-407b-8c7b-51712a7e14a5"}
> info: <-- POST /wd/hub/session/198560cc-d57b-407b-8c7b-51712a7e14a5/appium/device/keyevent 200 18.037 ms - 76 {"status":0,"value":true,"sessionId":"198560cc-d57b-407b-8c7b-51712a7e14a5"}
> info: [debug] [BOOTSTRAP] [debug] Returning result: {"value":true,"status":0}
> info: --> POST /wd/hub/session/198560cc-d57b-407b-8c7b-51712a7e14a5/element {"using":"name","value":"妤肩洏鍥剧墖"}
> info: [debug] Waiting up to 0ms for condition
> info: [debug] Pushing command to appium work queue: ["find",{"strategy":"name","selector":"妤肩洏鍥剧墖","context":"","multiple":false}]
> info: [debug] [BOOTSTRAP] [debug] Got data from client: {"cmd":"action","action":"find","params":{"strategy":"name","selector":"妤肩洏鍥剧墖","context":"","multiple":false}}
> info: [debug] [BOOTSTRAP] [debug] Got command of type ACTION
> info: [debug] [BOOTSTRAP] [debug] Got command action: find
> info: [debug] [BOOTSTRAP] [debug] Finding 妤肩洏鍥剧墖 using NAME with the contextId: multiple: false
> info: [debug] [BOOTSTRAP] [debug] Using: UiSelector[DESCRIPTION=妤肩洏鍥剧墖, INSTANCE=0]
> info: [debug] [BOOTSTRAP] [debug] Using: UiSelector[TEXT=妤肩洏鍥剧墖, INSTANCE=0]
> info: [debug] Responding to client with success: {"status":0,"value":{"ELEMENT":"8"},"sessionId":"198560cc-d57b-407b-8c7b-51712a7e14a5"}
> info: <-- POST /wd/hub/session/198560cc-d57b-407b-8c7b-51712a7e14a5/element 200 1024.384 ms - 87 {"status":0,"value":{"ELEMENT":"8"},"sessionId":"198560cc-d57b-407b-8c7b-51712a7e14a5"}
> info: [debug] [BOOTSTRAP] [debug] Returning result: {"value":{"ELEMENT":"8"},"status":0}
> info: --> POST /wd/hub/session/198560cc-d57b-407b-8c7b-51712a7e14a5/element/8/click {"id":"8"}
> info: [debug] Pushing command to appium work queue: ["element:click",{"elementId":"8"}]
> info: [debug] [BOOTSTRAP] [debug] Got data from client: {"cmd":"action","action":"element:click","params":{"elementId":"8"}}
> info: [debug] [BOOTSTRAP] [debug] Got command of type ACTION
> info: [debug] [BOOTSTRAP] [debug] Got command action: click
> info: [debug] [BOOTSTRAP] [debug] Returning result: {"value":true,"status":0}
> info: [debug] Responding to client with success: {"status":0,"value":true,"sessionId":"198560cc-d57b-407b-8c7b-51712a7e14a5"}
> info: <-- POST /wd/hub/session/198560cc-d57b-407b-8c7b-51712a7e14a5/element/8/click 200 865.666 ms - 76 {"status":0,"value":true,"sessionId":"198560cc-d57b-407b-8c7b-51712a7e14a5"}
> info: --> POST /wd/hub/session/198560cc-d57b-407b-8c7b-51712a7e14a5/appium/device/keyevent {"keycode":4}
> info: [debug] Pushing command to appium work queue: ["pressKeyCode",{"keycode":4,"metastate":null}]
> info: [debug] [BOOTSTRAP] [debug] Got data from client: {"cmd":"action","action":"pressKeyCode","params":{"keycode":4,"metastate":null}}
> info: [debug] [BOOTSTRAP] [debug] Got command of type ACTION
> info: [debug] [BOOTSTRAP] [debug] Got command action: pressKeyCode
> info: [debug] Responding to client with success: {"status":0,"value":true,"sessionId":"198560cc-d57b-407b-8c7b-51712a7e14a5"}
> info: <-- POST /wd/hub/session/198560cc-d57b-407b-8c7b-51712a7e14a5/appium/device/keyevent 200 154.423 ms - 76 {"status":0,"value":true,"sessionId":"198560cc-d57b-407b-8c7b-51712a7e14a5"}
> info: [debug] [BOOTSTRAP] [debug] Returning result: {"value":true,"status":0}
> info: --> POST /wd/hub/session/198560cc-d57b-407b-8c7b-51712a7e14a5/element {"using":"name","value":"鍛ㄨ竟閰嶅"}
> info: [debug] Waiting up to 0ms for condition
> info: [debug] Pushing command to appium work queue: ["find",{"strategy":"name","selector":"鍛ㄨ竟閰嶅","context":"","multiple":false}]
> info: [debug] [BOOTSTRAP] [debug] Got data from client: {"cmd":"action","action":"find","params":{"strategy":"name","selector":"鍛ㄨ竟閰嶅","context":"","multiple":false}}
> info: [debug] [BOOTSTRAP] [debug] Got command of type ACTION
> info: [debug] [BOOTSTRAP] [debug] Got command action: find
> info: [debug] [BOOTSTRAP] [debug] Finding 鍛ㄨ竟閰嶅 using NAME with the contextId: multiple: false
> info: [debug] [BOOTSTRAP] [debug] Using: UiSelector[DESCRIPTION=鍛ㄨ竟閰嶅, INSTANCE=0]
> info: [debug] [BOOTSTRAP] [debug] Using: UiSelector[TEXT=鍛ㄨ竟閰嶅, INSTANCE=0]
> info: [debug] [BOOTSTRAP] [debug] Returning result: {"value":{"ELEMENT":"9"},"status":0}
> info: [debug] Responding to client with success: {"status":0,"value":{"ELEMENT":"9"},"sessionId":"198560cc-d57b-407b-8c7b-51712a7e14a5"}
> info: <-- POST /wd/hub/session/198560cc-d57b-407b-8c7b-51712a7e14a5/element 200 1024.398 ms - 87 {"status":0,"value":{"ELEMENT":"9"},"sessionId":"198560cc-d57b-407b-8c7b-51712a7e14a5"}
> info: --> POST /wd/hub/session/198560cc-d57b-407b-8c7b-51712a7e14a5/element/9/click {"id":"9"}
> info: [debug] Pushing command to appium work queue: ["element:click",{"elementId":"9"}]
> info: [debug] [BOOTSTRAP] [debug] Got data from client: {"cmd":"action","action":"element:click","params":{"elementId":"9"}}
> info: [debug] [BOOTSTRAP] [debug] Got command of type ACTION
> info: [debug] [BOOTSTRAP] [debug] Got command action: click
> info: [debug] [BOOTSTRAP] [debug] Returning result: {"value":true,"status":0}
> info: [debug] Responding to client with success: {"status":0,"value":true,"sessionId":"198560cc-d57b-407b-8c7b-51712a7e14a5"}
> info: <-- POST /wd/hub/session/198560cc-d57b-407b-8c7b-51712a7e14a5/element/9/click 200 928.920 ms - 76 {"status":0,"value":true,"sessionId":"198560cc-d57b-407b-8c7b-51712a7e14a5"}
> info: --> POST /wd/hub/session/198560cc-d57b-407b-8c7b-51712a7e14a5/appium/device/keyevent {"keycode":4}
> info: [debug] Pushing command to appium work queue: ["pressKeyCode",{"keycode":4,"metastate":null}]
> info: [debug] [BOOTSTRAP] [debug] Got data from client: {"cmd":"action","action":"pressKeyCode","params":{"keycode":4,"metastate":null}}
> info: [debug] [BOOTSTRAP] [debug] Got command of type ACTION
> info: [debug] [BOOTSTRAP] [debug] Got command action: pressKeyCode
> info: [debug] [BOOTSTRAP] [debug] Returning result: {"value":true,"status":0}
> info: [debug] Responding to client with success: {"status":0,"value":true,"sessionId":"198560cc-d57b-407b-8c7b-51712a7e14a5"}
> info: <-- POST /wd/hub/session/198560cc-d57b-407b-8c7b-51712a7e14a5/appium/device/keyevent 200 635.492 ms - 76 {"status":0,"value":true,"sessionId":"198560cc-d57b-407b-8c7b-51712a7e14a5"}
> info: --> POST /wd/hub/session/198560cc-d57b-407b-8c7b-51712a7e14a5/element {"using":"name","value":"宸ョ▼杩涘害"}
> info: [debug] Waiting up to 0ms for condition
> info: [debug] Pushing command to appium work queue: ["find",{"strategy":"name","selector":"宸ョ▼杩涘害","context":"","multiple":false}]
> info: [debug] [BOOTSTRAP] [debug] Got data from client: {"cmd":"action","action":"find","params":{"strategy":"name","selector":"宸ョ▼杩涘害","context":"","multiple":false}}
> info: [debug] [BOOTSTRAP] [debug] Got command of type ACTION
> info: [debug] [BOOTSTRAP] [debug] Got command action: find
> info: [debug] [BOOTSTRAP] [debug] Finding 宸ョ▼杩涘害 using NAME with the contextId: multiple: false
> info: [debug] [BOOTSTRAP] [debug] Using: UiSelector[DESCRIPTION=宸ョ▼杩涘害, INSTANCE=0]
> info: [debug] [BOOTSTRAP] [debug] Using: UiSelector[TEXT=宸ョ▼杩涘害, INSTANCE=0]
> info: [debug] [BOOTSTRAP] [debug] Returning result: {"value":{"ELEMENT":"10"},"status":0}
> info: [debug] Responding to client with success: {"status":0,"value":{"ELEMENT":"10"},"sessionId":"198560cc-d57b-407b-8c7b-51712a7e14a5"}
> info: <-- POST /wd/hub/session/198560cc-d57b-407b-8c7b-51712a7e14a5/element 200 1050.400 ms - 88 {"status":0,"value":{"ELEMENT":"10"},"sessionId":"198560cc-d57b-407b-8c7b-51712a7e14a5"}
> info: --> POST /wd/hub/session/198560cc-d57b-407b-8c7b-51712a7e14a5/element/10/click {"id":"10"}
> info: [debug] Pushing command to appium work queue: ["element:click",{"elementId":"10"}]
> info: [debug] [BOOTSTRAP] [debug] Got data from client: {"cmd":"action","action":"element:click","params":{"elementId":"10"}}
> info: [debug] [BOOTSTRAP] [debug] Got command of type ACTION
> info: [debug] [BOOTSTRAP] [debug] Got command action: click
> info: [debug] Responding to client with success: {"status":0,"value":true,"sessionId":"198560cc-d57b-407b-8c7b-51712a7e14a5"}
> info: <-- POST /wd/hub/session/198560cc-d57b-407b-8c7b-51712a7e14a5/element/10/click 200 405.537 ms - 76 {"status":0,"value":true,"sessionId":"198560cc-d57b-407b-8c7b-51712a7e14a5"}
> info: [debug] [BOOTSTRAP] [debug] Returning result: {"value":true,"status":0}
> info: --> POST /wd/hub/session/198560cc-d57b-407b-8c7b-51712a7e14a5/appium/device/keyevent {"keycode":4}
> info: [debug] Pushing command to appium work queue: ["pressKeyCode",{"keycode":4,"metastate":null}]
> info: [debug] [BOOTSTRAP] [debug] Got data from client: {"cmd":"action","action":"pressKeyCode","params":{"keycode":4,"metastate":null}}
> info: [debug] [BOOTSTRAP] [debug] Got command of type ACTION
> info: [debug] [BOOTSTRAP] [debug] Got command action: pressKeyCode
> info: [debug] Responding to client with success: {"status":0,"value":true,"sessionId":"198560cc-d57b-407b-8c7b-51712a7e14a5"}
> info: <-- POST /wd/hub/session/198560cc-d57b-407b-8c7b-51712a7e14a5/appium/device/keyevent 200 121.088 ms - 76 {"status":0,"value":true,"sessionId":"198560cc-d57b-407b-8c7b-51712a7e14a5"}
> info: [debug] [BOOTSTRAP] [debug] Returning result: {"value":true,"status":0}
> info: --> POST /wd/hub/session/198560cc-d57b-407b-8c7b-51712a7e14a5/element {"using":"name","value":"鐪嬫埧棰勭害"}
> info: [debug] Waiting up to 0ms for condition
> info: [debug] Pushing command to appium work queue: ["find",{"strategy":"name","selector":"鐪嬫埧棰勭害","context":"","multiple":false}]
> info: [debug] [BOOTSTRAP] [debug] Got data from client: {"cmd":"action","action":"find","params":{"strategy":"name","selector":"鐪嬫埧棰勭害","context":"","multiple":false}}
> info: [debug] [BOOTSTRAP] [debug] Got command of type ACTION
> info: [debug] [BOOTSTRAP] [debug] Got command action: find
> info: [debug] [BOOTSTRAP] [debug] Finding 鐪嬫埧棰勭害 using NAME with the contextId: multiple: false
> info: [debug] [BOOTSTRAP] [debug] Using: UiSelector[DESCRIPTION=鐪嬫埧棰勭害, INSTANCE=0]
> info: [debug] [BOOTSTRAP] [debug] Using: UiSelector[TEXT=鐪嬫埧棰勭害, INSTANCE=0]
> info: [debug] [BOOTSTRAP] [debug] Returning result: {"value":{"ELEMENT":"11"},"status":0}
> info: [debug] Responding to client with success: {"status":0,"value":{"ELEMENT":"11"},"sessionId":"198560cc-d57b-407b-8c7b-51712a7e14a5"}
> info: <-- POST /wd/hub/session/198560cc-d57b-407b-8c7b-51712a7e14a5/element 200 190.501 ms - 88 {"status":0,"value":{"ELEMENT":"11"},"sessionId":"198560cc-d57b-407b-8c7b-51712a7e14a5"}
> info: --> POST /wd/hub/session/198560cc-d57b-407b-8c7b-51712a7e14a5/element/11/click {"id":"11"}
> info: [debug] Pushing command to appium work queue: ["element:click",{"elementId":"11"}]
> info: [debug] [BOOTSTRAP] [debug] Got data from client: {"cmd":"action","action":"element:click","params":{"elementId":"11"}}
> info: [debug] [BOOTSTRAP] [debug] Got command of type ACTION
> info: [debug] [BOOTSTRAP] [debug] Got command action: click
> info: [debug] [BOOTSTRAP] [debug] Returning result: {"value":true,"status":0}
> info: [debug] Responding to client with success: {"status":0,"value":true,"sessionId":"198560cc-d57b-407b-8c7b-51712a7e14a5"}
> info: <-- POST /wd/hub/session/198560cc-d57b-407b-8c7b-51712a7e14a5/element/11/click 200 1262.033 ms - 76 {"status":0,"value":true,"sessionId":"198560cc-d57b-407b-8c7b-51712a7e14a5"}
> info: --> POST /wd/hub/session/198560cc-d57b-407b-8c7b-51712a7e14a5/appium/device/keyevent {"keycode":4}
> info: [debug] Pushing command to appium work queue: ["pressKeyCode",{"keycode":4,"metastate":null}]
> info: [debug] [BOOTSTRAP] [debug] Got data from client: {"cmd":"action","action":"pressKeyCode","params":{"keycode":4,"metastate":null}}
> info: [debug] [BOOTSTRAP] [debug] Got command of type ACTION
> info: [debug] [BOOTSTRAP] [debug] Got command action: pressKeyCode
> info: [debug] [BOOTSTRAP] [debug] Returning result: {"value":true,"status":0}
> info: [debug] Responding to client with success: {"status":0,"value":true,"sessionId":"198560cc-d57b-407b-8c7b-51712a7e14a5"}
> info: <-- POST /wd/hub/session/198560cc-d57b-407b-8c7b-51712a7e14a5/appium/device/keyevent 200 52.790 ms - 76 {"status":0,"value":true,"sessionId":"198560cc-d57b-407b-8c7b-51712a7e14a5"}
> info: --> POST /wd/hub/session/198560cc-d57b-407b-8c7b-51712a7e14a5/element {"using":"name","value":"鎰忚寰佽"}
> info: [debug] Waiting up to 0ms for condition
> info: [debug] Pushing command to appium work queue: ["find",{"strategy":"name","selector":"鎰忚寰佽","context":"","multiple":false}]
> info: [debug] [BOOTSTRAP] [debug] Got data from client: {"cmd":"action","action":"find","params":{"strategy":"name","selector":"鎰忚寰佽","context":"","multiple":false}}
> info: [debug] [BOOTSTRAP] [debug] Got command of type ACTION
> info: [debug] [BOOTSTRAP] [debug] Got command action: find
> info: [debug] [BOOTSTRAP] [debug] Finding 鎰忚寰佽 using NAME with the contextId: multiple: false
> info: [debug] [BOOTSTRAP] [debug] Using: UiSelector[DESCRIPTION=鎰忚寰佽, INSTANCE=0]
> info: [debug] [BOOTSTRAP] [debug] Using: UiSelector[TEXT=鎰忚寰佽, INSTANCE=0]
> info: [debug] [BOOTSTRAP] [debug] Returning result: {"value":{"ELEMENT":"12"},"status":0}
> info: [debug] Responding to client with success: {"status":0,"value":{"ELEMENT":"12"},"sessionId":"198560cc-d57b-407b-8c7b-51712a7e14a5"}
> info: <-- POST /wd/hub/session/198560cc-d57b-407b-8c7b-51712a7e14a5/element 200 733.162 ms - 88 {"status":0,"value":{"ELEMENT":"12"},"sessionId":"198560cc-d57b-407b-8c7b-51712a7e14a5"}
> info: --> POST /wd/hub/session/198560cc-d57b-407b-8c7b-51712a7e14a5/element/12/click {"id":"12"}
> info: [debug] Pushing command to appium work queue: ["element:click",{"elementId":"12"}]
> info: [debug] [BOOTSTRAP] [debug] Got data from client: {"cmd":"action","action":"element:click","params":{"elementId":"12"}}
> info: [debug] [BOOTSTRAP] [debug] Got command of type ACTION
> info: [debug] [BOOTSTRAP] [debug] Got command action: click
> info: [debug] [BOOTSTRAP] [debug] Returning result: {"value":true,"status":0}
> info: [debug] Responding to client with success: {"status":0,"value":true,"sessionId":"198560cc-d57b-407b-8c7b-51712a7e14a5"}
> info: <-- POST /wd/hub/session/198560cc-d57b-407b-8c7b-51712a7e14a5/element/12/click 200 463.775 ms - 76 {"status":0,"value":true,"sessionId":"198560cc-d57b-407b-8c7b-51712a7e14a5"}
> info: --> POST /wd/hub/session/198560cc-d57b-407b-8c7b-51712a7e14a5/element {"using":"id","value":"com.uama.dreamhouseforlc:id/know"}
> info: [debug] Waiting up to 0ms for condition
> info: [debug] Pushing command to appium work queue: ["find",{"strategy":"id","selector":"com.uama.dreamhouseforlc:id/know","context":"","multiple":false}]
> info: [debug] [BOOTSTRAP] [debug] Got data from client: {"cmd":"action","action":"find","params":{"strategy":"id","selector":"com.uama.dreamhouseforlc:id/know","context":"","multiple":false}}
> info: [debug] [BOOTSTRAP] [debug] Got command of type ACTION
> info: [debug] [BOOTSTRAP] [debug] Got command action: find
> info: [debug] [BOOTSTRAP] [debug] Finding com.uama.dreamhouseforlc:id/know using ID with the contextId: multiple: false
> info: [debug] [BOOTSTRAP] [debug] Using: UiSelector[INSTANCE=0, RESOURCE_ID=com.uama.dreamhouseforlc:id/know]
> info: [debug] [BOOTSTRAP] [debug] Returning result: {"value":{"ELEMENT":"13"},"status":0}
> info: [debug] Responding to client with success: {"status":0,"value":{"ELEMENT":"13"},"sessionId":"198560cc-d57b-407b-8c7b-51712a7e14a5"}
> info: <-- POST /wd/hub/session/198560cc-d57b-407b-8c7b-51712a7e14a5/element 200 545.072 ms - 88 {"status":0,"value":{"ELEMENT":"13"},"sessionId":"198560cc-d57b-407b-8c7b-51712a7e14a5"}
> info: --> POST /wd/hub/session/198560cc-d57b-407b-8c7b-51712a7e14a5/element/13/click {"id":"13"}
> info: [debug] Pushing command to appium work queue: ["element:click",{"elementId":"13"}]
> info: [debug] [BOOTSTRAP] [debug] Got data from client: {"cmd":"action","action":"element:click","params":{"elementId":"13"}}
> info: [debug] [BOOTSTRAP] [debug] Got command of type ACTION
> info: [debug] [BOOTSTRAP] [debug] Got command action: click
> info: [debug] [BOOTSTRAP] [debug] Returning result: {"value":true,"status":0}
> info: [debug] Responding to client with success: {"status":0,"value":true,"sessionId":"198560cc-d57b-407b-8c7b-51712a7e14a5"}
> info: <-- POST /wd/hub/session/198560cc-d57b-407b-8c7b-51712a7e14a5/element/13/click 200 1100.419 ms - 76 {"status":0,"value":true,"sessionId":"198560cc-d57b-407b-8c7b-51712a7e14a5"}
> info: --> POST /wd/hub/session/198560cc-d57b-407b-8c7b-51712a7e14a5/appium/device/keyevent {"keycode":4}
> info: [debug] Pushing command to appium work queue: ["pressKeyCode",{"keycode":4,"metastate":null}]
> info: [debug] [BOOTSTRAP] [debug] Got data from client: {"cmd":"action","action":"pressKeyCode","params":{"keycode":4,"metastate":null}}
> info: [debug] [BOOTSTRAP] [debug] Got command of type ACTION
> info: [debug] [BOOTSTRAP] [debug] Got command action: pressKeyCode
> info: [debug] Responding to client with success: {"status":0,"value":true,"sessionId":"198560cc-d57b-407b-8c7b-51712a7e14a5"}
> info: <-- POST /wd/hub/session/198560cc-d57b-407b-8c7b-51712a7e14a5/appium/device/keyevent 200 15.079 ms - 76 {"status":0,"value":true,"sessionId":"198560cc-d57b-407b-8c7b-51712a7e14a5"}
> info: [debug] [BOOTSTRAP] [debug] Returning result: {"value":true,"status":0}
> info: --> POST /wd/hub/session/198560cc-d57b-407b-8c7b-51712a7e14a5/element {"using":"name","value":"缁垮煄淇$敤璐?}
> info: [debug] Waiting up to 0ms for condition
> info: [debug] Pushing command to appium work queue: ["find",{"strategy":"name","selector":"缁垮煄淇$敤璐?,"context":"","multiple":false}]
> info: [debug] [BOOTSTRAP] [debug] Got data from client: {"cmd":"action","action":"find","params":{"strategy":"name","selector":"缁垮煄淇$敤璐?,"context":"","multiple":false}}
> info: [debug] [BOOTSTRAP] [debug] Got command of type ACTION
> info: [debug] [BOOTSTRAP] [debug] Got command action: find
> info: [debug] [BOOTSTRAP] [debug] Finding 缁垮煄淇$敤璐?using NAME with the contextId: multiple: false
> info: [debug] [BOOTSTRAP] [debug] Using: UiSelector[DESCRIPTION=缁垮煄淇$敤璐? INSTANCE=0]
> info: [debug] [BOOTSTRAP] [debug] Using: UiSelector[TEXT=缁垮煄淇$敤璐? INSTANCE=0]
> info: [debug] [BOOTSTRAP] [debug] Returning result: {"value":{"ELEMENT":"14"},"status":0}
> info: [debug] Responding to client with success: {"status":0,"value":{"ELEMENT":"14"},"sessionId":"198560cc-d57b-407b-8c7b-51712a7e14a5"}
> info: <-- POST /wd/hub/session/198560cc-d57b-407b-8c7b-51712a7e14a5/element 200 1029.684 ms - 88 {"status":0,"value":{"ELEMENT":"14"},"sessionId":"198560cc-d57b-407b-8c7b-51712a7e14a5"}
> info: --> POST /wd/hub/session/198560cc-d57b-407b-8c7b-51712a7e14a5/element/14/click {"id":"14"}
> info: [debug] Pushing command to appium work queue: ["element:click",{"elementId":"14"}]
> info: [debug] [BOOTSTRAP] [debug] Got data from client: {"cmd":"action","action":"element:click","params":{"elementId":"14"}}
> info: [debug] [BOOTSTRAP] [debug] Got command of type ACTION
> info: [debug] [BOOTSTRAP] [debug] Got command action: click
> info: [debug] [BOOTSTRAP] [debug] Returning result: {"value":true,"status":0}
> info: [debug] Responding to client with success: {"status":0,"value":true,"sessionId":"198560cc-d57b-407b-8c7b-51712a7e14a5"}
> info: <-- POST /wd/hub/session/198560cc-d57b-407b-8c7b-51712a7e14a5/element/14/click 200 1056.371 ms - 76 {"status":0,"value":true,"sessionId":"198560cc-d57b-407b-8c7b-51712a7e14a5"}
> info: --> POST /wd/hub/session/198560cc-d57b-407b-8c7b-51712a7e14a5/appium/device/keyevent {"keycode":4}
> info: [debug] Pushing command to appium work queue: ["pressKeyCode",{"keycode":4,"metastate":null}]
> info: [debug] [BOOTSTRAP] [debug] Got data from client: {"cmd":"action","action":"pressKeyCode","params":{"keycode":4,"metastate":null}}
> info: [debug] [BOOTSTRAP] [debug] Got command of type ACTION
> info: [debug] [BOOTSTRAP] [debug] Got command action: pressKeyCode
> info: [debug] Responding to client with success: {"status":0,"value":true,"sessionId":"198560cc-d57b-407b-8c7b-51712a7e14a5"}
> info: <-- POST /wd/hub/session/198560cc-d57b-407b-8c7b-51712a7e14a5/appium/device/keyevent 200 644.859 ms - 76 {"status":0,"value":true,"sessionId":"198560cc-d57b-407b-8c7b-51712a7e14a5"}
> info: [debug] [BOOTSTRAP] [debug] Returning result: {"value":true,"status":0}
> info: --> POST /wd/hub/session/198560cc-d57b-407b-8c7b-51712a7e14a5/element {"using":"name","value":"榛勯緳楗簵"}
> info: [debug] Waiting up to 0ms for condition
> info: [debug] Pushing command to appium work queue: ["find",{"strategy":"name","selector":"榛勯緳楗簵","context":"","multiple":false}]
> info: [debug] [BOOTSTRAP] [debug] Got data from client: {"cmd":"action","action":"find","params":{"strategy":"name","selector":"榛勯緳楗簵","context":"","multiple":false}}
> info: [debug] [BOOTSTRAP] [debug] Got command of type ACTION
> info: [debug] [BOOTSTRAP] [debug] Got command action: find
> info: [debug] [BOOTSTRAP] [debug] Finding 榛勯緳楗簵 using NAME with the contextId: multiple: false
> info: [debug] [BOOTSTRAP] [debug] Using: UiSelector[DESCRIPTION=榛勯緳楗簵, INSTANCE=0]
> info: [debug] [BOOTSTRAP] [debug] Using: UiSelector[TEXT=榛勯緳楗簵, INSTANCE=0]
> info: [debug] [BOOTSTRAP] [debug] Returning result: {"value":{"ELEMENT":"15"},"status":0}
> info: [debug] Responding to client with success: {"status":0,"value":{"ELEMENT":"15"},"sessionId":"198560cc-d57b-407b-8c7b-51712a7e14a5"}
> info: <-- POST /wd/hub/session/198560cc-d57b-407b-8c7b-51712a7e14a5/element 200 1515.151 ms - 88 {"status":0,"value":{"ELEMENT":"15"},"sessionId":"198560cc-d57b-407b-8c7b-51712a7e14a5"}
> info: --> POST /wd/hub/session/198560cc-d57b-407b-8c7b-51712a7e14a5/element/15/click {"id":"15"}
> info: [debug] Pushing command to appium work queue: ["element:click",{"elementId":"15"}]
> info: [debug] [BOOTSTRAP] [debug] Got data from client: {"cmd":"action","action":"element:click","params":{"elementId":"15"}}
> info: [debug] [BOOTSTRAP] [debug] Got command of type ACTION
> info: [debug] [BOOTSTRAP] [debug] Got command action: click
> info: [debug] [BOOTSTRAP] [debug] Returning result: {"value":true,"status":0}
> info: [debug] Responding to client with success: {"status":0,"value":true,"sessionId":"198560cc-d57b-407b-8c7b-51712a7e14a5"}
> info: <-- POST /wd/hub/session/198560cc-d57b-407b-8c7b-51712a7e14a5/element/15/click 200 643.305 ms - 76 {"status":0,"value":true,"sessionId":"198560cc-d57b-407b-8c7b-51712a7e14a5"}
> info: --> POST /wd/hub/session/198560cc-d57b-407b-8c7b-51712a7e14a5/appium/device/keyevent {"keycode":4}
> info: [debug] Pushing command to appium work queue: ["pressKeyCode",{"keycode":4,"metastate":null}]
> info: [debug] [BOOTSTRAP] [debug] Got data from client: {"cmd":"action","action":"pressKeyCode","params":{"keycode":4,"metastate":null}}
> info: [debug] [BOOTSTRAP] [debug] Got command of type ACTION
> info: [debug] [BOOTSTRAP] [debug] Got command action: pressKeyCode
> info: [debug] [BOOTSTRAP] [debug] Returning result: {"value":true,"status":0}
> info: [debug] Responding to client with success: {"status":0,"value":true,"sessionId":"198560cc-d57b-407b-8c7b-51712a7e14a5"}
> info: <-- POST /wd/hub/session/198560cc-d57b-407b-8c7b-51712a7e14a5/appium/device/keyevent 200 482.080 ms - 76 {"status":0,"value":true,"sessionId":"198560cc-d57b-407b-8c7b-51712a7e14a5"}
> info: --> POST /wd/hub/session/198560cc-d57b-407b-8c7b-51712a7e14a5/element {"using":"name","value":"鐢熸椿鏈嶅姟"}
> info: [debug] Waiting up to 0ms for condition
> info: [debug] Pushing command to appium work queue: ["find",{"strategy":"name","selector":"鐢熸椿鏈嶅姟","context":"","multiple":false}]
> info: [debug] [BOOTSTRAP] [debug] Got data from client: {"cmd":"action","action":"find","params":{"strategy":"name","selector":"鐢熸椿鏈嶅姟","context":"","multiple":false}}
> info: [debug] [BOOTSTRAP] [debug] Got command of type ACTION
> info: [debug] [BOOTSTRAP] [debug] Got command action: find
> info: [debug] [BOOTSTRAP] [debug] Finding 鐢熸椿鏈嶅姟 using NAME with the contextId: multiple: false
> info: [debug] [BOOTSTRAP] [debug] Using: UiSelector[DESCRIPTION=鐢熸椿鏈嶅姟, INSTANCE=0]
> info: [debug] [BOOTSTRAP] [debug] Using: UiSelector[TEXT=鐢熸椿鏈嶅姟, INSTANCE=0]
> info: [debug] [BOOTSTRAP] [debug] Returning result: {"value":{"ELEMENT":"16"},"status":0}
> info: [debug] Responding to client with success: {"status":0,"value":{"ELEMENT":"16"},"sessionId":"198560cc-d57b-407b-8c7b-51712a7e14a5"}
> info: <-- POST /wd/hub/session/198560cc-d57b-407b-8c7b-51712a7e14a5/element 200 1075.633 ms - 88 {"status":0,"value":{"ELEMENT":"16"},"sessionId":"198560cc-d57b-407b-8c7b-51712a7e14a5"}
> info: --> POST /wd/hub/session/198560cc-d57b-407b-8c7b-51712a7e14a5/element/16/click {"id":"16"}
> info: [debug] Pushing command to appium work queue: ["element:click",{"elementId":"16"}]
> info: [debug] [BOOTSTRAP] [debug] Got data from client: {"cmd":"action","action":"element:click","params":{"elementId":"16"}}
> info: [debug] [BOOTSTRAP] [debug] Got command of type ACTION
> info: [debug] [BOOTSTRAP] [debug] Got command action: click
> info: [debug] [BOOTSTRAP] [debug] Returning result: {"value":true,"status":0}
> info: [debug] Responding to client with success: {"status":0,"value":true,"sessionId":"198560cc-d57b-407b-8c7b-51712a7e14a5"}
> info: <-- POST /wd/hub/session/198560cc-d57b-407b-8c7b-51712a7e14a5/element/16/click 200 465.378 ms - 76 {"status":0,"value":true,"sessionId":"198560cc-d57b-407b-8c7b-51712a7e14a5"}
> info: --> POST /wd/hub/session/198560cc-d57b-407b-8c7b-51712a7e14a5/appium/device/keyevent {"keycode":4}
> info: [debug] Pushing command to appium work queue: ["pressKeyCode",{"keycode":4,"metastate":null}]
> info: [debug] [BOOTSTRAP] [debug] Got data from client: {"cmd":"action","action":"pressKeyCode","params":{"keycode":4,"metastate":null}}
> info: [debug] [BOOTSTRAP] [debug] Got command of type ACTION
> info: [debug] [BOOTSTRAP] [debug] Got command action: pressKeyCode
> info: [debug] [BOOTSTRAP] [debug] Returning result: {"value":true,"status":0}
> info: [debug] Responding to client with success: {"status":0,"value":true,"sessionId":"198560cc-d57b-407b-8c7b-51712a7e14a5"}
> info: <-- POST /wd/hub/session/198560cc-d57b-407b-8c7b-51712a7e14a5/appium/device/keyevent 200 419.643 ms - 76 {"status":0,"value":true,"sessionId":"198560cc-d57b-407b-8c7b-51712a7e14a5"}
> info: --> POST /wd/hub/session/198560cc-d57b-407b-8c7b-51712a7e14a5/element {"using":"name","value":"鍋ュ悍鏈嶅姟"}
> info: [debug] Waiting up to 0ms for condition
> info: [debug] Pushing command to appium work queue: ["find",{"strategy":"name","selector":"鍋ュ悍鏈嶅姟","context":"","multiple":false}]
> info: [debug] [BOOTSTRAP] [debug] Got data from client: {"cmd":"action","action":"find","params":{"strategy":"name","selector":"鍋ュ悍鏈嶅姟","context":"","multiple":false}}
> info: [debug] [BOOTSTRAP] [debug] Got command of type ACTION
> info: [debug] [BOOTSTRAP] [debug] Got command action: find
> info: [debug] [BOOTSTRAP] [debug] Finding 鍋ュ悍鏈嶅姟 using NAME with the contextId: multiple: false
> info: [debug] [BOOTSTRAP] [debug] Using: UiSelector[DESCRIPTION=鍋ュ悍鏈嶅姟, INSTANCE=0]
> info: [debug] [BOOTSTRAP] [debug] Using: UiSelector[TEXT=鍋ュ悍鏈嶅姟, INSTANCE=0]
> info: [debug] [BOOTSTRAP] [debug] Returning result: {"value":{"ELEMENT":"17"},"status":0}
> info: [debug] Responding to client with success: {"status":0,"value":{"ELEMENT":"17"},"sessionId":"198560cc-d57b-407b-8c7b-51712a7e14a5"}
> info: <-- POST /wd/hub/session/198560cc-d57b-407b-8c7b-51712a7e14a5/element 200 280.119 ms - 88 {"status":0,"value":{"ELEMENT":"17"},"sessionId":"198560cc-d57b-407b-8c7b-51712a7e14a5"}
> info: --> POST /wd/hub/session/198560cc-d57b-407b-8c7b-51712a7e14a5/element/17/click {"id":"17"}
> info: [debug] Pushing command to appium work queue: ["element:click",{"elementId":"17"}]
> info: [debug] [BOOTSTRAP] [debug] Got data from client: {"cmd":"action","action":"element:click","params":{"elementId":"17"}}
> info: [debug] [BOOTSTRAP] [debug] Got command of type ACTION
> info: [debug] [BOOTSTRAP] [debug] Got command action: click
> info: [debug] [BOOTSTRAP] [debug] Returning result: {"value":true,"status":0}
> info: [debug] Responding to client with success: {"status":0,"value":true,"sessionId":"198560cc-d57b-407b-8c7b-51712a7e14a5"}
> info: <-- POST /wd/hub/session/198560cc-d57b-407b-8c7b-51712a7e14a5/element/17/click 200 2628.122 ms - 76 {"status":0,"value":true,"sessionId":"198560cc-d57b-407b-8c7b-51712a7e14a5"}
> info: --> POST /wd/hub/session/198560cc-d57b-407b-8c7b-51712a7e14a5/appium/device/keyevent {"keycode":4}
> info: [debug] Pushing command to appium work queue: ["pressKeyCode",{"keycode":4,"metastate":null}]
> info: [debug] [BOOTSTRAP] [debug] Got data from client: {"cmd":"action","action":"pressKeyCode","params":{"keycode":4,"metastate":null}}
> info: [debug] [BOOTSTRAP] [debug] Got command of type ACTION
> info: [debug] [BOOTSTRAP] [debug] Got command action: pressKeyCode
> info: [debug] [BOOTSTRAP] [debug] Returning result: {"value":true,"status":0}
> info: [debug] Responding to client with success: {"status":0,"value":true,"sessionId":"198560cc-d57b-407b-8c7b-51712a7e14a5"}
> info: <-- POST /wd/hub/session/198560cc-d57b-407b-8c7b-51712a7e14a5/appium/device/keyevent 200 17.600 ms - 76 {"status":0,"value":true,"sessionId":"198560cc-d57b-407b-8c7b-51712a7e14a5"}
> info: --> POST /wd/hub/session/198560cc-d57b-407b-8c7b-51712a7e14a5/element {"using":"name","value":"閲戣瀺鏈嶅姟"}
> info: [debug] Waiting up to 0ms for condition
> info: [debug] Pushing command to appium work queue: ["find",{"strategy":"name","selector":"閲戣瀺鏈嶅姟","context":"","multiple":false}]
> info: [debug] [BOOTSTRAP] [debug] Got data from client: {"cmd":"action","action":"find","params":{"strategy":"name","selector":"閲戣瀺鏈嶅姟","context":"","multiple":false}}
> info: [debug] [BOOTSTRAP] [debug] Got command of type ACTION
> info: [debug] [BOOTSTRAP] [debug] Got command action: find
> info: [debug] [BOOTSTRAP] [debug] Finding 閲戣瀺鏈嶅姟 using NAME with the contextId: multiple: false
> info: [debug] [BOOTSTRAP] [debug] Using: UiSelector[DESCRIPTION=閲戣瀺鏈嶅姟, INSTANCE=0]
> info: [debug] [BOOTSTRAP] [debug] Using: UiSelector[TEXT=閲戣瀺鏈嶅姟, INSTANCE=0]
> info: [debug] [BOOTSTRAP] [debug] Returning result: {"value":{"ELEMENT":"18"},"status":0}
> info: [debug] Responding to client with success: {"status":0,"value":{"ELEMENT":"18"},"sessionId":"198560cc-d57b-407b-8c7b-51712a7e14a5"}
> info: <-- POST /wd/hub/session/198560cc-d57b-407b-8c7b-51712a7e14a5/element 200 1011.015 ms - 88 {"status":0,"value":{"ELEMENT":"18"},"sessionId":"198560cc-d57b-407b-8c7b-51712a7e14a5"}
> info: --> POST /wd/hub/session/198560cc-d57b-407b-8c7b-51712a7e14a5/element/18/click {"id":"18"}
> info: [debug] Pushing command to appium work queue: ["element:click",{"elementId":"18"}]
> info: [debug] [BOOTSTRAP] [debug] Got data from client: {"cmd":"action","action":"element:click","params":{"elementId":"18"}}
> info: [debug] [BOOTSTRAP] [debug] Got command of type ACTION
> info: [debug] [BOOTSTRAP] [debug] Got command action: click
> info: [debug] [BOOTSTRAP] [debug] Returning result: {"value":true,"status":0}
> info: [debug] Responding to client with success: {"status":0,"value":true,"sessionId":"198560cc-d57b-407b-8c7b-51712a7e14a5"}
> info: <-- POST /wd/hub/session/198560cc-d57b-407b-8c7b-51712a7e14a5/element/18/click 200 945.761 ms - 76 {"status":0,"value":true,"sessionId":"198560cc-d57b-407b-8c7b-51712a7e14a5"}
> info: --> POST /wd/hub/session/198560cc-d57b-407b-8c7b-51712a7e14a5/appium/device/keyevent {"keycode":4}
> info: [debug] Pushing command to appium work queue: ["pressKeyCode",{"keycode":4,"metastate":null}]
> info: [debug] [BOOTSTRAP] [debug] Got data from client: {"cmd":"action","action":"pressKeyCode","params":{"keycode":4,"metastate":null}}
> info: [debug] [BOOTSTRAP] [debug] Got command of type ACTION
> info: [debug] [BOOTSTRAP] [debug] Got command action: pressKeyCode
> info: [debug] [BOOTSTRAP] [debug] Returning result: {"value":true,"status":0}
> info: [debug] Responding to client with success: {"status":0,"value":true,"sessionId":"198560cc-d57b-407b-8c7b-51712a7e14a5"}
> info: <-- POST /wd/hub/session/198560cc-d57b-407b-8c7b-51712a7e14a5/appium/device/keyevent 200 622.858 ms - 76 {"status":0,"value":true,"sessionId":"198560cc-d57b-407b-8c7b-51712a7e14a5"}
> info: --> POST /wd/hub/session/198560cc-d57b-407b-8c7b-51712a7e14a5/element {"using":"name","value":"鏂囧寲鏈嶅姟"}
> info: [debug] Waiting up to 0ms for condition
> info: [debug] Pushing command to appium work queue: ["find",{"strategy":"name","selector":"鏂囧寲鏈嶅姟","context":"","multiple":false}]
> info: [debug] [BOOTSTRAP] [debug] Got data from client: {"cmd":"action","action":"find","params":{"strategy":"name","selector":"鏂囧寲鏈嶅姟","context":"","multiple":false}}
> info: [debug] [BOOTSTRAP] [debug] Got command of type ACTION
> info: [debug] [BOOTSTRAP] [debug] Got command action: find
> info: [debug] [BOOTSTRAP] [debug] Finding 鏂囧寲鏈嶅姟 using NAME with the contextId: multiple: false
> info: [debug] [BOOTSTRAP] [debug] Using: UiSelector[DESCRIPTION=鏂囧寲鏈嶅姟, INSTANCE=0]
> info: [debug] [BOOTSTRAP] [debug] Using: UiSelector[TEXT=鏂囧寲鏈嶅姟, INSTANCE=0]
> info: [debug] [BOOTSTRAP] [debug] Returning result: {"value":{"ELEMENT":"19"},"status":0}
> info: [debug] Responding to client with success: {"status":0,"value":{"ELEMENT":"19"},"sessionId":"198560cc-d57b-407b-8c7b-51712a7e14a5"}
> info: <-- POST /wd/hub/session/198560cc-d57b-407b-8c7b-51712a7e14a5/element 200 1588.503 ms - 88 {"status":0,"value":{"ELEMENT":"19"},"sessionId":"198560cc-d57b-407b-8c7b-51712a7e14a5"}
> info: --> POST /wd/hub/session/198560cc-d57b-407b-8c7b-51712a7e14a5/element/19/click {"id":"19"}
> info: [debug] Pushing command to appium work queue: ["element:click",{"elementId":"19"}]
> info: [debug] [BOOTSTRAP] [debug] Got data from client: {"cmd":"action","action":"element:click","params":{"elementId":"19"}}
> info: [debug] [BOOTSTRAP] [debug] Got command of type ACTION
> info: [debug] [BOOTSTRAP] [debug] Got command action: click
> info: [debug] [BOOTSTRAP] [debug] Returning result: {"value":true,"status":0}
> info: [debug] Responding to client with success: {"status":0,"value":true,"sessionId":"198560cc-d57b-407b-8c7b-51712a7e14a5"}
> info: <-- POST /wd/hub/session/198560cc-d57b-407b-8c7b-51712a7e14a5/element/19/click 200 402.469 ms - 76 {"status":0,"value":true,"sessionId":"198560cc-d57b-407b-8c7b-51712a7e14a5"}
> info: --> POST /wd/hub/session/198560cc-d57b-407b-8c7b-51712a7e14a5/appium/device/keyevent {"keycode":4}
> info: [debug] Pushing command to appium work queue: ["pressKeyCode",{"keycode":4,"metastate":null}]
> info: [debug] [BOOTSTRAP] [debug] Got data from client: {"cmd":"action","action":"pressKeyCode","params":{"keycode":4,"metastate":null}}
> info: [debug] [BOOTSTRAP] [debug] Got command of type ACTION
> info: [debug] [BOOTSTRAP] [debug] Got command action: pressKeyCode
> info: [debug] [BOOTSTRAP] [debug] Returning result: {"value":true,"status":0}
> info: [debug] Responding to client with success: {"status":0,"value":true,"sessionId":"198560cc-d57b-407b-8c7b-51712a7e14a5"}
> info: <-- POST /wd/hub/session/198560cc-d57b-407b-8c7b-51712a7e14a5/appium/device/keyevent 200 86.043 ms - 76 {"status":0,"value":true,"sessionId":"198560cc-d57b-407b-8c7b-51712a7e14a5"}
> info: --> POST /wd/hub/session/198560cc-d57b-407b-8c7b-51712a7e14a5/element {"using":"id","value":"com.uama.dreamhouseforlc:id/tx_bar_title"}
> info: [debug] Waiting up to 0ms for condition
> info: [debug] Pushing command to appium work queue: ["find",{"strategy":"id","selector":"com.uama.dreamhouseforlc:id/tx_bar_title","context":"","multiple":false}]
> info: [debug] [BOOTSTRAP] [debug] Got data from client: {"cmd":"action","action":"find","params":{"strategy":"id","selector":"com.uama.dreamhouseforlc:id/tx_bar_title","context":"","multiple":false}}
> info: [debug] [BOOTSTRAP] [debug] Got command of type ACTION
> info: [debug] [BOOTSTRAP] [debug] Got command action: find
> info: [debug] [BOOTSTRAP] [debug] Finding com.uama.dreamhouseforlc:id/tx_bar_title using ID with the contextId: multiple: false
> info: [debug] [BOOTSTRAP] [debug] Using: UiSelector[INSTANCE=0, RESOURCE_ID=com.uama.dreamhouseforlc:id/tx_bar_title]
> info: [debug] [BOOTSTRAP] [debug] Returning result: {"value":{"ELEMENT":"20"},"status":0}
> info: [debug] Responding to client with success: {"status":0,"value":{"ELEMENT":"20"},"sessionId":"198560cc-d57b-407b-8c7b-51712a7e14a5"}
> info: <-- POST /wd/hub/session/198560cc-d57b-407b-8c7b-51712a7e14a5/element 200 237.135 ms - 88 {"status":0,"value":{"ELEMENT":"20"},"sessionId":"198560cc-d57b-407b-8c7b-51712a7e14a5"}
> info: --> POST /wd/hub/session/198560cc-d57b-407b-8c7b-51712a7e14a5/element/20/click {"id":"20"}
> info: [debug] Pushing command to appium work queue: ["element:click",{"elementId":"20"}]
> info: [debug] [BOOTSTRAP] [debug] Got data from client: {"cmd":"action","action":"element:click","params":{"elementId":"20"}}
> info: [debug] [BOOTSTRAP] [debug] Got command of type ACTION
> info: [debug] [BOOTSTRAP] [debug] Got command action: click
> info: [debug] [BOOTSTRAP] [debug] Returning result: {"value":true,"status":0}
> info: [debug] Responding to client with success: {"status":0,"value":true,"sessionId":"198560cc-d57b-407b-8c7b-51712a7e14a5"}
> info: <-- POST /wd/hub/session/198560cc-d57b-407b-8c7b-51712a7e14a5/element/20/click 200 1289.861 ms - 76 {"status":0,"value":true,"sessionId":"198560cc-d57b-407b-8c7b-51712a7e14a5"}
> info: --> POST /wd/hub/session/198560cc-d57b-407b-8c7b-51712a7e14a5/appium/device/keyevent {"keycode":4}
> info: [debug] Pushing command to appium work queue: ["pressKeyCode",{"keycode":4,"metastate":null}]
> info: [debug] [BOOTSTRAP] [debug] Got data from client: {"cmd":"action","action":"pressKeyCode","params":{"keycode":4,"metastate":null}}
> info: [debug] [BOOTSTRAP] [debug] Got command of type ACTION
> info: [debug] [BOOTSTRAP] [debug] Got command action: pressKeyCode
> info: [debug] [BOOTSTRAP] [debug] Returning result: {"value":true,"status":0}
> info: [debug] Responding to client with success: {"status":0,"value":true,"sessionId":"198560cc-d57b-407b-8c7b-51712a7e14a5"}
> info: <-- POST /wd/hub/session/198560cc-d57b-407b-8c7b-51712a7e14a5/appium/device/keyevent 200 220.405 ms - 76 {"status":0,"value":true,"sessionId":"198560cc-d57b-407b-8c7b-51712a7e14a5"}
> info: --> POST /wd/hub/session/198560cc-d57b-407b-8c7b-51712a7e14a5/element {"using":"id","value":"com.uama.dreamhouseforlc:id/navigate"}
> info: [debug] Waiting up to 0ms for condition
> info: [debug] Pushing command to appium work queue: ["find",{"strategy":"id","selector":"com.uama.dreamhouseforlc:id/navigate","context":"","multiple":false}]
> info: [debug] [BOOTSTRAP] [debug] Got data from client: {"cmd":"action","action":"find","params":{"strategy":"id","selector":"com.uama.dreamhouseforlc:id/navigate","context":"","multiple":false}}
> info: [debug] [BOOTSTRAP] [debug] Got command of type ACTION
> info: [debug] [BOOTSTRAP] [debug] Got command action: find
> info: [debug] [BOOTSTRAP] [debug] Finding com.uama.dreamhouseforlc:id/navigate using ID with the contextId: multiple: false
> info: [debug] [BOOTSTRAP] [debug] Using: UiSelector[INSTANCE=0, RESOURCE_ID=com.uama.dreamhouseforlc:id/navigate]
> info: [debug] [BOOTSTRAP] [debug] Returning result: {"value":{"ELEMENT":"21"},"status":0}
> info: [debug] Responding to client with success: {"status":0,"value":{"ELEMENT":"21"},"sessionId":"198560cc-d57b-407b-8c7b-51712a7e14a5"}
> info: <-- POST /wd/hub/session/198560cc-d57b-407b-8c7b-51712a7e14a5/element 200 166.343 ms - 88 {"status":0,"value":{"ELEMENT":"21"},"sessionId":"198560cc-d57b-407b-8c7b-51712a7e14a5"}
> info: --> POST /wd/hub/session/198560cc-d57b-407b-8c7b-51712a7e14a5/element/21/click {"id":"21"}
> info: [debug] Pushing command to appium work queue: ["element:click",{"elementId":"21"}]
> info: [debug] [BOOTSTRAP] [debug] Got data from client: {"cmd":"action","action":"element:click","params":{"elementId":"21"}}
> info: [debug] [BOOTSTRAP] [debug] Got command of type ACTION
> info: [debug] [BOOTSTRAP] [debug] Got command action: click
> info: [debug] Responding to client with success: {"status":0,"value":true,"sessionId":"198560cc-d57b-407b-8c7b-51712a7e14a5"}
> info: <-- POST /wd/hub/session/198560cc-d57b-407b-8c7b-51712a7e14a5/element/21/click 200 1045.352 ms - 76 {"status":0,"value":true,"sessionId":"198560cc-d57b-407b-8c7b-51712a7e14a5"}
> info: [debug] [BOOTSTRAP] [debug] Returning result: {"value":true,"status":0}
> info: --> POST /wd/hub/session/198560cc-d57b-407b-8c7b-51712a7e14a5/appium/device/keyevent {"keycode":4}
> info: [debug] Pushing command to appium work queue: ["pressKeyCode",{"keycode":4,"metastate":null}]
> info: [debug] [BOOTSTRAP] [debug] Got data from client: {"cmd":"action","action":"pressKeyCode","params":{"keycode":4,"metastate":null}}
> info: [debug] [BOOTSTRAP] [debug] Got command of type ACTION
> info: [debug] [BOOTSTRAP] [debug] Got command action: pressKeyCode
> info: [debug] Responding to client with success: {"status":0,"value":true,"sessionId":"198560cc-d57b-407b-8c7b-51712a7e14a5"}
> info: <-- POST /wd/hub/session/198560cc-d57b-407b-8c7b-51712a7e14a5/appium/device/keyevent 200 51.281 ms - 76 {"status":0,"value":true,"sessionId":"198560cc-d57b-407b-8c7b-51712a7e14a5"}
> info: [debug] [BOOTSTRAP] [debug] Returning result: {"value":true,"status":0}
> info: --> POST /wd/hub/session/198560cc-d57b-407b-8c7b-51712a7e14a5/element {"using":"name","value":"鍔ㄦ?}
> info: [debug] Waiting up to 0ms for condition
> info: [debug] Pushing command to appium work queue: ["find",{"strategy":"name","selector":"鍔ㄦ?,"context":"","multiple":false}]
> info: [debug] [BOOTSTRAP] [debug] Got data from client: {"cmd":"action","action":"find","params":{"strategy":"name","selector":"鍔ㄦ?,"context":"","multiple":false}}
> info: [debug] [BOOTSTRAP] [debug] Got command of type ACTION
> info: [debug] [BOOTSTRAP] [debug] Got command action: find
> info: [debug] [BOOTSTRAP] [debug] Finding 鍔ㄦ?using NAME with the contextId: multiple: false
> info: [debug] [BOOTSTRAP] [debug] Using: UiSelector[DESCRIPTION=鍔ㄦ? INSTANCE=0]
> info: [debug] [BOOTSTRAP] [debug] Using: UiSelector[TEXT=鍔ㄦ? INSTANCE=0]
> info: [debug] [BOOTSTRAP] [debug] Returning result: {"value":{"ELEMENT":"22"},"status":0}
> info: [debug] Responding to client with success: {"status":0,"value":{"ELEMENT":"22"},"sessionId":"198560cc-d57b-407b-8c7b-51712a7e14a5"}
> info: <-- POST /wd/hub/session/198560cc-d57b-407b-8c7b-51712a7e14a5/element 200 1307.869 ms - 88 {"status":0,"value":{"ELEMENT":"22"},"sessionId":"198560cc-d57b-407b-8c7b-51712a7e14a5"}
> info: --> POST /wd/hub/session/198560cc-d57b-407b-8c7b-51712a7e14a5/element/22/click {"id":"22"}
> info: [debug] Pushing command to appium work queue: ["element:click",{"elementId":"22"}]
> info: [debug] [BOOTSTRAP] [debug] Got data from client: {"cmd":"action","action":"element:click","params":{"elementId":"22"}}
> info: [debug] [BOOTSTRAP] [debug] Got command of type ACTION
> info: [debug] [BOOTSTRAP] [debug] Got command action: click
> info: [debug] [BOOTSTRAP] [debug] Returning result: {"value":true,"status":0}
> info: [debug] Responding to client with success: {"status":0,"value":true,"sessionId":"198560cc-d57b-407b-8c7b-51712a7e14a5"}
> info: <-- POST /wd/hub/session/198560cc-d57b-407b-8c7b-51712a7e14a5/element/22/click 200 315.517 ms - 76 {"status":0,"value":true,"sessionId":"198560cc-d57b-407b-8c7b-51712a7e14a5"}
> info: --> POST /wd/hub/session/198560cc-d57b-407b-8c7b-51712a7e14a5/appium/device/keyevent {"keycode":4}
> info: [debug] Pushing command to appium work queue: ["pressKeyCode",{"keycode":4,"metastate":null}]
> info: [debug] [BOOTSTRAP] [debug] Got data from client: {"cmd":"action","action":"pressKeyCode","params":{"keycode":4,"metastate":null}}
> info: [debug] [BOOTSTRAP] [debug] Got command of type ACTION
> info: [debug] [BOOTSTRAP] [debug] Got command action: pressKeyCode
> info: [debug] Responding to client with success: {"status":0,"value":true,"sessionId":"198560cc-d57b-407b-8c7b-51712a7e14a5"}
> info: <-- POST /wd/hub/session/198560cc-d57b-407b-8c7b-51712a7e14a5/appium/device/keyevent 200 175.669 ms - 76 {"status":0,"value":true,"sessionId":"198560cc-d57b-407b-8c7b-51712a7e14a5"}
> info: [debug] [BOOTSTRAP] [debug] Returning result: {"value":true,"status":0}
> info: --> POST /wd/hub/session/198560cc-d57b-407b-8c7b-51712a7e14a5/element {"using":"id","value":"com.uama.dreamhouseforlc:id/tv_adrolling"}
> info: [debug] Waiting up to 0ms for condition
> info: [debug] Pushing command to appium work queue: ["find",{"strategy":"id","selector":"com.uama.dreamhouseforlc:id/tv_adrolling","context":"","multiple":false}]
> info: [debug] [BOOTSTRAP] [debug] Got data from client: {"cmd":"action","action":"find","params":{"strategy":"id","selector":"com.uama.dreamhouseforlc:id/tv_adrolling","context":"","multiple":false}}
> info: [debug] [BOOTSTRAP] [debug] Got command of type ACTION
> info: [debug] [BOOTSTRAP] [debug] Got command action: find
> info: [debug] [BOOTSTRAP] [debug] Finding com.uama.dreamhouseforlc:id/tv_adrolling using ID with the contextId: multiple: false
> info: [debug] [BOOTSTRAP] [debug] Using: UiSelector[INSTANCE=0, RESOURCE_ID=com.uama.dreamhouseforlc:id/tv_adrolling]
> info: [debug] [BOOTSTRAP] [debug] Returning result: {"value":{"ELEMENT":"23"},"status":0}
> info: [debug] Responding to client with success: {"status":0,"value":{"ELEMENT":"23"},"sessionId":"198560cc-d57b-407b-8c7b-51712a7e14a5"}
> info: <-- POST /wd/hub/session/198560cc-d57b-407b-8c7b-51712a7e14a5/element 200 167.067 ms - 88 {"status":0,"value":{"ELEMENT":"23"},"sessionId":"198560cc-d57b-407b-8c7b-51712a7e14a5"}
> info: --> POST /wd/hub/session/198560cc-d57b-407b-8c7b-51712a7e14a5/element/23/click {"id":"23"}
> info: [debug] Pushing command to appium work queue: ["element:click",{"elementId":"23"}]
> info: [debug] [BOOTSTRAP] [debug] Got data from client: {"cmd":"action","action":"element:click","params":{"elementId":"23"}}
> info: [debug] [BOOTSTRAP] [debug] Got command of type ACTION
> info: [debug] [BOOTSTRAP] [debug] Got command action: click
> info: [debug] [BOOTSTRAP] [debug] Returning result: {"value":true,"status":0}
> info: [debug] Responding to client with success: {"status":0,"value":true,"sessionId":"198560cc-d57b-407b-8c7b-51712a7e14a5"}
> info: <-- POST /wd/hub/session/198560cc-d57b-407b-8c7b-51712a7e14a5/element/23/click 200 997.963 ms - 76 {"status":0,"value":true,"sessionId":"198560cc-d57b-407b-8c7b-51712a7e14a5"}
> info: --> POST /wd/hub/session/198560cc-d57b-407b-8c7b-51712a7e14a5/appium/device/keyevent {"keycode":4}
> info: [debug] Pushing command to appium work queue: ["pressKeyCode",{"keycode":4,"metastate":null}]
> info: [debug] [BOOTSTRAP] [debug] Got data from client: {"cmd":"action","action":"pressKeyCode","params":{"keycode":4,"metastate":null}}
> info: [debug] [BOOTSTRAP] [debug] Got command of type ACTION
> info: [debug] [BOOTSTRAP] [debug] Got command action: pressKeyCode
> info: [debug] Responding to client with success: {"status":0,"value":true,"sessionId":"198560cc-d57b-407b-8c7b-51712a7e14a5"}
> info: <-- POST /wd/hub/session/198560cc-d57b-407b-8c7b-51712a7e14a5/appium/device/keyevent 200 44.151 ms - 76 {"status":0,"value":true,"sessionId":"198560cc-d57b-407b-8c7b-51712a7e14a5"}
> info: --> POST /wd/hub/session/198560cc-d57b-407b-8c7b-51712a7e14a5/element {"using":"id","value":"com.uama.dreamhouseforlc:id/tab_grow"}
> info: [debug] Waiting up to 0ms for condition
> info: [debug] Pushing command to appium work queue: ["find",{"strategy":"id","selector":"com.uama.dreamhouseforlc:id/tab_grow","context":"","multiple":false}]
> info: [debug] [BOOTSTRAP] [debug] Returning result: {"value":true,"status":0}
> info: [debug] [BOOTSTRAP] [debug] Got data from client: {"cmd":"action","action":"find","params":{"strategy":"id","selector":"com.uama.dreamhouseforlc:id/tab_grow","context":"","multiple":false}}
> info: [debug] [BOOTSTRAP] [debug] Got command of type ACTION
> info: [debug] [BOOTSTRAP] [debug] Got command action: find
> info: [debug] [BOOTSTRAP] [debug] Finding com.uama.dreamhouseforlc:id/tab_grow using ID with the contextId: multiple: false
> info: [debug] [BOOTSTRAP] [debug] Using: UiSelector[INSTANCE=0, RESOURCE_ID=com.uama.dreamhouseforlc:id/tab_grow]
> info: [debug] [BOOTSTRAP] [debug] Returning result: {"value":{"ELEMENT":"24"},"status":0}
> info: [debug] Responding to client with success: {"status":0,"value":{"ELEMENT":"24"},"sessionId":"198560cc-d57b-407b-8c7b-51712a7e14a5"}
> info: <-- POST /wd/hub/session/198560cc-d57b-407b-8c7b-51712a7e14a5/element 200 206.613 ms - 88 {"status":0,"value":{"ELEMENT":"24"},"sessionId":"198560cc-d57b-407b-8c7b-51712a7e14a5"}
> info: --> POST /wd/hub/session/198560cc-d57b-407b-8c7b-51712a7e14a5/element/24/click {"id":"24"}
> info: [debug] Pushing command to appium work queue: ["element:click",{"elementId":"24"}]
> info: [debug] [BOOTSTRAP] [debug] Got data from client: {"cmd":"action","action":"element:click","params":{"elementId":"24"}}
> info: [debug] [BOOTSTRAP] [debug] Got command of type ACTION
> info: [debug] [BOOTSTRAP] [debug] Got command action: click
> info: [debug] [BOOTSTRAP] [debug] Returning result: {"value":true,"status":0}
> info: [debug] Responding to client with success: {"status":0,"value":true,"sessionId":"198560cc-d57b-407b-8c7b-51712a7e14a5"}
> info: <-- POST /wd/hub/session/198560cc-d57b-407b-8c7b-51712a7e14a5/element/24/click 200 1341.012 ms - 76 {"status":0,"value":true,"sessionId":"198560cc-d57b-407b-8c7b-51712a7e14a5"}
> info: --> POST /wd/hub/session/198560cc-d57b-407b-8c7b-51712a7e14a5/appium/device/keyevent {"keycode":4}
> info: [debug] Pushing command to appium work queue: ["pressKeyCode",{"keycode":4,"metastate":null}]
> info: [debug] [BOOTSTRAP] [debug] Got data from client: {"cmd":"action","action":"pressKeyCode","params":{"keycode":4,"metastate":null}}
> info: [debug] [BOOTSTRAP] [debug] Got command of type ACTION
> info: [debug] [BOOTSTRAP] [debug] Got command action: pressKeyCode
> info: [debug] [BOOTSTRAP] [debug] Returning result: {"value":true,"status":0}
> info: [debug] Responding to client with success: {"status":0,"value":true,"sessionId":"198560cc-d57b-407b-8c7b-51712a7e14a5"}
> info: <-- POST /wd/hub/session/198560cc-d57b-407b-8c7b-51712a7e14a5/appium/device/keyevent 200 40.236 ms - 76 {"status":0,"value":true,"sessionId":"198560cc-d57b-407b-8c7b-51712a7e14a5"}
> info: --> POST /wd/hub/session/198560cc-d57b-407b-8c7b-51712a7e14a5/element {"using":"id","value":"com.uama.dreamhouseforlc:id/tab_yegong"}
> info: [debug] Waiting up to 0ms for condition
> info: [debug] Pushing command to appium work queue: ["find",{"strategy":"id","selector":"com.uama.dreamhouseforlc:id/tab_yegong","context":"","multiple":false}]
> info: [debug] [BOOTSTRAP] [debug] Got data from client: {"cmd":"action","action":"find","params":{"strategy":"id","selector":"com.uama.dreamhouseforlc:id/tab_yegong","context":"","multiple":false}}
> info: [debug] [BOOTSTRAP] [debug] Got command of type ACTION
> info: [debug] [BOOTSTRAP] [debug] Got command action: find
> info: [debug] [BOOTSTRAP] [debug] Finding com.uama.dreamhouseforlc:id/tab_yegong using ID with the contextId: multiple: false
> info: [debug] [BOOTSTRAP] [debug] Using: UiSelector[INSTANCE=0, RESOURCE_ID=com.uama.dreamhouseforlc:id/tab_yegong]
> info: [debug] [BOOTSTRAP] [debug] Returning result: {"value":{"ELEMENT":"25"},"status":0}
> info: [debug] Responding to client with success: {"status":0,"value":{"ELEMENT":"25"},"sessionId":"198560cc-d57b-407b-8c7b-51712a7e14a5"}
> info: <-- POST /wd/hub/session/198560cc-d57b-407b-8c7b-51712a7e14a5/element 200 76.243 ms - 88 {"status":0,"value":{"ELEMENT":"25"},"sessionId":"198560cc-d57b-407b-8c7b-51712a7e14a5"}
> info: --> POST /wd/hub/session/198560cc-d57b-407b-8c7b-51712a7e14a5/element/25/click {"id":"25"}
> info: [debug] Pushing command to appium work queue: ["element:click",{"elementId":"25"}]
> info: [debug] [BOOTSTRAP] [debug] Got data from client: {"cmd":"action","action":"element:click","params":{"elementId":"25"}}
> info: [debug] [BOOTSTRAP] [debug] Got command of type ACTION
> info: [debug] [BOOTSTRAP] [debug] Got command action: click
> info: [debug] [BOOTSTRAP] [debug] Returning result: {"value":true,"status":0}
> info: [debug] Responding to client with success: {"status":0,"value":true,"sessionId":"198560cc-d57b-407b-8c7b-51712a7e14a5"}
> info: <-- POST /wd/hub/session/198560cc-d57b-407b-8c7b-51712a7e14a5/element/25/click 200 192.072 ms - 76 {"status":0,"value":true,"sessionId":"198560cc-d57b-407b-8c7b-51712a7e14a5"}
> info: --> POST /wd/hub/session/198560cc-d57b-407b-8c7b-51712a7e14a5/appium/device/keyevent {"keycode":4}
> info: [debug] Pushing command to appium work queue: ["pressKeyCode",{"keycode":4,"metastate":null}]
> info: [debug] [BOOTSTRAP] [debug] Got data from client: {"cmd":"action","action":"pressKeyCode","params":{"keycode":4,"metastate":null}}
> info: [debug] [BOOTSTRAP] [debug] Got command of type ACTION
> info: [debug] [BOOTSTRAP] [debug] Got command action: pressKeyCode
> info: [debug] [BOOTSTRAP] [debug] Returning result: {"value":true,"status":0}
> info: [debug] Responding to client with success: {"status":0,"value":true,"sessionId":"198560cc-d57b-407b-8c7b-51712a7e14a5"}
> info: <-- POST /wd/hub/session/198560cc-d57b-407b-8c7b-51712a7e14a5/appium/device/keyevent 200 51.768 ms - 76 {"status":0,"value":true,"sessionId":"198560cc-d57b-407b-8c7b-51712a7e14a5"}
> info: --> POST /wd/hub/session/198560cc-d57b-407b-8c7b-51712a7e14a5/element {"using":"id","value":"com.uama.dreamhouseforlc:id/tab_mine"}
> info: [debug] Waiting up to 0ms for condition
> info: [debug] Pushing command to appium work queue: ["find",{"strategy":"id","selector":"com.uama.dreamhouseforlc:id/tab_mine","context":"","multiple":false}]
> info: [debug] [BOOTSTRAP] [debug] Got data from client: {"cmd":"action","action":"find","params":{"strategy":"id","selector":"com.uama.dreamhouseforlc:id/tab_mine","context":"","multiple":false}}
> info: [debug] [BOOTSTRAP] [debug] Got command of type ACTION
> info: [debug] [BOOTSTRAP] [debug] Got command action: find
> info: [debug] [BOOTSTRAP] [debug] Finding com.uama.dreamhouseforlc:id/tab_mine using ID with the contextId: multiple: false
> info: [debug] [BOOTSTRAP] [debug] Using: UiSelector[INSTANCE=0, RESOURCE_ID=com.uama.dreamhouseforlc:id/tab_mine]
> info: [debug] [BOOTSTRAP] [debug] Returning result: {"value":{"ELEMENT":"26"},"status":0}
> info: [debug] Responding to client with success: {"status":0,"value":{"ELEMENT":"26"},"sessionId":"198560cc-d57b-407b-8c7b-51712a7e14a5"}
> info: <-- POST /wd/hub/session/198560cc-d57b-407b-8c7b-51712a7e14a5/element 200 64.399 ms - 88 {"status":0,"value":{"ELEMENT":"26"},"sessionId":"198560cc-d57b-407b-8c7b-51712a7e14a5"}
> info: --> POST /wd/hub/session/198560cc-d57b-407b-8c7b-51712a7e14a5/element/26/click {"id":"26"}
> info: [debug] Pushing command to appium work queue: ["element:click",{"elementId":"26"}]
> info: [debug] [BOOTSTRAP] [debug] Got data from client: {"cmd":"action","action":"element:click","params":{"elementId":"26"}}
> info: [debug] [BOOTSTRAP] [debug] Got command of type ACTION
> info: [debug] [BOOTSTRAP] [debug] Got command action: click
> info: [debug] [BOOTSTRAP] [debug] Returning result: {"value":true,"status":0}
> info: [debug] Responding to client with success: {"status":0,"value":true,"sessionId":"198560cc-d57b-407b-8c7b-51712a7e14a5"}
> info: <-- POST /wd/hub/session/198560cc-d57b-407b-8c7b-51712a7e14a5/element/26/click 200 1477.026 ms - 76 {"status":0,"value":true,"sessionId":"198560cc-d57b-407b-8c7b-51712a7e14a5"}
> info: --> POST /wd/hub/session/198560cc-d57b-407b-8c7b-51712a7e14a5/appium/device/keyevent {"keycode":4}
> info: [debug] Pushing command to appium work queue: ["pressKeyCode",{"keycode":4,"metastate":null}]
> info: [debug] [BOOTSTRAP] [debug] Got data from client: {"cmd":"action","action":"pressKeyCode","params":{"keycode":4,"metastate":null}}
> info: [debug] [BOOTSTRAP] [debug] Got command of type ACTION
> info: [debug] [BOOTSTRAP] [debug] Got command action: pressKeyCode
> info: [debug] Responding to client with success: {"status":0,"value":true,"sessionId":"198560cc-d57b-407b-8c7b-51712a7e14a5"}
> info: <-- POST /wd/hub/session/198560cc-d57b-407b-8c7b-51712a7e14a5/appium/device/keyevent 200 49.503 ms - 76 {"status":0,"value":true,"sessionId":"198560cc-d57b-407b-8c7b-51712a7e14a5"}
> info: [debug] [BOOTSTRAP] [debug] Returning result: {"value":true,"status":0}
> Killed Node Server.
> Appium server process ended
|
日志过程中输入中文乱码,这个问题我还没有找到解决方法,如有高人请留下方法,谢谢。
|
|