-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathappium_ios.log
2198 lines (2198 loc) · 242 KB
/
appium_ios.log
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
886
887
888
889
890
891
892
893
894
895
896
897
898
899
900
901
902
903
904
905
906
907
908
909
910
911
912
913
914
915
916
917
918
919
920
921
922
923
924
925
926
927
928
929
930
931
932
933
934
935
936
937
938
939
940
941
942
943
944
945
946
947
948
949
950
951
952
953
954
955
956
957
958
959
960
961
962
963
964
965
966
967
968
969
970
971
972
973
974
975
976
977
978
979
980
981
982
983
984
985
986
987
988
989
990
991
992
993
994
995
996
997
998
999
1000
[38;5;112m[Appium][0m Welcome to Appium v2.11.5 (REV 916044581862c32fc2365e8e9ff0b1507a98925e)
[38;5;112m[Appium][0m Non-default server args:
[38;5;112m[Appium][0m { allowCors: [33mtrue[39m,
allowInsecure: [ [32m'chromedriver_autodownload'[39m ],
basePath: [32m'/wd/hub'[39m }
[38;5;112m[Appium][0m The autodetected Appium home path: /Users/boazwarshawsky/.appium
[38;5;112m[Appium][0m Attempting to load driver uiautomator2...
[38;5;112m[Appium][0m Attempting to load driver xcuitest...
[38;5;112m[Appium][0m Requiring driver at /Users/boazwarshawsky/.appium/node_modules/appium-xcuitest-driver/build/index.js
[38;5;112m[Appium][0m Requiring driver at /Users/boazwarshawsky/.appium/node_modules/appium-uiautomator2-driver/build/index.js
[38;5;112m[Appium][0m AndroidUiautomator2Driver has been successfully loaded in 0.705s
[38;5;112m[Appium][0m XCUITestDriver has been successfully loaded in 0.706s
[38;5;112m[Appium][0m You have enabled CORS requests from any host. Be careful not to visit sites which could maliciously try to start Appium sessions on your machine
[38;5;112m[Appium][0m Appium REST http interface listener started on http://0.0.0.0:4723/wd/hub
[38;5;112m[Appium][0m You can provide the following URLs in your client code to connect to this server:
http://127.0.0.1:4723/wd/hub (only accessible from the same host)
http://192.168.98.103:4723/wd/hub
http://169.254.45.161:4723/wd/hub
[38;5;112m[Appium][0m Available drivers:
[38;5;112m[Appium][0m - uiautomator2@3.8.0 (automationName 'UiAutomator2')
[38;5;112m[Appium][0m - xcuitest@7.27.0 (automationName 'XCUITest')
[38;5;112m[Appium][0m No plugins have been installed. Use the "appium plugin" command to install the one(s) you want to use.
[38;5;86m[HTTP][0m Request idempotency key: 0e289e4a-2892-4d8e-9090-1756388bb18a
[38;5;86m[HTTP][0m [37m-->[39m [37mPOST[39m [37m/wd/hub/session[39m [90m{"capabilities":{"firstMatch":[{}],"alwaysMatch":{"appium:automationName":"XCUITest","platformName":"iOS","appium:noReset":true,"appium:fullReset":false,"appium:platformVersion":"18.1","appium:deviceName":"qa_iphone_02","appium:udid":"00008110-0012150921E2401E","appium:bundleId":"com.shs.DeploymentManager","appium:xcodeOrgId":"WGYJF9YTP7","appium:xcodeSigningId":"iPhone Developer","appium:app":"http://mv-nexus-new.corp.aeroscout.com:8081/repository/mobile-products/ios/development/deployment/securitas/master/Deployment.ipa"}}}[39m
[38;5;94m[AppiumDriver@7c66][0m Calling AppiumDriver.createSession() with args: [null,null,{"firstMatch":[{}],"alwaysMatch":{"appium:automationName":"XCUITest","platformName":"iOS","appium:noReset":true,"appium:fullReset":false,"appium:platformVersion":"18.1","appium:deviceName":"qa_iphone_02","appium:udid":"00008110-0012150921E2401E","appium:bundleId":"com.shs.DeploymentManager","appium:xcodeOrgId":"WGYJF9YTP7","appium:xcodeSigningId":"iPhone Developer","appium:app":"http://mv-nexus-new.corp.aeroscout.com:8081/repository/mobile-products/ios/development/deployment/securitas/master/Deployment.ipa"}}]
[38;5;94m[AppiumDriver@7c66][0m Event 'newSessionRequested' logged at 1728476743843 (15:25:43 GMT+0300 (שעון ישראל (קיץ)))
[38;5;112m[Appium][0m Attempting to find matching driver for automationName 'XCUITest' and platformName 'iOS'
[38;5;112m[Appium][0m The 'xcuitest' driver was installed and matched caps.
[38;5;112m[Appium][0m Will require it at /Users/boazwarshawsky/.appium/node_modules/appium-xcuitest-driver
[38;5;112m[Appium][0m Requiring driver at /Users/boazwarshawsky/.appium/node_modules/appium-xcuitest-driver/build/index.js
[38;5;94m[AppiumDriver@7c66][0m Appium v2.11.5 creating new XCUITestDriver (v7.27.0) session
[38;5;94m[AppiumDriver@7c66][0m Checking BaseDriver versions for Appium and XCUITestDriver
[38;5;94m[AppiumDriver@7c66][0m Appium's BaseDriver version is 9.11.5
[38;5;94m[AppiumDriver@7c66][0m XCUITestDriver's BaseDriver version is 9.11.5
[38;5;94m[AppiumDriver@7c66][0m Explicitly enabling use of insecure features:
[38;5;94m[AppiumDriver@7c66][0m chromedriver_autodownload
[38;5;79m[XCUITestDriver@9e24][0m
[38;5;79m[XCUITestDriver@9e24][0m Creating session with W3C capabilities: {
"alwaysMatch": {
"platformName": "iOS",
"appium:automationName": "XCUITest",
"appium:noReset": true,
"appium:fullReset": false,
"appium:platformVersion": "18.1",
"appium:deviceName": "qa_iphone_02",
"appium:udid": "00008110-0012150921E2401E",
"appium:bundleId": "com.shs.DeploymentManager",
"appium:xcodeOrgId": "WGYJF9YTP7",
"appium:xcodeSigningId": "iPhone Developer",
"appium:app": "http://mv-nexus-new.corp.aeroscout.com:8081/repository/mobile-products/ios/development/deployment/securitas/master/Deployment.ipa"
},
"firstMatch": [
{}
]
}
[38;5;46m[8bf26d97][0m[38;5;79m[XCUITestDriver@9e24][0m Session created with session id: 8bf26d97-3e4a-4810-a09b-21c572ca75e3
[38;5;46m[8bf26d97][0m[38;5;135m[XCUITest][0m Current user: 'boazwarshawsky'
[38;5;46m[8bf26d97][0m[38;5;79m[XCUITestDriver@9e24][0m Available real devices: 00008110-0012150921E2401E
[38;5;46m[8bf26d97][0m[38;5;79m[XCUITestDriver@9e24][0m Creating iDevice object with udid '00008110-0012150921E2401E'
[38;5;46m[8bf26d97][0m[38;5;79m[XCUITestDriver@9e24][0m Determining device to run tests on: udid: '00008110-0012150921E2401E', real device: true
[38;5;46m[8bf26d97][0m[38;5;79m[XCUITestDriver@9e24][0m Event 'xcodeDetailsRetrieved' logged at 1728476743889 (15:25:43 GMT+0300 (שעון ישראל (קיץ)))
[38;5;46m[8bf26d97][0m[38;5;123m[BaseDriver][0m Using downloadable app 'http://mv-nexus-new.corp.aeroscout.com:8081/repository/mobile-products/ios/development/deployment/securitas/master/Deployment.ipa'
[38;5;46m[8bf26d97][0m[38;5;123m[BaseDriver][0m Request headers: {"user-agent":"Appium (BaseDriver v9.11.5)"}
[38;5;46m[8bf26d97][0m[38;5;123m[BaseDriver][0m Response status: 200
[38;5;46m[8bf26d97][0m[38;5;123m[BaseDriver][0m Last-Modified: Tue, 08 Oct 2024 21:35:22 GMT
[38;5;46m[8bf26d97][0m[38;5;123m[BaseDriver][0m Content-Type: application/x-itunes-ipa
[38;5;46m[8bf26d97][0m[38;5;79m[XCUITestDriver@9e24][0m The remote file (10.65 MB) has been downloaded to '/var/folders/b2/3q970w753l1_dw7ntszqqg140000gn/T/202499-21051-1fdygk.lu8q3/appium-app-1728476743907.ipa' in 0.973s
[38;5;46m[8bf26d97][0m[38;5;79m[XCUITestDriver@9e24][0m Caching the manifest 'Payload/Deployment.app/Info.plist' for com.shs.DeploymentManager app from the compressed source using the key '37159907'
[38;5;46m[8bf26d97][0m[38;5;79m[XCUITestDriver@9e24][0m Event 'appConfigured' logged at 1728476744933 (15:25:44 GMT+0300 (שעון ישראל (קיץ)))
[38;5;46m[8bf26d97][0m[38;5;135m[XCUITest][0m Checking whether app '/var/folders/b2/3q970w753l1_dw7ntszqqg140000gn/T/202499-21051-1fdygk.lu8q3/appium-app-1728476743907.ipa' is actually present on file system
[38;5;46m[8bf26d97][0m[38;5;135m[XCUITest][0m App is present
[38;5;46m[8bf26d97][0m[38;5;79m[XCUITestDriver@9e24][0m Event 'resetStarted' logged at 1728476744933 (15:25:44 GMT+0300 (שעון ישראל (קיץ)))
[38;5;46m[8bf26d97][0m[38;5;79m[XCUITestDriver@9e24][0m Reset: fullReset not set. Leaving as is
[38;5;46m[8bf26d97][0m[38;5;79m[XCUITestDriver@9e24][0m Event 'resetComplete' logged at 1728476744933 (15:25:44 GMT+0300 (שעון ישראל (קיץ)))
[38;5;46m[8bf26d97][0m[38;5;79m[XCUITestDriver@9e24][0m Using WDA path: '/Users/boazwarshawsky/.appium/node_modules/appium-xcuitest-driver/node_modules/appium-webdriveragent'
[38;5;46m[8bf26d97][0m[38;5;79m[XCUITestDriver@9e24][0m Using WDA agent: '/Users/boazwarshawsky/.appium/node_modules/appium-xcuitest-driver/node_modules/appium-webdriveragent/WebDriverAgent.xcodeproj'
[38;5;46m[8bf26d97][0m[38;5;79m[XCUITestDriver@9e24][0m The pyidevice tool is not present in PATH. Skipping crash logs collection for real devices.
[38;5;46m[8bf26d97][0m[38;5;79m[XCUITestDriver@9e24][0m Event 'logCaptureStarted' logged at 1728476745058 (15:25:45 GMT+0300 (שעון ישראל (קיץ)))
[38;5;46m[8bf26d97][0m[38;5;79m[XCUITestDriver@9e24][0m Setting up real device
[38;5;46m[8bf26d97][0m[38;5;79m[XCUITestDriver@9e24][0m Verifying application platform
[38;5;46m[8bf26d97][0m[38;5;79m[XCUITestDriver@9e24][0m CFBundleSupportedPlatforms: ["iPhoneOS"]
[38;5;46m[8bf26d97][0m[38;5;79m[XCUITestDriver@9e24][0m App 'com.shs.DeploymentManager' is already installed
[38;5;46m[8bf26d97][0m[38;5;79m[XCUITestDriver@9e24][0m noReset is requested. The app will not be be (re)installed
[38;5;46m[8bf26d97][0m[38;5;79m[XCUITestDriver@9e24][0m No obsolete cached processes from previous WDA sessions listening on port 8100 have been found
[38;5;46m[8bf26d97][0m[38;5;23m[DevCon Factory][0m Requesting connection for device 00008110-0012150921E2401E on local port 8100, device port 8100
[38;5;46m[8bf26d97][0m[38;5;23m[DevCon Factory][0m Cached connections count: 0
[38;5;46m[8bf26d97][0m[38;5;23m[DevCon Factory][0m Successfully requested the connection for 00008110-0012150921E2401E:8100
[38;5;46m[8bf26d97][0m[38;5;79m[XCUITestDriver@9e24][0m Starting WebDriverAgent initialization with the synchronization key 'XCUITestDriver'
[38;5;46m[8bf26d97][0m[38;5;151m[WD Proxy][0m Matched '/status' to command name 'getStatus'
[38;5;46m[8bf26d97][0m[38;5;151m[WD Proxy][0m Proxying [GET /status] to [GET http://127.0.0.1:8100/status] with no body
[38;5;46m[8bf26d97][0m[38;5;84m[iProxy@00008110:8100][0m Connection was refused to port 8100
[38;5;46m[8bf26d97][0m[38;5;151m[WD Proxy][0m socket hang up
[38;5;46m[8bf26d97][0m[38;5;79m[XCUITestDriver@9e24][0m WDA is not listening at 'http://127.0.0.1:8100/'. Original error:: An unknown server-side error occurred while processing the command. Original error: Could not proxy command to the remote server. Original error: socket hang up
[38;5;46m[8bf26d97][0m[38;5;79m[XCUITestDriver@9e24][0m WDA is currently not running. There is nothing to cache
[38;5;46m[8bf26d97][0m[38;5;79m[XCUITestDriver@9e24][0m Trying to start WebDriverAgent 1 times with 10000ms interval
[38;5;46m[8bf26d97][0m[38;5;79m[XCUITestDriver@9e24][0m These values can be customized by changing wdaStartupRetries/wdaStartupRetryInterval capabilities
[38;5;46m[8bf26d97][0m[38;5;79m[XCUITestDriver@9e24][0m Event 'wdaStartAttempted' logged at 1728476745312 (15:25:45 GMT+0300 (שעון ישראל (קיץ)))
[38;5;46m[8bf26d97][0m[38;5;79m[XCUITestDriver@9e24][0m Launching WebDriverAgent on the device
[38;5;46m[8bf26d97][0m[38;5;79m[XCUITestDriver@9e24][0m There is no need to perform the project cleanup. A fresh install has been detected
[38;5;46m[8bf26d97][0m[38;5;21m[WebDriverAgent][0m Killing running processes 'xcodebuild.*00008110-0012150921E2401E' for the device 00008110-0012150921E2401E...
[38;5;46m[8bf26d97][0m[38;5;21m[WebDriverAgent][0m 'pgrep -if xcodebuild.*00008110-0012150921E2401E' didn't detect any matching processes. Return code: 1
[38;5;46m[8bf26d97][0m[38;5;79m[XCUITestDriver@9e24][0m Beginning test with command 'xcodebuild build-for-testing test-without-building -project /Users/boazwarshawsky/.appium/node_modules/appium-xcuitest-driver/node_modules/appium-webdriveragent/WebDriverAgent.xcodeproj -scheme WebDriverAgentRunner -destination id=00008110-0012150921E2401E IPHONEOS_DEPLOYMENT_TARGET=18.1 DEVELOPMENT_TEAM=WGYJF9YTP7 CODE_SIGN_IDENTITY=iPhone Developer GCC_TREAT_WARNINGS_AS_ERRORS=0 COMPILER_INDEX_STORE_ENABLE=NO' in directory '/Users/boazwarshawsky/.appium/node_modules/appium-xcuitest-driver/node_modules/appium-webdriveragent'
[38;5;46m[8bf26d97][0m[38;5;79m[XCUITestDriver@9e24][0m Output from xcodebuild will only be logged if any errors are present there. To change this, use 'showXcodeLog' desired capability
[38;5;46m[8bf26d97][0m[38;5;79m[XCUITestDriver@9e24][0m Parsed BUILD_DIR configuration value: '/Users/boazwarshawsky/.appium/node_modules/appium-xcuitest-driver/node_modules/appium-webdriveragent/build'
[38;5;46m[8bf26d97][0m[38;5;79m[XCUITestDriver@9e24][0m Got derived data root: '/Users/boazwarshawsky/.appium/node_modules/appium-xcuitest-driver/node_modules'
[38;5;46m[8bf26d97][0m[38;5;79m[XCUITestDriver@9e24][0m Waiting up to 60000ms for WebDriverAgent to start
[38;5;46m[8bf26d97][0m[38;5;79m[XCUITestDriver@9e24][0m Matched '/status' to command name 'getStatus'
[38;5;46m[8bf26d97][0m[38;5;79m[XCUITestDriver@9e24][0m Proxying [GET /status] to [GET http://127.0.0.1:8100/status] with no body
[38;5;46m[8bf26d97][0m[38;5;84m[iProxy@00008110:8100][0m Connection was refused to port 8100
[38;5;46m[8bf26d97][0m[38;5;79m[XCUITestDriver@9e24][0m socket hang up
[38;5;46m[8bf26d97][0m[38;5;79m[XCUITestDriver@9e24][0m Matched '/status' to command name 'getStatus'
[38;5;46m[8bf26d97][0m[38;5;79m[XCUITestDriver@9e24][0m Proxying [GET /status] to [GET http://127.0.0.1:8100/status] with no body
[38;5;46m[8bf26d97][0m[38;5;84m[iProxy@00008110:8100][0m Connection was refused to port 8100
[38;5;46m[8bf26d97][0m[38;5;79m[XCUITestDriver@9e24][0m socket hang up
[38;5;46m[8bf26d97][0m[38;5;79m[XCUITestDriver@9e24][0m Matched '/status' to command name 'getStatus'
[38;5;46m[8bf26d97][0m[38;5;79m[XCUITestDriver@9e24][0m Proxying [GET /status] to [GET http://127.0.0.1:8100/status] with no body
[38;5;46m[8bf26d97][0m[38;5;84m[iProxy@00008110:8100][0m Connection was refused to port 8100
[38;5;46m[8bf26d97][0m[38;5;79m[XCUITestDriver@9e24][0m socket hang up
[38;5;46m[8bf26d97][0m[38;5;79m[XCUITestDriver@9e24][0m Matched '/status' to command name 'getStatus'
[38;5;46m[8bf26d97][0m[38;5;79m[XCUITestDriver@9e24][0m Proxying [GET /status] to [GET http://127.0.0.1:8100/status] with no body
[38;5;46m[8bf26d97][0m[38;5;84m[iProxy@00008110:8100][0m Connection was refused to port 8100
[38;5;46m[8bf26d97][0m[38;5;79m[XCUITestDriver@9e24][0m socket hang up
[38;5;46m[8bf26d97][0m[38;5;79m[XCUITestDriver@9e24][0m Matched '/status' to command name 'getStatus'
[38;5;46m[8bf26d97][0m[38;5;79m[XCUITestDriver@9e24][0m Proxying [GET /status] to [GET http://127.0.0.1:8100/status] with no body
[38;5;46m[8bf26d97][0m[38;5;84m[iProxy@00008110:8100][0m Connection was refused to port 8100
[38;5;46m[8bf26d97][0m[38;5;79m[XCUITestDriver@9e24][0m socket hang up
[38;5;46m[8bf26d97][0m[38;5;79m[XCUITestDriver@9e24][0m Matched '/status' to command name 'getStatus'
[38;5;46m[8bf26d97][0m[38;5;79m[XCUITestDriver@9e24][0m Proxying [GET /status] to [GET http://127.0.0.1:8100/status] with no body
[38;5;46m[8bf26d97][0m[38;5;84m[iProxy@00008110:8100][0m Connection was refused to port 8100
[38;5;46m[8bf26d97][0m[38;5;79m[XCUITestDriver@9e24][0m socket hang up
[38;5;46m[8bf26d97][0m[38;5;79m[XCUITestDriver@9e24][0m Matched '/status' to command name 'getStatus'
[38;5;46m[8bf26d97][0m[38;5;79m[XCUITestDriver@9e24][0m Proxying [GET /status] to [GET http://127.0.0.1:8100/status] with no body
[38;5;46m[8bf26d97][0m[38;5;84m[iProxy@00008110:8100][0m Connection was refused to port 8100
[38;5;46m[8bf26d97][0m[38;5;79m[XCUITestDriver@9e24][0m socket hang up
[38;5;46m[8bf26d97][0m[38;5;79m[XCUITestDriver@9e24][0m Matched '/status' to command name 'getStatus'
[38;5;46m[8bf26d97][0m[38;5;79m[XCUITestDriver@9e24][0m Proxying [GET /status] to [GET http://127.0.0.1:8100/status] with no body
[38;5;46m[8bf26d97][0m[38;5;84m[iProxy@00008110:8100][0m Connection was refused to port 8100
[38;5;46m[8bf26d97][0m[38;5;79m[XCUITestDriver@9e24][0m socket hang up
[38;5;46m[8bf26d97][0m[38;5;79m[XCUITestDriver@9e24][0m Matched '/status' to command name 'getStatus'
[38;5;46m[8bf26d97][0m[38;5;79m[XCUITestDriver@9e24][0m Proxying [GET /status] to [GET http://127.0.0.1:8100/status] with no body
[38;5;46m[8bf26d97][0m[38;5;84m[iProxy@00008110:8100][0m Connection was refused to port 8100
[38;5;46m[8bf26d97][0m[38;5;79m[XCUITestDriver@9e24][0m socket hang up
[38;5;46m[8bf26d97][0m[38;5;79m[XCUITestDriver@9e24][0m Matched '/status' to command name 'getStatus'
[38;5;46m[8bf26d97][0m[38;5;79m[XCUITestDriver@9e24][0m Proxying [GET /status] to [GET http://127.0.0.1:8100/status] with no body
[38;5;46m[8bf26d97][0m[38;5;84m[iProxy@00008110:8100][0m Connection was refused to port 8100
[38;5;46m[8bf26d97][0m[38;5;79m[XCUITestDriver@9e24][0m socket hang up
[38;5;46m[8bf26d97][0m[38;5;79m[XCUITestDriver@9e24][0m Matched '/status' to command name 'getStatus'
[38;5;46m[8bf26d97][0m[38;5;79m[XCUITestDriver@9e24][0m Proxying [GET /status] to [GET http://127.0.0.1:8100/status] with no body
[38;5;46m[8bf26d97][0m[38;5;84m[iProxy@00008110:8100][0m Connection was refused to port 8100
[38;5;46m[8bf26d97][0m[38;5;79m[XCUITestDriver@9e24][0m socket hang up
[38;5;46m[8bf26d97][0m[38;5;79m[XCUITestDriver@9e24][0m Matched '/status' to command name 'getStatus'
[38;5;46m[8bf26d97][0m[38;5;79m[XCUITestDriver@9e24][0m Proxying [GET /status] to [GET http://127.0.0.1:8100/status] with no body
[38;5;46m[8bf26d97][0m[38;5;84m[iProxy@00008110:8100][0m Connection was refused to port 8100
[38;5;46m[8bf26d97][0m[38;5;79m[XCUITestDriver@9e24][0m socket hang up
[38;5;46m[8bf26d97][0m[38;5;79m[XCUITestDriver@9e24][0m Matched '/status' to command name 'getStatus'
[38;5;46m[8bf26d97][0m[38;5;79m[XCUITestDriver@9e24][0m Proxying [GET /status] to [GET http://127.0.0.1:8100/status] with no body
[38;5;46m[8bf26d97][0m[38;5;84m[iProxy@00008110:8100][0m Connection was refused to port 8100
[38;5;46m[8bf26d97][0m[38;5;79m[XCUITestDriver@9e24][0m socket hang up
[38;5;46m[8bf26d97][0m[38;5;79m[XCUITestDriver@9e24][0m Matched '/status' to command name 'getStatus'
[38;5;46m[8bf26d97][0m[38;5;79m[XCUITestDriver@9e24][0m Proxying [GET /status] to [GET http://127.0.0.1:8100/status] with no body
[38;5;46m[8bf26d97][0m[38;5;84m[iProxy@00008110:8100][0m Connection was refused to port 8100
[38;5;46m[8bf26d97][0m[38;5;79m[XCUITestDriver@9e24][0m socket hang up
[38;5;46m[8bf26d97][0m[38;5;79m[XCUITestDriver@9e24][0m Matched '/status' to command name 'getStatus'
[38;5;46m[8bf26d97][0m[38;5;79m[XCUITestDriver@9e24][0m Proxying [GET /status] to [GET http://127.0.0.1:8100/status] with no body
[38;5;46m[8bf26d97][0m[38;5;84m[iProxy@00008110:8100][0m Connection was refused to port 8100
[38;5;46m[8bf26d97][0m[38;5;79m[XCUITestDriver@9e24][0m socket hang up
[38;5;46m[8bf26d97][0m[38;5;79m[XCUITestDriver@9e24][0m Event 'wdaStartFailed' logged at 1728476760391 (15:26:00 GMT+0300 (שעון ישראל (קיץ)))
[38;5;46m[8bf26d97][0m[38;5;79m[XCUITestDriver@9e24][0m Error: xcodebuild failed with code 70. This usually indicates an issue with the local Xcode setup or WebDriverAgent project configuration or the driver-to-platform version mismatch. Consider setting 'showXcodeLog' capability to true in order to check the Appium server log for build-related error messages.
at SubProcess.<anonymous> (/Users/boazwarshawsky/.appium/node_modules/appium-xcuitest-driver/node_modules/appium-webdriveragent/lib/xcodebuild.js:384:25)
at Object.onceWrapper (node:events:634:26)
at SubProcess.emit (node:events:519:28)
at ChildProcess.<anonymous> (/Users/boazwarshawsky/.appium/node_modules/appium-xcuitest-driver/node_modules/teen_process/lib/subprocess.js:201:14)
at ChildProcess.emit (node:events:519:28)
at Process.ChildProcess._handle.onexit (node:internal/child_process:293:12)
at Process.callbackTrampoline (node:internal/async_hooks:130:17)
[38;5;46m[8bf26d97][0m[38;5;79m[XCUITestDriver@9e24][0m Unable to launch WebDriverAgent. Original error: xcodebuild failed with code 70. This usually indicates an issue with the local Xcode setup or WebDriverAgent project configuration or the driver-to-platform version mismatch. Consider setting 'showXcodeLog' capability to true in order to check the Appium server log for build-related error messages.. Make sure you follow the tutorial at https://appium.github.io/appium-xcuitest-driver/latest/preparation/real-device-config/
[38;5;46m[8bf26d97][0m[38;5;79m[XCUITestDriver@9e24][0m Quitting and uninstalling WebDriverAgent
[38;5;46m[8bf26d97][0m[38;5;79m[XCUITestDriver@9e24][0m Shutting down sub-processes
[38;5;46m[8bf26d97][0m[38;5;79m[XCUITestDriver@9e24][0m No WDAs on the device.
[38;5;46m[8bf26d97][0m[38;5;23m[DevCon Factory][0m Releasing connections for 00008110-0012150921E2401E device on any port number
[38;5;46m[8bf26d97][0m[38;5;23m[DevCon Factory][0m Found cached connections to release: ["00008110-0012150921E2401E:8100"]
[38;5;46m[8bf26d97][0m[38;5;23m[DevCon Factory][0m Releasing the listener for '00008110-0012150921E2401E:8100'
[38;5;46m[8bf26d97][0m[38;5;84m[iProxy@00008110:8100][0m Closing the connection
[38;5;46m[8bf26d97][0m[38;5;23m[DevCon Factory][0m Cached connections count: 0
[38;5;46m[8bf26d97][0m[38;5;79m[XCUITestDriver@9e24][0m Not clearing log files. Use `clearSystemFiles` capability to turn on.
[38;5;46m[8bf26d97][0m[38;5;84m[iProxy@00008110:8100][0m The connection has been closed
[38;5;46m[8bf26d97][0m[38;5;94m[AppiumDriver@7c66][0m Event 'newSessionStarted' logged at 1728476760566 (15:26:00 GMT+0300 (שעון ישראל (קיץ)))
[38;5;46m[8bf26d97][0m[38;5;94m[AppiumDriver@7c66][0m Encountered internal error running command: Error: Unable to launch WebDriverAgent. Original error: xcodebuild failed with code 70. This usually indicates an issue with the local Xcode setup or WebDriverAgent project configuration or the driver-to-platform version mismatch. Consider setting 'showXcodeLog' capability to true in order to check the Appium server log for build-related error messages.. Make sure you follow the tutorial at https://appium.github.io/appium-xcuitest-driver/latest/preparation/real-device-config/
at quitAndUninstall (/Users/boazwarshawsky/.appium/node_modules/appium-xcuitest-driver/lib/driver.js:796:15)
at /Users/boazwarshawsky/.appium/node_modules/appium-xcuitest-driver/lib/driver.js:866:13
at wrapped (/Users/boazwarshawsky/.appium/node_modules/appium-xcuitest-driver/node_modules/asyncbox/lib/asyncbox.js:93:13)
at retry (/Users/boazwarshawsky/.appium/node_modules/appium-xcuitest-driver/node_modules/asyncbox/lib/asyncbox.js:66:13)
at retryInterval (/Users/boazwarshawsky/.appium/node_modules/appium-xcuitest-driver/node_modules/asyncbox/lib/asyncbox.js:103:10)
at /Users/boazwarshawsky/.appium/node_modules/appium-xcuitest-driver/lib/driver.js:831:7
[38;5;46m[8bf26d97][0m[38;5;86m[HTTP][0m [37m<-- POST /wd/hub/session [39m[31m500[39m [90m16741 ms - 1638[39m [90m[39m
[38;5;46m[8bf26d97][0m[38;5;79m[XCUITestDriver@9e24][0m Matched '/status' to command name 'getStatus'
[38;5;46m[8bf26d97][0m[38;5;79m[XCUITestDriver@9e24][0m Proxying [GET /status] to [GET http://127.0.0.1:8100/status] with no body
[38;5;46m[8bf26d97][0m[38;5;79m[XCUITestDriver@9e24][0m connect ECONNREFUSED 127.0.0.1:8100
[38;5;86m[HTTP][0m Request idempotency key: 0a63334f-2630-4f7f-bffc-6baad5089504
[38;5;86m[HTTP][0m [37m-->[39m [37mPOST[39m [37m/wd/hub/session[39m [90m{"capabilities":{"firstMatch":[{}],"alwaysMatch":{"appium:automationName":"XCUITest","platformName":"iOS","appium:noReset":true,"appium:fullReset":false,"appium:platformVersion":"18.1","appium:deviceName":"qa_iphone_02","appium:udid":"00008110-0012150921E2401E","appium:bundleId":"com.shs.DeploymentManager","appium:xcodeOrgId":"WGYJF9YTP7","appium:xcodeSigningId":"iPhone Developer","appium:app":"http://mv-nexus-new.corp.aeroscout.com:8081/repository/mobile-products/ios/development/deployment/securitas/master/Deployment.ipa"}}}[39m
[38;5;94m[AppiumDriver@7c66][0m Calling AppiumDriver.createSession() with args: [null,null,{"firstMatch":[{}],"alwaysMatch":{"appium:automationName":"XCUITest","platformName":"iOS","appium:noReset":true,"appium:fullReset":false,"appium:platformVersion":"18.1","appium:deviceName":"qa_iphone_02","appium:udid":"00008110-0012150921E2401E","appium:bundleId":"com.shs.DeploymentManager","appium:xcodeOrgId":"WGYJF9YTP7","appium:xcodeSigningId":"iPhone Developer","appium:app":"http://mv-nexus-new.corp.aeroscout.com:8081/repository/mobile-products/ios/development/deployment/securitas/master/Deployment.ipa"}}]
[38;5;94m[AppiumDriver@7c66][0m Event 'newSessionRequested' logged at 1728476761606 (15:26:01 GMT+0300 (שעון ישראל (קיץ)))
[38;5;112m[Appium][0m Attempting to find matching driver for automationName 'XCUITest' and platformName 'iOS'
[38;5;112m[Appium][0m The 'xcuitest' driver was installed and matched caps.
[38;5;112m[Appium][0m Will require it at /Users/boazwarshawsky/.appium/node_modules/appium-xcuitest-driver
[38;5;112m[Appium][0m Requiring driver at /Users/boazwarshawsky/.appium/node_modules/appium-xcuitest-driver/build/index.js
[38;5;94m[AppiumDriver@7c66][0m Appium v2.11.5 creating new XCUITestDriver (v7.27.0) session
[38;5;94m[AppiumDriver@7c66][0m Checking BaseDriver versions for Appium and XCUITestDriver
[38;5;94m[AppiumDriver@7c66][0m Appium's BaseDriver version is 9.11.5
[38;5;94m[AppiumDriver@7c66][0m XCUITestDriver's BaseDriver version is 9.11.5
[38;5;94m[AppiumDriver@7c66][0m Explicitly enabling use of insecure features:
[38;5;94m[AppiumDriver@7c66][0m chromedriver_autodownload
[38;5;85m[XCUITestDriver@d01a][0m
[38;5;85m[XCUITestDriver@d01a][0m Creating session with W3C capabilities: {
"alwaysMatch": {
"platformName": "iOS",
"appium:automationName": "XCUITest",
"appium:noReset": true,
"appium:fullReset": false,
"appium:platformVersion": "18.1",
"appium:deviceName": "qa_iphone_02",
"appium:udid": "00008110-0012150921E2401E",
"appium:bundleId": "com.shs.DeploymentManager",
"appium:xcodeOrgId": "WGYJF9YTP7",
"appium:xcodeSigningId": "iPhone Developer",
"appium:app": "http://mv-nexus-new.corp.aeroscout.com:8081/repository/mobile-products/ios/development/deployment/securitas/master/Deployment.ipa"
},
"firstMatch": [
{}
]
}
[38;5;187m[984cc2c1][0m[38;5;85m[XCUITestDriver@d01a][0m Session created with session id: 984cc2c1-8f56-49ae-aae0-428df334f45f
[38;5;187m[984cc2c1][0m[38;5;135m[XCUITest][0m Current user: 'boazwarshawsky'
[38;5;187m[984cc2c1][0m[38;5;85m[XCUITestDriver@d01a][0m Available real devices: 00008110-0012150921E2401E
[38;5;187m[984cc2c1][0m[38;5;85m[XCUITestDriver@d01a][0m Creating iDevice object with udid '00008110-0012150921E2401E'
[38;5;187m[984cc2c1][0m[38;5;85m[XCUITestDriver@d01a][0m Determining device to run tests on: udid: '00008110-0012150921E2401E', real device: true
[38;5;187m[984cc2c1][0m[38;5;85m[XCUITestDriver@d01a][0m Event 'xcodeDetailsRetrieved' logged at 1728476761629 (15:26:01 GMT+0300 (שעון ישראל (קיץ)))
[38;5;187m[984cc2c1][0m[38;5;123m[BaseDriver][0m Cached app data: {
"lastModified": "2024-10-08T21:35:22.000Z",
"immutable": false,
"maxAge": null,
"etag": null,
"timestamp": 1728476744933,
"packageHash": "481bbf176f17893e5ad280af09b122a627942d39",
"integrity": {
"file": "481bbf176f17893e5ad280af09b122a627942d39"
},
"fullPath": "/var/folders/b2/3q970w753l1_dw7ntszqqg140000gn/T/202499-21051-1fdygk.lu8q3/appium-app-1728476743907.ipa"
}
[38;5;187m[984cc2c1][0m[38;5;123m[BaseDriver][0m Using downloadable app 'http://mv-nexus-new.corp.aeroscout.com:8081/repository/mobile-products/ios/development/deployment/securitas/master/Deployment.ipa'
[38;5;187m[984cc2c1][0m[38;5;123m[BaseDriver][0m Request headers: {"user-agent":"Appium (BaseDriver v9.11.5)","if-modified-since":"Tue, 08 Oct 2024 21:35:22 GMT"}
[38;5;187m[984cc2c1][0m[38;5;123m[BaseDriver][0m Response status: 304
[38;5;187m[984cc2c1][0m[38;5;123m[BaseDriver][0m Reusing previously downloaded application at '/var/folders/b2/3q970w753l1_dw7ntszqqg140000gn/T/202499-21051-1fdygk.lu8q3/appium-app-1728476743907.ipa'
[38;5;187m[984cc2c1][0m[38;5;85m[XCUITestDriver@d01a][0m Event 'appConfigured' logged at 1728476761660 (15:26:01 GMT+0300 (שעון ישראל (קיץ)))
[38;5;187m[984cc2c1][0m[38;5;135m[XCUITest][0m Checking whether app '/var/folders/b2/3q970w753l1_dw7ntszqqg140000gn/T/202499-21051-1fdygk.lu8q3/appium-app-1728476743907.ipa' is actually present on file system
[38;5;187m[984cc2c1][0m[38;5;135m[XCUITest][0m App is present
[38;5;187m[984cc2c1][0m[38;5;85m[XCUITestDriver@d01a][0m Event 'resetStarted' logged at 1728476761661 (15:26:01 GMT+0300 (שעון ישראל (קיץ)))
[38;5;187m[984cc2c1][0m[38;5;85m[XCUITestDriver@d01a][0m Reset: fullReset not set. Leaving as is
[38;5;187m[984cc2c1][0m[38;5;85m[XCUITestDriver@d01a][0m Event 'resetComplete' logged at 1728476761661 (15:26:01 GMT+0300 (שעון ישראל (קיץ)))
[38;5;187m[984cc2c1][0m[38;5;85m[XCUITestDriver@d01a][0m Using WDA path: '/Users/boazwarshawsky/.appium/node_modules/appium-xcuitest-driver/node_modules/appium-webdriveragent'
[38;5;187m[984cc2c1][0m[38;5;85m[XCUITestDriver@d01a][0m Using WDA agent: '/Users/boazwarshawsky/.appium/node_modules/appium-xcuitest-driver/node_modules/appium-webdriveragent/WebDriverAgent.xcodeproj'
[38;5;187m[984cc2c1][0m[38;5;85m[XCUITestDriver@d01a][0m The pyidevice tool is not present in PATH. Skipping crash logs collection for real devices.
[38;5;187m[984cc2c1][0m[38;5;85m[XCUITestDriver@d01a][0m Event 'logCaptureStarted' logged at 1728476761778 (15:26:01 GMT+0300 (שעון ישראל (קיץ)))
[38;5;187m[984cc2c1][0m[38;5;85m[XCUITestDriver@d01a][0m Setting up real device
[38;5;187m[984cc2c1][0m[38;5;85m[XCUITestDriver@d01a][0m Verifying application platform
[38;5;187m[984cc2c1][0m[38;5;85m[XCUITestDriver@d01a][0m CFBundleSupportedPlatforms: ["iPhoneOS"]
[38;5;46m[8bf26d97][0m[38;5;79m[XCUITestDriver@9e24][0m Matched '/status' to command name 'getStatus'
[38;5;46m[8bf26d97][0m[38;5;79m[XCUITestDriver@9e24][0m Proxying [GET /status] to [GET http://127.0.0.1:8100/status] with no body
[38;5;46m[8bf26d97][0m[38;5;79m[XCUITestDriver@9e24][0m connect ECONNREFUSED 127.0.0.1:8100
[38;5;187m[984cc2c1][0m[38;5;85m[XCUITestDriver@d01a][0m App 'com.shs.DeploymentManager' is already installed
[38;5;187m[984cc2c1][0m[38;5;85m[XCUITestDriver@d01a][0m noReset is requested. The app will not be be (re)installed
[38;5;187m[984cc2c1][0m[38;5;85m[XCUITestDriver@d01a][0m No obsolete cached processes from previous WDA sessions listening on port 8100 have been found
[38;5;187m[984cc2c1][0m[38;5;23m[DevCon Factory][0m Requesting connection for device 00008110-0012150921E2401E on local port 8100, device port 8100
[38;5;187m[984cc2c1][0m[38;5;23m[DevCon Factory][0m Cached connections count: 0
[38;5;187m[984cc2c1][0m[38;5;23m[DevCon Factory][0m Successfully requested the connection for 00008110-0012150921E2401E:8100
[38;5;187m[984cc2c1][0m[38;5;85m[XCUITestDriver@d01a][0m Starting WebDriverAgent initialization with the synchronization key 'XCUITestDriver'
[38;5;187m[984cc2c1][0m[38;5;151m[WD Proxy][0m Matched '/status' to command name 'getStatus'
[38;5;187m[984cc2c1][0m[38;5;151m[WD Proxy][0m Proxying [GET /status] to [GET http://127.0.0.1:8100/status] with no body
[38;5;187m[984cc2c1][0m[38;5;84m[iProxy@00008110:8100][0m Connection was refused to port 8100
[38;5;187m[984cc2c1][0m[38;5;151m[WD Proxy][0m socket hang up
[38;5;187m[984cc2c1][0m[38;5;85m[XCUITestDriver@d01a][0m WDA is not listening at 'http://127.0.0.1:8100/'. Original error:: An unknown server-side error occurred while processing the command. Original error: Could not proxy command to the remote server. Original error: socket hang up
[38;5;187m[984cc2c1][0m[38;5;85m[XCUITestDriver@d01a][0m WDA is currently not running. There is nothing to cache
[38;5;187m[984cc2c1][0m[38;5;85m[XCUITestDriver@d01a][0m Trying to start WebDriverAgent 1 times with 10000ms interval
[38;5;187m[984cc2c1][0m[38;5;85m[XCUITestDriver@d01a][0m These values can be customized by changing wdaStartupRetries/wdaStartupRetryInterval capabilities
[38;5;187m[984cc2c1][0m[38;5;85m[XCUITestDriver@d01a][0m Event 'wdaStartAttempted' logged at 1728476761973 (15:26:01 GMT+0300 (שעון ישראל (קיץ)))
[38;5;187m[984cc2c1][0m[38;5;85m[XCUITestDriver@d01a][0m Launching WebDriverAgent on the device
[38;5;187m[984cc2c1][0m[38;5;85m[XCUITestDriver@d01a][0m There is no need to perform the project cleanup. A fresh install has been detected
[38;5;187m[984cc2c1][0m[38;5;21m[WebDriverAgent][0m Killing running processes 'xcodebuild.*00008110-0012150921E2401E' for the device 00008110-0012150921E2401E...
[38;5;187m[984cc2c1][0m[38;5;21m[WebDriverAgent][0m 'pgrep -if xcodebuild.*00008110-0012150921E2401E' didn't detect any matching processes. Return code: 1
[38;5;187m[984cc2c1][0m[38;5;85m[XCUITestDriver@d01a][0m Beginning test with command 'xcodebuild build-for-testing test-without-building -project /Users/boazwarshawsky/.appium/node_modules/appium-xcuitest-driver/node_modules/appium-webdriveragent/WebDriverAgent.xcodeproj -scheme WebDriverAgentRunner -destination id=00008110-0012150921E2401E IPHONEOS_DEPLOYMENT_TARGET=18.1 DEVELOPMENT_TEAM=WGYJF9YTP7 CODE_SIGN_IDENTITY=iPhone Developer GCC_TREAT_WARNINGS_AS_ERRORS=0 COMPILER_INDEX_STORE_ENABLE=NO' in directory '/Users/boazwarshawsky/.appium/node_modules/appium-xcuitest-driver/node_modules/appium-webdriveragent'
[38;5;187m[984cc2c1][0m[38;5;85m[XCUITestDriver@d01a][0m Output from xcodebuild will only be logged if any errors are present there. To change this, use 'showXcodeLog' desired capability
[38;5;187m[984cc2c1][0m[38;5;85m[XCUITestDriver@d01a][0m Waiting up to 60000ms for WebDriverAgent to start
[38;5;187m[984cc2c1][0m[38;5;85m[XCUITestDriver@d01a][0m Matched '/status' to command name 'getStatus'
[38;5;187m[984cc2c1][0m[38;5;85m[XCUITestDriver@d01a][0m Proxying [GET /status] to [GET http://127.0.0.1:8100/status] with no body
[38;5;187m[984cc2c1][0m[38;5;84m[iProxy@00008110:8100][0m Connection was refused to port 8100
[38;5;187m[984cc2c1][0m[38;5;85m[XCUITestDriver@d01a][0m socket hang up
[38;5;187m[984cc2c1][0m[38;5;85m[XCUITestDriver@d01a][0m Parsed BUILD_DIR configuration value: '/Users/boazwarshawsky/.appium/node_modules/appium-xcuitest-driver/node_modules/appium-webdriveragent/build'
[38;5;187m[984cc2c1][0m[38;5;85m[XCUITestDriver@d01a][0m Got derived data root: '/Users/boazwarshawsky/.appium/node_modules/appium-xcuitest-driver/node_modules'
[38;5;46m[8bf26d97][0m[38;5;79m[XCUITestDriver@9e24][0m Matched '/status' to command name 'getStatus'
[38;5;46m[8bf26d97][0m[38;5;79m[XCUITestDriver@9e24][0m Proxying [GET /status] to [GET http://127.0.0.1:8100/status] with no body
[38;5;187m[984cc2c1][0m[38;5;84m[iProxy@00008110:8100][0m Connection was refused to port 8100
[38;5;46m[8bf26d97][0m[38;5;79m[XCUITestDriver@9e24][0m socket hang up
[38;5;187m[984cc2c1][0m[38;5;85m[XCUITestDriver@d01a][0m Matched '/status' to command name 'getStatus'
[38;5;187m[984cc2c1][0m[38;5;85m[XCUITestDriver@d01a][0m Proxying [GET /status] to [GET http://127.0.0.1:8100/status] with no body
[38;5;187m[984cc2c1][0m[38;5;84m[iProxy@00008110:8100][0m Connection was refused to port 8100
[38;5;187m[984cc2c1][0m[38;5;85m[XCUITestDriver@d01a][0m socket hang up
[38;5;46m[8bf26d97][0m[38;5;79m[XCUITestDriver@9e24][0m Matched '/status' to command name 'getStatus'
[38;5;46m[8bf26d97][0m[38;5;79m[XCUITestDriver@9e24][0m Proxying [GET /status] to [GET http://127.0.0.1:8100/status] with no body
[38;5;187m[984cc2c1][0m[38;5;84m[iProxy@00008110:8100][0m Connection was refused to port 8100
[38;5;46m[8bf26d97][0m[38;5;79m[XCUITestDriver@9e24][0m socket hang up
[38;5;187m[984cc2c1][0m[38;5;85m[XCUITestDriver@d01a][0m Matched '/status' to command name 'getStatus'
[38;5;187m[984cc2c1][0m[38;5;85m[XCUITestDriver@d01a][0m Proxying [GET /status] to [GET http://127.0.0.1:8100/status] with no body
[38;5;187m[984cc2c1][0m[38;5;84m[iProxy@00008110:8100][0m Connection was refused to port 8100
[38;5;187m[984cc2c1][0m[38;5;85m[XCUITestDriver@d01a][0m socket hang up
[38;5;46m[8bf26d97][0m[38;5;79m[XCUITestDriver@9e24][0m Matched '/status' to command name 'getStatus'
[38;5;46m[8bf26d97][0m[38;5;79m[XCUITestDriver@9e24][0m Proxying [GET /status] to [GET http://127.0.0.1:8100/status] with no body
[38;5;187m[984cc2c1][0m[38;5;84m[iProxy@00008110:8100][0m Connection was refused to port 8100
[38;5;46m[8bf26d97][0m[38;5;79m[XCUITestDriver@9e24][0m socket hang up
[38;5;187m[984cc2c1][0m[38;5;85m[XCUITestDriver@d01a][0m Matched '/status' to command name 'getStatus'
[38;5;187m[984cc2c1][0m[38;5;85m[XCUITestDriver@d01a][0m Proxying [GET /status] to [GET http://127.0.0.1:8100/status] with no body
[38;5;187m[984cc2c1][0m[38;5;84m[iProxy@00008110:8100][0m Connection was refused to port 8100
[38;5;187m[984cc2c1][0m[38;5;85m[XCUITestDriver@d01a][0m socket hang up
[38;5;46m[8bf26d97][0m[38;5;79m[XCUITestDriver@9e24][0m Matched '/status' to command name 'getStatus'
[38;5;46m[8bf26d97][0m[38;5;79m[XCUITestDriver@9e24][0m Proxying [GET /status] to [GET http://127.0.0.1:8100/status] with no body
[38;5;187m[984cc2c1][0m[38;5;84m[iProxy@00008110:8100][0m Connection was refused to port 8100
[38;5;46m[8bf26d97][0m[38;5;79m[XCUITestDriver@9e24][0m socket hang up
[38;5;187m[984cc2c1][0m[38;5;85m[XCUITestDriver@d01a][0m Matched '/status' to command name 'getStatus'
[38;5;187m[984cc2c1][0m[38;5;85m[XCUITestDriver@d01a][0m Proxying [GET /status] to [GET http://127.0.0.1:8100/status] with no body
[38;5;187m[984cc2c1][0m[38;5;84m[iProxy@00008110:8100][0m Connection was refused to port 8100
[38;5;187m[984cc2c1][0m[38;5;85m[XCUITestDriver@d01a][0m socket hang up
[38;5;46m[8bf26d97][0m[38;5;79m[XCUITestDriver@9e24][0m Matched '/status' to command name 'getStatus'
[38;5;46m[8bf26d97][0m[38;5;79m[XCUITestDriver@9e24][0m Proxying [GET /status] to [GET http://127.0.0.1:8100/status] with no body
[38;5;187m[984cc2c1][0m[38;5;84m[iProxy@00008110:8100][0m Connection was refused to port 8100
[38;5;46m[8bf26d97][0m[38;5;79m[XCUITestDriver@9e24][0m socket hang up
[38;5;187m[984cc2c1][0m[38;5;85m[XCUITestDriver@d01a][0m Matched '/status' to command name 'getStatus'
[38;5;187m[984cc2c1][0m[38;5;85m[XCUITestDriver@d01a][0m Proxying [GET /status] to [GET http://127.0.0.1:8100/status] with no body
[38;5;187m[984cc2c1][0m[38;5;84m[iProxy@00008110:8100][0m Connection was refused to port 8100
[38;5;187m[984cc2c1][0m[38;5;85m[XCUITestDriver@d01a][0m socket hang up
[38;5;46m[8bf26d97][0m[38;5;79m[XCUITestDriver@9e24][0m Matched '/status' to command name 'getStatus'
[38;5;46m[8bf26d97][0m[38;5;79m[XCUITestDriver@9e24][0m Proxying [GET /status] to [GET http://127.0.0.1:8100/status] with no body
[38;5;187m[984cc2c1][0m[38;5;84m[iProxy@00008110:8100][0m Connection was refused to port 8100
[38;5;46m[8bf26d97][0m[38;5;79m[XCUITestDriver@9e24][0m socket hang up
[38;5;187m[984cc2c1][0m[38;5;85m[XCUITestDriver@d01a][0m Matched '/status' to command name 'getStatus'
[38;5;187m[984cc2c1][0m[38;5;85m[XCUITestDriver@d01a][0m Proxying [GET /status] to [GET http://127.0.0.1:8100/status] with no body
[38;5;187m[984cc2c1][0m[38;5;84m[iProxy@00008110:8100][0m Connection was refused to port 8100
[38;5;187m[984cc2c1][0m[38;5;85m[XCUITestDriver@d01a][0m socket hang up
[38;5;46m[8bf26d97][0m[38;5;79m[XCUITestDriver@9e24][0m Matched '/status' to command name 'getStatus'
[38;5;46m[8bf26d97][0m[38;5;79m[XCUITestDriver@9e24][0m Proxying [GET /status] to [GET http://127.0.0.1:8100/status] with no body
[38;5;187m[984cc2c1][0m[38;5;84m[iProxy@00008110:8100][0m Connection was refused to port 8100
[38;5;46m[8bf26d97][0m[38;5;79m[XCUITestDriver@9e24][0m socket hang up
[38;5;187m[984cc2c1][0m[38;5;85m[XCUITestDriver@d01a][0m Matched '/status' to command name 'getStatus'
[38;5;187m[984cc2c1][0m[38;5;85m[XCUITestDriver@d01a][0m Proxying [GET /status] to [GET http://127.0.0.1:8100/status] with no body
[38;5;187m[984cc2c1][0m[38;5;84m[iProxy@00008110:8100][0m Connection was refused to port 8100
[38;5;187m[984cc2c1][0m[38;5;85m[XCUITestDriver@d01a][0m socket hang up
[38;5;46m[8bf26d97][0m[38;5;79m[XCUITestDriver@9e24][0m Matched '/status' to command name 'getStatus'
[38;5;46m[8bf26d97][0m[38;5;79m[XCUITestDriver@9e24][0m Proxying [GET /status] to [GET http://127.0.0.1:8100/status] with no body
[38;5;187m[984cc2c1][0m[38;5;84m[iProxy@00008110:8100][0m Connection was refused to port 8100
[38;5;46m[8bf26d97][0m[38;5;79m[XCUITestDriver@9e24][0m socket hang up
[38;5;187m[984cc2c1][0m[38;5;85m[XCUITestDriver@d01a][0m Matched '/status' to command name 'getStatus'
[38;5;187m[984cc2c1][0m[38;5;85m[XCUITestDriver@d01a][0m Proxying [GET /status] to [GET http://127.0.0.1:8100/status] with no body
[38;5;187m[984cc2c1][0m[38;5;84m[iProxy@00008110:8100][0m Connection was refused to port 8100
[38;5;187m[984cc2c1][0m[38;5;85m[XCUITestDriver@d01a][0m socket hang up
[38;5;46m[8bf26d97][0m[38;5;79m[XCUITestDriver@9e24][0m Matched '/status' to command name 'getStatus'
[38;5;46m[8bf26d97][0m[38;5;79m[XCUITestDriver@9e24][0m Proxying [GET /status] to [GET http://127.0.0.1:8100/status] with no body
[38;5;187m[984cc2c1][0m[38;5;84m[iProxy@00008110:8100][0m Connection was refused to port 8100
[38;5;46m[8bf26d97][0m[38;5;79m[XCUITestDriver@9e24][0m socket hang up
[38;5;187m[984cc2c1][0m[38;5;85m[XCUITestDriver@d01a][0m Matched '/status' to command name 'getStatus'
[38;5;187m[984cc2c1][0m[38;5;85m[XCUITestDriver@d01a][0m Proxying [GET /status] to [GET http://127.0.0.1:8100/status] with no body
[38;5;187m[984cc2c1][0m[38;5;84m[iProxy@00008110:8100][0m Connection was refused to port 8100
[38;5;187m[984cc2c1][0m[38;5;85m[XCUITestDriver@d01a][0m socket hang up
[38;5;46m[8bf26d97][0m[38;5;79m[XCUITestDriver@9e24][0m Matched '/status' to command name 'getStatus'
[38;5;46m[8bf26d97][0m[38;5;79m[XCUITestDriver@9e24][0m Proxying [GET /status] to [GET http://127.0.0.1:8100/status] with no body
[38;5;187m[984cc2c1][0m[38;5;84m[iProxy@00008110:8100][0m Connection was refused to port 8100
[38;5;46m[8bf26d97][0m[38;5;79m[XCUITestDriver@9e24][0m socket hang up
[38;5;187m[984cc2c1][0m[38;5;85m[XCUITestDriver@d01a][0m Matched '/status' to command name 'getStatus'
[38;5;187m[984cc2c1][0m[38;5;85m[XCUITestDriver@d01a][0m Proxying [GET /status] to [GET http://127.0.0.1:8100/status] with no body
[38;5;187m[984cc2c1][0m[38;5;84m[iProxy@00008110:8100][0m Connection was refused to port 8100
[38;5;187m[984cc2c1][0m[38;5;85m[XCUITestDriver@d01a][0m socket hang up
[38;5;46m[8bf26d97][0m[38;5;79m[XCUITestDriver@9e24][0m Matched '/status' to command name 'getStatus'
[38;5;46m[8bf26d97][0m[38;5;79m[XCUITestDriver@9e24][0m Proxying [GET /status] to [GET http://127.0.0.1:8100/status] with no body
[38;5;187m[984cc2c1][0m[38;5;84m[iProxy@00008110:8100][0m Connection was refused to port 8100
[38;5;46m[8bf26d97][0m[38;5;79m[XCUITestDriver@9e24][0m socket hang up
[38;5;187m[984cc2c1][0m[38;5;85m[XCUITestDriver@d01a][0m Matched '/status' to command name 'getStatus'
[38;5;187m[984cc2c1][0m[38;5;85m[XCUITestDriver@d01a][0m Proxying [GET /status] to [GET http://127.0.0.1:8100/status] with no body
[38;5;187m[984cc2c1][0m[38;5;84m[iProxy@00008110:8100][0m Connection was refused to port 8100
[38;5;187m[984cc2c1][0m[38;5;85m[XCUITestDriver@d01a][0m socket hang up
[38;5;46m[8bf26d97][0m[38;5;79m[XCUITestDriver@9e24][0m Matched '/status' to command name 'getStatus'
[38;5;46m[8bf26d97][0m[38;5;79m[XCUITestDriver@9e24][0m Proxying [GET /status] to [GET http://127.0.0.1:8100/status] with no body
[38;5;187m[984cc2c1][0m[38;5;84m[iProxy@00008110:8100][0m Connection was refused to port 8100
[38;5;46m[8bf26d97][0m[38;5;79m[XCUITestDriver@9e24][0m socket hang up
[38;5;187m[984cc2c1][0m[38;5;85m[XCUITestDriver@d01a][0m Matched '/status' to command name 'getStatus'
[38;5;187m[984cc2c1][0m[38;5;85m[XCUITestDriver@d01a][0m Proxying [GET /status] to [GET http://127.0.0.1:8100/status] with no body
[38;5;187m[984cc2c1][0m[38;5;84m[iProxy@00008110:8100][0m Connection was refused to port 8100
[38;5;187m[984cc2c1][0m[38;5;85m[XCUITestDriver@d01a][0m socket hang up
[38;5;46m[8bf26d97][0m[38;5;79m[XCUITestDriver@9e24][0m Matched '/status' to command name 'getStatus'
[38;5;46m[8bf26d97][0m[38;5;79m[XCUITestDriver@9e24][0m Proxying [GET /status] to [GET http://127.0.0.1:8100/status] with no body
[38;5;187m[984cc2c1][0m[38;5;84m[iProxy@00008110:8100][0m Connection was refused to port 8100
[38;5;46m[8bf26d97][0m[38;5;79m[XCUITestDriver@9e24][0m socket hang up
[38;5;187m[984cc2c1][0m[38;5;85m[XCUITestDriver@d01a][0m Matched '/status' to command name 'getStatus'
[38;5;187m[984cc2c1][0m[38;5;85m[XCUITestDriver@d01a][0m Proxying [GET /status] to [GET http://127.0.0.1:8100/status] with no body
[38;5;187m[984cc2c1][0m[38;5;84m[iProxy@00008110:8100][0m Connection was refused to port 8100
[38;5;187m[984cc2c1][0m[38;5;85m[XCUITestDriver@d01a][0m socket hang up
[38;5;187m[984cc2c1][0m[38;5;85m[XCUITestDriver@d01a][0m Event 'wdaStartFailed' logged at 1728476775657 (15:26:15 GMT+0300 (שעון ישראל (קיץ)))
[38;5;187m[984cc2c1][0m[38;5;85m[XCUITestDriver@d01a][0m Error: xcodebuild failed with code 70. This usually indicates an issue with the local Xcode setup or WebDriverAgent project configuration or the driver-to-platform version mismatch. Consider setting 'showXcodeLog' capability to true in order to check the Appium server log for build-related error messages.
at SubProcess.<anonymous> (/Users/boazwarshawsky/.appium/node_modules/appium-xcuitest-driver/node_modules/appium-webdriveragent/lib/xcodebuild.js:384:25)
at Object.onceWrapper (node:events:634:26)
at SubProcess.emit (node:events:519:28)
at ChildProcess.<anonymous> (/Users/boazwarshawsky/.appium/node_modules/appium-xcuitest-driver/node_modules/teen_process/lib/subprocess.js:201:14)
at ChildProcess.emit (node:events:519:28)
at Process.ChildProcess._handle.onexit (node:internal/child_process:293:12)
at Process.callbackTrampoline (node:internal/async_hooks:130:17)
[38;5;187m[984cc2c1][0m[38;5;85m[XCUITestDriver@d01a][0m Unable to launch WebDriverAgent. Original error: xcodebuild failed with code 70. This usually indicates an issue with the local Xcode setup or WebDriverAgent project configuration or the driver-to-platform version mismatch. Consider setting 'showXcodeLog' capability to true in order to check the Appium server log for build-related error messages.. Make sure you follow the tutorial at https://appium.github.io/appium-xcuitest-driver/latest/preparation/real-device-config/
[38;5;187m[984cc2c1][0m[38;5;85m[XCUITestDriver@d01a][0m Quitting and uninstalling WebDriverAgent
[38;5;187m[984cc2c1][0m[38;5;85m[XCUITestDriver@d01a][0m Shutting down sub-processes
[38;5;187m[984cc2c1][0m[38;5;85m[XCUITestDriver@d01a][0m No WDAs on the device.
[38;5;187m[984cc2c1][0m[38;5;23m[DevCon Factory][0m Releasing connections for 00008110-0012150921E2401E device on any port number
[38;5;187m[984cc2c1][0m[38;5;23m[DevCon Factory][0m Found cached connections to release: ["00008110-0012150921E2401E:8100"]
[38;5;187m[984cc2c1][0m[38;5;23m[DevCon Factory][0m Releasing the listener for '00008110-0012150921E2401E:8100'
[38;5;187m[984cc2c1][0m[38;5;84m[iProxy@00008110:8100][0m Closing the connection
[38;5;187m[984cc2c1][0m[38;5;23m[DevCon Factory][0m Cached connections count: 0
[38;5;187m[984cc2c1][0m[38;5;85m[XCUITestDriver@d01a][0m Not clearing log files. Use `clearSystemFiles` capability to turn on.
[38;5;187m[984cc2c1][0m[38;5;84m[iProxy@00008110:8100][0m The connection has been closed
[38;5;187m[984cc2c1][0m[38;5;94m[AppiumDriver@7c66][0m Event 'newSessionStarted' logged at 1728476775822 (15:26:15 GMT+0300 (שעון ישראל (קיץ)))
[38;5;187m[984cc2c1][0m[38;5;94m[AppiumDriver@7c66][0m Encountered internal error running command: Error: Unable to launch WebDriverAgent. Original error: xcodebuild failed with code 70. This usually indicates an issue with the local Xcode setup or WebDriverAgent project configuration or the driver-to-platform version mismatch. Consider setting 'showXcodeLog' capability to true in order to check the Appium server log for build-related error messages.. Make sure you follow the tutorial at https://appium.github.io/appium-xcuitest-driver/latest/preparation/real-device-config/
at quitAndUninstall (/Users/boazwarshawsky/.appium/node_modules/appium-xcuitest-driver/lib/driver.js:796:15)
at /Users/boazwarshawsky/.appium/node_modules/appium-xcuitest-driver/lib/driver.js:866:13
at wrapped (/Users/boazwarshawsky/.appium/node_modules/appium-xcuitest-driver/node_modules/asyncbox/lib/asyncbox.js:93:13)
at retry (/Users/boazwarshawsky/.appium/node_modules/appium-xcuitest-driver/node_modules/asyncbox/lib/asyncbox.js:66:13)
at retryInterval (/Users/boazwarshawsky/.appium/node_modules/appium-xcuitest-driver/node_modules/asyncbox/lib/asyncbox.js:103:10)
at /Users/boazwarshawsky/.appium/node_modules/appium-xcuitest-driver/lib/driver.js:831:7
[38;5;187m[984cc2c1][0m[38;5;86m[HTTP][0m [37m<-- POST /wd/hub/session [39m[31m500[39m [90m14220 ms - 1638[39m [90m[39m
[38;5;46m[8bf26d97][0m[38;5;79m[XCUITestDriver@9e24][0m Matched '/status' to command name 'getStatus'
[38;5;46m[8bf26d97][0m[38;5;79m[XCUITestDriver@9e24][0m Proxying [GET /status] to [GET http://127.0.0.1:8100/status] with no body
[38;5;46m[8bf26d97][0m[38;5;79m[XCUITestDriver@9e24][0m connect ECONNREFUSED 127.0.0.1:8100
[38;5;187m[984cc2c1][0m[38;5;85m[XCUITestDriver@d01a][0m Matched '/status' to command name 'getStatus'
[38;5;187m[984cc2c1][0m[38;5;85m[XCUITestDriver@d01a][0m Proxying [GET /status] to [GET http://127.0.0.1:8100/status] with no body
[38;5;187m[984cc2c1][0m[38;5;85m[XCUITestDriver@d01a][0m connect ECONNREFUSED 127.0.0.1:8100
[38;5;86m[HTTP][0m Request idempotency key: 18d10997-2366-4cd4-8e7b-c1b651c2e290
[38;5;86m[HTTP][0m [37m-->[39m [37mPOST[39m [37m/wd/hub/session[39m [90m{"capabilities":{"firstMatch":[{}],"alwaysMatch":{"appium:automationName":"XCUITest","platformName":"iOS","appium:noReset":true,"appium:fullReset":false,"appium:platformVersion":"18.1","appium:deviceName":"qa_iphone_02","appium:udid":"00008110-0012150921E2401E","appium:bundleId":"com.shs.DeploymentManager","appium:xcodeOrgId":"WGYJF9YTP7","appium:xcodeSigningId":"iPhone Developer","appium:app":"http://mv-nexus-new.corp.aeroscout.com:8081/repository/mobile-products/ios/development/deployment/securitas/master/Deployment.ipa"}}}[39m
[38;5;94m[AppiumDriver@7c66][0m Calling AppiumDriver.createSession() with args: [null,null,{"firstMatch":[{}],"alwaysMatch":{"appium:automationName":"XCUITest","platformName":"iOS","appium:noReset":true,"appium:fullReset":false,"appium:platformVersion":"18.1","appium:deviceName":"qa_iphone_02","appium:udid":"00008110-0012150921E2401E","appium:bundleId":"com.shs.DeploymentManager","appium:xcodeOrgId":"WGYJF9YTP7","appium:xcodeSigningId":"iPhone Developer","appium:app":"http://mv-nexus-new.corp.aeroscout.com:8081/repository/mobile-products/ios/development/deployment/securitas/master/Deployment.ipa"}}]
[38;5;94m[AppiumDriver@7c66][0m Event 'newSessionRequested' logged at 1728476776837 (15:26:16 GMT+0300 (שעון ישראל (קיץ)))
[38;5;112m[Appium][0m Attempting to find matching driver for automationName 'XCUITest' and platformName 'iOS'
[38;5;112m[Appium][0m The 'xcuitest' driver was installed and matched caps.
[38;5;112m[Appium][0m Will require it at /Users/boazwarshawsky/.appium/node_modules/appium-xcuitest-driver
[38;5;112m[Appium][0m Requiring driver at /Users/boazwarshawsky/.appium/node_modules/appium-xcuitest-driver/build/index.js
[38;5;94m[AppiumDriver@7c66][0m Appium v2.11.5 creating new XCUITestDriver (v7.27.0) session
[38;5;94m[AppiumDriver@7c66][0m Checking BaseDriver versions for Appium and XCUITestDriver
[38;5;94m[AppiumDriver@7c66][0m Appium's BaseDriver version is 9.11.5
[38;5;94m[AppiumDriver@7c66][0m XCUITestDriver's BaseDriver version is 9.11.5
[38;5;94m[AppiumDriver@7c66][0m Explicitly enabling use of insecure features:
[38;5;94m[AppiumDriver@7c66][0m chromedriver_autodownload
[38;5;41m[XCUITestDriver@e2c2][0m
[38;5;41m[XCUITestDriver@e2c2][0m Creating session with W3C capabilities: {
"alwaysMatch": {
"platformName": "iOS",
"appium:automationName": "XCUITest",
"appium:noReset": true,
"appium:fullReset": false,
"appium:platformVersion": "18.1",
"appium:deviceName": "qa_iphone_02",
"appium:udid": "00008110-0012150921E2401E",
"appium:bundleId": "com.shs.DeploymentManager",
"appium:xcodeOrgId": "WGYJF9YTP7",
"appium:xcodeSigningId": "iPhone Developer",
"appium:app": "http://mv-nexus-new.corp.aeroscout.com:8081/repository/mobile-products/ios/development/deployment/securitas/master/Deployment.ipa"
},
"firstMatch": [
{}
]
}
[38;5;172m[f76c7047][0m[38;5;41m[XCUITestDriver@e2c2][0m Session created with session id: f76c7047-5614-420a-a355-de479f65bb66
[38;5;172m[f76c7047][0m[38;5;135m[XCUITest][0m Current user: 'boazwarshawsky'
[38;5;172m[f76c7047][0m[38;5;41m[XCUITestDriver@e2c2][0m Available real devices: 00008110-0012150921E2401E
[38;5;172m[f76c7047][0m[38;5;41m[XCUITestDriver@e2c2][0m Creating iDevice object with udid '00008110-0012150921E2401E'
[38;5;172m[f76c7047][0m[38;5;41m[XCUITestDriver@e2c2][0m Determining device to run tests on: udid: '00008110-0012150921E2401E', real device: true
[38;5;172m[f76c7047][0m[38;5;41m[XCUITestDriver@e2c2][0m Event 'xcodeDetailsRetrieved' logged at 1728476776860 (15:26:16 GMT+0300 (שעון ישראל (קיץ)))
[38;5;172m[f76c7047][0m[38;5;123m[BaseDriver][0m Cached app data: {
"lastModified": "2024-10-08T21:35:22.000Z",
"immutable": false,
"maxAge": null,
"etag": null,
"timestamp": 1728476744933,
"packageHash": "481bbf176f17893e5ad280af09b122a627942d39",
"integrity": {
"file": "481bbf176f17893e5ad280af09b122a627942d39"
},
"fullPath": "/var/folders/b2/3q970w753l1_dw7ntszqqg140000gn/T/202499-21051-1fdygk.lu8q3/appium-app-1728476743907.ipa"
}
[38;5;172m[f76c7047][0m[38;5;123m[BaseDriver][0m Using downloadable app 'http://mv-nexus-new.corp.aeroscout.com:8081/repository/mobile-products/ios/development/deployment/securitas/master/Deployment.ipa'
[38;5;172m[f76c7047][0m[38;5;123m[BaseDriver][0m Request headers: {"user-agent":"Appium (BaseDriver v9.11.5)","if-modified-since":"Tue, 08 Oct 2024 21:35:22 GMT"}
[38;5;172m[f76c7047][0m[38;5;123m[BaseDriver][0m Response status: 304
[38;5;172m[f76c7047][0m[38;5;123m[BaseDriver][0m Reusing previously downloaded application at '/var/folders/b2/3q970w753l1_dw7ntszqqg140000gn/T/202499-21051-1fdygk.lu8q3/appium-app-1728476743907.ipa'
[38;5;172m[f76c7047][0m[38;5;41m[XCUITestDriver@e2c2][0m Event 'appConfigured' logged at 1728476776893 (15:26:16 GMT+0300 (שעון ישראל (קיץ)))
[38;5;172m[f76c7047][0m[38;5;135m[XCUITest][0m Checking whether app '/var/folders/b2/3q970w753l1_dw7ntszqqg140000gn/T/202499-21051-1fdygk.lu8q3/appium-app-1728476743907.ipa' is actually present on file system
[38;5;172m[f76c7047][0m[38;5;135m[XCUITest][0m App is present
[38;5;172m[f76c7047][0m[38;5;41m[XCUITestDriver@e2c2][0m Event 'resetStarted' logged at 1728476776893 (15:26:16 GMT+0300 (שעון ישראל (קיץ)))
[38;5;172m[f76c7047][0m[38;5;41m[XCUITestDriver@e2c2][0m Reset: fullReset not set. Leaving as is
[38;5;172m[f76c7047][0m[38;5;41m[XCUITestDriver@e2c2][0m Event 'resetComplete' logged at 1728476776893 (15:26:16 GMT+0300 (שעון ישראל (קיץ)))
[38;5;172m[f76c7047][0m[38;5;41m[XCUITestDriver@e2c2][0m Using WDA path: '/Users/boazwarshawsky/.appium/node_modules/appium-xcuitest-driver/node_modules/appium-webdriveragent'
[38;5;172m[f76c7047][0m[38;5;41m[XCUITestDriver@e2c2][0m Using WDA agent: '/Users/boazwarshawsky/.appium/node_modules/appium-xcuitest-driver/node_modules/appium-webdriveragent/WebDriverAgent.xcodeproj'
[38;5;172m[f76c7047][0m[38;5;41m[XCUITestDriver@e2c2][0m The pyidevice tool is not present in PATH. Skipping crash logs collection for real devices.
[38;5;172m[f76c7047][0m[38;5;41m[XCUITestDriver@e2c2][0m Event 'logCaptureStarted' logged at 1728476777005 (15:26:17 GMT+0300 (שעון ישראל (קיץ)))
[38;5;172m[f76c7047][0m[38;5;41m[XCUITestDriver@e2c2][0m Setting up real device
[38;5;172m[f76c7047][0m[38;5;41m[XCUITestDriver@e2c2][0m Verifying application platform
[38;5;172m[f76c7047][0m[38;5;41m[XCUITestDriver@e2c2][0m CFBundleSupportedPlatforms: ["iPhoneOS"]
[38;5;46m[8bf26d97][0m[38;5;79m[XCUITestDriver@9e24][0m Matched '/status' to command name 'getStatus'
[38;5;46m[8bf26d97][0m[38;5;79m[XCUITestDriver@9e24][0m Proxying [GET /status] to [GET http://127.0.0.1:8100/status] with no body
[38;5;46m[8bf26d97][0m[38;5;79m[XCUITestDriver@9e24][0m connect ECONNREFUSED 127.0.0.1:8100
[38;5;172m[f76c7047][0m[38;5;41m[XCUITestDriver@e2c2][0m App 'com.shs.DeploymentManager' is already installed
[38;5;172m[f76c7047][0m[38;5;41m[XCUITestDriver@e2c2][0m noReset is requested. The app will not be be (re)installed
[38;5;172m[f76c7047][0m[38;5;41m[XCUITestDriver@e2c2][0m No obsolete cached processes from previous WDA sessions listening on port 8100 have been found
[38;5;172m[f76c7047][0m[38;5;23m[DevCon Factory][0m Requesting connection for device 00008110-0012150921E2401E on local port 8100, device port 8100
[38;5;172m[f76c7047][0m[38;5;23m[DevCon Factory][0m Cached connections count: 0
[38;5;172m[f76c7047][0m[38;5;23m[DevCon Factory][0m Successfully requested the connection for 00008110-0012150921E2401E:8100
[38;5;172m[f76c7047][0m[38;5;41m[XCUITestDriver@e2c2][0m Starting WebDriverAgent initialization with the synchronization key 'XCUITestDriver'
[38;5;172m[f76c7047][0m[38;5;151m[WD Proxy][0m Matched '/status' to command name 'getStatus'
[38;5;172m[f76c7047][0m[38;5;151m[WD Proxy][0m Proxying [GET /status] to [GET http://127.0.0.1:8100/status] with no body
[38;5;172m[f76c7047][0m[38;5;84m[iProxy@00008110:8100][0m Connection was refused to port 8100
[38;5;172m[f76c7047][0m[38;5;151m[WD Proxy][0m socket hang up
[38;5;172m[f76c7047][0m[38;5;41m[XCUITestDriver@e2c2][0m WDA is not listening at 'http://127.0.0.1:8100/'. Original error:: An unknown server-side error occurred while processing the command. Original error: Could not proxy command to the remote server. Original error: socket hang up
[38;5;172m[f76c7047][0m[38;5;41m[XCUITestDriver@e2c2][0m WDA is currently not running. There is nothing to cache
[38;5;172m[f76c7047][0m[38;5;41m[XCUITestDriver@e2c2][0m Trying to start WebDriverAgent 1 times with 10000ms interval
[38;5;172m[f76c7047][0m[38;5;41m[XCUITestDriver@e2c2][0m These values can be customized by changing wdaStartupRetries/wdaStartupRetryInterval capabilities
[38;5;172m[f76c7047][0m[38;5;41m[XCUITestDriver@e2c2][0m Event 'wdaStartAttempted' logged at 1728476777200 (15:26:17 GMT+0300 (שעון ישראל (קיץ)))
[38;5;172m[f76c7047][0m[38;5;41m[XCUITestDriver@e2c2][0m Launching WebDriverAgent on the device
[38;5;172m[f76c7047][0m[38;5;41m[XCUITestDriver@e2c2][0m There is no need to perform the project cleanup. A fresh install has been detected
[38;5;172m[f76c7047][0m[38;5;21m[WebDriverAgent][0m Killing running processes 'xcodebuild.*00008110-0012150921E2401E' for the device 00008110-0012150921E2401E...
[38;5;172m[f76c7047][0m[38;5;21m[WebDriverAgent][0m 'pgrep -if xcodebuild.*00008110-0012150921E2401E' didn't detect any matching processes. Return code: 1
[38;5;172m[f76c7047][0m[38;5;41m[XCUITestDriver@e2c2][0m Beginning test with command 'xcodebuild build-for-testing test-without-building -project /Users/boazwarshawsky/.appium/node_modules/appium-xcuitest-driver/node_modules/appium-webdriveragent/WebDriverAgent.xcodeproj -scheme WebDriverAgentRunner -destination id=00008110-0012150921E2401E IPHONEOS_DEPLOYMENT_TARGET=18.1 DEVELOPMENT_TEAM=WGYJF9YTP7 CODE_SIGN_IDENTITY=iPhone Developer GCC_TREAT_WARNINGS_AS_ERRORS=0 COMPILER_INDEX_STORE_ENABLE=NO' in directory '/Users/boazwarshawsky/.appium/node_modules/appium-xcuitest-driver/node_modules/appium-webdriveragent'
[38;5;172m[f76c7047][0m[38;5;41m[XCUITestDriver@e2c2][0m Output from xcodebuild will only be logged if any errors are present there. To change this, use 'showXcodeLog' desired capability
[38;5;172m[f76c7047][0m[38;5;41m[XCUITestDriver@e2c2][0m Parsed BUILD_DIR configuration value: '/Users/boazwarshawsky/.appium/node_modules/appium-xcuitest-driver/node_modules/appium-webdriveragent/build'
[38;5;172m[f76c7047][0m[38;5;41m[XCUITestDriver@e2c2][0m Got derived data root: '/Users/boazwarshawsky/.appium/node_modules/appium-xcuitest-driver/node_modules'
[38;5;187m[984cc2c1][0m[38;5;85m[XCUITestDriver@d01a][0m Matched '/status' to command name 'getStatus'
[38;5;187m[984cc2c1][0m[38;5;85m[XCUITestDriver@d01a][0m Proxying [GET /status] to [GET http://127.0.0.1:8100/status] with no body
[38;5;172m[f76c7047][0m[38;5;84m[iProxy@00008110:8100][0m Connection was refused to port 8100
[38;5;187m[984cc2c1][0m[38;5;85m[XCUITestDriver@d01a][0m socket hang up
[38;5;172m[f76c7047][0m[38;5;41m[XCUITestDriver@e2c2][0m Waiting up to 60000ms for WebDriverAgent to start
[38;5;172m[f76c7047][0m[38;5;41m[XCUITestDriver@e2c2][0m Matched '/status' to command name 'getStatus'
[38;5;172m[f76c7047][0m[38;5;41m[XCUITestDriver@e2c2][0m Proxying [GET /status] to [GET http://127.0.0.1:8100/status] with no body
[38;5;172m[f76c7047][0m[38;5;84m[iProxy@00008110:8100][0m Connection was refused to port 8100
[38;5;172m[f76c7047][0m[38;5;41m[XCUITestDriver@e2c2][0m socket hang up
[38;5;46m[8bf26d97][0m[38;5;79m[XCUITestDriver@9e24][0m Matched '/status' to command name 'getStatus'
[38;5;46m[8bf26d97][0m[38;5;79m[XCUITestDriver@9e24][0m Proxying [GET /status] to [GET http://127.0.0.1:8100/status] with no body
[38;5;172m[f76c7047][0m[38;5;84m[iProxy@00008110:8100][0m Connection was refused to port 8100
[38;5;46m[8bf26d97][0m[38;5;79m[XCUITestDriver@9e24][0m socket hang up
[38;5;187m[984cc2c1][0m[38;5;85m[XCUITestDriver@d01a][0m Matched '/status' to command name 'getStatus'
[38;5;187m[984cc2c1][0m[38;5;85m[XCUITestDriver@d01a][0m Proxying [GET /status] to [GET http://127.0.0.1:8100/status] with no body
[38;5;172m[f76c7047][0m[38;5;84m[iProxy@00008110:8100][0m Connection was refused to port 8100
[38;5;187m[984cc2c1][0m[38;5;85m[XCUITestDriver@d01a][0m socket hang up
[38;5;172m[f76c7047][0m[38;5;41m[XCUITestDriver@e2c2][0m Matched '/status' to command name 'getStatus'
[38;5;172m[f76c7047][0m[38;5;41m[XCUITestDriver@e2c2][0m Proxying [GET /status] to [GET http://127.0.0.1:8100/status] with no body
[38;5;172m[f76c7047][0m[38;5;84m[iProxy@00008110:8100][0m Connection was refused to port 8100
[38;5;172m[f76c7047][0m[38;5;41m[XCUITestDriver@e2c2][0m socket hang up
[38;5;46m[8bf26d97][0m[38;5;79m[XCUITestDriver@9e24][0m Matched '/status' to command name 'getStatus'
[38;5;46m[8bf26d97][0m[38;5;79m[XCUITestDriver@9e24][0m Proxying [GET /status] to [GET http://127.0.0.1:8100/status] with no body
[38;5;172m[f76c7047][0m[38;5;84m[iProxy@00008110:8100][0m Connection was refused to port 8100
[38;5;46m[8bf26d97][0m[38;5;79m[XCUITestDriver@9e24][0m socket hang up
[38;5;187m[984cc2c1][0m[38;5;85m[XCUITestDriver@d01a][0m Matched '/status' to command name 'getStatus'
[38;5;187m[984cc2c1][0m[38;5;85m[XCUITestDriver@d01a][0m Proxying [GET /status] to [GET http://127.0.0.1:8100/status] with no body
[38;5;172m[f76c7047][0m[38;5;84m[iProxy@00008110:8100][0m Connection was refused to port 8100
[38;5;187m[984cc2c1][0m[38;5;85m[XCUITestDriver@d01a][0m socket hang up
[38;5;172m[f76c7047][0m[38;5;41m[XCUITestDriver@e2c2][0m Matched '/status' to command name 'getStatus'
[38;5;172m[f76c7047][0m[38;5;41m[XCUITestDriver@e2c2][0m Proxying [GET /status] to [GET http://127.0.0.1:8100/status] with no body
[38;5;172m[f76c7047][0m[38;5;84m[iProxy@00008110:8100][0m Connection was refused to port 8100
[38;5;172m[f76c7047][0m[38;5;41m[XCUITestDriver@e2c2][0m socket hang up
[38;5;46m[8bf26d97][0m[38;5;79m[XCUITestDriver@9e24][0m Matched '/status' to command name 'getStatus'
[38;5;46m[8bf26d97][0m[38;5;79m[XCUITestDriver@9e24][0m Proxying [GET /status] to [GET http://127.0.0.1:8100/status] with no body
[38;5;172m[f76c7047][0m[38;5;84m[iProxy@00008110:8100][0m Connection was refused to port 8100
[38;5;46m[8bf26d97][0m[38;5;79m[XCUITestDriver@9e24][0m socket hang up
[38;5;187m[984cc2c1][0m[38;5;85m[XCUITestDriver@d01a][0m Matched '/status' to command name 'getStatus'
[38;5;187m[984cc2c1][0m[38;5;85m[XCUITestDriver@d01a][0m Proxying [GET /status] to [GET http://127.0.0.1:8100/status] with no body
[38;5;172m[f76c7047][0m[38;5;84m[iProxy@00008110:8100][0m Connection was refused to port 8100
[38;5;187m[984cc2c1][0m[38;5;85m[XCUITestDriver@d01a][0m socket hang up
[38;5;172m[f76c7047][0m[38;5;41m[XCUITestDriver@e2c2][0m Matched '/status' to command name 'getStatus'
[38;5;172m[f76c7047][0m[38;5;41m[XCUITestDriver@e2c2][0m Proxying [GET /status] to [GET http://127.0.0.1:8100/status] with no body
[38;5;172m[f76c7047][0m[38;5;84m[iProxy@00008110:8100][0m Connection was refused to port 8100
[38;5;172m[f76c7047][0m[38;5;41m[XCUITestDriver@e2c2][0m socket hang up
[38;5;46m[8bf26d97][0m[38;5;79m[XCUITestDriver@9e24][0m Matched '/status' to command name 'getStatus'
[38;5;46m[8bf26d97][0m[38;5;79m[XCUITestDriver@9e24][0m Proxying [GET /status] to [GET http://127.0.0.1:8100/status] with no body
[38;5;172m[f76c7047][0m[38;5;84m[iProxy@00008110:8100][0m Connection was refused to port 8100
[38;5;46m[8bf26d97][0m[38;5;79m[XCUITestDriver@9e24][0m socket hang up
[38;5;187m[984cc2c1][0m[38;5;85m[XCUITestDriver@d01a][0m Matched '/status' to command name 'getStatus'
[38;5;187m[984cc2c1][0m[38;5;85m[XCUITestDriver@d01a][0m Proxying [GET /status] to [GET http://127.0.0.1:8100/status] with no body
[38;5;172m[f76c7047][0m[38;5;84m[iProxy@00008110:8100][0m Connection was refused to port 8100
[38;5;187m[984cc2c1][0m[38;5;85m[XCUITestDriver@d01a][0m socket hang up
[38;5;172m[f76c7047][0m[38;5;41m[XCUITestDriver@e2c2][0m Matched '/status' to command name 'getStatus'
[38;5;172m[f76c7047][0m[38;5;41m[XCUITestDriver@e2c2][0m Proxying [GET /status] to [GET http://127.0.0.1:8100/status] with no body
[38;5;172m[f76c7047][0m[38;5;84m[iProxy@00008110:8100][0m Connection was refused to port 8100
[38;5;172m[f76c7047][0m[38;5;41m[XCUITestDriver@e2c2][0m socket hang up
[38;5;46m[8bf26d97][0m[38;5;79m[XCUITestDriver@9e24][0m Matched '/status' to command name 'getStatus'
[38;5;46m[8bf26d97][0m[38;5;79m[XCUITestDriver@9e24][0m Proxying [GET /status] to [GET http://127.0.0.1:8100/status] with no body
[38;5;172m[f76c7047][0m[38;5;84m[iProxy@00008110:8100][0m Connection was refused to port 8100
[38;5;46m[8bf26d97][0m[38;5;79m[XCUITestDriver@9e24][0m socket hang up
[38;5;187m[984cc2c1][0m[38;5;85m[XCUITestDriver@d01a][0m Matched '/status' to command name 'getStatus'
[38;5;187m[984cc2c1][0m[38;5;85m[XCUITestDriver@d01a][0m Proxying [GET /status] to [GET http://127.0.0.1:8100/status] with no body
[38;5;172m[f76c7047][0m[38;5;84m[iProxy@00008110:8100][0m Connection was refused to port 8100
[38;5;187m[984cc2c1][0m[38;5;85m[XCUITestDriver@d01a][0m socket hang up
[38;5;172m[f76c7047][0m[38;5;41m[XCUITestDriver@e2c2][0m Matched '/status' to command name 'getStatus'
[38;5;172m[f76c7047][0m[38;5;41m[XCUITestDriver@e2c2][0m Proxying [GET /status] to [GET http://127.0.0.1:8100/status] with no body
[38;5;172m[f76c7047][0m[38;5;84m[iProxy@00008110:8100][0m Connection was refused to port 8100
[38;5;172m[f76c7047][0m[38;5;41m[XCUITestDriver@e2c2][0m socket hang up
[38;5;46m[8bf26d97][0m[38;5;79m[XCUITestDriver@9e24][0m Matched '/status' to command name 'getStatus'
[38;5;46m[8bf26d97][0m[38;5;79m[XCUITestDriver@9e24][0m Proxying [GET /status] to [GET http://127.0.0.1:8100/status] with no body
[38;5;172m[f76c7047][0m[38;5;84m[iProxy@00008110:8100][0m Connection was refused to port 8100
[38;5;46m[8bf26d97][0m[38;5;79m[XCUITestDriver@9e24][0m socket hang up
[38;5;187m[984cc2c1][0m[38;5;85m[XCUITestDriver@d01a][0m Matched '/status' to command name 'getStatus'
[38;5;187m[984cc2c1][0m[38;5;85m[XCUITestDriver@d01a][0m Proxying [GET /status] to [GET http://127.0.0.1:8100/status] with no body
[38;5;172m[f76c7047][0m[38;5;84m[iProxy@00008110:8100][0m Connection was refused to port 8100
[38;5;187m[984cc2c1][0m[38;5;85m[XCUITestDriver@d01a][0m socket hang up
[38;5;172m[f76c7047][0m[38;5;41m[XCUITestDriver@e2c2][0m Matched '/status' to command name 'getStatus'
[38;5;172m[f76c7047][0m[38;5;41m[XCUITestDriver@e2c2][0m Proxying [GET /status] to [GET http://127.0.0.1:8100/status] with no body
[38;5;172m[f76c7047][0m[38;5;84m[iProxy@00008110:8100][0m Connection was refused to port 8100
[38;5;172m[f76c7047][0m[38;5;41m[XCUITestDriver@e2c2][0m socket hang up
[38;5;46m[8bf26d97][0m[38;5;79m[XCUITestDriver@9e24][0m Matched '/status' to command name 'getStatus'
[38;5;46m[8bf26d97][0m[38;5;79m[XCUITestDriver@9e24][0m Proxying [GET /status] to [GET http://127.0.0.1:8100/status] with no body
[38;5;172m[f76c7047][0m[38;5;84m[iProxy@00008110:8100][0m Connection was refused to port 8100
[38;5;46m[8bf26d97][0m[38;5;79m[XCUITestDriver@9e24][0m socket hang up
[38;5;187m[984cc2c1][0m[38;5;85m[XCUITestDriver@d01a][0m Matched '/status' to command name 'getStatus'
[38;5;187m[984cc2c1][0m[38;5;85m[XCUITestDriver@d01a][0m Proxying [GET /status] to [GET http://127.0.0.1:8100/status] with no body
[38;5;172m[f76c7047][0m[38;5;84m[iProxy@00008110:8100][0m Connection was refused to port 8100
[38;5;187m[984cc2c1][0m[38;5;85m[XCUITestDriver@d01a][0m socket hang up
[38;5;172m[f76c7047][0m[38;5;41m[XCUITestDriver@e2c2][0m Matched '/status' to command name 'getStatus'
[38;5;172m[f76c7047][0m[38;5;41m[XCUITestDriver@e2c2][0m Proxying [GET /status] to [GET http://127.0.0.1:8100/status] with no body
[38;5;172m[f76c7047][0m[38;5;84m[iProxy@00008110:8100][0m Connection was refused to port 8100
[38;5;172m[f76c7047][0m[38;5;41m[XCUITestDriver@e2c2][0m socket hang up
[38;5;46m[8bf26d97][0m[38;5;79m[XCUITestDriver@9e24][0m Matched '/status' to command name 'getStatus'
[38;5;46m[8bf26d97][0m[38;5;79m[XCUITestDriver@9e24][0m Proxying [GET /status] to [GET http://127.0.0.1:8100/status] with no body
[38;5;172m[f76c7047][0m[38;5;84m[iProxy@00008110:8100][0m Connection was refused to port 8100
[38;5;46m[8bf26d97][0m[38;5;79m[XCUITestDriver@9e24][0m socket hang up
[38;5;187m[984cc2c1][0m[38;5;85m[XCUITestDriver@d01a][0m Matched '/status' to command name 'getStatus'
[38;5;187m[984cc2c1][0m[38;5;85m[XCUITestDriver@d01a][0m Proxying [GET /status] to [GET http://127.0.0.1:8100/status] with no body
[38;5;172m[f76c7047][0m[38;5;84m[iProxy@00008110:8100][0m Connection was refused to port 8100
[38;5;187m[984cc2c1][0m[38;5;85m[XCUITestDriver@d01a][0m socket hang up
[38;5;172m[f76c7047][0m[38;5;41m[XCUITestDriver@e2c2][0m Matched '/status' to command name 'getStatus'
[38;5;172m[f76c7047][0m[38;5;41m[XCUITestDriver@e2c2][0m Proxying [GET /status] to [GET http://127.0.0.1:8100/status] with no body
[38;5;172m[f76c7047][0m[38;5;84m[iProxy@00008110:8100][0m Connection was refused to port 8100
[38;5;172m[f76c7047][0m[38;5;41m[XCUITestDriver@e2c2][0m socket hang up
[38;5;46m[8bf26d97][0m[38;5;79m[XCUITestDriver@9e24][0m Matched '/status' to command name 'getStatus'
[38;5;46m[8bf26d97][0m[38;5;79m[XCUITestDriver@9e24][0m Proxying [GET /status] to [GET http://127.0.0.1:8100/status] with no body
[38;5;172m[f76c7047][0m[38;5;84m[iProxy@00008110:8100][0m Connection was refused to port 8100
[38;5;46m[8bf26d97][0m[38;5;79m[XCUITestDriver@9e24][0m socket hang up
[38;5;187m[984cc2c1][0m[38;5;85m[XCUITestDriver@d01a][0m Matched '/status' to command name 'getStatus'
[38;5;187m[984cc2c1][0m[38;5;85m[XCUITestDriver@d01a][0m Proxying [GET /status] to [GET http://127.0.0.1:8100/status] with no body
[38;5;172m[f76c7047][0m[38;5;84m[iProxy@00008110:8100][0m Connection was refused to port 8100
[38;5;187m[984cc2c1][0m[38;5;85m[XCUITestDriver@d01a][0m socket hang up
[38;5;172m[f76c7047][0m[38;5;41m[XCUITestDriver@e2c2][0m Matched '/status' to command name 'getStatus'
[38;5;172m[f76c7047][0m[38;5;41m[XCUITestDriver@e2c2][0m Proxying [GET /status] to [GET http://127.0.0.1:8100/status] with no body
[38;5;172m[f76c7047][0m[38;5;84m[iProxy@00008110:8100][0m Connection was refused to port 8100
[38;5;172m[f76c7047][0m[38;5;41m[XCUITestDriver@e2c2][0m socket hang up
[38;5;46m[8bf26d97][0m[38;5;79m[XCUITestDriver@9e24][0m Matched '/status' to command name 'getStatus'
[38;5;46m[8bf26d97][0m[38;5;79m[XCUITestDriver@9e24][0m Proxying [GET /status] to [GET http://127.0.0.1:8100/status] with no body
[38;5;172m[f76c7047][0m[38;5;84m[iProxy@00008110:8100][0m Connection was refused to port 8100
[38;5;46m[8bf26d97][0m[38;5;79m[XCUITestDriver@9e24][0m socket hang up
[38;5;187m[984cc2c1][0m[38;5;85m[XCUITestDriver@d01a][0m Matched '/status' to command name 'getStatus'
[38;5;187m[984cc2c1][0m[38;5;85m[XCUITestDriver@d01a][0m Proxying [GET /status] to [GET http://127.0.0.1:8100/status] with no body
[38;5;172m[f76c7047][0m[38;5;84m[iProxy@00008110:8100][0m Connection was refused to port 8100
[38;5;187m[984cc2c1][0m[38;5;85m[XCUITestDriver@d01a][0m socket hang up
[38;5;172m[f76c7047][0m[38;5;41m[XCUITestDriver@e2c2][0m Matched '/status' to command name 'getStatus'
[38;5;172m[f76c7047][0m[38;5;41m[XCUITestDriver@e2c2][0m Proxying [GET /status] to [GET http://127.0.0.1:8100/status] with no body
[38;5;172m[f76c7047][0m[38;5;84m[iProxy@00008110:8100][0m Connection was refused to port 8100
[38;5;172m[f76c7047][0m[38;5;41m[XCUITestDriver@e2c2][0m socket hang up
[38;5;46m[8bf26d97][0m[38;5;79m[XCUITestDriver@9e24][0m Matched '/status' to command name 'getStatus'
[38;5;46m[8bf26d97][0m[38;5;79m[XCUITestDriver@9e24][0m Proxying [GET /status] to [GET http://127.0.0.1:8100/status] with no body
[38;5;172m[f76c7047][0m[38;5;84m[iProxy@00008110:8100][0m Connection was refused to port 8100
[38;5;46m[8bf26d97][0m[38;5;79m[XCUITestDriver@9e24][0m socket hang up
[38;5;187m[984cc2c1][0m[38;5;85m[XCUITestDriver@d01a][0m Matched '/status' to command name 'getStatus'
[38;5;187m[984cc2c1][0m[38;5;85m[XCUITestDriver@d01a][0m Proxying [GET /status] to [GET http://127.0.0.1:8100/status] with no body
[38;5;172m[f76c7047][0m[38;5;84m[iProxy@00008110:8100][0m Connection was refused to port 8100
[38;5;187m[984cc2c1][0m[38;5;85m[XCUITestDriver@d01a][0m socket hang up
[38;5;172m[f76c7047][0m[38;5;41m[XCUITestDriver@e2c2][0m Matched '/status' to command name 'getStatus'
[38;5;172m[f76c7047][0m[38;5;41m[XCUITestDriver@e2c2][0m Proxying [GET /status] to [GET http://127.0.0.1:8100/status] with no body
[38;5;172m[f76c7047][0m[38;5;84m[iProxy@00008110:8100][0m Connection was refused to port 8100
[38;5;172m[f76c7047][0m[38;5;41m[XCUITestDriver@e2c2][0m socket hang up
[38;5;46m[8bf26d97][0m[38;5;79m[XCUITestDriver@9e24][0m Matched '/status' to command name 'getStatus'
[38;5;46m[8bf26d97][0m[38;5;79m[XCUITestDriver@9e24][0m Proxying [GET /status] to [GET http://127.0.0.1:8100/status] with no body
[38;5;172m[f76c7047][0m[38;5;84m[iProxy@00008110:8100][0m Connection was refused to port 8100
[38;5;46m[8bf26d97][0m[38;5;79m[XCUITestDriver@9e24][0m socket hang up
[38;5;187m[984cc2c1][0m[38;5;85m[XCUITestDriver@d01a][0m Matched '/status' to command name 'getStatus'
[38;5;187m[984cc2c1][0m[38;5;85m[XCUITestDriver@d01a][0m Proxying [GET /status] to [GET http://127.0.0.1:8100/status] with no body
[38;5;172m[f76c7047][0m[38;5;84m[iProxy@00008110:8100][0m Connection was refused to port 8100
[38;5;187m[984cc2c1][0m[38;5;85m[XCUITestDriver@d01a][0m socket hang up
[38;5;172m[f76c7047][0m[38;5;41m[XCUITestDriver@e2c2][0m Matched '/status' to command name 'getStatus'
[38;5;172m[f76c7047][0m[38;5;41m[XCUITestDriver@e2c2][0m Proxying [GET /status] to [GET http://127.0.0.1:8100/status] with no body
[38;5;172m[f76c7047][0m[38;5;84m[iProxy@00008110:8100][0m Connection was refused to port 8100
[38;5;172m[f76c7047][0m[38;5;41m[XCUITestDriver@e2c2][0m socket hang up
[38;5;46m[8bf26d97][0m[38;5;79m[XCUITestDriver@9e24][0m Matched '/status' to command name 'getStatus'
[38;5;46m[8bf26d97][0m[38;5;79m[XCUITestDriver@9e24][0m Proxying [GET /status] to [GET http://127.0.0.1:8100/status] with no body
[38;5;172m[f76c7047][0m[38;5;84m[iProxy@00008110:8100][0m Connection was refused to port 8100
[38;5;46m[8bf26d97][0m[38;5;79m[XCUITestDriver@9e24][0m socket hang up
[38;5;172m[f76c7047][0m[38;5;41m[XCUITestDriver@e2c2][0m Event 'wdaStartFailed' logged at 1728476790568 (15:26:30 GMT+0300 (שעון ישראל (קיץ)))
[38;5;172m[f76c7047][0m[38;5;41m[XCUITestDriver@e2c2][0m Error: xcodebuild failed with code 70. This usually indicates an issue with the local Xcode setup or WebDriverAgent project configuration or the driver-to-platform version mismatch. Consider setting 'showXcodeLog' capability to true in order to check the Appium server log for build-related error messages.
at SubProcess.<anonymous> (/Users/boazwarshawsky/.appium/node_modules/appium-xcuitest-driver/node_modules/appium-webdriveragent/lib/xcodebuild.js:384:25)
at Object.onceWrapper (node:events:634:26)
at SubProcess.emit (node:events:519:28)
at ChildProcess.<anonymous> (/Users/boazwarshawsky/.appium/node_modules/appium-xcuitest-driver/node_modules/teen_process/lib/subprocess.js:201:14)
at ChildProcess.emit (node:events:519:28)
at Process.ChildProcess._handle.onexit (node:internal/child_process:293:12)
at Process.callbackTrampoline (node:internal/async_hooks:130:17)
[38;5;172m[f76c7047][0m[38;5;41m[XCUITestDriver@e2c2][0m Unable to launch WebDriverAgent. Original error: xcodebuild failed with code 70. This usually indicates an issue with the local Xcode setup or WebDriverAgent project configuration or the driver-to-platform version mismatch. Consider setting 'showXcodeLog' capability to true in order to check the Appium server log for build-related error messages.. Make sure you follow the tutorial at https://appium.github.io/appium-xcuitest-driver/latest/preparation/real-device-config/
[38;5;172m[f76c7047][0m[38;5;41m[XCUITestDriver@e2c2][0m Quitting and uninstalling WebDriverAgent
[38;5;172m[f76c7047][0m[38;5;41m[XCUITestDriver@e2c2][0m Shutting down sub-processes
[38;5;187m[984cc2c1][0m[38;5;85m[XCUITestDriver@d01a][0m Matched '/status' to command name 'getStatus'
[38;5;187m[984cc2c1][0m[38;5;85m[XCUITestDriver@d01a][0m Proxying [GET /status] to [GET http://127.0.0.1:8100/status] with no body
[38;5;172m[f76c7047][0m[38;5;84m[iProxy@00008110:8100][0m Connection was refused to port 8100
[38;5;187m[984cc2c1][0m[38;5;85m[XCUITestDriver@d01a][0m socket hang up
[38;5;172m[f76c7047][0m[38;5;41m[XCUITestDriver@e2c2][0m Matched '/status' to command name 'getStatus'
[38;5;172m[f76c7047][0m[38;5;41m[XCUITestDriver@e2c2][0m Proxying [GET /status] to [GET http://127.0.0.1:8100/status] with no body
[38;5;172m[f76c7047][0m[38;5;84m[iProxy@00008110:8100][0m Connection was refused to port 8100
[38;5;172m[f76c7047][0m[38;5;41m[XCUITestDriver@e2c2][0m socket hang up
[38;5;172m[f76c7047][0m[38;5;41m[XCUITestDriver@e2c2][0m No WDAs on the device.
[38;5;172m[f76c7047][0m[38;5;23m[DevCon Factory][0m Releasing connections for 00008110-0012150921E2401E device on any port number
[38;5;172m[f76c7047][0m[38;5;23m[DevCon Factory][0m Found cached connections to release: ["00008110-0012150921E2401E:8100"]
[38;5;172m[f76c7047][0m[38;5;23m[DevCon Factory][0m Releasing the listener for '00008110-0012150921E2401E:8100'
[38;5;172m[f76c7047][0m[38;5;84m[iProxy@00008110:8100][0m Closing the connection
[38;5;172m[f76c7047][0m[38;5;23m[DevCon Factory][0m Cached connections count: 0
[38;5;172m[f76c7047][0m[38;5;41m[XCUITestDriver@e2c2][0m Not clearing log files. Use `clearSystemFiles` capability to turn on.
[38;5;172m[f76c7047][0m[38;5;84m[iProxy@00008110:8100][0m The connection has been closed
[38;5;172m[f76c7047][0m[38;5;94m[AppiumDriver@7c66][0m Event 'newSessionStarted' logged at 1728476790730 (15:26:30 GMT+0300 (שעון ישראל (קיץ)))
[38;5;172m[f76c7047][0m[38;5;94m[AppiumDriver@7c66][0m Encountered internal error running command: Error: Unable to launch WebDriverAgent. Original error: xcodebuild failed with code 70. This usually indicates an issue with the local Xcode setup or WebDriverAgent project configuration or the driver-to-platform version mismatch. Consider setting 'showXcodeLog' capability to true in order to check the Appium server log for build-related error messages.. Make sure you follow the tutorial at https://appium.github.io/appium-xcuitest-driver/latest/preparation/real-device-config/
at quitAndUninstall (/Users/boazwarshawsky/.appium/node_modules/appium-xcuitest-driver/lib/driver.js:796:15)
at /Users/boazwarshawsky/.appium/node_modules/appium-xcuitest-driver/lib/driver.js:866:13
at wrapped (/Users/boazwarshawsky/.appium/node_modules/appium-xcuitest-driver/node_modules/asyncbox/lib/asyncbox.js:93:13)
at retry (/Users/boazwarshawsky/.appium/node_modules/appium-xcuitest-driver/node_modules/asyncbox/lib/asyncbox.js:66:13)
at retryInterval (/Users/boazwarshawsky/.appium/node_modules/appium-xcuitest-driver/node_modules/asyncbox/lib/asyncbox.js:103:10)
at /Users/boazwarshawsky/.appium/node_modules/appium-xcuitest-driver/lib/driver.js:831:7
[38;5;172m[f76c7047][0m[38;5;86m[HTTP][0m [37m<-- POST /wd/hub/session [39m[31m500[39m [90m13895 ms - 1638[39m [90m[39m
[38;5;46m[8bf26d97][0m[38;5;79m[XCUITestDriver@9e24][0m Matched '/status' to command name 'getStatus'
[38;5;46m[8bf26d97][0m[38;5;79m[XCUITestDriver@9e24][0m Proxying [GET /status] to [GET http://127.0.0.1:8100/status] with no body
[38;5;46m[8bf26d97][0m[38;5;79m[XCUITestDriver@9e24][0m connect ECONNREFUSED 127.0.0.1:8100
[38;5;187m[984cc2c1][0m[38;5;85m[XCUITestDriver@d01a][0m Matched '/status' to command name 'getStatus'
[38;5;187m[984cc2c1][0m[38;5;85m[XCUITestDriver@d01a][0m Proxying [GET /status] to [GET http://127.0.0.1:8100/status] with no body
[38;5;187m[984cc2c1][0m[38;5;85m[XCUITestDriver@d01a][0m connect ECONNREFUSED 127.0.0.1:8100
[38;5;172m[f76c7047][0m[38;5;41m[XCUITestDriver@e2c2][0m Matched '/status' to command name 'getStatus'
[38;5;172m[f76c7047][0m[38;5;41m[XCUITestDriver@e2c2][0m Proxying [GET /status] to [GET http://127.0.0.1:8100/status] with no body
[38;5;172m[f76c7047][0m[38;5;41m[XCUITestDriver@e2c2][0m connect ECONNREFUSED 127.0.0.1:8100
[38;5;86m[HTTP][0m Request idempotency key: a5c92d68-34e3-41fc-bae8-3f1181f4e989
[38;5;86m[HTTP][0m [37m-->[39m [37mPOST[39m [37m/wd/hub/session[39m [90m{"capabilities":{"firstMatch":[{}],"alwaysMatch":{"appium:automationName":"XCUITest","platformName":"iOS","appium:noReset":true,"appium:fullReset":false,"appium:platformVersion":"18.1","appium:deviceName":"qa_iphone_02","appium:udid":"00008110-0012150921E2401E","appium:bundleId":"com.shs.DeploymentManager","appium:xcodeOrgId":"WGYJF9YTP7","appium:xcodeSigningId":"iPhone Developer","appium:app":"http://mv-nexus-new.corp.aeroscout.com:8081/repository/mobile-products/ios/development/deployment/securitas/master/Deployment.ipa"}}}[39m
[38;5;94m[AppiumDriver@7c66][0m Calling AppiumDriver.createSession() with args: [null,null,{"firstMatch":[{}],"alwaysMatch":{"appium:automationName":"XCUITest","platformName":"iOS","appium:noReset":true,"appium:fullReset":false,"appium:platformVersion":"18.1","appium:deviceName":"qa_iphone_02","appium:udid":"00008110-0012150921E2401E","appium:bundleId":"com.shs.DeploymentManager","appium:xcodeOrgId":"WGYJF9YTP7","appium:xcodeSigningId":"iPhone Developer","appium:app":"http://mv-nexus-new.corp.aeroscout.com:8081/repository/mobile-products/ios/development/deployment/securitas/master/Deployment.ipa"}}]
[38;5;94m[AppiumDriver@7c66][0m Event 'newSessionRequested' logged at 1728476791750 (15:26:31 GMT+0300 (שעון ישראל (קיץ)))
[38;5;112m[Appium][0m Attempting to find matching driver for automationName 'XCUITest' and platformName 'iOS'
[38;5;112m[Appium][0m The 'xcuitest' driver was installed and matched caps.
[38;5;112m[Appium][0m Will require it at /Users/boazwarshawsky/.appium/node_modules/appium-xcuitest-driver
[38;5;112m[Appium][0m Requiring driver at /Users/boazwarshawsky/.appium/node_modules/appium-xcuitest-driver/build/index.js
[38;5;94m[AppiumDriver@7c66][0m Appium v2.11.5 creating new XCUITestDriver (v7.27.0) session
[38;5;94m[AppiumDriver@7c66][0m Checking BaseDriver versions for Appium and XCUITestDriver
[38;5;94m[AppiumDriver@7c66][0m Appium's BaseDriver version is 9.11.5
[38;5;94m[AppiumDriver@7c66][0m XCUITestDriver's BaseDriver version is 9.11.5
[38;5;94m[AppiumDriver@7c66][0m Explicitly enabling use of insecure features:
[38;5;94m[AppiumDriver@7c66][0m chromedriver_autodownload
[38;5;221m[XCUITestDriver@1ec7][0m
[38;5;221m[XCUITestDriver@1ec7][0m Creating session with W3C capabilities: {
"alwaysMatch": {
"platformName": "iOS",
"appium:automationName": "XCUITest",
"appium:noReset": true,
"appium:fullReset": false,
"appium:platformVersion": "18.1",
"appium:deviceName": "qa_iphone_02",
"appium:udid": "00008110-0012150921E2401E",
"appium:bundleId": "com.shs.DeploymentManager",
"appium:xcodeOrgId": "WGYJF9YTP7",
"appium:xcodeSigningId": "iPhone Developer",
"appium:app": "http://mv-nexus-new.corp.aeroscout.com:8081/repository/mobile-products/ios/development/deployment/securitas/master/Deployment.ipa"
},
"firstMatch": [
{}
]
}
[38;5;172m[f8b2dc49][0m[38;5;221m[XCUITestDriver@1ec7][0m Session created with session id: f8b2dc49-3d8a-48f6-89cb-32fda2815025
[38;5;172m[f8b2dc49][0m[38;5;135m[XCUITest][0m Current user: 'boazwarshawsky'
[38;5;172m[f8b2dc49][0m[38;5;221m[XCUITestDriver@1ec7][0m Available real devices: 00008110-0012150921E2401E
[38;5;172m[f8b2dc49][0m[38;5;221m[XCUITestDriver@1ec7][0m Creating iDevice object with udid '00008110-0012150921E2401E'
[38;5;172m[f8b2dc49][0m[38;5;221m[XCUITestDriver@1ec7][0m Determining device to run tests on: udid: '00008110-0012150921E2401E', real device: true
[38;5;172m[f8b2dc49][0m[38;5;221m[XCUITestDriver@1ec7][0m Event 'xcodeDetailsRetrieved' logged at 1728476791770 (15:26:31 GMT+0300 (שעון ישראל (קיץ)))
[38;5;172m[f8b2dc49][0m[38;5;123m[BaseDriver][0m Cached app data: {
"lastModified": "2024-10-08T21:35:22.000Z",
"immutable": false,
"maxAge": null,
"etag": null,
"timestamp": 1728476744933,
"packageHash": "481bbf176f17893e5ad280af09b122a627942d39",
"integrity": {
"file": "481bbf176f17893e5ad280af09b122a627942d39"
},
"fullPath": "/var/folders/b2/3q970w753l1_dw7ntszqqg140000gn/T/202499-21051-1fdygk.lu8q3/appium-app-1728476743907.ipa"
}
[38;5;172m[f8b2dc49][0m[38;5;123m[BaseDriver][0m Using downloadable app 'http://mv-nexus-new.corp.aeroscout.com:8081/repository/mobile-products/ios/development/deployment/securitas/master/Deployment.ipa'
[38;5;172m[f8b2dc49][0m[38;5;123m[BaseDriver][0m Request headers: {"user-agent":"Appium (BaseDriver v9.11.5)","if-modified-since":"Tue, 08 Oct 2024 21:35:22 GMT"}
[38;5;172m[f8b2dc49][0m[38;5;123m[BaseDriver][0m Response status: 304
[38;5;172m[f8b2dc49][0m[38;5;123m[BaseDriver][0m Reusing previously downloaded application at '/var/folders/b2/3q970w753l1_dw7ntszqqg140000gn/T/202499-21051-1fdygk.lu8q3/appium-app-1728476743907.ipa'
[38;5;172m[f8b2dc49][0m[38;5;221m[XCUITestDriver@1ec7][0m Event 'appConfigured' logged at 1728476791795 (15:26:31 GMT+0300 (שעון ישראל (קיץ)))
[38;5;172m[f8b2dc49][0m[38;5;135m[XCUITest][0m Checking whether app '/var/folders/b2/3q970w753l1_dw7ntszqqg140000gn/T/202499-21051-1fdygk.lu8q3/appium-app-1728476743907.ipa' is actually present on file system
[38;5;172m[f8b2dc49][0m[38;5;135m[XCUITest][0m App is present
[38;5;172m[f8b2dc49][0m[38;5;221m[XCUITestDriver@1ec7][0m Event 'resetStarted' logged at 1728476791795 (15:26:31 GMT+0300 (שעון ישראל (קיץ)))
[38;5;172m[f8b2dc49][0m[38;5;221m[XCUITestDriver@1ec7][0m Reset: fullReset not set. Leaving as is
[38;5;172m[f8b2dc49][0m[38;5;221m[XCUITestDriver@1ec7][0m Event 'resetComplete' logged at 1728476791795 (15:26:31 GMT+0300 (שעון ישראל (קיץ)))
[38;5;172m[f8b2dc49][0m[38;5;221m[XCUITestDriver@1ec7][0m Using WDA path: '/Users/boazwarshawsky/.appium/node_modules/appium-xcuitest-driver/node_modules/appium-webdriveragent'
[38;5;172m[f8b2dc49][0m[38;5;221m[XCUITestDriver@1ec7][0m Using WDA agent: '/Users/boazwarshawsky/.appium/node_modules/appium-xcuitest-driver/node_modules/appium-webdriveragent/WebDriverAgent.xcodeproj'
[38;5;172m[f8b2dc49][0m[38;5;221m[XCUITestDriver@1ec7][0m The pyidevice tool is not present in PATH. Skipping crash logs collection for real devices.
[38;5;172m[f8b2dc49][0m[38;5;221m[XCUITestDriver@1ec7][0m Event 'logCaptureStarted' logged at 1728476791913 (15:26:31 GMT+0300 (שעון ישראל (קיץ)))
[38;5;172m[f8b2dc49][0m[38;5;221m[XCUITestDriver@1ec7][0m Setting up real device
[38;5;172m[f8b2dc49][0m[38;5;221m[XCUITestDriver@1ec7][0m Verifying application platform
[38;5;172m[f8b2dc49][0m[38;5;221m[XCUITestDriver@1ec7][0m CFBundleSupportedPlatforms: ["iPhoneOS"]
[38;5;172m[f8b2dc49][0m[38;5;221m[XCUITestDriver@1ec7][0m App 'com.shs.DeploymentManager' is already installed
[38;5;172m[f8b2dc49][0m[38;5;221m[XCUITestDriver@1ec7][0m noReset is requested. The app will not be be (re)installed
[38;5;172m[f8b2dc49][0m[38;5;221m[XCUITestDriver@1ec7][0m No obsolete cached processes from previous WDA sessions listening on port 8100 have been found
[38;5;172m[f8b2dc49][0m[38;5;23m[DevCon Factory][0m Requesting connection for device 00008110-0012150921E2401E on local port 8100, device port 8100
[38;5;172m[f8b2dc49][0m[38;5;23m[DevCon Factory][0m Cached connections count: 0
[38;5;172m[f8b2dc49][0m[38;5;23m[DevCon Factory][0m Successfully requested the connection for 00008110-0012150921E2401E:8100
[38;5;172m[f8b2dc49][0m[38;5;221m[XCUITestDriver@1ec7][0m Starting WebDriverAgent initialization with the synchronization key 'XCUITestDriver'
[38;5;172m[f8b2dc49][0m[38;5;151m[WD Proxy][0m Matched '/status' to command name 'getStatus'
[38;5;172m[f8b2dc49][0m[38;5;151m[WD Proxy][0m Proxying [GET /status] to [GET http://127.0.0.1:8100/status] with no body
[38;5;172m[f8b2dc49][0m[38;5;84m[iProxy@00008110:8100][0m Connection was refused to port 8100
[38;5;172m[f8b2dc49][0m[38;5;151m[WD Proxy][0m socket hang up
[38;5;172m[f8b2dc49][0m[38;5;221m[XCUITestDriver@1ec7][0m WDA is not listening at 'http://127.0.0.1:8100/'. Original error:: An unknown server-side error occurred while processing the command. Original error: Could not proxy command to the remote server. Original error: socket hang up
[38;5;172m[f8b2dc49][0m[38;5;221m[XCUITestDriver@1ec7][0m WDA is currently not running. There is nothing to cache
[38;5;172m[f8b2dc49][0m[38;5;221m[XCUITestDriver@1ec7][0m Trying to start WebDriverAgent 1 times with 10000ms interval
[38;5;172m[f8b2dc49][0m[38;5;221m[XCUITestDriver@1ec7][0m These values can be customized by changing wdaStartupRetries/wdaStartupRetryInterval capabilities
[38;5;172m[f8b2dc49][0m[38;5;221m[XCUITestDriver@1ec7][0m Event 'wdaStartAttempted' logged at 1728476792110 (15:26:32 GMT+0300 (שעון ישראל (קיץ)))
[38;5;172m[f8b2dc49][0m[38;5;221m[XCUITestDriver@1ec7][0m Launching WebDriverAgent on the device
[38;5;172m[f8b2dc49][0m[38;5;221m[XCUITestDriver@1ec7][0m There is no need to perform the project cleanup. A fresh install has been detected
[38;5;172m[f8b2dc49][0m[38;5;21m[WebDriverAgent][0m Killing running processes 'xcodebuild.*00008110-0012150921E2401E' for the device 00008110-0012150921E2401E...
[38;5;172m[f8b2dc49][0m[38;5;21m[WebDriverAgent][0m 'pgrep -if xcodebuild.*00008110-0012150921E2401E' didn't detect any matching processes. Return code: 1
[38;5;172m[f8b2dc49][0m[38;5;221m[XCUITestDriver@1ec7][0m Beginning test with command 'xcodebuild build-for-testing test-without-building -project /Users/boazwarshawsky/.appium/node_modules/appium-xcuitest-driver/node_modules/appium-webdriveragent/WebDriverAgent.xcodeproj -scheme WebDriverAgentRunner -destination id=00008110-0012150921E2401E IPHONEOS_DEPLOYMENT_TARGET=18.1 DEVELOPMENT_TEAM=WGYJF9YTP7 CODE_SIGN_IDENTITY=iPhone Developer GCC_TREAT_WARNINGS_AS_ERRORS=0 COMPILER_INDEX_STORE_ENABLE=NO' in directory '/Users/boazwarshawsky/.appium/node_modules/appium-xcuitest-driver/node_modules/appium-webdriveragent'
[38;5;172m[f8b2dc49][0m[38;5;221m[XCUITestDriver@1ec7][0m Output from xcodebuild will only be logged if any errors are present there. To change this, use 'showXcodeLog' desired capability
[38;5;46m[8bf26d97][0m[38;5;79m[XCUITestDriver@9e24][0m Matched '/status' to command name 'getStatus'
[38;5;46m[8bf26d97][0m[38;5;79m[XCUITestDriver@9e24][0m Proxying [GET /status] to [GET http://127.0.0.1:8100/status] with no body
[38;5;172m[f8b2dc49][0m[38;5;84m[iProxy@00008110:8100][0m Connection was refused to port 8100
[38;5;46m[8bf26d97][0m[38;5;79m[XCUITestDriver@9e24][0m socket hang up
[38;5;172m[f8b2dc49][0m[38;5;221m[XCUITestDriver@1ec7][0m Waiting up to 60000ms for WebDriverAgent to start
[38;5;172m[f8b2dc49][0m[38;5;221m[XCUITestDriver@1ec7][0m Matched '/status' to command name 'getStatus'
[38;5;172m[f8b2dc49][0m[38;5;221m[XCUITestDriver@1ec7][0m Proxying [GET /status] to [GET http://127.0.0.1:8100/status] with no body
[38;5;172m[f8b2dc49][0m[38;5;84m[iProxy@00008110:8100][0m Connection was refused to port 8100
[38;5;172m[f8b2dc49][0m[38;5;221m[XCUITestDriver@1ec7][0m socket hang up
[38;5;172m[f8b2dc49][0m[38;5;221m[XCUITestDriver@1ec7][0m Parsed BUILD_DIR configuration value: '/Users/boazwarshawsky/.appium/node_modules/appium-xcuitest-driver/node_modules/appium-webdriveragent/build'
[38;5;172m[f8b2dc49][0m[38;5;221m[XCUITestDriver@1ec7][0m Got derived data root: '/Users/boazwarshawsky/.appium/node_modules/appium-xcuitest-driver/node_modules'
[38;5;187m[984cc2c1][0m[38;5;85m[XCUITestDriver@d01a][0m Matched '/status' to command name 'getStatus'
[38;5;187m[984cc2c1][0m[38;5;85m[XCUITestDriver@d01a][0m Proxying [GET /status] to [GET http://127.0.0.1:8100/status] with no body
[38;5;172m[f8b2dc49][0m[38;5;84m[iProxy@00008110:8100][0m Connection was refused to port 8100
[38;5;187m[984cc2c1][0m[38;5;85m[XCUITestDriver@d01a][0m socket hang up
[38;5;172m[f76c7047][0m[38;5;41m[XCUITestDriver@e2c2][0m Matched '/status' to command name 'getStatus'
[38;5;172m[f76c7047][0m[38;5;41m[XCUITestDriver@e2c2][0m Proxying [GET /status] to [GET http://127.0.0.1:8100/status] with no body
[38;5;172m[f8b2dc49][0m[38;5;84m[iProxy@00008110:8100][0m Connection was refused to port 8100
[38;5;172m[f76c7047][0m[38;5;41m[XCUITestDriver@e2c2][0m socket hang up
[38;5;46m[8bf26d97][0m[38;5;79m[XCUITestDriver@9e24][0m Matched '/status' to command name 'getStatus'
[38;5;46m[8bf26d97][0m[38;5;79m[XCUITestDriver@9e24][0m Proxying [GET /status] to [GET http://127.0.0.1:8100/status] with no body
[38;5;172m[f8b2dc49][0m[38;5;84m[iProxy@00008110:8100][0m Connection was refused to port 8100
[38;5;46m[8bf26d97][0m[38;5;79m[XCUITestDriver@9e24][0m socket hang up
[38;5;172m[f8b2dc49][0m[38;5;221m[XCUITestDriver@1ec7][0m Matched '/status' to command name 'getStatus'
[38;5;172m[f8b2dc49][0m[38;5;221m[XCUITestDriver@1ec7][0m Proxying [GET /status] to [GET http://127.0.0.1:8100/status] with no body
[38;5;172m[f8b2dc49][0m[38;5;84m[iProxy@00008110:8100][0m Connection was refused to port 8100
[38;5;172m[f8b2dc49][0m[38;5;221m[XCUITestDriver@1ec7][0m socket hang up
[38;5;187m[984cc2c1][0m[38;5;85m[XCUITestDriver@d01a][0m Matched '/status' to command name 'getStatus'
[38;5;187m[984cc2c1][0m[38;5;85m[XCUITestDriver@d01a][0m Proxying [GET /status] to [GET http://127.0.0.1:8100/status] with no body
[38;5;172m[f8b2dc49][0m[38;5;84m[iProxy@00008110:8100][0m Connection was refused to port 8100
[38;5;187m[984cc2c1][0m[38;5;85m[XCUITestDriver@d01a][0m socket hang up
[38;5;172m[f76c7047][0m[38;5;41m[XCUITestDriver@e2c2][0m Matched '/status' to command name 'getStatus'
[38;5;172m[f76c7047][0m[38;5;41m[XCUITestDriver@e2c2][0m Proxying [GET /status] to [GET http://127.0.0.1:8100/status] with no body
[38;5;172m[f8b2dc49][0m[38;5;84m[iProxy@00008110:8100][0m Connection was refused to port 8100
[38;5;172m[f76c7047][0m[38;5;41m[XCUITestDriver@e2c2][0m socket hang up
[38;5;46m[8bf26d97][0m[38;5;79m[XCUITestDriver@9e24][0m Matched '/status' to command name 'getStatus'
[38;5;46m[8bf26d97][0m[38;5;79m[XCUITestDriver@9e24][0m Proxying [GET /status] to [GET http://127.0.0.1:8100/status] with no body
[38;5;172m[f8b2dc49][0m[38;5;84m[iProxy@00008110:8100][0m Connection was refused to port 8100
[38;5;46m[8bf26d97][0m[38;5;79m[XCUITestDriver@9e24][0m socket hang up
[38;5;172m[f8b2dc49][0m[38;5;221m[XCUITestDriver@1ec7][0m Matched '/status' to command name 'getStatus'
[38;5;172m[f8b2dc49][0m[38;5;221m[XCUITestDriver@1ec7][0m Proxying [GET /status] to [GET http://127.0.0.1:8100/status] with no body
[38;5;172m[f8b2dc49][0m[38;5;84m[iProxy@00008110:8100][0m Connection was refused to port 8100
[38;5;172m[f8b2dc49][0m[38;5;221m[XCUITestDriver@1ec7][0m socket hang up
[38;5;187m[984cc2c1][0m[38;5;85m[XCUITestDriver@d01a][0m Matched '/status' to command name 'getStatus'
[38;5;187m[984cc2c1][0m[38;5;85m[XCUITestDriver@d01a][0m Proxying [GET /status] to [GET http://127.0.0.1:8100/status] with no body
[38;5;172m[f8b2dc49][0m[38;5;84m[iProxy@00008110:8100][0m Connection was refused to port 8100
[38;5;187m[984cc2c1][0m[38;5;85m[XCUITestDriver@d01a][0m socket hang up
[38;5;172m[f76c7047][0m[38;5;41m[XCUITestDriver@e2c2][0m Matched '/status' to command name 'getStatus'
[38;5;172m[f76c7047][0m[38;5;41m[XCUITestDriver@e2c2][0m Proxying [GET /status] to [GET http://127.0.0.1:8100/status] with no body
[38;5;172m[f8b2dc49][0m[38;5;84m[iProxy@00008110:8100][0m Connection was refused to port 8100
[38;5;172m[f76c7047][0m[38;5;41m[XCUITestDriver@e2c2][0m socket hang up
[38;5;46m[8bf26d97][0m[38;5;79m[XCUITestDriver@9e24][0m Matched '/status' to command name 'getStatus'
[38;5;46m[8bf26d97][0m[38;5;79m[XCUITestDriver@9e24][0m Proxying [GET /status] to [GET http://127.0.0.1:8100/status] with no body
[38;5;172m[f8b2dc49][0m[38;5;84m[iProxy@00008110:8100][0m Connection was refused to port 8100
[38;5;46m[8bf26d97][0m[38;5;79m[XCUITestDriver@9e24][0m socket hang up
[38;5;172m[f8b2dc49][0m[38;5;221m[XCUITestDriver@1ec7][0m Matched '/status' to command name 'getStatus'
[38;5;172m[f8b2dc49][0m[38;5;221m[XCUITestDriver@1ec7][0m Proxying [GET /status] to [GET http://127.0.0.1:8100/status] with no body
[38;5;172m[f8b2dc49][0m[38;5;84m[iProxy@00008110:8100][0m Connection was refused to port 8100
[38;5;172m[f8b2dc49][0m[38;5;221m[XCUITestDriver@1ec7][0m socket hang up
[38;5;187m[984cc2c1][0m[38;5;85m[XCUITestDriver@d01a][0m Matched '/status' to command name 'getStatus'
[38;5;187m[984cc2c1][0m[38;5;85m[XCUITestDriver@d01a][0m Proxying [GET /status] to [GET http://127.0.0.1:8100/status] with no body
[38;5;172m[f8b2dc49][0m[38;5;84m[iProxy@00008110:8100][0m Connection was refused to port 8100
[38;5;187m[984cc2c1][0m[38;5;85m[XCUITestDriver@d01a][0m socket hang up
[38;5;172m[f76c7047][0m[38;5;41m[XCUITestDriver@e2c2][0m Matched '/status' to command name 'getStatus'
[38;5;172m[f76c7047][0m[38;5;41m[XCUITestDriver@e2c2][0m Proxying [GET /status] to [GET http://127.0.0.1:8100/status] with no body
[38;5;172m[f8b2dc49][0m[38;5;84m[iProxy@00008110:8100][0m Connection was refused to port 8100
[38;5;172m[f76c7047][0m[38;5;41m[XCUITestDriver@e2c2][0m socket hang up
[38;5;46m[8bf26d97][0m[38;5;79m[XCUITestDriver@9e24][0m Matched '/status' to command name 'getStatus'
[38;5;46m[8bf26d97][0m[38;5;79m[XCUITestDriver@9e24][0m Proxying [GET /status] to [GET http://127.0.0.1:8100/status] with no body
[38;5;172m[f8b2dc49][0m[38;5;84m[iProxy@00008110:8100][0m Connection was refused to port 8100
[38;5;46m[8bf26d97][0m[38;5;79m[XCUITestDriver@9e24][0m socket hang up
[38;5;172m[f8b2dc49][0m[38;5;221m[XCUITestDriver@1ec7][0m Matched '/status' to command name 'getStatus'
[38;5;172m[f8b2dc49][0m[38;5;221m[XCUITestDriver@1ec7][0m Proxying [GET /status] to [GET http://127.0.0.1:8100/status] with no body
[38;5;172m[f8b2dc49][0m[38;5;84m[iProxy@00008110:8100][0m Connection was refused to port 8100
[38;5;172m[f8b2dc49][0m[38;5;221m[XCUITestDriver@1ec7][0m socket hang up
[38;5;187m[984cc2c1][0m[38;5;85m[XCUITestDriver@d01a][0m Matched '/status' to command name 'getStatus'
[38;5;187m[984cc2c1][0m[38;5;85m[XCUITestDriver@d01a][0m Proxying [GET /status] to [GET http://127.0.0.1:8100/status] with no body
[38;5;172m[f8b2dc49][0m[38;5;84m[iProxy@00008110:8100][0m Connection was refused to port 8100
[38;5;172m[f76c7047][0m[38;5;41m[XCUITestDriver@e2c2][0m Matched '/status' to command name 'getStatus'
[38;5;172m[f76c7047][0m[38;5;41m[XCUITestDriver@e2c2][0m Proxying [GET /status] to [GET http://127.0.0.1:8100/status] with no body
[38;5;187m[984cc2c1][0m[38;5;85m[XCUITestDriver@d01a][0m socket hang up
[38;5;172m[f8b2dc49][0m[38;5;84m[iProxy@00008110:8100][0m Connection was refused to port 8100
[38;5;172m[f76c7047][0m[38;5;41m[XCUITestDriver@e2c2][0m socket hang up
[38;5;46m[8bf26d97][0m[38;5;79m[XCUITestDriver@9e24][0m Matched '/status' to command name 'getStatus'
[38;5;46m[8bf26d97][0m[38;5;79m[XCUITestDriver@9e24][0m Proxying [GET /status] to [GET http://127.0.0.1:8100/status] with no body
[38;5;172m[f8b2dc49][0m[38;5;84m[iProxy@00008110:8100][0m Connection was refused to port 8100
[38;5;46m[8bf26d97][0m[38;5;79m[XCUITestDriver@9e24][0m socket hang up
[38;5;172m[f8b2dc49][0m[38;5;221m[XCUITestDriver@1ec7][0m Matched '/status' to command name 'getStatus'
[38;5;172m[f8b2dc49][0m[38;5;221m[XCUITestDriver@1ec7][0m Proxying [GET /status] to [GET http://127.0.0.1:8100/status] with no body
[38;5;172m[f8b2dc49][0m[38;5;84m[iProxy@00008110:8100][0m Connection was refused to port 8100
[38;5;172m[f8b2dc49][0m[38;5;221m[XCUITestDriver@1ec7][0m socket hang up
[38;5;187m[984cc2c1][0m[38;5;85m[XCUITestDriver@d01a][0m Matched '/status' to command name 'getStatus'
[38;5;187m[984cc2c1][0m[38;5;85m[XCUITestDriver@d01a][0m Proxying [GET /status] to [GET http://127.0.0.1:8100/status] with no body
[38;5;172m[f76c7047][0m[38;5;41m[XCUITestDriver@e2c2][0m Matched '/status' to command name 'getStatus'
[38;5;172m[f76c7047][0m[38;5;41m[XCUITestDriver@e2c2][0m Proxying [GET /status] to [GET http://127.0.0.1:8100/status] with no body
[38;5;172m[f8b2dc49][0m[38;5;84m[iProxy@00008110:8100][0m Connection was refused to port 8100
[38;5;187m[984cc2c1][0m[38;5;85m[XCUITestDriver@d01a][0m socket hang up
[38;5;172m[f8b2dc49][0m[38;5;84m[iProxy@00008110:8100][0m Connection was refused to port 8100
[38;5;172m[f76c7047][0m[38;5;41m[XCUITestDriver@e2c2][0m socket hang up
[38;5;46m[8bf26d97][0m[38;5;79m[XCUITestDriver@9e24][0m Matched '/status' to command name 'getStatus'
[38;5;46m[8bf26d97][0m[38;5;79m[XCUITestDriver@9e24][0m Proxying [GET /status] to [GET http://127.0.0.1:8100/status] with no body
[38;5;172m[f8b2dc49][0m[38;5;84m[iProxy@00008110:8100][0m Connection was refused to port 8100
[38;5;46m[8bf26d97][0m[38;5;79m[XCUITestDriver@9e24][0m socket hang up
[38;5;172m[f8b2dc49][0m[38;5;221m[XCUITestDriver@1ec7][0m Matched '/status' to command name 'getStatus'
[38;5;172m[f8b2dc49][0m[38;5;221m[XCUITestDriver@1ec7][0m Proxying [GET /status] to [GET http://127.0.0.1:8100/status] with no body
[38;5;172m[f8b2dc49][0m[38;5;84m[iProxy@00008110:8100][0m Connection was refused to port 8100
[38;5;172m[f8b2dc49][0m[38;5;221m[XCUITestDriver@1ec7][0m socket hang up
[38;5;187m[984cc2c1][0m[38;5;85m[XCUITestDriver@d01a][0m Matched '/status' to command name 'getStatus'
[38;5;187m[984cc2c1][0m[38;5;85m[XCUITestDriver@d01a][0m Proxying [GET /status] to [GET http://127.0.0.1:8100/status] with no body
[38;5;172m[f76c7047][0m[38;5;41m[XCUITestDriver@e2c2][0m Matched '/status' to command name 'getStatus'
[38;5;172m[f76c7047][0m[38;5;41m[XCUITestDriver@e2c2][0m Proxying [GET /status] to [GET http://127.0.0.1:8100/status] with no body
[38;5;172m[f8b2dc49][0m[38;5;84m[iProxy@00008110:8100][0m Connection was refused to port 8100
[38;5;187m[984cc2c1][0m[38;5;85m[XCUITestDriver@d01a][0m socket hang up
[38;5;172m[f8b2dc49][0m[38;5;84m[iProxy@00008110:8100][0m Connection was refused to port 8100
[38;5;172m[f76c7047][0m[38;5;41m[XCUITestDriver@e2c2][0m socket hang up
[38;5;46m[8bf26d97][0m[38;5;79m[XCUITestDriver@9e24][0m Matched '/status' to command name 'getStatus'
[38;5;46m[8bf26d97][0m[38;5;79m[XCUITestDriver@9e24][0m Proxying [GET /status] to [GET http://127.0.0.1:8100/status] with no body
[38;5;172m[f8b2dc49][0m[38;5;84m[iProxy@00008110:8100][0m Connection was refused to port 8100
[38;5;46m[8bf26d97][0m[38;5;79m[XCUITestDriver@9e24][0m socket hang up
[38;5;172m[f8b2dc49][0m[38;5;221m[XCUITestDriver@1ec7][0m Matched '/status' to command name 'getStatus'
[38;5;172m[f8b2dc49][0m[38;5;221m[XCUITestDriver@1ec7][0m Proxying [GET /status] to [GET http://127.0.0.1:8100/status] with no body
[38;5;172m[f8b2dc49][0m[38;5;84m[iProxy@00008110:8100][0m Connection was refused to port 8100
[38;5;172m[f8b2dc49][0m[38;5;221m[XCUITestDriver@1ec7][0m socket hang up
[38;5;187m[984cc2c1][0m[38;5;85m[XCUITestDriver@d01a][0m Matched '/status' to command name 'getStatus'
[38;5;187m[984cc2c1][0m[38;5;85m[XCUITestDriver@d01a][0m Proxying [GET /status] to [GET http://127.0.0.1:8100/status] with no body
[38;5;172m[f76c7047][0m[38;5;41m[XCUITestDriver@e2c2][0m Matched '/status' to command name 'getStatus'
[38;5;172m[f76c7047][0m[38;5;41m[XCUITestDriver@e2c2][0m Proxying [GET /status] to [GET http://127.0.0.1:8100/status] with no body
[38;5;172m[f8b2dc49][0m[38;5;84m[iProxy@00008110:8100][0m Connection was refused to port 8100
[38;5;187m[984cc2c1][0m[38;5;85m[XCUITestDriver@d01a][0m socket hang up
[38;5;172m[f8b2dc49][0m[38;5;84m[iProxy@00008110:8100][0m Connection was refused to port 8100
[38;5;172m[f76c7047][0m[38;5;41m[XCUITestDriver@e2c2][0m socket hang up
[38;5;46m[8bf26d97][0m[38;5;79m[XCUITestDriver@9e24][0m Matched '/status' to command name 'getStatus'
[38;5;46m[8bf26d97][0m[38;5;79m[XCUITestDriver@9e24][0m Proxying [GET /status] to [GET http://127.0.0.1:8100/status] with no body
[38;5;172m[f8b2dc49][0m[38;5;84m[iProxy@00008110:8100][0m Connection was refused to port 8100
[38;5;46m[8bf26d97][0m[38;5;79m[XCUITestDriver@9e24][0m socket hang up
[38;5;172m[f8b2dc49][0m[38;5;221m[XCUITestDriver@1ec7][0m Matched '/status' to command name 'getStatus'
[38;5;172m[f8b2dc49][0m[38;5;221m[XCUITestDriver@1ec7][0m Proxying [GET /status] to [GET http://127.0.0.1:8100/status] with no body
[38;5;172m[f8b2dc49][0m[38;5;84m[iProxy@00008110:8100][0m Connection was refused to port 8100
[38;5;172m[f8b2dc49][0m[38;5;221m[XCUITestDriver@1ec7][0m socket hang up
[38;5;187m[984cc2c1][0m[38;5;85m[XCUITestDriver@d01a][0m Matched '/status' to command name 'getStatus'
[38;5;187m[984cc2c1][0m[38;5;85m[XCUITestDriver@d01a][0m Proxying [GET /status] to [GET http://127.0.0.1:8100/status] with no body
[38;5;172m[f76c7047][0m[38;5;41m[XCUITestDriver@e2c2][0m Matched '/status' to command name 'getStatus'
[38;5;172m[f76c7047][0m[38;5;41m[XCUITestDriver@e2c2][0m Proxying [GET /status] to [GET http://127.0.0.1:8100/status] with no body
[38;5;172m[f8b2dc49][0m[38;5;84m[iProxy@00008110:8100][0m Connection was refused to port 8100
[38;5;187m[984cc2c1][0m[38;5;85m[XCUITestDriver@d01a][0m socket hang up
[38;5;172m[f8b2dc49][0m[38;5;84m[iProxy@00008110:8100][0m Connection was refused to port 8100
[38;5;172m[f76c7047][0m[38;5;41m[XCUITestDriver@e2c2][0m socket hang up
[38;5;46m[8bf26d97][0m[38;5;79m[XCUITestDriver@9e24][0m Matched '/status' to command name 'getStatus'
[38;5;46m[8bf26d97][0m[38;5;79m[XCUITestDriver@9e24][0m Proxying [GET /status] to [GET http://127.0.0.1:8100/status] with no body
[38;5;172m[f8b2dc49][0m[38;5;84m[iProxy@00008110:8100][0m Connection was refused to port 8100
[38;5;46m[8bf26d97][0m[38;5;79m[XCUITestDriver@9e24][0m socket hang up
[38;5;172m[f8b2dc49][0m[38;5;221m[XCUITestDriver@1ec7][0m Matched '/status' to command name 'getStatus'
[38;5;172m[f8b2dc49][0m[38;5;221m[XCUITestDriver@1ec7][0m Proxying [GET /status] to [GET http://127.0.0.1:8100/status] with no body
[38;5;172m[f8b2dc49][0m[38;5;84m[iProxy@00008110:8100][0m Connection was refused to port 8100
[38;5;172m[f8b2dc49][0m[38;5;221m[XCUITestDriver@1ec7][0m socket hang up
[38;5;187m[984cc2c1][0m[38;5;85m[XCUITestDriver@d01a][0m Matched '/status' to command name 'getStatus'
[38;5;187m[984cc2c1][0m[38;5;85m[XCUITestDriver@d01a][0m Proxying [GET /status] to [GET http://127.0.0.1:8100/status] with no body
[38;5;172m[f76c7047][0m[38;5;41m[XCUITestDriver@e2c2][0m Matched '/status' to command name 'getStatus'
[38;5;172m[f76c7047][0m[38;5;41m[XCUITestDriver@e2c2][0m Proxying [GET /status] to [GET http://127.0.0.1:8100/status] with no body
[38;5;172m[f8b2dc49][0m[38;5;84m[iProxy@00008110:8100][0m Connection was refused to port 8100
[38;5;187m[984cc2c1][0m[38;5;85m[XCUITestDriver@d01a][0m socket hang up
[38;5;172m[f8b2dc49][0m[38;5;84m[iProxy@00008110:8100][0m Connection was refused to port 8100
[38;5;172m[f76c7047][0m[38;5;41m[XCUITestDriver@e2c2][0m socket hang up
[38;5;46m[8bf26d97][0m[38;5;79m[XCUITestDriver@9e24][0m Matched '/status' to command name 'getStatus'
[38;5;46m[8bf26d97][0m[38;5;79m[XCUITestDriver@9e24][0m Proxying [GET /status] to [GET http://127.0.0.1:8100/status] with no body
[38;5;172m[f8b2dc49][0m[38;5;84m[iProxy@00008110:8100][0m Connection was refused to port 8100
[38;5;46m[8bf26d97][0m[38;5;79m[XCUITestDriver@9e24][0m socket hang up
[38;5;172m[f8b2dc49][0m[38;5;221m[XCUITestDriver@1ec7][0m Matched '/status' to command name 'getStatus'
[38;5;172m[f8b2dc49][0m[38;5;221m[XCUITestDriver@1ec7][0m Proxying [GET /status] to [GET http://127.0.0.1:8100/status] with no body
[38;5;172m[f8b2dc49][0m[38;5;84m[iProxy@00008110:8100][0m Connection was refused to port 8100
[38;5;172m[f8b2dc49][0m[38;5;221m[XCUITestDriver@1ec7][0m socket hang up
[38;5;187m[984cc2c1][0m[38;5;85m[XCUITestDriver@d01a][0m Matched '/status' to command name 'getStatus'
[38;5;187m[984cc2c1][0m[38;5;85m[XCUITestDriver@d01a][0m Proxying [GET /status] to [GET http://127.0.0.1:8100/status] with no body
[38;5;172m[f76c7047][0m[38;5;41m[XCUITestDriver@e2c2][0m Matched '/status' to command name 'getStatus'
[38;5;172m[f76c7047][0m[38;5;41m[XCUITestDriver@e2c2][0m Proxying [GET /status] to [GET http://127.0.0.1:8100/status] with no body