-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathwdio-output12.txt
More file actions
2739 lines (2726 loc) · 642 KB
/
Copy pathwdio-output12.txt
File metadata and controls
2739 lines (2726 loc) · 642 KB
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
2026-03-14T23:24:49.951Z INFO @wdio/cli:launcher: Run onPrepare hook
Stopped com.android.bluetooth
Stopped com.google.android.apps.wellbeing
Stopped com.google.android.settings.intelligence
Execution of 2 workers started at 2026-03-14T23:24:50.575Z
2026-03-14T23:24:50.579Z INFO @wdio/cli:launcher: Run onWorkerStart hook
2026-03-14T23:24:50.579Z INFO @wdio/xvfb: XvfbManager.init() called
2026-03-14T23:24:50.580Z INFO @wdio/xvfb: Xvfb not needed on current platform
2026-03-14T23:24:50.581Z INFO @wdio/local-runner: Start worker 0-0 with arg: run config/wdio.android.conf.ts
2026-03-14T23:24:50.664Z INFO @wdio/xvfb:ProcessFactory: xvfb-run not found, falling back to regular fork
2026-03-14T23:24:50.665Z INFO @wdio/xvfb:ProcessFactory: ProcessFactory: shouldRun=false, isAvailable=false
2026-03-14T23:24:50.665Z INFO @wdio/xvfb:ProcessFactory: Creating worker process with regular fork
[0-0] 2026-03-14T23:24:58.431Z INFO @wdio/local-runner: Run worker command: run
[0-0] RUNNING in Android(16) on Android - file:///D:/mobile-automation-appium-webdriverio/tests/sample.spec.ts
[0-0] 2026-03-14T23:25:02.689Z INFO webdriver: Initiate new session using the WebDriver protocol
[0-0] 2026-03-14T23:25:02.689Z INFO @wdio/utils: Connecting to existing driver at http://localhost:4723/
[0-0] 2026-03-14T23:25:02.702Z INFO webdriver: [POST] http://localhost:4723/session
[0-0] Test executed
[0-0] 2026-03-14T23:26:13.594Z INFO webdriver: COMMAND deleteSession()
[0-0] 2026-03-14T23:26:13.597Z INFO webdriver: [DELETE] http://localhost:4723/session/065f9552-5241-45c4-8098-5e3e08f325fd
[0-0] 2026-03-14T23:26:18.569Z INFO webdriver: RESULT null
[0-0] PASSED in Android(16) on Android - file:///D:/mobile-automation-appium-webdriverio/tests/sample.spec.ts
2026-03-14T23:26:18.807Z INFO @wdio/cli:launcher: Run onWorkerEnd hook
2026-03-14T23:26:18.810Z INFO @wdio/cli:launcher: Run onWorkerStart hook
2026-03-14T23:26:18.814Z INFO @wdio/local-runner: Start worker 0-1 with arg: run config/wdio.android.conf.ts
2026-03-14T23:26:18.996Z INFO @wdio/xvfb:ProcessFactory: xvfb-run not found, falling back to regular fork
2026-03-14T23:26:18.996Z INFO @wdio/xvfb:ProcessFactory: ProcessFactory: shouldRun=false, isAvailable=false
2026-03-14T23:26:18.997Z INFO @wdio/xvfb:ProcessFactory: Creating worker process with regular fork
[0-1] 2026-03-14T23:26:45.135Z INFO @wdio/local-runner: Run worker command: run
[0-1] RUNNING in Android(16) on Android - file:///D:/mobile-automation-appium-webdriverio/tests/search.spec.ts
[0-1] 2026-03-14T23:26:50.997Z INFO webdriver: Initiate new session using the WebDriver protocol
[0-1] 2026-03-14T23:26:50.997Z INFO @wdio/utils: Connecting to existing driver at http://localhost:4723/
[0-1] 2026-03-14T23:26:51.017Z INFO webdriver: [POST] http://localhost:4723/session
[0-1] 2026-03-14T23:27:35.512Z INFO webdriver: COMMAND executeScript("mobile: terminateApp", <object>)
[0-1] 2026-03-14T23:27:35.528Z INFO webdriver: [POST] http://localhost:4723/session/5e1c025e-ba73-4463-bbd3-870b8e35b18d/execute/sync
[0-1] 2026-03-14T23:27:35.535Z INFO webdriver: DATA {"script":"mobile: terminateApp","args":[{"appId":"org.wikipedia.alpha"}]}
[0-1] 2026-03-14T23:27:42.823Z INFO webdriver: RESULT true
[0-1] 2026-03-14T23:27:43.840Z INFO webdriver: COMMAND executeScript("mobile: activateApp", <object>)
[0-1] 2026-03-14T23:27:43.844Z INFO webdriver: [POST] http://localhost:4723/session/5e1c025e-ba73-4463-bbd3-870b8e35b18d/execute/sync
[0-1] 2026-03-14T23:27:43.844Z INFO webdriver: DATA {"script":"mobile: activateApp","args":[{"appId":"org.wikipedia.alpha"}]}
[0-1] 2026-03-14T23:27:45.400Z INFO webdriver: RESULT null
[0-1] 2026-03-14T23:27:48.411Z INFO webdriver: COMMAND findElement("-android uiautomator", "new UiSelector().resourceId("android:id/aerr_close")")
[0-1] 2026-03-14T23:27:48.414Z INFO webdriver: [POST] http://localhost:4723/session/5e1c025e-ba73-4463-bbd3-870b8e35b18d/element
[0-1] 2026-03-14T23:27:48.415Z INFO webdriver: DATA {"using":"-android uiautomator","value":"new UiSelector().resourceId(\"android:id/aerr_close\")"}
[0-1] 2026-03-14T23:27:55.937Z INFO webdriver: RESULT {
[0-1] error: 'no such element',
[0-1] message: 'An element could not be located on the page using the given search parameters.',
[0-1] stacktrace: 'NoSuchElementError: An element could not be located on the page using the given search parameters.\n' +
[0-1] ' at AndroidUiautomator2Driver.findElOrEls (D:\\mobile-automation-appium-webdriverio\\.appium\\node_modules\\appium-uiautomator2-driver\\node_modules\\appium-android-driver\\build\\lib\\commands\\find.js:62:15)\n' +
[0-1] ' at process.processTicksAndRejections (node:internal/process/task_queues:104:5)\n' +
[0-1] ' at async AndroidUiautomator2Driver.findElOrElsWithProcessing (D:\\mobile-automation-appium-webdriverio\\.appium\\node_modules\\@appium\\base-driver\\build\\lib\\basedriver\\commands\\find.js:12:16)\n' +
[0-1] ' at async AndroidUiautomator2Driver.findElement (D:\\mobile-automation-appium-webdriverio\\.appium\\node_modules\\@appium\\base-driver\\build\\lib\\basedriver\\commands\\find.js:27:16)'
[0-1] }
[0-1] 2026-03-14T23:27:55.959Z INFO webdriver: COMMAND findElements("-android uiautomator", "new UiSelector().resourceId("android:id/aerr_close")")
[0-1] 2026-03-14T23:27:55.960Z INFO webdriver: [POST] http://localhost:4723/session/5e1c025e-ba73-4463-bbd3-870b8e35b18d/elements
[0-1] 2026-03-14T23:27:55.960Z INFO webdriver: DATA {"using":"-android uiautomator","value":"new UiSelector().resourceId(\"android:id/aerr_close\")"}
[0-1] 2026-03-14T23:27:56.675Z INFO webdriver: RESULT []
[0-1] 2026-03-14T23:27:56.681Z INFO webdriver: COMMAND findElement("-android uiautomator", "new UiSelector().resourceId("android:id/aerr_wait")")
[0-1] 2026-03-14T23:27:56.682Z INFO webdriver: [POST] http://localhost:4723/session/5e1c025e-ba73-4463-bbd3-870b8e35b18d/element
[0-1] 2026-03-14T23:27:56.682Z INFO webdriver: DATA {"using":"-android uiautomator","value":"new UiSelector().resourceId(\"android:id/aerr_wait\")"}
[0-1] 2026-03-14T23:27:56.868Z INFO webdriver: RESULT {
[0-1] error: 'no such element',
[0-1] message: 'An element could not be located on the page using the given search parameters.',
[0-1] stacktrace: 'NoSuchElementError: An element could not be located on the page using the given search parameters.\n' +
[0-1] ' at AndroidUiautomator2Driver.findElOrEls (D:\\mobile-automation-appium-webdriverio\\.appium\\node_modules\\appium-uiautomator2-driver\\node_modules\\appium-android-driver\\build\\lib\\commands\\find.js:62:15)\n' +
[0-1] ' at process.processTicksAndRejections (node:internal/process/task_queues:104:5)\n' +
[0-1] ' at async AndroidUiautomator2Driver.findElOrElsWithProcessing (D:\\mobile-automation-appium-webdriverio\\.appium\\node_modules\\@appium\\base-driver\\build\\lib\\basedriver\\commands\\find.js:12:16)\n' +
[0-1] ' at async AndroidUiautomator2Driver.findElement (D:\\mobile-automation-appium-webdriverio\\.appium\\node_modules\\@appium\\base-driver\\build\\lib\\basedriver\\commands\\find.js:27:16)'
[0-1] }
[0-1] 2026-03-14T23:27:56.874Z INFO webdriver: COMMAND findElements("-android uiautomator", "new UiSelector().resourceId("android:id/aerr_wait")")
[0-1] 2026-03-14T23:27:56.875Z INFO webdriver: [POST] http://localhost:4723/session/5e1c025e-ba73-4463-bbd3-870b8e35b18d/elements
[0-1] 2026-03-14T23:27:56.876Z INFO webdriver: DATA {"using":"-android uiautomator","value":"new UiSelector().resourceId(\"android:id/aerr_wait\")"}
[0-1] 2026-03-14T23:27:57.365Z INFO webdriver: RESULT []
[0-1] 2026-03-14T23:27:57.369Z INFO webdriver: COMMAND findElement("-android uiautomator", "new UiSelector().resourceId("android:id/button2")")
[0-1] 2026-03-14T23:27:57.369Z INFO webdriver: [POST] http://localhost:4723/session/5e1c025e-ba73-4463-bbd3-870b8e35b18d/element
[0-1] 2026-03-14T23:27:57.370Z INFO webdriver: DATA {"using":"-android uiautomator","value":"new UiSelector().resourceId(\"android:id/button2\")"}
[0-1] 2026-03-14T23:27:57.599Z INFO webdriver: RESULT {
[0-1] error: 'no such element',
[0-1] message: 'An element could not be located on the page using the given search parameters.',
[0-1] stacktrace: 'NoSuchElementError: An element could not be located on the page using the given search parameters.\n' +
[0-1] ' at AndroidUiautomator2Driver.findElOrEls (D:\\mobile-automation-appium-webdriverio\\.appium\\node_modules\\appium-uiautomator2-driver\\node_modules\\appium-android-driver\\build\\lib\\commands\\find.js:62:15)\n' +
[0-1] ' at process.processTicksAndRejections (node:internal/process/task_queues:104:5)\n' +
[0-1] ' at async AndroidUiautomator2Driver.findElOrElsWithProcessing (D:\\mobile-automation-appium-webdriverio\\.appium\\node_modules\\@appium\\base-driver\\build\\lib\\basedriver\\commands\\find.js:12:16)\n' +
[0-1] ' at async AndroidUiautomator2Driver.findElement (D:\\mobile-automation-appium-webdriverio\\.appium\\node_modules\\@appium\\base-driver\\build\\lib\\basedriver\\commands\\find.js:27:16)'
[0-1] }
[0-1] 2026-03-14T23:27:57.603Z INFO webdriver: COMMAND findElements("-android uiautomator", "new UiSelector().resourceId("android:id/button2")")
[0-1] 2026-03-14T23:27:57.604Z INFO webdriver: [POST] http://localhost:4723/session/5e1c025e-ba73-4463-bbd3-870b8e35b18d/elements
[0-1] 2026-03-14T23:27:57.604Z INFO webdriver: DATA {"using":"-android uiautomator","value":"new UiSelector().resourceId(\"android:id/button2\")"}
[0-1] 2026-03-14T23:27:57.835Z INFO webdriver: RESULT []
[0-1] 2026-03-14T23:27:57.837Z INFO webdriver: COMMAND findElement("-android uiautomator", "new UiSelector().resourceId("android:id/button1")")
[0-1] 2026-03-14T23:27:57.837Z INFO webdriver: [POST] http://localhost:4723/session/5e1c025e-ba73-4463-bbd3-870b8e35b18d/element
[0-1] 2026-03-14T23:27:57.837Z INFO webdriver: DATA {"using":"-android uiautomator","value":"new UiSelector().resourceId(\"android:id/button1\")"}
[0-1] 2026-03-14T23:27:57.986Z INFO webdriver: RESULT {
[0-1] error: 'no such element',
[0-1] message: 'An element could not be located on the page using the given search parameters.',
[0-1] stacktrace: 'NoSuchElementError: An element could not be located on the page using the given search parameters.\n' +
[0-1] ' at AndroidUiautomator2Driver.findElOrEls (D:\\mobile-automation-appium-webdriverio\\.appium\\node_modules\\appium-uiautomator2-driver\\node_modules\\appium-android-driver\\build\\lib\\commands\\find.js:62:15)\n' +
[0-1] ' at process.processTicksAndRejections (node:internal/process/task_queues:104:5)\n' +
[0-1] ' at async AndroidUiautomator2Driver.findElOrElsWithProcessing (D:\\mobile-automation-appium-webdriverio\\.appium\\node_modules\\@appium\\base-driver\\build\\lib\\basedriver\\commands\\find.js:12:16)\n' +
[0-1] ' at async AndroidUiautomator2Driver.findElement (D:\\mobile-automation-appium-webdriverio\\.appium\\node_modules\\@appium\\base-driver\\build\\lib\\basedriver\\commands\\find.js:27:16)'
[0-1] }
[0-1] 2026-03-14T23:27:57.990Z INFO webdriver: COMMAND findElements("-android uiautomator", "new UiSelector().resourceId("android:id/button1")")
[0-1] 2026-03-14T23:27:57.991Z INFO webdriver: [POST] http://localhost:4723/session/5e1c025e-ba73-4463-bbd3-870b8e35b18d/elements
[0-1] 2026-03-14T23:27:57.991Z INFO webdriver: DATA {"using":"-android uiautomator","value":"new UiSelector().resourceId(\"android:id/button1\")"}
[0-1] 2026-03-14T23:27:58.079Z INFO webdriver: RESULT []
[0-1] 2026-03-14T23:27:58.080Z INFO webdriver: COMMAND findElement("-android uiautomator", "new UiSelector().resourceId("org.wikipedia.alpha:id/closeButton")")
[0-1] 2026-03-14T23:27:58.080Z INFO webdriver: [POST] http://localhost:4723/session/5e1c025e-ba73-4463-bbd3-870b8e35b18d/element
[0-1] 2026-03-14T23:27:58.080Z INFO webdriver: DATA {"using":"-android uiautomator","value":"new UiSelector().resourceId(\"org.wikipedia.alpha:id/closeButton\")"}
[0-1] 2026-03-14T23:27:58.243Z INFO webdriver: RESULT {
[0-1] error: 'no such element',
[0-1] message: 'An element could not be located on the page using the given search parameters.',
[0-1] stacktrace: 'NoSuchElementError: An element could not be located on the page using the given search parameters.\n' +
[0-1] ' at AndroidUiautomator2Driver.findElOrEls (D:\\mobile-automation-appium-webdriverio\\.appium\\node_modules\\appium-uiautomator2-driver\\node_modules\\appium-android-driver\\build\\lib\\commands\\find.js:62:15)\n' +
[0-1] ' at process.processTicksAndRejections (node:internal/process/task_queues:104:5)\n' +
[0-1] ' at async AndroidUiautomator2Driver.findElOrElsWithProcessing (D:\\mobile-automation-appium-webdriverio\\.appium\\node_modules\\@appium\\base-driver\\build\\lib\\basedriver\\commands\\find.js:12:16)\n' +
[0-1] ' at async AndroidUiautomator2Driver.findElement (D:\\mobile-automation-appium-webdriverio\\.appium\\node_modules\\@appium\\base-driver\\build\\lib\\basedriver\\commands\\find.js:27:16)'
[0-1] }
[0-1] 2026-03-14T23:27:58.245Z INFO webdriver: COMMAND findElements("-android uiautomator", "new UiSelector().resourceId("org.wikipedia.alpha:id/closeButton")")
[0-1] 2026-03-14T23:27:58.246Z INFO webdriver: [POST] http://localhost:4723/session/5e1c025e-ba73-4463-bbd3-870b8e35b18d/elements
[0-1] 2026-03-14T23:27:58.246Z INFO webdriver: DATA {"using":"-android uiautomator","value":"new UiSelector().resourceId(\"org.wikipedia.alpha:id/closeButton\")"}
[0-1] 2026-03-14T23:27:58.336Z INFO webdriver: RESULT []
[0-1] 2026-03-14T23:27:58.337Z INFO webdriver: COMMAND findElement("-android uiautomator", "new UiSelector().resourceId("org.wikipedia.alpha:id/negativeButton")")
[0-1] 2026-03-14T23:27:58.338Z INFO webdriver: [POST] http://localhost:4723/session/5e1c025e-ba73-4463-bbd3-870b8e35b18d/element
[0-1] 2026-03-14T23:27:58.338Z INFO webdriver: DATA {"using":"-android uiautomator","value":"new UiSelector().resourceId(\"org.wikipedia.alpha:id/negativeButton\")"}
[0-1] 2026-03-14T23:27:58.514Z INFO webdriver: RESULT {
[0-1] error: 'no such element',
[0-1] message: 'An element could not be located on the page using the given search parameters.',
[0-1] stacktrace: 'NoSuchElementError: An element could not be located on the page using the given search parameters.\n' +
[0-1] ' at AndroidUiautomator2Driver.findElOrEls (D:\\mobile-automation-appium-webdriverio\\.appium\\node_modules\\appium-uiautomator2-driver\\node_modules\\appium-android-driver\\build\\lib\\commands\\find.js:62:15)\n' +
[0-1] ' at process.processTicksAndRejections (node:internal/process/task_queues:104:5)\n' +
[0-1] ' at async AndroidUiautomator2Driver.findElOrElsWithProcessing (D:\\mobile-automation-appium-webdriverio\\.appium\\node_modules\\@appium\\base-driver\\build\\lib\\basedriver\\commands\\find.js:12:16)\n' +
[0-1] ' at async AndroidUiautomator2Driver.findElement (D:\\mobile-automation-appium-webdriverio\\.appium\\node_modules\\@appium\\base-driver\\build\\lib\\basedriver\\commands\\find.js:27:16)'
[0-1] }
[0-1] 2026-03-14T23:27:58.517Z INFO webdriver: COMMAND findElements("-android uiautomator", "new UiSelector().resourceId("org.wikipedia.alpha:id/negativeButton")")
[0-1] 2026-03-14T23:27:58.517Z INFO webdriver: [POST] http://localhost:4723/session/5e1c025e-ba73-4463-bbd3-870b8e35b18d/elements
[0-1] 2026-03-14T23:27:58.517Z INFO webdriver: DATA {"using":"-android uiautomator","value":"new UiSelector().resourceId(\"org.wikipedia.alpha:id/negativeButton\")"}
[0-1] 2026-03-14T23:27:58.612Z INFO webdriver: RESULT []
[0-1] 2026-03-14T23:27:58.614Z INFO webdriver: COMMAND findElement("-android uiautomator", "new UiSelector().resourceId("org.wikipedia.alpha:id/skip_button")")
[0-1] 2026-03-14T23:27:58.614Z INFO webdriver: [POST] http://localhost:4723/session/5e1c025e-ba73-4463-bbd3-870b8e35b18d/element
[0-1] 2026-03-14T23:27:58.614Z INFO webdriver: DATA {"using":"-android uiautomator","value":"new UiSelector().resourceId(\"org.wikipedia.alpha:id/skip_button\")"}
[0-1] 2026-03-14T23:27:58.704Z INFO webdriver: RESULT {
[0-1] error: 'no such element',
[0-1] message: 'An element could not be located on the page using the given search parameters.',
[0-1] stacktrace: 'NoSuchElementError: An element could not be located on the page using the given search parameters.\n' +
[0-1] ' at AndroidUiautomator2Driver.findElOrEls (D:\\mobile-automation-appium-webdriverio\\.appium\\node_modules\\appium-uiautomator2-driver\\node_modules\\appium-android-driver\\build\\lib\\commands\\find.js:62:15)\n' +
[0-1] ' at process.processTicksAndRejections (node:internal/process/task_queues:104:5)\n' +
[0-1] ' at async AndroidUiautomator2Driver.findElOrElsWithProcessing (D:\\mobile-automation-appium-webdriverio\\.appium\\node_modules\\@appium\\base-driver\\build\\lib\\basedriver\\commands\\find.js:12:16)\n' +
[0-1] ' at async AndroidUiautomator2Driver.findElement (D:\\mobile-automation-appium-webdriverio\\.appium\\node_modules\\@appium\\base-driver\\build\\lib\\basedriver\\commands\\find.js:27:16)'
[0-1] }
[0-1] 2026-03-14T23:27:58.706Z INFO webdriver: COMMAND findElements("-android uiautomator", "new UiSelector().resourceId("org.wikipedia.alpha:id/skip_button")")
[0-1] 2026-03-14T23:27:58.707Z INFO webdriver: [POST] http://localhost:4723/session/5e1c025e-ba73-4463-bbd3-870b8e35b18d/elements
[0-1] 2026-03-14T23:27:58.707Z INFO webdriver: DATA {"using":"-android uiautomator","value":"new UiSelector().resourceId(\"org.wikipedia.alpha:id/skip_button\")"}
[0-1] 2026-03-14T23:27:58.798Z INFO webdriver: RESULT []
[0-1] 2026-03-14T23:27:58.799Z INFO webdriver: COMMAND findElement("-android uiautomator", "new UiSelector().resourceId("org.wikipedia.alpha:id/fragment_onboarding_skip_button")")
[0-1] 2026-03-14T23:27:58.800Z INFO webdriver: [POST] http://localhost:4723/session/5e1c025e-ba73-4463-bbd3-870b8e35b18d/element
[0-1] 2026-03-14T23:27:58.800Z INFO webdriver: DATA {"using":"-android uiautomator","value":"new UiSelector().resourceId(\"org.wikipedia.alpha:id/fragment_onboarding_skip_button\")"}
[0-1] 2026-03-14T23:27:58.945Z INFO webdriver: RESULT {
[0-1] error: 'no such element',
[0-1] message: 'An element could not be located on the page using the given search parameters.',
[0-1] stacktrace: 'NoSuchElementError: An element could not be located on the page using the given search parameters.\n' +
[0-1] ' at AndroidUiautomator2Driver.findElOrEls (D:\\mobile-automation-appium-webdriverio\\.appium\\node_modules\\appium-uiautomator2-driver\\node_modules\\appium-android-driver\\build\\lib\\commands\\find.js:62:15)\n' +
[0-1] ' at process.processTicksAndRejections (node:internal/process/task_queues:104:5)\n' +
[0-1] ' at async AndroidUiautomator2Driver.findElOrElsWithProcessing (D:\\mobile-automation-appium-webdriverio\\.appium\\node_modules\\@appium\\base-driver\\build\\lib\\basedriver\\commands\\find.js:12:16)\n' +
[0-1] ' at async AndroidUiautomator2Driver.findElement (D:\\mobile-automation-appium-webdriverio\\.appium\\node_modules\\@appium\\base-driver\\build\\lib\\basedriver\\commands\\find.js:27:16)'
[0-1] }
[0-1] 2026-03-14T23:27:58.948Z INFO webdriver: COMMAND findElements("-android uiautomator", "new UiSelector().resourceId("org.wikipedia.alpha:id/fragment_onboarding_skip_button")")
[0-1] 2026-03-14T23:27:58.949Z INFO webdriver: [POST] http://localhost:4723/session/5e1c025e-ba73-4463-bbd3-870b8e35b18d/elements
[0-1] 2026-03-14T23:27:58.949Z INFO webdriver: DATA {"using":"-android uiautomator","value":"new UiSelector().resourceId(\"org.wikipedia.alpha:id/fragment_onboarding_skip_button\")"}
[0-1] 2026-03-14T23:27:59.142Z INFO webdriver: RESULT []
[0-1] 2026-03-14T23:27:59.143Z INFO webdriver: COMMAND findElement("-android uiautomator", "new UiSelector().resourceId("android:id/aerr_close")")
[0-1] 2026-03-14T23:27:59.144Z INFO webdriver: [POST] http://localhost:4723/session/5e1c025e-ba73-4463-bbd3-870b8e35b18d/element
[0-1] 2026-03-14T23:27:59.144Z INFO webdriver: DATA {"using":"-android uiautomator","value":"new UiSelector().resourceId(\"android:id/aerr_close\")"}
[0-1] 2026-03-14T23:27:59.447Z INFO webdriver: RESULT {
[0-1] error: 'no such element',
[0-1] message: 'An element could not be located on the page using the given search parameters.',
[0-1] stacktrace: 'NoSuchElementError: An element could not be located on the page using the given search parameters.\n' +
[0-1] ' at AndroidUiautomator2Driver.findElOrEls (D:\\mobile-automation-appium-webdriverio\\.appium\\node_modules\\appium-uiautomator2-driver\\node_modules\\appium-android-driver\\build\\lib\\commands\\find.js:62:15)\n' +
[0-1] ' at process.processTicksAndRejections (node:internal/process/task_queues:104:5)\n' +
[0-1] ' at async AndroidUiautomator2Driver.findElOrElsWithProcessing (D:\\mobile-automation-appium-webdriverio\\.appium\\node_modules\\@appium\\base-driver\\build\\lib\\basedriver\\commands\\find.js:12:16)\n' +
[0-1] ' at async AndroidUiautomator2Driver.findElement (D:\\mobile-automation-appium-webdriverio\\.appium\\node_modules\\@appium\\base-driver\\build\\lib\\basedriver\\commands\\find.js:27:16)'
[0-1] }
[0-1] 2026-03-14T23:27:59.451Z INFO webdriver: COMMAND findElements("-android uiautomator", "new UiSelector().resourceId("android:id/aerr_close")")
[0-1] 2026-03-14T23:27:59.451Z INFO webdriver: [POST] http://localhost:4723/session/5e1c025e-ba73-4463-bbd3-870b8e35b18d/elements
[0-1] 2026-03-14T23:27:59.451Z INFO webdriver: DATA {"using":"-android uiautomator","value":"new UiSelector().resourceId(\"android:id/aerr_close\")"}
[0-1] 2026-03-14T23:28:00.409Z INFO webdriver: RESULT []
[0-1] 2026-03-14T23:28:00.413Z INFO webdriver: COMMAND findElement("-android uiautomator", "new UiSelector().resourceId("android:id/aerr_wait")")
[0-1] 2026-03-14T23:28:00.414Z INFO webdriver: [POST] http://localhost:4723/session/5e1c025e-ba73-4463-bbd3-870b8e35b18d/element
[0-1] 2026-03-14T23:28:00.414Z INFO webdriver: DATA {"using":"-android uiautomator","value":"new UiSelector().resourceId(\"android:id/aerr_wait\")"}
[0-1] 2026-03-14T23:28:00.681Z INFO webdriver: RESULT {
[0-1] error: 'no such element',
[0-1] message: 'An element could not be located on the page using the given search parameters.',
[0-1] stacktrace: 'NoSuchElementError: An element could not be located on the page using the given search parameters.\n' +
[0-1] ' at AndroidUiautomator2Driver.findElOrEls (D:\\mobile-automation-appium-webdriverio\\.appium\\node_modules\\appium-uiautomator2-driver\\node_modules\\appium-android-driver\\build\\lib\\commands\\find.js:62:15)\n' +
[0-1] ' at process.processTicksAndRejections (node:internal/process/task_queues:104:5)\n' +
[0-1] ' at async AndroidUiautomator2Driver.findElOrElsWithProcessing (D:\\mobile-automation-appium-webdriverio\\.appium\\node_modules\\@appium\\base-driver\\build\\lib\\basedriver\\commands\\find.js:12:16)\n' +
[0-1] ' at async AndroidUiautomator2Driver.findElement (D:\\mobile-automation-appium-webdriverio\\.appium\\node_modules\\@appium\\base-driver\\build\\lib\\basedriver\\commands\\find.js:27:16)'
[0-1] }
[0-1] 2026-03-14T23:28:00.686Z INFO webdriver: COMMAND findElements("-android uiautomator", "new UiSelector().resourceId("android:id/aerr_wait")")
[0-1] 2026-03-14T23:28:00.686Z INFO webdriver: [POST] http://localhost:4723/session/5e1c025e-ba73-4463-bbd3-870b8e35b18d/elements
[0-1] 2026-03-14T23:28:00.686Z INFO webdriver: DATA {"using":"-android uiautomator","value":"new UiSelector().resourceId(\"android:id/aerr_wait\")"}
[0-1] 2026-03-14T23:28:01.096Z INFO webdriver: RESULT []
[0-1] 2026-03-14T23:28:01.098Z INFO webdriver: COMMAND findElement("-android uiautomator", "new UiSelector().resourceId("android:id/button2")")
[0-1] 2026-03-14T23:28:01.099Z INFO webdriver: [POST] http://localhost:4723/session/5e1c025e-ba73-4463-bbd3-870b8e35b18d/element
[0-1] 2026-03-14T23:28:01.099Z INFO webdriver: DATA {"using":"-android uiautomator","value":"new UiSelector().resourceId(\"android:id/button2\")"}
[0-1] 2026-03-14T23:28:01.673Z INFO webdriver: RESULT {
[0-1] error: 'no such element',
[0-1] message: 'An element could not be located on the page using the given search parameters.',
[0-1] stacktrace: 'NoSuchElementError: An element could not be located on the page using the given search parameters.\n' +
[0-1] ' at AndroidUiautomator2Driver.findElOrEls (D:\\mobile-automation-appium-webdriverio\\.appium\\node_modules\\appium-uiautomator2-driver\\node_modules\\appium-android-driver\\build\\lib\\commands\\find.js:62:15)\n' +
[0-1] ' at process.processTicksAndRejections (node:internal/process/task_queues:104:5)\n' +
[0-1] ' at async AndroidUiautomator2Driver.findElOrElsWithProcessing (D:\\mobile-automation-appium-webdriverio\\.appium\\node_modules\\@appium\\base-driver\\build\\lib\\basedriver\\commands\\find.js:12:16)\n' +
[0-1] ' at async AndroidUiautomator2Driver.findElement (D:\\mobile-automation-appium-webdriverio\\.appium\\node_modules\\@appium\\base-driver\\build\\lib\\basedriver\\commands\\find.js:27:16)'
[0-1] }
[0-1] 2026-03-14T23:28:01.677Z INFO webdriver: COMMAND findElements("-android uiautomator", "new UiSelector().resourceId("android:id/button2")")
[0-1] 2026-03-14T23:28:01.677Z INFO webdriver: [POST] http://localhost:4723/session/5e1c025e-ba73-4463-bbd3-870b8e35b18d/elements
[0-1] 2026-03-14T23:28:01.677Z INFO webdriver: DATA {"using":"-android uiautomator","value":"new UiSelector().resourceId(\"android:id/button2\")"}
[0-1] 2026-03-14T23:28:01.981Z INFO webdriver: RESULT []
[0-1] 2026-03-14T23:28:01.983Z INFO webdriver: COMMAND findElement("-android uiautomator", "new UiSelector().resourceId("android:id/button1")")
[0-1] 2026-03-14T23:28:01.984Z INFO webdriver: [POST] http://localhost:4723/session/5e1c025e-ba73-4463-bbd3-870b8e35b18d/element
[0-1] 2026-03-14T23:28:01.984Z INFO webdriver: DATA {"using":"-android uiautomator","value":"new UiSelector().resourceId(\"android:id/button1\")"}
[0-1] 2026-03-14T23:28:02.353Z INFO webdriver: RESULT {
[0-1] error: 'no such element',
[0-1] message: 'An element could not be located on the page using the given search parameters.',
[0-1] stacktrace: 'NoSuchElementError: An element could not be located on the page using the given search parameters.\n' +
[0-1] ' at AndroidUiautomator2Driver.findElOrEls (D:\\mobile-automation-appium-webdriverio\\.appium\\node_modules\\appium-uiautomator2-driver\\node_modules\\appium-android-driver\\build\\lib\\commands\\find.js:62:15)\n' +
[0-1] ' at process.processTicksAndRejections (node:internal/process/task_queues:104:5)\n' +
[0-1] ' at async AndroidUiautomator2Driver.findElOrElsWithProcessing (D:\\mobile-automation-appium-webdriverio\\.appium\\node_modules\\@appium\\base-driver\\build\\lib\\basedriver\\commands\\find.js:12:16)\n' +
[0-1] ' at async AndroidUiautomator2Driver.findElement (D:\\mobile-automation-appium-webdriverio\\.appium\\node_modules\\@appium\\base-driver\\build\\lib\\basedriver\\commands\\find.js:27:16)'
[0-1] }
[0-1] 2026-03-14T23:28:02.356Z INFO webdriver: COMMAND findElements("-android uiautomator", "new UiSelector().resourceId("android:id/button1")")
[0-1] 2026-03-14T23:28:02.357Z INFO webdriver: [POST] http://localhost:4723/session/5e1c025e-ba73-4463-bbd3-870b8e35b18d/elements
[0-1] 2026-03-14T23:28:02.357Z INFO webdriver: DATA {"using":"-android uiautomator","value":"new UiSelector().resourceId(\"android:id/button1\")"}
[0-1] 2026-03-14T23:28:02.655Z INFO webdriver: RESULT []
[0-1] 2026-03-14T23:28:02.657Z INFO webdriver: COMMAND findElement("-android uiautomator", "new UiSelector().resourceId("org.wikipedia.alpha:id/closeButton")")
[0-1] 2026-03-14T23:28:02.658Z INFO webdriver: [POST] http://localhost:4723/session/5e1c025e-ba73-4463-bbd3-870b8e35b18d/element
[0-1] 2026-03-14T23:28:02.659Z INFO webdriver: DATA {"using":"-android uiautomator","value":"new UiSelector().resourceId(\"org.wikipedia.alpha:id/closeButton\")"}
[0-1] 2026-03-14T23:28:02.870Z INFO webdriver: RESULT {
[0-1] error: 'no such element',
[0-1] message: 'An element could not be located on the page using the given search parameters.',
[0-1] stacktrace: 'NoSuchElementError: An element could not be located on the page using the given search parameters.\n' +
[0-1] ' at AndroidUiautomator2Driver.findElOrEls (D:\\mobile-automation-appium-webdriverio\\.appium\\node_modules\\appium-uiautomator2-driver\\node_modules\\appium-android-driver\\build\\lib\\commands\\find.js:62:15)\n' +
[0-1] ' at process.processTicksAndRejections (node:internal/process/task_queues:104:5)\n' +
[0-1] ' at async AndroidUiautomator2Driver.findElOrElsWithProcessing (D:\\mobile-automation-appium-webdriverio\\.appium\\node_modules\\@appium\\base-driver\\build\\lib\\basedriver\\commands\\find.js:12:16)\n' +
[0-1] ' at async AndroidUiautomator2Driver.findElement (D:\\mobile-automation-appium-webdriverio\\.appium\\node_modules\\@appium\\base-driver\\build\\lib\\basedriver\\commands\\find.js:27:16)'
[0-1] }
[0-1] 2026-03-14T23:28:02.873Z INFO webdriver: COMMAND findElements("-android uiautomator", "new UiSelector().resourceId("org.wikipedia.alpha:id/closeButton")")
[0-1] 2026-03-14T23:28:02.874Z INFO webdriver: [POST] http://localhost:4723/session/5e1c025e-ba73-4463-bbd3-870b8e35b18d/elements
[0-1] 2026-03-14T23:28:02.874Z INFO webdriver: DATA {"using":"-android uiautomator","value":"new UiSelector().resourceId(\"org.wikipedia.alpha:id/closeButton\")"}
[0-1] 2026-03-14T23:28:03.096Z INFO webdriver: RESULT []
[0-1] 2026-03-14T23:28:03.098Z INFO webdriver: COMMAND findElement("-android uiautomator", "new UiSelector().resourceId("org.wikipedia.alpha:id/negativeButton")")
[0-1] 2026-03-14T23:28:03.098Z INFO webdriver: [POST] http://localhost:4723/session/5e1c025e-ba73-4463-bbd3-870b8e35b18d/element
[0-1] 2026-03-14T23:28:03.098Z INFO webdriver: DATA {"using":"-android uiautomator","value":"new UiSelector().resourceId(\"org.wikipedia.alpha:id/negativeButton\")"}
[0-1] 2026-03-14T23:28:03.284Z INFO webdriver: RESULT {
[0-1] error: 'no such element',
[0-1] message: 'An element could not be located on the page using the given search parameters.',
[0-1] stacktrace: 'NoSuchElementError: An element could not be located on the page using the given search parameters.\n' +
[0-1] ' at AndroidUiautomator2Driver.findElOrEls (D:\\mobile-automation-appium-webdriverio\\.appium\\node_modules\\appium-uiautomator2-driver\\node_modules\\appium-android-driver\\build\\lib\\commands\\find.js:62:15)\n' +
[0-1] ' at process.processTicksAndRejections (node:internal/process/task_queues:104:5)\n' +
[0-1] ' at async AndroidUiautomator2Driver.findElOrElsWithProcessing (D:\\mobile-automation-appium-webdriverio\\.appium\\node_modules\\@appium\\base-driver\\build\\lib\\basedriver\\commands\\find.js:12:16)\n' +
[0-1] ' at async AndroidUiautomator2Driver.findElement (D:\\mobile-automation-appium-webdriverio\\.appium\\node_modules\\@appium\\base-driver\\build\\lib\\basedriver\\commands\\find.js:27:16)'
[0-1] }
[0-1] 2026-03-14T23:28:03.287Z INFO webdriver: COMMAND findElements("-android uiautomator", "new UiSelector().resourceId("org.wikipedia.alpha:id/negativeButton")")
[0-1] 2026-03-14T23:28:03.287Z INFO webdriver: [POST] http://localhost:4723/session/5e1c025e-ba73-4463-bbd3-870b8e35b18d/elements
[0-1] 2026-03-14T23:28:03.288Z INFO webdriver: DATA {"using":"-android uiautomator","value":"new UiSelector().resourceId(\"org.wikipedia.alpha:id/negativeButton\")"}
[0-1] 2026-03-14T23:28:03.451Z INFO webdriver: RESULT []
[0-1] 2026-03-14T23:28:03.453Z INFO webdriver: COMMAND findElement("-android uiautomator", "new UiSelector().resourceId("org.wikipedia.alpha:id/skip_button")")
[0-1] 2026-03-14T23:28:03.453Z INFO webdriver: [POST] http://localhost:4723/session/5e1c025e-ba73-4463-bbd3-870b8e35b18d/element
[0-1] 2026-03-14T23:28:03.453Z INFO webdriver: DATA {"using":"-android uiautomator","value":"new UiSelector().resourceId(\"org.wikipedia.alpha:id/skip_button\")"}
[0-1] 2026-03-14T23:28:03.611Z INFO webdriver: RESULT {
[0-1] error: 'no such element',
[0-1] message: 'An element could not be located on the page using the given search parameters.',
[0-1] stacktrace: 'NoSuchElementError: An element could not be located on the page using the given search parameters.\n' +
[0-1] ' at AndroidUiautomator2Driver.findElOrEls (D:\\mobile-automation-appium-webdriverio\\.appium\\node_modules\\appium-uiautomator2-driver\\node_modules\\appium-android-driver\\build\\lib\\commands\\find.js:62:15)\n' +
[0-1] ' at process.processTicksAndRejections (node:internal/process/task_queues:104:5)\n' +
[0-1] ' at async AndroidUiautomator2Driver.findElOrElsWithProcessing (D:\\mobile-automation-appium-webdriverio\\.appium\\node_modules\\@appium\\base-driver\\build\\lib\\basedriver\\commands\\find.js:12:16)\n' +
[0-1] ' at async AndroidUiautomator2Driver.findElement (D:\\mobile-automation-appium-webdriverio\\.appium\\node_modules\\@appium\\base-driver\\build\\lib\\basedriver\\commands\\find.js:27:16)'
[0-1] }
[0-1] 2026-03-14T23:28:03.614Z INFO webdriver: COMMAND findElements("-android uiautomator", "new UiSelector().resourceId("org.wikipedia.alpha:id/skip_button")")
[0-1] 2026-03-14T23:28:03.614Z INFO webdriver: [POST] http://localhost:4723/session/5e1c025e-ba73-4463-bbd3-870b8e35b18d/elements
[0-1] 2026-03-14T23:28:03.614Z INFO webdriver: DATA {"using":"-android uiautomator","value":"new UiSelector().resourceId(\"org.wikipedia.alpha:id/skip_button\")"}
[0-1] 2026-03-14T23:28:03.832Z INFO webdriver: RESULT []
[0-1] 2026-03-14T23:28:03.837Z INFO webdriver: COMMAND findElement("-android uiautomator", "new UiSelector().resourceId("org.wikipedia.alpha:id/nav_tab_search")")
[0-1] 2026-03-14T23:28:03.837Z INFO webdriver: [POST] http://localhost:4723/session/5e1c025e-ba73-4463-bbd3-870b8e35b18d/element
[0-1] 2026-03-14T23:28:03.837Z INFO webdriver: DATA {"using":"-android uiautomator","value":"new UiSelector().resourceId(\"org.wikipedia.alpha:id/nav_tab_search\")"}
[0-1] 2026-03-14T23:28:04.035Z INFO webdriver: RESULT {
[0-1] 'element-6066-11e4-a52e-4f735466cecf': '00000000-0000-01d0-ffff-ffff00000023',
[0-1] ELEMENT: '00000000-0000-01d0-ffff-ffff00000023'
[0-1] }
[0-1] 2026-03-14T23:28:04.039Z INFO webdriver: COMMAND isElementDisplayed("00000000-0000-01d0-ffff-ffff00000023")
[0-1] 2026-03-14T23:28:04.040Z INFO webdriver: [GET] http://localhost:4723/session/5e1c025e-ba73-4463-bbd3-870b8e35b18d/element/00000000-0000-01d0-ffff-ffff00000023/displayed
[0-1] 2026-03-14T23:28:04.258Z INFO webdriver: RESULT true
[0-1] 2026-03-14T23:28:04.259Z INFO webdriver: COMMAND findElement("-android uiautomator", "new UiSelector().resourceId("org.wikipedia.alpha:id/nav_tab_search")")
[0-1] 2026-03-14T23:28:04.259Z INFO webdriver: [POST] http://localhost:4723/session/5e1c025e-ba73-4463-bbd3-870b8e35b18d/element
[0-1] 2026-03-14T23:28:04.259Z INFO webdriver: DATA {"using":"-android uiautomator","value":"new UiSelector().resourceId(\"org.wikipedia.alpha:id/nav_tab_search\")"}
[0-1] 2026-03-14T23:28:04.373Z INFO webdriver: RESULT {
[0-1] 'element-6066-11e4-a52e-4f735466cecf': '00000000-0000-01d0-ffff-ffff00000023',
[0-1] ELEMENT: '00000000-0000-01d0-ffff-ffff00000023'
[0-1] }
[0-1] 2026-03-14T23:28:04.375Z INFO webdriver: COMMAND isElementDisplayed("00000000-0000-01d0-ffff-ffff00000023")
[0-1] 2026-03-14T23:28:04.376Z INFO webdriver: [GET] http://localhost:4723/session/5e1c025e-ba73-4463-bbd3-870b8e35b18d/element/00000000-0000-01d0-ffff-ffff00000023/displayed
[0-1] 2026-03-14T23:28:04.458Z INFO webdriver: RESULT true
[0-1] 2026-03-14T23:28:04.461Z INFO webdriver: COMMAND executeScript("mobile: terminateApp", <object>)
[0-1] 2026-03-14T23:28:04.461Z INFO webdriver: [POST] http://localhost:4723/session/5e1c025e-ba73-4463-bbd3-870b8e35b18d/execute/sync
[0-1] 2026-03-14T23:28:04.461Z INFO webdriver: DATA {"script":"mobile: terminateApp","args":[{"appId":"org.wikipedia.alpha"}]}
[0-1] 2026-03-14T23:28:06.583Z INFO webdriver: RESULT true
[0-1] 2026-03-14T23:28:07.592Z INFO webdriver: COMMAND executeScript("mobile: activateApp", <object>)
[0-1] 2026-03-14T23:28:07.593Z INFO webdriver: [POST] http://localhost:4723/session/5e1c025e-ba73-4463-bbd3-870b8e35b18d/execute/sync
[0-1] 2026-03-14T23:28:07.593Z INFO webdriver: DATA {"script":"mobile: activateApp","args":[{"appId":"org.wikipedia.alpha"}]}
[0-1] 2026-03-14T23:28:07.995Z INFO webdriver: RESULT null
[0-1] 2026-03-14T23:28:11.005Z INFO webdriver: COMMAND findElement("-android uiautomator", "new UiSelector().resourceId("android:id/aerr_close")")
[0-1] 2026-03-14T23:28:11.006Z INFO webdriver: [POST] http://localhost:4723/session/5e1c025e-ba73-4463-bbd3-870b8e35b18d/element
[0-1] 2026-03-14T23:28:11.007Z INFO webdriver: DATA {"using":"-android uiautomator","value":"new UiSelector().resourceId(\"android:id/aerr_close\")"}
[0-1] 2026-03-14T23:28:13.155Z INFO webdriver: RESULT {
[0-1] error: 'no such element',
[0-1] message: 'An element could not be located on the page using the given search parameters.',
[0-1] stacktrace: 'NoSuchElementError: An element could not be located on the page using the given search parameters.\n' +
[0-1] ' at AndroidUiautomator2Driver.findElOrEls (D:\\mobile-automation-appium-webdriverio\\.appium\\node_modules\\appium-uiautomator2-driver\\node_modules\\appium-android-driver\\build\\lib\\commands\\find.js:62:15)\n' +
[0-1] ' at process.processTicksAndRejections (node:internal/process/task_queues:104:5)\n' +
[0-1] ' at async AndroidUiautomator2Driver.findElOrElsWithProcessing (D:\\mobile-automation-appium-webdriverio\\.appium\\node_modules\\@appium\\base-driver\\build\\lib\\basedriver\\commands\\find.js:12:16)\n' +
[0-1] ' at async AndroidUiautomator2Driver.findElement (D:\\mobile-automation-appium-webdriverio\\.appium\\node_modules\\@appium\\base-driver\\build\\lib\\basedriver\\commands\\find.js:27:16)'
[0-1] }
[0-1] 2026-03-14T23:28:13.157Z INFO webdriver: COMMAND findElements("-android uiautomator", "new UiSelector().resourceId("android:id/aerr_close")")
[0-1] 2026-03-14T23:28:13.158Z INFO webdriver: [POST] http://localhost:4723/session/5e1c025e-ba73-4463-bbd3-870b8e35b18d/elements
[0-1] 2026-03-14T23:28:13.158Z INFO webdriver: DATA {"using":"-android uiautomator","value":"new UiSelector().resourceId(\"android:id/aerr_close\")"}
[0-1] 2026-03-14T23:28:13.409Z INFO webdriver: RESULT []
[0-1] 2026-03-14T23:28:13.410Z INFO webdriver: COMMAND findElement("-android uiautomator", "new UiSelector().resourceId("android:id/aerr_wait")")
[0-1] 2026-03-14T23:28:13.411Z INFO webdriver: [POST] http://localhost:4723/session/5e1c025e-ba73-4463-bbd3-870b8e35b18d/element
[0-1] 2026-03-14T23:28:13.411Z INFO webdriver: DATA {"using":"-android uiautomator","value":"new UiSelector().resourceId(\"android:id/aerr_wait\")"}
[0-1] 2026-03-14T23:28:13.989Z INFO webdriver: RESULT {
[0-1] error: 'no such element',
[0-1] message: 'An element could not be located on the page using the given search parameters.',
[0-1] stacktrace: 'NoSuchElementError: An element could not be located on the page using the given search parameters.\n' +
[0-1] ' at AndroidUiautomator2Driver.findElOrEls (D:\\mobile-automation-appium-webdriverio\\.appium\\node_modules\\appium-uiautomator2-driver\\node_modules\\appium-android-driver\\build\\lib\\commands\\find.js:62:15)\n' +
[0-1] ' at process.processTicksAndRejections (node:internal/process/task_queues:104:5)\n' +
[0-1] ' at async AndroidUiautomator2Driver.findElOrElsWithProcessing (D:\\mobile-automation-appium-webdriverio\\.appium\\node_modules\\@appium\\base-driver\\build\\lib\\basedriver\\commands\\find.js:12:16)\n' +
[0-1] ' at async AndroidUiautomator2Driver.findElement (D:\\mobile-automation-appium-webdriverio\\.appium\\node_modules\\@appium\\base-driver\\build\\lib\\basedriver\\commands\\find.js:27:16)'
[0-1] }
[0-1] 2026-03-14T23:28:13.995Z INFO webdriver: COMMAND findElements("-android uiautomator", "new UiSelector().resourceId("android:id/aerr_wait")")
[0-1] 2026-03-14T23:28:13.996Z INFO webdriver: [POST] http://localhost:4723/session/5e1c025e-ba73-4463-bbd3-870b8e35b18d/elements
[0-1] 2026-03-14T23:28:13.996Z INFO webdriver: DATA {"using":"-android uiautomator","value":"new UiSelector().resourceId(\"android:id/aerr_wait\")"}
[0-1] 2026-03-14T23:28:14.079Z INFO webdriver: RESULT []
[0-1] 2026-03-14T23:28:14.081Z INFO webdriver: COMMAND findElement("-android uiautomator", "new UiSelector().resourceId("android:id/button2")")
[0-1] 2026-03-14T23:28:14.082Z INFO webdriver: [POST] http://localhost:4723/session/5e1c025e-ba73-4463-bbd3-870b8e35b18d/element
[0-1] 2026-03-14T23:28:14.082Z INFO webdriver: DATA {"using":"-android uiautomator","value":"new UiSelector().resourceId(\"android:id/button2\")"}
[0-1] 2026-03-14T23:28:14.306Z INFO webdriver: RESULT {
[0-1] error: 'no such element',
[0-1] message: 'An element could not be located on the page using the given search parameters.',
[0-1] stacktrace: 'NoSuchElementError: An element could not be located on the page using the given search parameters.\n' +
[0-1] ' at AndroidUiautomator2Driver.findElOrEls (D:\\mobile-automation-appium-webdriverio\\.appium\\node_modules\\appium-uiautomator2-driver\\node_modules\\appium-android-driver\\build\\lib\\commands\\find.js:62:15)\n' +
[0-1] ' at process.processTicksAndRejections (node:internal/process/task_queues:104:5)\n' +
[0-1] ' at async AndroidUiautomator2Driver.findElOrElsWithProcessing (D:\\mobile-automation-appium-webdriverio\\.appium\\node_modules\\@appium\\base-driver\\build\\lib\\basedriver\\commands\\find.js:12:16)\n' +
[0-1] ' at async AndroidUiautomator2Driver.findElement (D:\\mobile-automation-appium-webdriverio\\.appium\\node_modules\\@appium\\base-driver\\build\\lib\\basedriver\\commands\\find.js:27:16)'
[0-1] }
[0-1] 2026-03-14T23:28:14.308Z INFO webdriver: COMMAND findElements("-android uiautomator", "new UiSelector().resourceId("android:id/button2")")
[0-1] 2026-03-14T23:28:14.309Z INFO webdriver: [POST] http://localhost:4723/session/5e1c025e-ba73-4463-bbd3-870b8e35b18d/elements
[0-1] 2026-03-14T23:28:14.309Z INFO webdriver: DATA {"using":"-android uiautomator","value":"new UiSelector().resourceId(\"android:id/button2\")"}
[0-1] 2026-03-14T23:28:14.421Z INFO webdriver: RESULT []
[0-1] 2026-03-14T23:28:14.423Z INFO webdriver: COMMAND findElement("-android uiautomator", "new UiSelector().resourceId("android:id/button1")")
[0-1] 2026-03-14T23:28:14.423Z INFO webdriver: [POST] http://localhost:4723/session/5e1c025e-ba73-4463-bbd3-870b8e35b18d/element
[0-1] 2026-03-14T23:28:14.423Z INFO webdriver: DATA {"using":"-android uiautomator","value":"new UiSelector().resourceId(\"android:id/button1\")"}
[0-1] 2026-03-14T23:28:14.631Z INFO webdriver: RESULT {
[0-1] error: 'no such element',
[0-1] message: 'An element could not be located on the page using the given search parameters.',
[0-1] stacktrace: 'NoSuchElementError: An element could not be located on the page using the given search parameters.\n' +
[0-1] ' at AndroidUiautomator2Driver.findElOrEls (D:\\mobile-automation-appium-webdriverio\\.appium\\node_modules\\appium-uiautomator2-driver\\node_modules\\appium-android-driver\\build\\lib\\commands\\find.js:62:15)\n' +
[0-1] ' at process.processTicksAndRejections (node:internal/process/task_queues:104:5)\n' +
[0-1] ' at async AndroidUiautomator2Driver.findElOrElsWithProcessing (D:\\mobile-automation-appium-webdriverio\\.appium\\node_modules\\@appium\\base-driver\\build\\lib\\basedriver\\commands\\find.js:12:16)\n' +
[0-1] ' at async AndroidUiautomator2Driver.findElement (D:\\mobile-automation-appium-webdriverio\\.appium\\node_modules\\@appium\\base-driver\\build\\lib\\basedriver\\commands\\find.js:27:16)'
[0-1] }
[0-1] 2026-03-14T23:28:14.634Z INFO webdriver: COMMAND findElements("-android uiautomator", "new UiSelector().resourceId("android:id/button1")")
[0-1] 2026-03-14T23:28:14.634Z INFO webdriver: [POST] http://localhost:4723/session/5e1c025e-ba73-4463-bbd3-870b8e35b18d/elements
[0-1] 2026-03-14T23:28:14.634Z INFO webdriver: DATA {"using":"-android uiautomator","value":"new UiSelector().resourceId(\"android:id/button1\")"}
[0-1] 2026-03-14T23:28:14.791Z INFO webdriver: RESULT []
[0-1] 2026-03-14T23:28:14.793Z INFO webdriver: COMMAND findElement("-android uiautomator", "new UiSelector().resourceId("org.wikipedia.alpha:id/closeButton")")
[0-1] 2026-03-14T23:28:14.794Z INFO webdriver: [POST] http://localhost:4723/session/5e1c025e-ba73-4463-bbd3-870b8e35b18d/element
[0-1] 2026-03-14T23:28:14.794Z INFO webdriver: DATA {"using":"-android uiautomator","value":"new UiSelector().resourceId(\"org.wikipedia.alpha:id/closeButton\")"}
[0-1] 2026-03-14T23:28:15.282Z INFO webdriver: RESULT {
[0-1] error: 'no such element',
[0-1] message: 'An element could not be located on the page using the given search parameters.',
[0-1] stacktrace: 'NoSuchElementError: An element could not be located on the page using the given search parameters.\n' +
[0-1] ' at AndroidUiautomator2Driver.findElOrEls (D:\\mobile-automation-appium-webdriverio\\.appium\\node_modules\\appium-uiautomator2-driver\\node_modules\\appium-android-driver\\build\\lib\\commands\\find.js:62:15)\n' +
[0-1] ' at process.processTicksAndRejections (node:internal/process/task_queues:104:5)\n' +
[0-1] ' at async AndroidUiautomator2Driver.findElOrElsWithProcessing (D:\\mobile-automation-appium-webdriverio\\.appium\\node_modules\\@appium\\base-driver\\build\\lib\\basedriver\\commands\\find.js:12:16)\n' +
[0-1] ' at async AndroidUiautomator2Driver.findElement (D:\\mobile-automation-appium-webdriverio\\.appium\\node_modules\\@appium\\base-driver\\build\\lib\\basedriver\\commands\\find.js:27:16)'
[0-1] }
[0-1] 2026-03-14T23:28:15.284Z INFO webdriver: COMMAND findElements("-android uiautomator", "new UiSelector().resourceId("org.wikipedia.alpha:id/closeButton")")
[0-1] 2026-03-14T23:28:15.285Z INFO webdriver: [POST] http://localhost:4723/session/5e1c025e-ba73-4463-bbd3-870b8e35b18d/elements
[0-1] 2026-03-14T23:28:15.285Z INFO webdriver: DATA {"using":"-android uiautomator","value":"new UiSelector().resourceId(\"org.wikipedia.alpha:id/closeButton\")"}
[0-1] 2026-03-14T23:28:15.435Z INFO webdriver: RESULT []
[0-1] 2026-03-14T23:28:15.436Z INFO webdriver: COMMAND findElement("-android uiautomator", "new UiSelector().resourceId("org.wikipedia.alpha:id/negativeButton")")
[0-1] 2026-03-14T23:28:15.437Z INFO webdriver: [POST] http://localhost:4723/session/5e1c025e-ba73-4463-bbd3-870b8e35b18d/element
[0-1] 2026-03-14T23:28:15.437Z INFO webdriver: DATA {"using":"-android uiautomator","value":"new UiSelector().resourceId(\"org.wikipedia.alpha:id/negativeButton\")"}
[0-1] 2026-03-14T23:28:15.663Z INFO webdriver: RESULT {
[0-1] error: 'no such element',
[0-1] message: 'An element could not be located on the page using the given search parameters.',
[0-1] stacktrace: 'NoSuchElementError: An element could not be located on the page using the given search parameters.\n' +
[0-1] ' at AndroidUiautomator2Driver.findElOrEls (D:\\mobile-automation-appium-webdriverio\\.appium\\node_modules\\appium-uiautomator2-driver\\node_modules\\appium-android-driver\\build\\lib\\commands\\find.js:62:15)\n' +
[0-1] ' at process.processTicksAndRejections (node:internal/process/task_queues:104:5)\n' +
[0-1] ' at async AndroidUiautomator2Driver.findElOrElsWithProcessing (D:\\mobile-automation-appium-webdriverio\\.appium\\node_modules\\@appium\\base-driver\\build\\lib\\basedriver\\commands\\find.js:12:16)\n' +
[0-1] ' at async AndroidUiautomator2Driver.findElement (D:\\mobile-automation-appium-webdriverio\\.appium\\node_modules\\@appium\\base-driver\\build\\lib\\basedriver\\commands\\find.js:27:16)'
[0-1] }
[0-1] 2026-03-14T23:28:15.665Z INFO webdriver: COMMAND findElements("-android uiautomator", "new UiSelector().resourceId("org.wikipedia.alpha:id/negativeButton")")
[0-1] 2026-03-14T23:28:15.666Z INFO webdriver: [POST] http://localhost:4723/session/5e1c025e-ba73-4463-bbd3-870b8e35b18d/elements
[0-1] 2026-03-14T23:28:15.666Z INFO webdriver: DATA {"using":"-android uiautomator","value":"new UiSelector().resourceId(\"org.wikipedia.alpha:id/negativeButton\")"}
[0-1] 2026-03-14T23:28:15.771Z INFO webdriver: RESULT []
[0-1] 2026-03-14T23:28:15.773Z INFO webdriver: COMMAND findElement("-android uiautomator", "new UiSelector().resourceId("org.wikipedia.alpha:id/skip_button")")
[0-1] 2026-03-14T23:28:15.773Z INFO webdriver: [POST] http://localhost:4723/session/5e1c025e-ba73-4463-bbd3-870b8e35b18d/element
[0-1] 2026-03-14T23:28:15.773Z INFO webdriver: DATA {"using":"-android uiautomator","value":"new UiSelector().resourceId(\"org.wikipedia.alpha:id/skip_button\")"}
[0-1] 2026-03-14T23:28:15.875Z INFO webdriver: RESULT {
[0-1] error: 'no such element',
[0-1] message: 'An element could not be located on the page using the given search parameters.',
[0-1] stacktrace: 'NoSuchElementError: An element could not be located on the page using the given search parameters.\n' +
[0-1] ' at AndroidUiautomator2Driver.findElOrEls (D:\\mobile-automation-appium-webdriverio\\.appium\\node_modules\\appium-uiautomator2-driver\\node_modules\\appium-android-driver\\build\\lib\\commands\\find.js:62:15)\n' +
[0-1] ' at process.processTicksAndRejections (node:internal/process/task_queues:104:5)\n' +
[0-1] ' at async AndroidUiautomator2Driver.findElOrElsWithProcessing (D:\\mobile-automation-appium-webdriverio\\.appium\\node_modules\\@appium\\base-driver\\build\\lib\\basedriver\\commands\\find.js:12:16)\n' +
[0-1] ' at async AndroidUiautomator2Driver.findElement (D:\\mobile-automation-appium-webdriverio\\.appium\\node_modules\\@appium\\base-driver\\build\\lib\\basedriver\\commands\\find.js:27:16)'
[0-1] }
[0-1] 2026-03-14T23:28:15.877Z INFO webdriver: COMMAND findElements("-android uiautomator", "new UiSelector().resourceId("org.wikipedia.alpha:id/skip_button")")
[0-1] 2026-03-14T23:28:15.877Z INFO webdriver: [POST] http://localhost:4723/session/5e1c025e-ba73-4463-bbd3-870b8e35b18d/elements
[0-1] 2026-03-14T23:28:15.878Z INFO webdriver: DATA {"using":"-android uiautomator","value":"new UiSelector().resourceId(\"org.wikipedia.alpha:id/skip_button\")"}
[0-1] 2026-03-14T23:28:16.130Z INFO webdriver: RESULT []
[0-1] 2026-03-14T23:28:16.131Z INFO webdriver: COMMAND findElement("-android uiautomator", "new UiSelector().resourceId("org.wikipedia.alpha:id/fragment_onboarding_skip_button")")
[0-1] 2026-03-14T23:28:16.131Z INFO webdriver: [POST] http://localhost:4723/session/5e1c025e-ba73-4463-bbd3-870b8e35b18d/element
[0-1] 2026-03-14T23:28:16.132Z INFO webdriver: DATA {"using":"-android uiautomator","value":"new UiSelector().resourceId(\"org.wikipedia.alpha:id/fragment_onboarding_skip_button\")"}
[0-1] 2026-03-14T23:28:16.354Z INFO webdriver: RESULT {
[0-1] error: 'no such element',
[0-1] message: 'An element could not be located on the page using the given search parameters.',
[0-1] stacktrace: 'NoSuchElementError: An element could not be located on the page using the given search parameters.\n' +
[0-1] ' at AndroidUiautomator2Driver.findElOrEls (D:\\mobile-automation-appium-webdriverio\\.appium\\node_modules\\appium-uiautomator2-driver\\node_modules\\appium-android-driver\\build\\lib\\commands\\find.js:62:15)\n' +
[0-1] ' at process.processTicksAndRejections (node:internal/process/task_queues:104:5)\n' +
[0-1] ' at async AndroidUiautomator2Driver.findElOrElsWithProcessing (D:\\mobile-automation-appium-webdriverio\\.appium\\node_modules\\@appium\\base-driver\\build\\lib\\basedriver\\commands\\find.js:12:16)\n' +
[0-1] ' at async AndroidUiautomator2Driver.findElement (D:\\mobile-automation-appium-webdriverio\\.appium\\node_modules\\@appium\\base-driver\\build\\lib\\basedriver\\commands\\find.js:27:16)'
[0-1] }
[0-1] 2026-03-14T23:28:16.356Z INFO webdriver: COMMAND findElements("-android uiautomator", "new UiSelector().resourceId("org.wikipedia.alpha:id/fragment_onboarding_skip_button")")
[0-1] 2026-03-14T23:28:16.357Z INFO webdriver: [POST] http://localhost:4723/session/5e1c025e-ba73-4463-bbd3-870b8e35b18d/elements
[0-1] 2026-03-14T23:28:16.357Z INFO webdriver: DATA {"using":"-android uiautomator","value":"new UiSelector().resourceId(\"org.wikipedia.alpha:id/fragment_onboarding_skip_button\")"}
[0-1] 2026-03-14T23:28:16.479Z INFO webdriver: RESULT []
[0-1] 2026-03-14T23:28:16.481Z INFO webdriver: COMMAND findElement("-android uiautomator", "new UiSelector().resourceId("android:id/aerr_close")")
[0-1] 2026-03-14T23:28:16.481Z INFO webdriver: [POST] http://localhost:4723/session/5e1c025e-ba73-4463-bbd3-870b8e35b18d/element
[0-1] 2026-03-14T23:28:16.481Z INFO webdriver: DATA {"using":"-android uiautomator","value":"new UiSelector().resourceId(\"android:id/aerr_close\")"}
[0-1] 2026-03-14T23:28:16.659Z INFO webdriver: RESULT {
[0-1] error: 'no such element',
[0-1] message: 'An element could not be located on the page using the given search parameters.',
[0-1] stacktrace: 'NoSuchElementError: An element could not be located on the page using the given search parameters.\n' +
[0-1] ' at AndroidUiautomator2Driver.findElOrEls (D:\\mobile-automation-appium-webdriverio\\.appium\\node_modules\\appium-uiautomator2-driver\\node_modules\\appium-android-driver\\build\\lib\\commands\\find.js:62:15)\n' +
[0-1] ' at process.processTicksAndRejections (node:internal/process/task_queues:104:5)\n' +
[0-1] ' at async AndroidUiautomator2Driver.findElOrElsWithProcessing (D:\\mobile-automation-appium-webdriverio\\.appium\\node_modules\\@appium\\base-driver\\build\\lib\\basedriver\\commands\\find.js:12:16)\n' +
[0-1] ' at async AndroidUiautomator2Driver.findElement (D:\\mobile-automation-appium-webdriverio\\.appium\\node_modules\\@appium\\base-driver\\build\\lib\\basedriver\\commands\\find.js:27:16)'
[0-1] }
[0-1] 2026-03-14T23:28:16.662Z INFO webdriver: COMMAND findElements("-android uiautomator", "new UiSelector().resourceId("android:id/aerr_close")")
[0-1] 2026-03-14T23:28:16.663Z INFO webdriver: [POST] http://localhost:4723/session/5e1c025e-ba73-4463-bbd3-870b8e35b18d/elements
[0-1] 2026-03-14T23:28:16.663Z INFO webdriver: DATA {"using":"-android uiautomator","value":"new UiSelector().resourceId(\"android:id/aerr_close\")"}
[0-1] 2026-03-14T23:28:16.781Z INFO webdriver: RESULT []
[0-1] 2026-03-14T23:28:16.783Z INFO webdriver: COMMAND findElement("-android uiautomator", "new UiSelector().resourceId("android:id/aerr_wait")")
[0-1] 2026-03-14T23:28:16.783Z INFO webdriver: [POST] http://localhost:4723/session/5e1c025e-ba73-4463-bbd3-870b8e35b18d/element
[0-1] 2026-03-14T23:28:16.783Z INFO webdriver: DATA {"using":"-android uiautomator","value":"new UiSelector().resourceId(\"android:id/aerr_wait\")"}
[0-1] 2026-03-14T23:28:17.015Z INFO webdriver: RESULT {
[0-1] error: 'no such element',
[0-1] message: 'An element could not be located on the page using the given search parameters.',
[0-1] stacktrace: 'NoSuchElementError: An element could not be located on the page using the given search parameters.\n' +
[0-1] ' at AndroidUiautomator2Driver.findElOrEls (D:\\mobile-automation-appium-webdriverio\\.appium\\node_modules\\appium-uiautomator2-driver\\node_modules\\appium-android-driver\\build\\lib\\commands\\find.js:62:15)\n' +
[0-1] ' at process.processTicksAndRejections (node:internal/process/task_queues:104:5)\n' +
[0-1] ' at async AndroidUiautomator2Driver.findElOrElsWithProcessing (D:\\mobile-automation-appium-webdriverio\\.appium\\node_modules\\@appium\\base-driver\\build\\lib\\basedriver\\commands\\find.js:12:16)\n' +
[0-1] ' at async AndroidUiautomator2Driver.findElement (D:\\mobile-automation-appium-webdriverio\\.appium\\node_modules\\@appium\\base-driver\\build\\lib\\basedriver\\commands\\find.js:27:16)'
[0-1] }
[0-1] 2026-03-14T23:28:17.017Z INFO webdriver: COMMAND findElements("-android uiautomator", "new UiSelector().resourceId("android:id/aerr_wait")")
[0-1] 2026-03-14T23:28:17.018Z INFO webdriver: [POST] http://localhost:4723/session/5e1c025e-ba73-4463-bbd3-870b8e35b18d/elements
[0-1] 2026-03-14T23:28:17.018Z INFO webdriver: DATA {"using":"-android uiautomator","value":"new UiSelector().resourceId(\"android:id/aerr_wait\")"}
[0-1] 2026-03-14T23:28:17.172Z INFO webdriver: RESULT []
[0-1] 2026-03-14T23:28:17.174Z INFO webdriver: COMMAND findElement("-android uiautomator", "new UiSelector().resourceId("android:id/button2")")
[0-1] 2026-03-14T23:28:17.175Z INFO webdriver: [POST] http://localhost:4723/session/5e1c025e-ba73-4463-bbd3-870b8e35b18d/element
[0-1] 2026-03-14T23:28:17.175Z INFO webdriver: DATA {"using":"-android uiautomator","value":"new UiSelector().resourceId(\"android:id/button2\")"}
[0-1] 2026-03-14T23:28:17.292Z INFO webdriver: RESULT {
[0-1] error: 'no such element',
[0-1] message: 'An element could not be located on the page using the given search parameters.',
[0-1] stacktrace: 'NoSuchElementError: An element could not be located on the page using the given search parameters.\n' +
[0-1] ' at AndroidUiautomator2Driver.findElOrEls (D:\\mobile-automation-appium-webdriverio\\.appium\\node_modules\\appium-uiautomator2-driver\\node_modules\\appium-android-driver\\build\\lib\\commands\\find.js:62:15)\n' +
[0-1] ' at process.processTicksAndRejections (node:internal/process/task_queues:104:5)\n' +
[0-1] ' at async AndroidUiautomator2Driver.findElOrElsWithProcessing (D:\\mobile-automation-appium-webdriverio\\.appium\\node_modules\\@appium\\base-driver\\build\\lib\\basedriver\\commands\\find.js:12:16)\n' +
[0-1] ' at async AndroidUiautomator2Driver.findElement (D:\\mobile-automation-appium-webdriverio\\.appium\\node_modules\\@appium\\base-driver\\build\\lib\\basedriver\\commands\\find.js:27:16)'
[0-1] }
[0-1] 2026-03-14T23:28:17.296Z INFO webdriver: COMMAND findElements("-android uiautomator", "new UiSelector().resourceId("android:id/button2")")
[0-1] 2026-03-14T23:28:17.296Z INFO webdriver: [POST] http://localhost:4723/session/5e1c025e-ba73-4463-bbd3-870b8e35b18d/elements
[0-1] 2026-03-14T23:28:17.296Z INFO webdriver: DATA {"using":"-android uiautomator","value":"new UiSelector().resourceId(\"android:id/button2\")"}
[0-1] 2026-03-14T23:28:17.430Z INFO webdriver: RESULT []
[0-1] 2026-03-14T23:28:17.433Z INFO webdriver: COMMAND findElement("-android uiautomator", "new UiSelector().resourceId("android:id/button1")")
[0-1] 2026-03-14T23:28:17.433Z INFO webdriver: [POST] http://localhost:4723/session/5e1c025e-ba73-4463-bbd3-870b8e35b18d/element
[0-1] 2026-03-14T23:28:17.433Z INFO webdriver: DATA {"using":"-android uiautomator","value":"new UiSelector().resourceId(\"android:id/button1\")"}
[0-1] 2026-03-14T23:28:17.587Z INFO webdriver: RESULT {
[0-1] error: 'no such element',
[0-1] message: 'An element could not be located on the page using the given search parameters.',
[0-1] stacktrace: 'NoSuchElementError: An element could not be located on the page using the given search parameters.\n' +
[0-1] ' at AndroidUiautomator2Driver.findElOrEls (D:\\mobile-automation-appium-webdriverio\\.appium\\node_modules\\appium-uiautomator2-driver\\node_modules\\appium-android-driver\\build\\lib\\commands\\find.js:62:15)\n' +
[0-1] ' at process.processTicksAndRejections (node:internal/process/task_queues:104:5)\n' +
[0-1] ' at async AndroidUiautomator2Driver.findElOrElsWithProcessing (D:\\mobile-automation-appium-webdriverio\\.appium\\node_modules\\@appium\\base-driver\\build\\lib\\basedriver\\commands\\find.js:12:16)\n' +
[0-1] ' at async AndroidUiautomator2Driver.findElement (D:\\mobile-automation-appium-webdriverio\\.appium\\node_modules\\@appium\\base-driver\\build\\lib\\basedriver\\commands\\find.js:27:16)'
[0-1] }
[0-1] 2026-03-14T23:28:17.589Z INFO webdriver: COMMAND findElements("-android uiautomator", "new UiSelector().resourceId("android:id/button1")")
[0-1] 2026-03-14T23:28:17.589Z INFO webdriver: [POST] http://localhost:4723/session/5e1c025e-ba73-4463-bbd3-870b8e35b18d/elements
[0-1] 2026-03-14T23:28:17.589Z INFO webdriver: DATA {"using":"-android uiautomator","value":"new UiSelector().resourceId(\"android:id/button1\")"}
[0-1] 2026-03-14T23:28:17.706Z INFO webdriver: RESULT []
[0-1] 2026-03-14T23:28:17.707Z INFO webdriver: COMMAND findElement("-android uiautomator", "new UiSelector().resourceId("org.wikipedia.alpha:id/closeButton")")
[0-1] 2026-03-14T23:28:17.708Z INFO webdriver: [POST] http://localhost:4723/session/5e1c025e-ba73-4463-bbd3-870b8e35b18d/element
[0-1] 2026-03-14T23:28:17.708Z INFO webdriver: DATA {"using":"-android uiautomator","value":"new UiSelector().resourceId(\"org.wikipedia.alpha:id/closeButton\")"}
[0-1] 2026-03-14T23:28:17.898Z INFO webdriver: RESULT {
[0-1] error: 'no such element',
[0-1] message: 'An element could not be located on the page using the given search parameters.',
[0-1] stacktrace: 'NoSuchElementError: An element could not be located on the page using the given search parameters.\n' +
[0-1] ' at AndroidUiautomator2Driver.findElOrEls (D:\\mobile-automation-appium-webdriverio\\.appium\\node_modules\\appium-uiautomator2-driver\\node_modules\\appium-android-driver\\build\\lib\\commands\\find.js:62:15)\n' +
[0-1] ' at process.processTicksAndRejections (node:internal/process/task_queues:104:5)\n' +
[0-1] ' at async AndroidUiautomator2Driver.findElOrElsWithProcessing (D:\\mobile-automation-appium-webdriverio\\.appium\\node_modules\\@appium\\base-driver\\build\\lib\\basedriver\\commands\\find.js:12:16)\n' +
[0-1] ' at async AndroidUiautomator2Driver.findElement (D:\\mobile-automation-appium-webdriverio\\.appium\\node_modules\\@appium\\base-driver\\build\\lib\\basedriver\\commands\\find.js:27:16)'
[0-1] }
[0-1] 2026-03-14T23:28:17.902Z INFO webdriver: COMMAND findElements("-android uiautomator", "new UiSelector().resourceId("org.wikipedia.alpha:id/closeButton")")
[0-1] 2026-03-14T23:28:17.903Z INFO webdriver: [POST] http://localhost:4723/session/5e1c025e-ba73-4463-bbd3-870b8e35b18d/elements
[0-1] 2026-03-14T23:28:17.903Z INFO webdriver: DATA {"using":"-android uiautomator","value":"new UiSelector().resourceId(\"org.wikipedia.alpha:id/closeButton\")"}
[0-1] 2026-03-14T23:28:18.054Z INFO webdriver: RESULT []
[0-1] 2026-03-14T23:28:18.055Z INFO webdriver: COMMAND findElement("-android uiautomator", "new UiSelector().resourceId("org.wikipedia.alpha:id/negativeButton")")
[0-1] 2026-03-14T23:28:18.055Z INFO webdriver: [POST] http://localhost:4723/session/5e1c025e-ba73-4463-bbd3-870b8e35b18d/element
[0-1] 2026-03-14T23:28:18.056Z INFO webdriver: DATA {"using":"-android uiautomator","value":"new UiSelector().resourceId(\"org.wikipedia.alpha:id/negativeButton\")"}
[0-1] 2026-03-14T23:28:18.274Z INFO webdriver: RESULT {
[0-1] error: 'no such element',
[0-1] message: 'An element could not be located on the page using the given search parameters.',
[0-1] stacktrace: 'NoSuchElementError: An element could not be located on the page using the given search parameters.\n' +
[0-1] ' at AndroidUiautomator2Driver.findElOrEls (D:\\mobile-automation-appium-webdriverio\\.appium\\node_modules\\appium-uiautomator2-driver\\node_modules\\appium-android-driver\\build\\lib\\commands\\find.js:62:15)\n' +
[0-1] ' at process.processTicksAndRejections (node:internal/process/task_queues:104:5)\n' +
[0-1] ' at async AndroidUiautomator2Driver.findElOrElsWithProcessing (D:\\mobile-automation-appium-webdriverio\\.appium\\node_modules\\@appium\\base-driver\\build\\lib\\basedriver\\commands\\find.js:12:16)\n' +
[0-1] ' at async AndroidUiautomator2Driver.findElement (D:\\mobile-automation-appium-webdriverio\\.appium\\node_modules\\@appium\\base-driver\\build\\lib\\basedriver\\commands\\find.js:27:16)'
[0-1] }
[0-1] 2026-03-14T23:28:18.277Z INFO webdriver: COMMAND findElements("-android uiautomator", "new UiSelector().resourceId("org.wikipedia.alpha:id/negativeButton")")
[0-1] 2026-03-14T23:28:18.277Z INFO webdriver: [POST] http://localhost:4723/session/5e1c025e-ba73-4463-bbd3-870b8e35b18d/elements
[0-1] 2026-03-14T23:28:18.278Z INFO webdriver: DATA {"using":"-android uiautomator","value":"new UiSelector().resourceId(\"org.wikipedia.alpha:id/negativeButton\")"}
[0-1] 2026-03-14T23:28:18.482Z INFO webdriver: RESULT []
[0-1] 2026-03-14T23:28:18.484Z INFO webdriver: COMMAND findElement("-android uiautomator", "new UiSelector().resourceId("org.wikipedia.alpha:id/skip_button")")
[0-1] 2026-03-14T23:28:18.484Z INFO webdriver: [POST] http://localhost:4723/session/5e1c025e-ba73-4463-bbd3-870b8e35b18d/element
[0-1] 2026-03-14T23:28:18.484Z INFO webdriver: DATA {"using":"-android uiautomator","value":"new UiSelector().resourceId(\"org.wikipedia.alpha:id/skip_button\")"}
[0-1] 2026-03-14T23:28:18.624Z INFO webdriver: RESULT {
[0-1] error: 'no such element',
[0-1] message: 'An element could not be located on the page using the given search parameters.',
[0-1] stacktrace: 'NoSuchElementError: An element could not be located on the page using the given search parameters.\n' +
[0-1] ' at AndroidUiautomator2Driver.findElOrEls (D:\\mobile-automation-appium-webdriverio\\.appium\\node_modules\\appium-uiautomator2-driver\\node_modules\\appium-android-driver\\build\\lib\\commands\\find.js:62:15)\n' +
[0-1] ' at process.processTicksAndRejections (node:internal/process/task_queues:104:5)\n' +
[0-1] ' at async AndroidUiautomator2Driver.findElOrElsWithProcessing (D:\\mobile-automation-appium-webdriverio\\.appium\\node_modules\\@appium\\base-driver\\build\\lib\\basedriver\\commands\\find.js:12:16)\n' +
[0-1] ' at async AndroidUiautomator2Driver.findElement (D:\\mobile-automation-appium-webdriverio\\.appium\\node_modules\\@appium\\base-driver\\build\\lib\\basedriver\\commands\\find.js:27:16)'
[0-1] }
[0-1] 2026-03-14T23:28:18.626Z INFO webdriver: COMMAND findElements("-android uiautomator", "new UiSelector().resourceId("org.wikipedia.alpha:id/skip_button")")
[0-1] 2026-03-14T23:28:18.627Z INFO webdriver: [POST] http://localhost:4723/session/5e1c025e-ba73-4463-bbd3-870b8e35b18d/elements
[0-1] 2026-03-14T23:28:18.627Z INFO webdriver: DATA {"using":"-android uiautomator","value":"new UiSelector().resourceId(\"org.wikipedia.alpha:id/skip_button\")"}
[0-1] 2026-03-14T23:28:18.830Z INFO webdriver: RESULT []
[0-1] 2026-03-14T23:28:18.833Z INFO webdriver: COMMAND findElement("-android uiautomator", "new UiSelector().resourceId("android:id/aerr_close")")
[0-1] 2026-03-14T23:28:18.833Z INFO webdriver: [POST] http://localhost:4723/session/5e1c025e-ba73-4463-bbd3-870b8e35b18d/element
[0-1] 2026-03-14T23:28:18.833Z INFO webdriver: DATA {"using":"-android uiautomator","value":"new UiSelector().resourceId(\"android:id/aerr_close\")"}
[0-1] 2026-03-14T23:28:19.051Z INFO webdriver: RESULT {
[0-1] error: 'no such element',
[0-1] message: 'An element could not be located on the page using the given search parameters.',
[0-1] stacktrace: 'NoSuchElementError: An element could not be located on the page using the given search parameters.\n' +
[0-1] ' at AndroidUiautomator2Driver.findElOrEls (D:\\mobile-automation-appium-webdriverio\\.appium\\node_modules\\appium-uiautomator2-driver\\node_modules\\appium-android-driver\\build\\lib\\commands\\find.js:62:15)\n' +
[0-1] ' at process.processTicksAndRejections (node:internal/process/task_queues:104:5)\n' +
[0-1] ' at async AndroidUiautomator2Driver.findElOrElsWithProcessing (D:\\mobile-automation-appium-webdriverio\\.appium\\node_modules\\@appium\\base-driver\\build\\lib\\basedriver\\commands\\find.js:12:16)\n' +
[0-1] ' at async AndroidUiautomator2Driver.findElement (D:\\mobile-automation-appium-webdriverio\\.appium\\node_modules\\@appium\\base-driver\\build\\lib\\basedriver\\commands\\find.js:27:16)'
[0-1] }
[0-1] 2026-03-14T23:28:19.054Z INFO webdriver: COMMAND findElements("-android uiautomator", "new UiSelector().resourceId("android:id/aerr_close")")
[0-1] 2026-03-14T23:28:19.054Z INFO webdriver: [POST] http://localhost:4723/session/5e1c025e-ba73-4463-bbd3-870b8e35b18d/elements
[0-1] 2026-03-14T23:28:19.054Z INFO webdriver: DATA {"using":"-android uiautomator","value":"new UiSelector().resourceId(\"android:id/aerr_close\")"}
[0-1] 2026-03-14T23:28:19.276Z INFO webdriver: RESULT []
[0-1] 2026-03-14T23:28:19.278Z INFO webdriver: COMMAND findElement("-android uiautomator", "new UiSelector().resourceId("android:id/aerr_wait")")
[0-1] 2026-03-14T23:28:19.278Z INFO webdriver: [POST] http://localhost:4723/session/5e1c025e-ba73-4463-bbd3-870b8e35b18d/element
[0-1] 2026-03-14T23:28:19.278Z INFO webdriver: DATA {"using":"-android uiautomator","value":"new UiSelector().resourceId(\"android:id/aerr_wait\")"}
[0-1] 2026-03-14T23:28:19.406Z INFO webdriver: RESULT {
[0-1] error: 'no such element',
[0-1] message: 'An element could not be located on the page using the given search parameters.',
[0-1] stacktrace: 'NoSuchElementError: An element could not be located on the page using the given search parameters.\n' +
[0-1] ' at AndroidUiautomator2Driver.findElOrEls (D:\\mobile-automation-appium-webdriverio\\.appium\\node_modules\\appium-uiautomator2-driver\\node_modules\\appium-android-driver\\build\\lib\\commands\\find.js:62:15)\n' +
[0-1] ' at process.processTicksAndRejections (node:internal/process/task_queues:104:5)\n' +
[0-1] ' at async AndroidUiautomator2Driver.findElOrElsWithProcessing (D:\\mobile-automation-appium-webdriverio\\.appium\\node_modules\\@appium\\base-driver\\build\\lib\\basedriver\\commands\\find.js:12:16)\n' +
[0-1] ' at async AndroidUiautomator2Driver.findElement (D:\\mobile-automation-appium-webdriverio\\.appium\\node_modules\\@appium\\base-driver\\build\\lib\\basedriver\\commands\\find.js:27:16)'
[0-1] }
[0-1] 2026-03-14T23:28:19.409Z INFO webdriver: COMMAND findElements("-android uiautomator", "new UiSelector().resourceId("android:id/aerr_wait")")
[0-1] 2026-03-14T23:28:19.409Z INFO webdriver: [POST] http://localhost:4723/session/5e1c025e-ba73-4463-bbd3-870b8e35b18d/elements
[0-1] 2026-03-14T23:28:19.410Z INFO webdriver: DATA {"using":"-android uiautomator","value":"new UiSelector().resourceId(\"android:id/aerr_wait\")"}
[0-1] 2026-03-14T23:28:19.575Z INFO webdriver: RESULT []
[0-1] 2026-03-14T23:28:19.577Z INFO webdriver: COMMAND findElement("-android uiautomator", "new UiSelector().resourceId("android:id/button2")")
[0-1] 2026-03-14T23:28:19.578Z INFO webdriver: [POST] http://localhost:4723/session/5e1c025e-ba73-4463-bbd3-870b8e35b18d/element
[0-1] 2026-03-14T23:28:19.578Z INFO webdriver: DATA {"using":"-android uiautomator","value":"new UiSelector().resourceId(\"android:id/button2\")"}
[0-1] 2026-03-14T23:28:19.737Z INFO webdriver: RESULT {
[0-1] error: 'no such element',
[0-1] message: 'An element could not be located on the page using the given search parameters.',
[0-1] stacktrace: 'NoSuchElementError: An element could not be located on the page using the given search parameters.\n' +
[0-1] ' at AndroidUiautomator2Driver.findElOrEls (D:\\mobile-automation-appium-webdriverio\\.appium\\node_modules\\appium-uiautomator2-driver\\node_modules\\appium-android-driver\\build\\lib\\commands\\find.js:62:15)\n' +
[0-1] ' at process.processTicksAndRejections (node:internal/process/task_queues:104:5)\n' +
[0-1] ' at async AndroidUiautomator2Driver.findElOrElsWithProcessing (D:\\mobile-automation-appium-webdriverio\\.appium\\node_modules\\@appium\\base-driver\\build\\lib\\basedriver\\commands\\find.js:12:16)\n' +
[0-1] ' at async AndroidUiautomator2Driver.findElement (D:\\mobile-automation-appium-webdriverio\\.appium\\node_modules\\@appium\\base-driver\\build\\lib\\basedriver\\commands\\find.js:27:16)'
[0-1] }
[0-1] 2026-03-14T23:28:19.739Z INFO webdriver: COMMAND findElements("-android uiautomator", "new UiSelector().resourceId("android:id/button2")")
[0-1] 2026-03-14T23:28:19.740Z INFO webdriver: [POST] http://localhost:4723/session/5e1c025e-ba73-4463-bbd3-870b8e35b18d/elements
[0-1] 2026-03-14T23:28:19.740Z INFO webdriver: DATA {"using":"-android uiautomator","value":"new UiSelector().resourceId(\"android:id/button2\")"}
[0-1] 2026-03-14T23:28:19.902Z INFO webdriver: RESULT []
[0-1] 2026-03-14T23:28:19.903Z INFO webdriver: COMMAND findElement("-android uiautomator", "new UiSelector().resourceId("android:id/button1")")
[0-1] 2026-03-14T23:28:19.904Z INFO webdriver: [POST] http://localhost:4723/session/5e1c025e-ba73-4463-bbd3-870b8e35b18d/element
[0-1] 2026-03-14T23:28:19.904Z INFO webdriver: DATA {"using":"-android uiautomator","value":"new UiSelector().resourceId(\"android:id/button1\")"}
[0-1] 2026-03-14T23:28:20.064Z INFO webdriver: RESULT {
[0-1] error: 'no such element',
[0-1] message: 'An element could not be located on the page using the given search parameters.',
[0-1] stacktrace: 'NoSuchElementError: An element could not be located on the page using the given search parameters.\n' +
[0-1] ' at AndroidUiautomator2Driver.findElOrEls (D:\\mobile-automation-appium-webdriverio\\.appium\\node_modules\\appium-uiautomator2-driver\\node_modules\\appium-android-driver\\build\\lib\\commands\\find.js:62:15)\n' +
[0-1] ' at process.processTicksAndRejections (node:internal/process/task_queues:104:5)\n' +
[0-1] ' at async AndroidUiautomator2Driver.findElOrElsWithProcessing (D:\\mobile-automation-appium-webdriverio\\.appium\\node_modules\\@appium\\base-driver\\build\\lib\\basedriver\\commands\\find.js:12:16)\n' +
[0-1] ' at async AndroidUiautomator2Driver.findElement (D:\\mobile-automation-appium-webdriverio\\.appium\\node_modules\\@appium\\base-driver\\build\\lib\\basedriver\\commands\\find.js:27:16)'
[0-1] }
[0-1] 2026-03-14T23:28:20.067Z INFO webdriver: COMMAND findElements("-android uiautomator", "new UiSelector().resourceId("android:id/button1")")
[0-1] 2026-03-14T23:28:20.067Z INFO webdriver: [POST] http://localhost:4723/session/5e1c025e-ba73-4463-bbd3-870b8e35b18d/elements
[0-1] 2026-03-14T23:28:20.067Z INFO webdriver: DATA {"using":"-android uiautomator","value":"new UiSelector().resourceId(\"android:id/button1\")"}
[0-1] 2026-03-14T23:28:20.255Z INFO webdriver: RESULT []
[0-1] 2026-03-14T23:28:20.257Z INFO webdriver: COMMAND findElement("-android uiautomator", "new UiSelector().resourceId("org.wikipedia.alpha:id/closeButton")")
[0-1] 2026-03-14T23:28:20.257Z INFO webdriver: [POST] http://localhost:4723/session/5e1c025e-ba73-4463-bbd3-870b8e35b18d/element
[0-1] 2026-03-14T23:28:20.257Z INFO webdriver: DATA {"using":"-android uiautomator","value":"new UiSelector().resourceId(\"org.wikipedia.alpha:id/closeButton\")"}
[0-1] 2026-03-14T23:28:20.422Z INFO webdriver: RESULT {
[0-1] error: 'no such element',
[0-1] message: 'An element could not be located on the page using the given search parameters.',
[0-1] stacktrace: 'NoSuchElementError: An element could not be located on the page using the given search parameters.\n' +
[0-1] ' at AndroidUiautomator2Driver.findElOrEls (D:\\mobile-automation-appium-webdriverio\\.appium\\node_modules\\appium-uiautomator2-driver\\node_modules\\appium-android-driver\\build\\lib\\commands\\find.js:62:15)\n' +
[0-1] ' at process.processTicksAndRejections (node:internal/process/task_queues:104:5)\n' +
[0-1] ' at async AndroidUiautomator2Driver.findElOrElsWithProcessing (D:\\mobile-automation-appium-webdriverio\\.appium\\node_modules\\@appium\\base-driver\\build\\lib\\basedriver\\commands\\find.js:12:16)\n' +
[0-1] ' at async AndroidUiautomator2Driver.findElement (D:\\mobile-automation-appium-webdriverio\\.appium\\node_modules\\@appium\\base-driver\\build\\lib\\basedriver\\commands\\find.js:27:16)'
[0-1] }
[0-1] 2026-03-14T23:28:20.425Z INFO webdriver: COMMAND findElements("-android uiautomator", "new UiSelector().resourceId("org.wikipedia.alpha:id/closeButton")")
[0-1] 2026-03-14T23:28:20.426Z INFO webdriver: [POST] http://localhost:4723/session/5e1c025e-ba73-4463-bbd3-870b8e35b18d/elements
[0-1] 2026-03-14T23:28:20.426Z INFO webdriver: DATA {"using":"-android uiautomator","value":"new UiSelector().resourceId(\"org.wikipedia.alpha:id/closeButton\")"}
[0-1] 2026-03-14T23:28:20.695Z INFO webdriver: RESULT []
[0-1] 2026-03-14T23:28:20.696Z INFO webdriver: COMMAND findElement("-android uiautomator", "new UiSelector().resourceId("org.wikipedia.alpha:id/negativeButton")")
[0-1] 2026-03-14T23:28:20.696Z INFO webdriver: [POST] http://localhost:4723/session/5e1c025e-ba73-4463-bbd3-870b8e35b18d/element
[0-1] 2026-03-14T23:28:20.696Z INFO webdriver: DATA {"using":"-android uiautomator","value":"new UiSelector().resourceId(\"org.wikipedia.alpha:id/negativeButton\")"}
[0-1] 2026-03-14T23:28:20.806Z INFO webdriver: RESULT {
[0-1] error: 'no such element',
[0-1] message: 'An element could not be located on the page using the given search parameters.',
[0-1] stacktrace: 'NoSuchElementError: An element could not be located on the page using the given search parameters.\n' +
[0-1] ' at AndroidUiautomator2Driver.findElOrEls (D:\\mobile-automation-appium-webdriverio\\.appium\\node_modules\\appium-uiautomator2-driver\\node_modules\\appium-android-driver\\build\\lib\\commands\\find.js:62:15)\n' +
[0-1] ' at process.processTicksAndRejections (node:internal/process/task_queues:104:5)\n' +
[0-1] ' at async AndroidUiautomator2Driver.findElOrElsWithProcessing (D:\\mobile-automation-appium-webdriverio\\.appium\\node_modules\\@appium\\base-driver\\build\\lib\\basedriver\\commands\\find.js:12:16)\n' +
[0-1] ' at async AndroidUiautomator2Driver.findElement (D:\\mobile-automation-appium-webdriverio\\.appium\\node_modules\\@appium\\base-driver\\build\\lib\\basedriver\\commands\\find.js:27:16)'
[0-1] }
[0-1] 2026-03-14T23:28:20.809Z INFO webdriver: COMMAND findElements("-android uiautomator", "new UiSelector().resourceId("org.wikipedia.alpha:id/negativeButton")")
[0-1] 2026-03-14T23:28:20.810Z INFO webdriver: [POST] http://localhost:4723/session/5e1c025e-ba73-4463-bbd3-870b8e35b18d/elements
[0-1] 2026-03-14T23:28:20.810Z INFO webdriver: DATA {"using":"-android uiautomator","value":"new UiSelector().resourceId(\"org.wikipedia.alpha:id/negativeButton\")"}
[0-1] 2026-03-14T23:28:20.958Z INFO webdriver: RESULT []
[0-1] 2026-03-14T23:28:20.959Z INFO webdriver: COMMAND findElement("-android uiautomator", "new UiSelector().resourceId("org.wikipedia.alpha:id/skip_button")")
[0-1] 2026-03-14T23:28:20.960Z INFO webdriver: [POST] http://localhost:4723/session/5e1c025e-ba73-4463-bbd3-870b8e35b18d/element
[0-1] 2026-03-14T23:28:20.960Z INFO webdriver: DATA {"using":"-android uiautomator","value":"new UiSelector().resourceId(\"org.wikipedia.alpha:id/skip_button\")"}
[0-1] 2026-03-14T23:28:21.096Z INFO webdriver: RESULT {
[0-1] error: 'no such element',
[0-1] message: 'An element could not be located on the page using the given search parameters.',
[0-1] stacktrace: 'NoSuchElementError: An element could not be located on the page using the given search parameters.\n' +
[0-1] ' at AndroidUiautomator2Driver.findElOrEls (D:\\mobile-automation-appium-webdriverio\\.appium\\node_modules\\appium-uiautomator2-driver\\node_modules\\appium-android-driver\\build\\lib\\commands\\find.js:62:15)\n' +
[0-1] ' at process.processTicksAndRejections (node:internal/process/task_queues:104:5)\n' +
[0-1] ' at async AndroidUiautomator2Driver.findElOrElsWithProcessing (D:\\mobile-automation-appium-webdriverio\\.appium\\node_modules\\@appium\\base-driver\\build\\lib\\basedriver\\commands\\find.js:12:16)\n' +
[0-1] ' at async AndroidUiautomator2Driver.findElement (D:\\mobile-automation-appium-webdriverio\\.appium\\node_modules\\@appium\\base-driver\\build\\lib\\basedriver\\commands\\find.js:27:16)'
[0-1] }
[0-1] 2026-03-14T23:28:21.099Z INFO webdriver: COMMAND findElements("-android uiautomator", "new UiSelector().resourceId("org.wikipedia.alpha:id/skip_button")")
[0-1] 2026-03-14T23:28:21.099Z INFO webdriver: [POST] http://localhost:4723/session/5e1c025e-ba73-4463-bbd3-870b8e35b18d/elements
[0-1] 2026-03-14T23:28:21.099Z INFO webdriver: DATA {"using":"-android uiautomator","value":"new UiSelector().resourceId(\"org.wikipedia.alpha:id/skip_button\")"}
[0-1] 2026-03-14T23:28:21.254Z INFO webdriver: RESULT []
[0-1] 2026-03-14T23:28:21.255Z INFO webdriver: COMMAND findElement("-android uiautomator", "new UiSelector().resourceId("org.wikipedia.alpha:id/nav_tab_search")")
[0-1] 2026-03-14T23:28:21.256Z INFO webdriver: [POST] http://localhost:4723/session/5e1c025e-ba73-4463-bbd3-870b8e35b18d/element
[0-1] 2026-03-14T23:28:21.256Z INFO webdriver: DATA {"using":"-android uiautomator","value":"new UiSelector().resourceId(\"org.wikipedia.alpha:id/nav_tab_search\")"}
[0-1] 2026-03-14T23:28:21.381Z INFO webdriver: RESULT {
[0-1] 'element-6066-11e4-a52e-4f735466cecf': '00000000-0000-01d2-ffff-ffff00000023',
[0-1] ELEMENT: '00000000-0000-01d2-ffff-ffff00000023'
[0-1] }
[0-1] 2026-03-14T23:28:21.383Z INFO webdriver: COMMAND isElementDisplayed("00000000-0000-01d2-ffff-ffff00000023")
[0-1] 2026-03-14T23:28:21.384Z INFO webdriver: [GET] http://localhost:4723/session/5e1c025e-ba73-4463-bbd3-870b8e35b18d/element/00000000-0000-01d2-ffff-ffff00000023/displayed
[0-1] 2026-03-14T23:28:21.496Z INFO webdriver: RESULT true
[0-1] 2026-03-14T23:28:21.497Z INFO webdriver: COMMAND findElement("-android uiautomator", "new UiSelector().resourceId("org.wikipedia.alpha:id/nav_tab_search")")
[0-1] 2026-03-14T23:28:21.497Z INFO webdriver: [POST] http://localhost:4723/session/5e1c025e-ba73-4463-bbd3-870b8e35b18d/element
[0-1] 2026-03-14T23:28:21.497Z INFO webdriver: DATA {"using":"-android uiautomator","value":"new UiSelector().resourceId(\"org.wikipedia.alpha:id/nav_tab_search\")"}
[0-1] 2026-03-14T23:28:21.735Z INFO webdriver: RESULT {
[0-1] 'element-6066-11e4-a52e-4f735466cecf': '00000000-0000-01d2-ffff-ffff00000023',
[0-1] ELEMENT: '00000000-0000-01d2-ffff-ffff00000023'
[0-1] }
[0-1] 2026-03-14T23:28:21.737Z INFO webdriver: COMMAND elementClick("00000000-0000-01d2-ffff-ffff00000023")
[0-1] 2026-03-14T23:28:21.738Z INFO webdriver: [POST] http://localhost:4723/session/5e1c025e-ba73-4463-bbd3-870b8e35b18d/element/00000000-0000-01d2-ffff-ffff00000023/click
[0-1] 2026-03-14T23:28:21.738Z INFO webdriver: DATA {}
[0-1] 2026-03-14T23:28:22.028Z INFO webdriver: RESULT null
[0-1] 2026-03-14T23:28:23.035Z INFO webdriver: COMMAND findElement("-android uiautomator", "new UiSelector().resourceId("android:id/aerr_close")")
[0-1] 2026-03-14T23:28:23.036Z INFO webdriver: [POST] http://localhost:4723/session/5e1c025e-ba73-4463-bbd3-870b8e35b18d/element
[0-1] 2026-03-14T23:28:23.037Z INFO webdriver: DATA {"using":"-android uiautomator","value":"new UiSelector().resourceId(\"android:id/aerr_close\")"}
[0-1] 2026-03-14T23:28:23.233Z INFO webdriver: RESULT {
[0-1] error: 'no such element',
[0-1] message: 'An element could not be located on the page using the given search parameters.',
[0-1] stacktrace: 'NoSuchElementError: An element could not be located on the page using the given search parameters.\n' +
[0-1] ' at AndroidUiautomator2Driver.findElOrEls (D:\\mobile-automation-appium-webdriverio\\.appium\\node_modules\\appium-uiautomator2-driver\\node_modules\\appium-android-driver\\build\\lib\\commands\\find.js:62:15)\n' +
[0-1] ' at process.processTicksAndRejections (node:internal/process/task_queues:104:5)\n' +
[0-1] ' at async AndroidUiautomator2Driver.findElOrElsWithProcessing (D:\\mobile-automation-appium-webdriverio\\.appium\\node_modules\\@appium\\base-driver\\build\\lib\\basedriver\\commands\\find.js:12:16)\n' +
[0-1] ' at async AndroidUiautomator2Driver.findElement (D:\\mobile-automation-appium-webdriverio\\.appium\\node_modules\\@appium\\base-driver\\build\\lib\\basedriver\\commands\\find.js:27:16)'
[0-1] }
[0-1] 2026-03-14T23:28:23.235Z INFO webdriver: COMMAND findElements("-android uiautomator", "new UiSelector().resourceId("android:id/aerr_close")")
[0-1] 2026-03-14T23:28:23.235Z INFO webdriver: [POST] http://localhost:4723/session/5e1c025e-ba73-4463-bbd3-870b8e35b18d/elements
[0-1] 2026-03-14T23:28:23.235Z INFO webdriver: DATA {"using":"-android uiautomator","value":"new UiSelector().resourceId(\"android:id/aerr_close\")"}
[0-1] 2026-03-14T23:28:23.402Z INFO webdriver: RESULT []
[0-1] 2026-03-14T23:28:23.403Z INFO webdriver: COMMAND findElement("-android uiautomator", "new UiSelector().resourceId("android:id/aerr_wait")")
[0-1] 2026-03-14T23:28:23.404Z INFO webdriver: [POST] http://localhost:4723/session/5e1c025e-ba73-4463-bbd3-870b8e35b18d/element
[0-1] 2026-03-14T23:28:23.404Z INFO webdriver: DATA {"using":"-android uiautomator","value":"new UiSelector().resourceId(\"android:id/aerr_wait\")"}
[0-1] 2026-03-14T23:28:23.512Z INFO webdriver: RESULT {
[0-1] error: 'no such element',
[0-1] message: 'An element could not be located on the page using the given search parameters.',
[0-1] stacktrace: 'NoSuchElementError: An element could not be located on the page using the given search parameters.\n' +
[0-1] ' at AndroidUiautomator2Driver.findElOrEls (D:\\mobile-automation-appium-webdriverio\\.appium\\node_modules\\appium-uiautomator2-driver\\node_modules\\appium-android-driver\\build\\lib\\commands\\find.js:62:15)\n' +
[0-1] ' at process.processTicksAndRejections (node:internal/process/task_queues:104:5)\n' +
[0-1] ' at async AndroidUiautomator2Driver.findElOrElsWithProcessing (D:\\mobile-automation-appium-webdriverio\\.appium\\node_modules\\@appium\\base-driver\\build\\lib\\basedriver\\commands\\find.js:12:16)\n' +
[0-1] ' at async AndroidUiautomator2Driver.findElement (D:\\mobile-automation-appium-webdriverio\\.appium\\node_modules\\@appium\\base-driver\\build\\lib\\basedriver\\commands\\find.js:27:16)'
[0-1] }
[0-1] 2026-03-14T23:28:23.514Z INFO webdriver: COMMAND findElements("-android uiautomator", "new UiSelector().resourceId("android:id/aerr_wait")")
[0-1] 2026-03-14T23:28:23.514Z INFO webdriver: [POST] http://localhost:4723/session/5e1c025e-ba73-4463-bbd3-870b8e35b18d/elements
[0-1] 2026-03-14T23:28:23.514Z INFO webdriver: DATA {"using":"-android uiautomator","value":"new UiSelector().resourceId(\"android:id/aerr_wait\")"}
[0-1] 2026-03-14T23:28:23.663Z INFO webdriver: RESULT []
[0-1] 2026-03-14T23:28:23.664Z INFO webdriver: COMMAND findElement("-android uiautomator", "new UiSelector().resourceId("android:id/button2")")
[0-1] 2026-03-14T23:28:23.665Z INFO webdriver: [POST] http://localhost:4723/session/5e1c025e-ba73-4463-bbd3-870b8e35b18d/element
[0-1] 2026-03-14T23:28:23.665Z INFO webdriver: DATA {"using":"-android uiautomator","value":"new UiSelector().resourceId(\"android:id/button2\")"}
[0-1] 2026-03-14T23:28:23.816Z INFO webdriver: RESULT {
[0-1] error: 'no such element',
[0-1] message: 'An element could not be located on the page using the given search parameters.',
[0-1] stacktrace: 'NoSuchElementError: An element could not be located on the page using the given search parameters.\n' +
[0-1] ' at AndroidUiautomator2Driver.findElOrEls (D:\\mobile-automation-appium-webdriverio\\.appium\\node_modules\\appium-uiautomator2-driver\\node_modules\\appium-android-driver\\build\\lib\\commands\\find.js:62:15)\n' +
[0-1] ' at process.processTicksAndRejections (node:internal/process/task_queues:104:5)\n' +
[0-1] ' at async AndroidUiautomator2Driver.findElOrElsWithProcessing (D:\\mobile-automation-appium-webdriverio\\.appium\\node_modules\\@appium\\base-driver\\build\\lib\\basedriver\\commands\\find.js:12:16)\n' +
[0-1] ' at async AndroidUiautomator2Driver.findElement (D:\\mobile-automation-appium-webdriverio\\.appium\\node_modules\\@appium\\base-driver\\build\\lib\\basedriver\\commands\\find.js:27:16)'
[0-1] }
[0-1] 2026-03-14T23:28:23.818Z INFO webdriver: COMMAND findElements("-android uiautomator", "new UiSelector().resourceId("android:id/button2")")
[0-1] 2026-03-14T23:28:23.818Z INFO webdriver: [POST] http://localhost:4723/session/5e1c025e-ba73-4463-bbd3-870b8e35b18d/elements
[0-1] 2026-03-14T23:28:23.818Z INFO webdriver: DATA {"using":"-android uiautomator","value":"new UiSelector().resourceId(\"android:id/button2\")"}
[0-1] 2026-03-14T23:28:23.988Z INFO webdriver: RESULT []
[0-1] 2026-03-14T23:28:23.990Z INFO webdriver: COMMAND findElement("-android uiautomator", "new UiSelector().resourceId("android:id/button1")")
[0-1] 2026-03-14T23:28:23.990Z INFO webdriver: [POST] http://localhost:4723/session/5e1c025e-ba73-4463-bbd3-870b8e35b18d/element
[0-1] 2026-03-14T23:28:23.990Z INFO webdriver: DATA {"using":"-android uiautomator","value":"new UiSelector().resourceId(\"android:id/button1\")"}
[0-1] 2026-03-14T23:28:24.367Z INFO webdriver: RESULT {
[0-1] error: 'no such element',
[0-1] message: 'An element could not be located on the page using the given search parameters.',
[0-1] stacktrace: 'NoSuchElementError: An element could not be located on the page using the given search parameters.\n' +
[0-1] ' at AndroidUiautomator2Driver.findElOrEls (D:\\mobile-automation-appium-webdriverio\\.appium\\node_modules\\appium-uiautomator2-driver\\node_modules\\appium-android-driver\\build\\lib\\commands\\find.js:62:15)\n' +
[0-1] ' at process.processTicksAndRejections (node:internal/process/task_queues:104:5)\n' +
[0-1] ' at async AndroidUiautomator2Driver.findElOrElsWithProcessing (D:\\mobile-automation-appium-webdriverio\\.appium\\node_modules\\@appium\\base-driver\\build\\lib\\basedriver\\commands\\find.js:12:16)\n' +
[0-1] ' at async AndroidUiautomator2Driver.findElement (D:\\mobile-automation-appium-webdriverio\\.appium\\node_modules\\@appium\\base-driver\\build\\lib\\basedriver\\commands\\find.js:27:16)'
[0-1] }
[0-1] 2026-03-14T23:28:24.369Z INFO webdriver: COMMAND findElements("-android uiautomator", "new UiSelector().resourceId("android:id/button1")")
[0-1] 2026-03-14T23:28:24.369Z INFO webdriver: [POST] http://localhost:4723/session/5e1c025e-ba73-4463-bbd3-870b8e35b18d/elements
[0-1] 2026-03-14T23:28:24.369Z INFO webdriver: DATA {"using":"-android uiautomator","value":"new UiSelector().resourceId(\"android:id/button1\")"}
[0-1] 2026-03-14T23:28:24.452Z INFO webdriver: RESULT []
[0-1] 2026-03-14T23:28:24.454Z INFO webdriver: COMMAND findElement("-android uiautomator", "new UiSelector().resourceId("org.wikipedia.alpha:id/closeButton")")
[0-1] 2026-03-14T23:28:24.454Z INFO webdriver: [POST] http://localhost:4723/session/5e1c025e-ba73-4463-bbd3-870b8e35b18d/element
[0-1] 2026-03-14T23:28:24.454Z INFO webdriver: DATA {"using":"-android uiautomator","value":"new UiSelector().resourceId(\"org.wikipedia.alpha:id/closeButton\")"}
[0-1] 2026-03-14T23:28:24.591Z INFO webdriver: RESULT {
[0-1] error: 'no such element',
[0-1] message: 'An element could not be located on the page using the given search parameters.',
[0-1] stacktrace: 'NoSuchElementError: An element could not be located on the page using the given search parameters.\n' +
[0-1] ' at AndroidUiautomator2Driver.findElOrEls (D:\\mobile-automation-appium-webdriverio\\.appium\\node_modules\\appium-uiautomator2-driver\\node_modules\\appium-android-driver\\build\\lib\\commands\\find.js:62:15)\n' +
[0-1] ' at process.processTicksAndRejections (node:internal/process/task_queues:104:5)\n' +
[0-1] ' at async AndroidUiautomator2Driver.findElOrElsWithProcessing (D:\\mobile-automation-appium-webdriverio\\.appium\\node_modules\\@appium\\base-driver\\build\\lib\\basedriver\\commands\\find.js:12:16)\n' +
[0-1] ' at async AndroidUiautomator2Driver.findElement (D:\\mobile-automation-appium-webdriverio\\.appium\\node_modules\\@appium\\base-driver\\build\\lib\\basedriver\\commands\\find.js:27:16)'
[0-1] }
[0-1] 2026-03-14T23:28:24.595Z INFO webdriver: COMMAND findElements("-android uiautomator", "new UiSelector().resourceId("org.wikipedia.alpha:id/closeButton")")
[0-1] 2026-03-14T23:28:24.595Z INFO webdriver: [POST] http://localhost:4723/session/5e1c025e-ba73-4463-bbd3-870b8e35b18d/elements
[0-1] 2026-03-14T23:28:24.595Z INFO webdriver: DATA {"using":"-android uiautomator","value":"new UiSelector().resourceId(\"org.wikipedia.alpha:id/closeButton\")"}
[0-1] 2026-03-14T23:28:24.727Z INFO webdriver: RESULT []
[0-1] 2026-03-14T23:28:24.728Z INFO webdriver: COMMAND findElement("-android uiautomator", "new UiSelector().resourceId("org.wikipedia.alpha:id/negativeButton")")
[0-1] 2026-03-14T23:28:24.728Z INFO webdriver: [POST] http://localhost:4723/session/5e1c025e-ba73-4463-bbd3-870b8e35b18d/element
[0-1] 2026-03-14T23:28:24.729Z INFO webdriver: DATA {"using":"-android uiautomator","value":"new UiSelector().resourceId(\"org.wikipedia.alpha:id/negativeButton\")"}
[0-1] 2026-03-14T23:28:24.845Z INFO webdriver: RESULT {
[0-1] error: 'no such element',
[0-1] message: 'An element could not be located on the page using the given search parameters.',
[0-1] stacktrace: 'NoSuchElementError: An element could not be located on the page using the given search parameters.\n' +
[0-1] ' at AndroidUiautomator2Driver.findElOrEls (D:\\mobile-automation-appium-webdriverio\\.appium\\node_modules\\appium-uiautomator2-driver\\node_modules\\appium-android-driver\\build\\lib\\commands\\find.js:62:15)\n' +
[0-1] ' at process.processTicksAndRejections (node:internal/process/task_queues:104:5)\n' +
[0-1] ' at async AndroidUiautomator2Driver.findElOrElsWithProcessing (D:\\mobile-automation-appium-webdriverio\\.appium\\node_modules\\@appium\\base-driver\\build\\lib\\basedriver\\commands\\find.js:12:16)\n' +
[0-1] ' at async AndroidUiautomator2Driver.findElement (D:\\mobile-automation-appium-webdriverio\\.appium\\node_modules\\@appium\\base-driver\\build\\lib\\basedriver\\commands\\find.js:27:16)'
[0-1] }
[0-1] 2026-03-14T23:28:24.848Z INFO webdriver: COMMAND findElements("-android uiautomator", "new UiSelector().resourceId("org.wikipedia.alpha:id/negativeButton")")
[0-1] 2026-03-14T23:28:24.848Z INFO webdriver: [POST] http://localhost:4723/session/5e1c025e-ba73-4463-bbd3-870b8e35b18d/elements
[0-1] 2026-03-14T23:28:24.848Z INFO webdriver: DATA {"using":"-android uiautomator","value":"new UiSelector().resourceId(\"org.wikipedia.alpha:id/negativeButton\")"}
[0-1] 2026-03-14T23:28:24.976Z INFO webdriver: RESULT []
[0-1] 2026-03-14T23:28:24.977Z INFO webdriver: COMMAND findElement("-android uiautomator", "new UiSelector().resourceId("org.wikipedia.alpha:id/skip_button")")
[0-1] 2026-03-14T23:28:24.978Z INFO webdriver: [POST] http://localhost:4723/session/5e1c025e-ba73-4463-bbd3-870b8e35b18d/element
[0-1] 2026-03-14T23:28:24.978Z INFO webdriver: DATA {"using":"-android uiautomator","value":"new UiSelector().resourceId(\"org.wikipedia.alpha:id/skip_button\")"}
[0-1] 2026-03-14T23:28:25.111Z INFO webdriver: RESULT {
[0-1] error: 'no such element',
[0-1] message: 'An element could not be located on the page using the given search parameters.',
[0-1] stacktrace: 'NoSuchElementError: An element could not be located on the page using the given search parameters.\n' +
[0-1] ' at AndroidUiautomator2Driver.findElOrEls (D:\\mobile-automation-appium-webdriverio\\.appium\\node_modules\\appium-uiautomator2-driver\\node_modules\\appium-android-driver\\build\\lib\\commands\\find.js:62:15)\n' +
[0-1] ' at process.processTicksAndRejections (node:internal/process/task_queues:104:5)\n' +
[0-1] ' at async AndroidUiautomator2Driver.findElOrElsWithProcessing (D:\\mobile-automation-appium-webdriverio\\.appium\\node_modules\\@appium\\base-driver\\build\\lib\\basedriver\\commands\\find.js:12:16)\n' +
[0-1] ' at async AndroidUiautomator2Driver.findElement (D:\\mobile-automation-appium-webdriverio\\.appium\\node_modules\\@appium\\base-driver\\build\\lib\\basedriver\\commands\\find.js:27:16)'
[0-1] }
[0-1] 2026-03-14T23:28:25.113Z INFO webdriver: COMMAND findElements("-android uiautomator", "new UiSelector().resourceId("org.wikipedia.alpha:id/skip_button")")
[0-1] 2026-03-14T23:28:25.113Z INFO webdriver: [POST] http://localhost:4723/session/5e1c025e-ba73-4463-bbd3-870b8e35b18d/elements
[0-1] 2026-03-14T23:28:25.114Z INFO webdriver: DATA {"using":"-android uiautomator","value":"new UiSelector().resourceId(\"org.wikipedia.alpha:id/skip_button\")"}
[0-1] 2026-03-14T23:28:25.251Z INFO webdriver: RESULT []
[0-1] 2026-03-14T23:28:25.253Z INFO webdriver: COMMAND findElement("-android uiautomator", "new UiSelector().resourceId("org.wikipedia.alpha:id/search_text_view")")
[0-1] 2026-03-14T23:28:25.253Z INFO webdriver: [POST] http://localhost:4723/session/5e1c025e-ba73-4463-bbd3-870b8e35b18d/element
[0-1] 2026-03-14T23:28:25.253Z INFO webdriver: DATA {"using":"-android uiautomator","value":"new UiSelector().resourceId(\"org.wikipedia.alpha:id/search_text_view\")"}
[0-1] 2026-03-14T23:28:25.330Z INFO webdriver: RESULT {
[0-1] 'element-6066-11e4-a52e-4f735466cecf': '00000000-0000-01d2-ffff-ffff00000084',
[0-1] ELEMENT: '00000000-0000-01d2-ffff-ffff00000084'
[0-1] }
[0-1] 2026-03-14T23:28:25.333Z INFO webdriver: COMMAND isElementDisplayed("00000000-0000-01d2-ffff-ffff00000084")
[0-1] 2026-03-14T23:28:25.333Z INFO webdriver: [GET] http://localhost:4723/session/5e1c025e-ba73-4463-bbd3-870b8e35b18d/element/00000000-0000-01d2-ffff-ffff00000084/displayed
[0-1] 2026-03-14T23:28:25.420Z INFO webdriver: RESULT true
[0-1] 2026-03-14T23:28:25.420Z INFO webdriver: COMMAND findElement("-android uiautomator", "new UiSelector().resourceId("org.wikipedia.alpha:id/search_text_view")")
[0-1] 2026-03-14T23:28:25.421Z INFO webdriver: [POST] http://localhost:4723/session/5e1c025e-ba73-4463-bbd3-870b8e35b18d/element
[0-1] 2026-03-14T23:28:25.421Z INFO webdriver: DATA {"using":"-android uiautomator","value":"new UiSelector().resourceId(\"org.wikipedia.alpha:id/search_text_view\")"}
[0-1] 2026-03-14T23:28:25.509Z INFO webdriver: RESULT {
[0-1] 'element-6066-11e4-a52e-4f735466cecf': '00000000-0000-01d2-ffff-ffff00000084',
[0-1] ELEMENT: '00000000-0000-01d2-ffff-ffff00000084'
[0-1] }
[0-1] 2026-03-14T23:28:25.512Z INFO webdriver: COMMAND elementClick("00000000-0000-01d2-ffff-ffff00000084")
[0-1] 2026-03-14T23:28:25.512Z INFO webdriver: [POST] http://localhost:4723/session/5e1c025e-ba73-4463-bbd3-870b8e35b18d/element/00000000-0000-01d2-ffff-ffff00000084/click
[0-1] 2026-03-14T23:28:25.512Z INFO webdriver: DATA {}
[0-1] 2026-03-14T23:28:25.692Z INFO webdriver: RESULT null
[0-1] 2026-03-14T23:28:26.705Z INFO webdriver: COMMAND findElement("-android uiautomator", "new UiSelector().resourceId("org.wikipedia.alpha:id/search_src_text")")
[0-1] 2026-03-14T23:28:26.706Z INFO webdriver: [POST] http://localhost:4723/session/5e1c025e-ba73-4463-bbd3-870b8e35b18d/element
[0-1] 2026-03-14T23:28:26.706Z INFO webdriver: DATA {"using":"-android uiautomator","value":"new UiSelector().resourceId(\"org.wikipedia.alpha:id/search_src_text\")"}
[0-1] 2026-03-14T23:28:29.545Z INFO webdriver: RESULT {
[0-1] error: 'no such element',
[0-1] message: 'An element could not be located on the page using the given search parameters.',
[0-1] stacktrace: 'NoSuchElementError: An element could not be located on the page using the given search parameters.\n' +
[0-1] ' at AndroidUiautomator2Driver.findElOrEls (D:\\mobile-automation-appium-webdriverio\\.appium\\node_modules\\appium-uiautomator2-driver\\node_modules\\appium-android-driver\\build\\lib\\commands\\find.js:62:15)\n' +
[0-1] ' at process.processTicksAndRejections (node:internal/process/task_queues:104:5)\n' +
[0-1] ' at async AndroidUiautomator2Driver.findElOrElsWithProcessing (D:\\mobile-automation-appium-webdriverio\\.appium\\node_modules\\@appium\\base-driver\\build\\lib\\basedriver\\commands\\find.js:12:16)\n' +
[0-1] ' at async AndroidUiautomator2Driver.findElement (D:\\mobile-automation-appium-webdriverio\\.appium\\node_modules\\@appium\\base-driver\\build\\lib\\basedriver\\commands\\find.js:27:16)'
[0-1] }
[0-1] 2026-03-14T23:28:29.551Z INFO webdriver: COMMAND findElement("-android uiautomator", "new UiSelector().resourceId("org.wikipedia.alpha:id/search_src_text")")
[0-1] 2026-03-14T23:28:29.552Z INFO webdriver: [POST] http://localhost:4723/session/5e1c025e-ba73-4463-bbd3-870b8e35b18d/element
[0-1] 2026-03-14T23:28:29.552Z INFO webdriver: DATA {"using":"-android uiautomator","value":"new UiSelector().resourceId(\"org.wikipedia.alpha:id/search_src_text\")"}
[0-1] 2026-03-14T23:28:30.283Z INFO webdriver: RESULT {
[0-1] 'element-6066-11e4-a52e-4f735466cecf': '00000000-0000-01d3-ffff-ffff0000009e',
[0-1] ELEMENT: '00000000-0000-01d3-ffff-ffff0000009e'
[0-1] }
[0-1] 2026-03-14T23:28:30.286Z INFO webdriver: COMMAND isElementDisplayed("00000000-0000-01d3-ffff-ffff0000009e")
[0-1] 2026-03-14T23:28:30.286Z INFO webdriver: [GET] http://localhost:4723/session/5e1c025e-ba73-4463-bbd3-870b8e35b18d/element/00000000-0000-01d3-ffff-ffff0000009e/displayed
[0-1] 2026-03-14T23:28:30.657Z INFO webdriver: RESULT true
[0-1] 2026-03-14T23:28:30.658Z INFO webdriver: COMMAND findElement("-android uiautomator", "new UiSelector().resourceId("org.wikipedia.alpha:id/search_src_text")")
[0-1] 2026-03-14T23:28:30.658Z INFO webdriver: [POST] http://localhost:4723/session/5e1c025e-ba73-4463-bbd3-870b8e35b18d/element
[0-1] 2026-03-14T23:28:30.658Z INFO webdriver: DATA {"using":"-android uiautomator","value":"new UiSelector().resourceId(\"org.wikipedia.alpha:id/search_src_text\")"}
[0-1] 2026-03-14T23:28:31.288Z INFO webdriver: RESULT {
[0-1] 'element-6066-11e4-a52e-4f735466cecf': '00000000-0000-01d3-ffff-ffff0000009e',
[0-1] ELEMENT: '00000000-0000-01d3-ffff-ffff0000009e'
[0-1] }
[0-1] 2026-03-14T23:28:31.291Z INFO webdriver: COMMAND isElementDisplayed("00000000-0000-01d3-ffff-ffff0000009e")
[0-1] 2026-03-14T23:28:31.291Z INFO webdriver: [GET] http://localhost:4723/session/5e1c025e-ba73-4463-bbd3-870b8e35b18d/element/00000000-0000-01d3-ffff-ffff0000009e/displayed
node.exe : [0-1] 2026-03-14T23:28:43.474Z
WARN webdriver: Request encountered a stale
element - terminating request
At line:1 char:1
+ & "C:\Program Files\nodejs/node.exe"
"C:\Program Files\nodejs/node_mo ...
+ ~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~
~~~~~~~~~~~~~~~~~~~~~~~~~~
+ CategoryInfo : NotSpecified:
([0-1] 2026-03-1...inating request:Strin
g) [], RemoteException
+ FullyQualifiedErrorId : NativeCommandE
rror
[0-1] 2026-03-14T23:28:43.475Z INFO webdriver: COMMAND findElement("-android uiautomator", "new UiSelector().resourceId("org.wikipedia.alpha:id/search_src_text")")
[0-1] 2026-03-14T23:28:43.476Z INFO webdriver: [POST] http://localhost:4723/session/5e1c025e-ba73-4463-bbd3-870b8e35b18d/element
[0-1] 2026-03-14T23:28:43.476Z INFO webdriver: DATA {"using":"-android uiautomator","value":"new UiSelector().resourceId(\"org.wikipedia.alpha:id/search_src_text\")"}
[0-1] 2026-03-14T23:28:43.594Z INFO webdriver: RESULT {
[0-1] error: 'no such element',
[0-1] message: 'An element could not be located on the page using the given search parameters.',
[0-1] stacktrace: 'NoSuchElementError: An element could not be located on the page using the given search parameters.\n' +
[0-1] ' at AndroidUiautomator2Driver.findElOrEls (D:\\mobile-automation-appium-webdriverio\\.appium\\node_modules\\appium-uiautomator2-driver\\node_modules\\appium-android-driver\\build\\lib\\commands\\find.js:62:15)\n' +
[0-1] ' at process.processTicksAndRejections (node:internal/process/task_queues:104:5)\n' +
[0-1] ' at async AndroidUiautomator2Driver.findElOrElsWithProcessing (D:\\mobile-automation-appium-webdriverio\\.appium\\node_modules\\@appium\\base-driver\\build\\lib\\basedriver\\commands\\find.js:12:16)\n' +
[0-1] ' at async AndroidUiautomator2Driver.findElement (D:\\mobile-automation-appium-webdriverio\\.appium\\node_modules\\@appium\\base-driver\\build\\lib\\basedriver\\commands\\find.js:27:16)'
[0-1] }
[0-1] 2026-03-14T23:28:43.598Z INFO webdriver: COMMAND isElementDisplayed("00000000-0000-01d3-ffff-ffff0000009e")
[0-1] 2026-03-14T23:28:43.598Z INFO webdriver: [GET] http://localhost:4723/session/5e1c025e-ba73-4463-bbd3-870b8e35b18d/element/00000000-0000-01d3-ffff-ffff0000009e/displayed
[0-1] 2026-03-14T23:28:54.924Z WARN
webdriver: Request encountered a stale
element - terminating request
[0-1] 2026-03-14T23:28:54.925Z INFO webdriver: COMMAND findElement("-android uiautomator", "new UiSelector().resourceId("org.wikipedia.alpha:id/search_src_text")")
[0-1] 2026-03-14T23:28:54.925Z INFO webdriver: [POST] http://localhost:4723/session/5e1c025e-ba73-4463-bbd3-870b8e35b18d/element
[0-1] 2026-03-14T23:28:54.925Z INFO webdriver: DATA {"using":"-android uiautomator","value":"new UiSelector().resourceId(\"org.wikipedia.alpha:id/search_src_text\")"}
[0-1] 2026-03-14T23:28:55.039Z INFO webdriver: RESULT {
[0-1] error: 'no such element',
[0-1] message: 'An element could not be located on the page using the given search parameters.',
[0-1] stacktrace: 'NoSuchElementError: An element could not be located on the page using the given search parameters.\n' +
[0-1] ' at AndroidUiautomator2Driver.findElOrEls (D:\\mobile-automation-appium-webdriverio\\.appium\\node_modules\\appium-uiautomator2-driver\\node_modules\\appium-android-driver\\build\\lib\\commands\\find.js:62:15)\n' +
[0-1] ' at process.processTicksAndRejections (node:internal/process/task_queues:104:5)\n' +
[0-1] ' at async AndroidUiautomator2Driver.findElOrElsWithProcessing (D:\\mobile-automation-appium-webdriverio\\.appium\\node_modules\\@appium\\base-driver\\build\\lib\\basedriver\\commands\\find.js:12:16)\n' +
[0-1] ' at async AndroidUiautomator2Driver.findElement (D:\\mobile-automation-appium-webdriverio\\.appium\\node_modules\\@appium\\base-driver\\build\\lib\\basedriver\\commands\\find.js:27:16)'
[0-1] }
[0-1] Error in "Wikipedia Search.should tap search and show search input"
Error: expect(received).toBe(expected) // Object.is equality
Expected: true
Received: false
at Context.<anonymous> (D:\mobile-automation-appium-webdriverio\tests\search.spec.ts:18:56)
at async Context.executeAsync (D:\mobile-automation-appium-webdriverio\node_modules\@wdio\utils\build\index.js:1108:20)
at async Context.testFrameworkFnWrapper (D:\mobile-automation-appium-webdriverio\node_modules\@wdio\utils\build\index.js:1188:14)
[0-1] 2026-03-14T23:28:55.084Z INFO webdriver: COMMAND executeScript("mobile: terminateApp", <object>)
[0-1] 2026-03-14T23:28:55.085Z INFO webdriver: [POST] http://localhost:4723/session/5e1c025e-ba73-4463-bbd3-870b8e35b18d/execute/sync
[0-1] 2026-03-14T23:28:55.086Z INFO webdriver: DATA {"script":"mobile: terminateApp","args":[{"appId":"org.wikipedia.alpha"}]}
[0-1] 2026-03-14T23:28:59.464Z INFO webdriver: RESULT true
[0-1] 2026-03-14T23:29:00.469Z INFO webdriver: COMMAND executeScript("mobile: activateApp", <object>)
[0-1] 2026-03-14T23:29:00.470Z INFO webdriver: [POST] http://localhost:4723/session/5e1c025e-ba73-4463-bbd3-870b8e35b18d/execute/sync
[0-1] 2026-03-14T23:29:00.470Z INFO webdriver: DATA {"script":"mobile: activateApp","args":[{"appId":"org.wikipedia.alpha"}]}
[0-1] 2026-03-14T23:29:02.754Z INFO webdriver: RESULT null
[0-1] 2026-03-14T23:29:05.767Z INFO webdriver: COMMAND findElement("-android uiautomator", "new UiSelector().resourceId("android:id/aerr_close")")
[0-1] 2026-03-14T23:29:05.776Z INFO webdriver: [POST] http://localhost:4723/session/5e1c025e-ba73-4463-bbd3-870b8e35b18d/element
[0-1] 2026-03-14T23:29:05.777Z INFO webdriver: DATA {"using":"-android uiautomator","value":"new UiSelector().resourceId(\"android:id/aerr_close\")"}
[0-1] 2026-03-14T23:29:13.247Z INFO webdriver: RESULT {
[0-1] error: 'no such element',
[0-1] message: 'An element could not be located on the page using the given search parameters.',
[0-1] stacktrace: 'NoSuchElementError: An element could not be located on the page using the given search parameters.\n' +
[0-1] ' at AndroidUiautomator2Driver.findElOrEls (D:\\mobile-automation-appium-webdriverio\\.appium\\node_modules\\appium-uiautomator2-driver\\node_modules\\appium-android-driver\\build\\lib\\commands\\find.js:62:15)\n' +
[0-1] ' at process.processTicksAndRejections (node:internal/process/task_queues:104:5)\n' +
[0-1] ' at async AndroidUiautomator2Driver.findElOrElsWithProcessing (D:\\mobile-automation-appium-webdriverio\\.appium\\node_modules\\@appium\\base-driver\\build\\lib\\basedriver\\commands\\find.js:12:16)\n' +
[0-1] ' at async AndroidUiautomator2Driver.findElement (D:\\mobile-automation-appium-webdriverio\\.appium\\node_modules\\@appium\\base-driver\\build\\lib\\basedriver\\commands\\find.js:27:16)'
[0-1] }
[0-1] 2026-03-14T23:29:13.252Z INFO webdriver: COMMAND findElements("-android uiautomator", "new UiSelector().resourceId("android:id/aerr_close")")
[0-1] 2026-03-14T23:29:13.253Z INFO webdriver: [POST] http://localhost:4723/session/5e1c025e-ba73-4463-bbd3-870b8e35b18d/elements
[0-1] 2026-03-14T23:29:13.253Z INFO webdriver: DATA {"using":"-android uiautomator","value":"new UiSelector().resourceId(\"android:id/aerr_close\")"}
[0-1] 2026-03-14T23:29:15.838Z INFO webdriver: RESULT []
[0-1] 2026-03-14T23:29:15.842Z INFO webdriver: COMMAND findElement("-android uiautomator", "new UiSelector().resourceId("android:id/aerr_wait")")
[0-1] 2026-03-14T23:29:15.843Z INFO webdriver: [POST] http://localhost:4723/session/5e1c025e-ba73-4463-bbd3-870b8e35b18d/element
[0-1] 2026-03-14T23:29:15.844Z INFO webdriver: DATA {"using":"-android uiautomator","value":"new UiSelector().resourceId(\"android:id/aerr_wait\")"}
[0-1] 2026-03-14T23:29:17.791Z INFO webdriver: RESULT {
[0-1] error: 'no such element',
[0-1] message: 'An element could not be located on the page using the given search parameters.',
[0-1] stacktrace: 'NoSuchElementError: An element could not be located on the page using the given search parameters.\n' +
[0-1] ' at AndroidUiautomator2Driver.findElOrEls (D:\\mobile-automation-appium-webdriverio\\.appium\\node_modules\\appium-uiautomator2-driver\\node_modules\\appium-android-driver\\build\\lib\\commands\\find.js:62:15)\n' +
[0-1] ' at process.processTicksAndRejections (node:internal/process/task_queues:104:5)\n' +
[0-1] ' at async AndroidUiautomator2Driver.findElOrElsWithProcessing (D:\\mobile-automation-appium-webdriverio\\.appium\\node_modules\\@appium\\base-driver\\build\\lib\\basedriver\\commands\\find.js:12:16)\n' +
[0-1] ' at async AndroidUiautomator2Driver.findElement (D:\\mobile-automation-appium-webdriverio\\.appium\\node_modules\\@appium\\base-driver\\build\\lib\\basedriver\\commands\\find.js:27:16)'
[0-1] }
[0-1] 2026-03-14T23:29:17.798Z INFO webdriver: COMMAND findElements("-android uiautomator", "new UiSelector().resourceId("android:id/aerr_wait")")
[0-1] 2026-03-14T23:29:17.799Z INFO webdriver: [POST] http://localhost:4723/session/5e1c025e-ba73-4463-bbd3-870b8e35b18d/elements
[0-1] 2026-03-14T23:29:17.800Z INFO webdriver: DATA {"using":"-android uiautomator","value":"new UiSelector().resourceId(\"android:id/aerr_wait\")"}
[0-1] 2026-03-14T23:29:18.636Z INFO webdriver: RESULT []
[0-1] 2026-03-14T23:29:18.638Z INFO webdriver: COMMAND findElement("-android uiautomator", "new UiSelector().resourceId("android:id/button2")")
[0-1] 2026-03-14T23:29:18.638Z INFO webdriver: [POST] http://localhost:4723/session/5e1c025e-ba73-4463-bbd3-870b8e35b18d/element
[0-1] 2026-03-14T23:29:18.638Z INFO webdriver: DATA {"using":"-android uiautomator","value":"new UiSelector().resourceId(\"android:id/button2\")"}
[0-1] 2026-03-14T23:29:19.045Z INFO webdriver: RESULT {
[0-1] error: 'no such element',
[0-1] message: 'An element could not be located on the page using the given search parameters.',
[0-1] stacktrace: 'NoSuchElementError: An element could not be located on the page using the given search parameters.\n' +
[0-1] ' at AndroidUiautomator2Driver.findElOrEls (D:\\mobile-automation-appium-webdriverio\\.appium\\node_modules\\appium-uiautomator2-driver\\node_modules\\appium-android-driver\\build\\lib\\commands\\find.js:62:15)\n' +
[0-1] ' at process.processTicksAndRejections (node:internal/process/task_queues:104:5)\n' +
[0-1] ' at async AndroidUiautomator2Driver.findElOrElsWithProcessing (D:\\mobile-automation-appium-webdriverio\\.appium\\node_modules\\@appium\\base-driver\\build\\lib\\basedriver\\commands\\find.js:12:16)\n' +
[0-1] ' at async AndroidUiautomator2Driver.findElement (D:\\mobile-automation-appium-webdriverio\\.appium\\node_modules\\@appium\\base-driver\\build\\lib\\basedriver\\commands\\find.js:27:16)'
[0-1] }
[0-1] 2026-03-14T23:29:19.054Z INFO webdriver: COMMAND findElements("-android uiautomator", "new UiSelector().resourceId("android:id/button2")")
[0-1] 2026-03-14T23:29:19.055Z INFO webdriver: [POST] http://localhost:4723/session/5e1c025e-ba73-4463-bbd3-870b8e35b18d/elements
[0-1] 2026-03-14T23:29:19.056Z INFO webdriver: DATA {"using":"-android uiautomator","value":"new UiSelector().resourceId(\"android:id/button2\")"}
[0-1] 2026-03-14T23:29:19.696Z INFO webdriver: RESULT []
[0-1] 2026-03-14T23:29:19.699Z INFO webdriver: COMMAND findElement("-android uiautomator", "new UiSelector().resourceId("android:id/button1")")
[0-1] 2026-03-14T23:29:19.700Z INFO webdriver: [POST] http://localhost:4723/session/5e1c025e-ba73-4463-bbd3-870b8e35b18d/element
[0-1] 2026-03-14T23:29:19.700Z INFO webdriver: DATA {"using":"-android uiautomator","value":"new UiSelector().resourceId(\"android:id/button1\")"}
[0-1] 2026-03-14T23:29:20.311Z INFO webdriver: RESULT {
[0-1] error: 'no such element',
[0-1] message: 'An element could not be located on the page using the given search parameters.',
[0-1] stacktrace: 'NoSuchElementError: An element could not be located on the page using the given search parameters.\n' +
[0-1] ' at AndroidUiautomator2Driver.findElOrEls (D:\\mobile-automation-appium-webdriverio\\.appium\\node_modules\\appium-uiautomator2-driver\\node_modules\\appium-android-driver\\build\\lib\\commands\\find.js:62:15)\n' +
[0-1] ' at process.processTicksAndRejections (node:internal/process/task_queues:104:5)\n' +
[0-1] ' at async AndroidUiautomator2Driver.findElOrElsWithProcessing (D:\\mobile-automation-appium-webdriverio\\.appium\\node_modules\\@appium\\base-driver\\build\\lib\\basedriver\\commands\\find.js:12:16)\n' +
[0-1] ' at async AndroidUiautomator2Driver.findElement (D:\\mobile-automation-appium-webdriverio\\.appium\\node_modules\\@appium\\base-driver\\build\\lib\\basedriver\\commands\\find.js:27:16)'
[0-1] }
[0-1] 2026-03-14T23:29:20.319Z INFO webdriver: COMMAND findElements("-android uiautomator", "new UiSelector().resourceId("android:id/button1")")
[0-1] 2026-03-14T23:29:20.320Z INFO webdriver: [POST] http://localhost:4723/session/5e1c025e-ba73-4463-bbd3-870b8e35b18d/elements
[0-1] 2026-03-14T23:29:20.320Z INFO webdriver: DATA {"using":"-android uiautomator","value":"new UiSelector().resourceId(\"android:id/button1\")"}
[0-1] 2026-03-14T23:29:20.847Z INFO webdriver: RESULT []
[0-1] 2026-03-14T23:29:20.850Z INFO webdriver: COMMAND findElement("-android uiautomator", "new UiSelector().resourceId("org.wikipedia.alpha:id/closeButton")")
[0-1] 2026-03-14T23:29:20.851Z INFO webdriver: [POST] http://localhost:4723/session/5e1c025e-ba73-4463-bbd3-870b8e35b18d/element
[0-1] 2026-03-14T23:29:20.851Z INFO webdriver: DATA {"using":"-android uiautomator","value":"new UiSelector().resourceId(\"org.wikipedia.alpha:id/closeButton\")"}
[0-1] 2026-03-14T23:29:21.487Z INFO webdriver: RESULT {
[0-1] error: 'no such element',
[0-1] message: 'An element could not be located on the page using the given search parameters.',
[0-1] stacktrace: 'NoSuchElementError: An element could not be located on the page using the given search parameters.\n' +
[0-1] ' at AndroidUiautomator2Driver.findElOrEls (D:\\mobile-automation-appium-webdriverio\\.appium\\node_modules\\appium-uiautomator2-driver\\node_modules\\appium-android-driver\\build\\lib\\commands\\find.js:62:15)\n' +
[0-1] ' at process.processTicksAndRejections (node:internal/process/task_queues:104:5)\n' +
[0-1] ' at async AndroidUiautomator2Driver.findElOrElsWithProcessing (D:\\mobile-automation-appium-webdriverio\\.appium\\node_modules\\@appium\\base-driver\\build\\lib\\basedriver\\commands\\find.js:12:16)\n' +
[0-1] ' at async AndroidUiautomator2Driver.findElement (D:\\mobile-automation-appium-webdriverio\\.appium\\node_modules\\@appium\\base-driver\\build\\lib\\basedriver\\commands\\find.js:27:16)'
[0-1] }
[0-1] 2026-03-14T23:29:21.495Z INFO webdriver: COMMAND findElements("-android uiautomator", "new UiSelector().resourceId("org.wikipedia.alpha:id/closeButton")")
[0-1] 2026-03-14T23:29:21.496Z INFO webdriver: [POST] http://localhost:4723/session/5e1c025e-ba73-4463-bbd3-870b8e35b18d/elements
[0-1] 2026-03-14T23:29:21.496Z INFO webdriver: DATA {"using":"-android uiautomator","value":"new UiSelector().resourceId(\"org.wikipedia.alpha:id/closeButton\")"}
[0-1] 2026-03-14T23:29:22.011Z INFO webdriver: RESULT []
[0-1] 2026-03-14T23:29:22.016Z INFO webdriver: COMMAND findElement("-android uiautomator", "new UiSelector().resourceId("org.wikipedia.alpha:id/negativeButton")")
[0-1] 2026-03-14T23:29:22.017Z INFO webdriver: [POST] http://localhost:4723/session/5e1c025e-ba73-4463-bbd3-870b8e35b18d/element
[0-1] 2026-03-14T23:29:22.017Z INFO webdriver: DATA {"using":"-android uiautomator","value":"new UiSelector().resourceId(\"org.wikipedia.alpha:id/negativeButton\")"}
[0-1] 2026-03-14T23:29:22.644Z INFO webdriver: RESULT {
[0-1] error: 'no such element',
[0-1] message: 'An element could not be located on the page using the given search parameters.',
[0-1] stacktrace: 'NoSuchElementError: An element could not be located on the page using the given search parameters.\n' +
[0-1] ' at AndroidUiautomator2Driver.findElOrEls (D:\\mobile-automation-appium-webdriverio\\.appium\\node_modules\\appium-uiautomator2-driver\\node_modules\\appium-android-driver\\build\\lib\\commands\\find.js:62:15)\n' +
[0-1] ' at process.processTicksAndRejections (node:internal/process/task_queues:104:5)\n' +
[0-1] ' at async AndroidUiautomator2Driver.findElOrElsWithProcessing (D:\\mobile-automation-appium-webdriverio\\.appium\\node_modules\\@appium\\base-driver\\build\\lib\\basedriver\\commands\\find.js:12:16)\n' +
[0-1] ' at async AndroidUiautomator2Driver.findElement (D:\\mobile-automation-appium-webdriverio\\.appium\\node_modules\\@appium\\base-driver\\build\\lib\\basedriver\\commands\\find.js:27:16)'
[0-1] }
[0-1] 2026-03-14T23:29:22.652Z INFO webdriver: COMMAND findElements("-android uiautomator", "new UiSelector().resourceId("org.wikipedia.alpha:id/negativeButton")")