-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathgeckodriver.log
More file actions
2079 lines (1737 loc) · 201 KB
/
geckodriver.log
File metadata and controls
2079 lines (1737 loc) · 201 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
1629314513092 geckodriver INFO Listening on 127.0.0.1:49449
1629314516098 mozrunner::runner INFO Running command: "C:\\Program Files\\Mozilla Firefox\\firefox.exe" "--marionette" "-foreground" "-no-remote" "-profile" "C:\\Users\\agsan\\AppData\\Local\\Temp\\rust_mozprofilewXGsAA"
1629314751451 geckodriver INFO Listening on 127.0.0.1:49512
1629314754485 mozrunner::runner INFO Running command: "C:\\Program Files\\Mozilla Firefox\\firefox.exe" "--marionette" "-foreground" "-no-remote" "-profile" "C:\\Users\\agsan\\AppData\\Local\\Temp\\rust_mozprofiler9JTuQ"
1629314754717 Marionette INFO Marionette enabled
console.warn: SearchSettings: "get: No settings file exists, new profile?" (new NotFoundError("Could not open the file at C:\\Users\\agsan\\AppData\\Local\\Temp\\rust_mozprofiler9JTuQ\\search.json.mozlz4", (void 0)))
1629314756424 Marionette INFO Listening on port 49520
1629314756514 RemoteAgent WARN TLS certificate errors will be ignored for this session
console.error: services.settings:
main/doh-providers Signature failed InvalidSignatureError: Invalid content signature (main/doh-providers)
console.error: services.settings:
main/doh-providers local data was corrupted
console.warn: services.settings: main/doh-providers Signature verified failed. Retry from scratch
console.error: services.settings:
main/doh-config Signature failed InvalidSignatureError: Invalid content signature (main/doh-config)
console.error: services.settings:
main/doh-config local data was corrupted
console.warn: services.settings: main/doh-config Signature verified failed. Retry from scratch
console.log: WebExtensions: reset-default-search: starting.
console.log: WebExtensions: reset-default-search: No addons in our list are installed.
JavaScript error: , line 0: NS_ERROR_NOT_AVAILABLE
1629315832993 Marionette INFO Stopped listening on port 49520
JavaScript error: resource:///modules/Interactions.jsm, line 209: NS_ERROR_FAILURE: Component returned failure code: 0x80004005 (NS_ERROR_FAILURE) [nsIUserIdleService.removeIdleObserver]
JavaScript error: chrome://remote/content/marionette/cert.js, line 55: NS_ERROR_NOT_AVAILABLE: Component returned failure code: 0x80040111 (NS_ERROR_NOT_AVAILABLE) [nsICertOverrideService.setDisableAllSecurityChecksAndLetAttackersInterceptMyData]
###!!! [Parent][RunMessage] Error: Channel closing: too late to send/recv, messages will be lost
rors will be ignored for this session
console.warn: LoginRecipes: "getRecipes: falling back to a synchronous message for:" "https://www.amazon.com"
console.warn: LoginRecipes: "getRecipes: falling back to a synchronous message for:" "https://www.amazon.com"
console.error: services.settings:
main/doh-providers Signature failed InvalidSignatureError: Invalid content signature (main/doh-providers)
console.error: services.settings:
main/doh-providers local data was corrupted
console.warn: services.settings: main/doh-providers Signature verified failed. Retry from scratch
console.error: services.settings:
main/doh-config Signature failed InvalidSignatureError: Invalid content signature (main/doh-config)
console.error: services.settings:
main/doh-config local data was corrupted
console.warn: services.settings: main/doh-config Signature verified failed. Retry from scratch
console.log: WebExtensions: reset-default-search: starting.
console.log: WebExtensions: reset-default-search: No addons in our list are installed.
1629315972243 Marionette INFO Stopped listening on port 49638
JavaScript error: resource:///modules/Interactions.jsm, line 209: NS_ERROR_FAILURE: Component returned failure code: 0x80004005 (NS_ERROR_FAILURE) [nsIUserIdleService.removeIdleObserver]
###!!! [Parent][RunMessage] Error: Channel closing: too late to send/recv, messages will be lost
rofilelmaiOU\\search.json.mozlz4", (void 0)))
1629315873393 Marionette INFO Listening on port 49858
1629315873410 RemoteAgent WARN TLS certificate errors will be ignored for this session
1629315972992 Marionette INFO Stopped listening on port 49858
JavaScript error: resource:///modules/Interactions.jsm, line 209: NS_ERROR_FAILURE: Component returned failure code: 0x80004005 (NS_ERROR_FAILURE) [nsIUserIdleService.removeIdleObserver]
JavaScript error: chrome://remote/content/marionette/cert.js, line 55: NS_ERROR_NOT_AVAILABLE: Component returned failure code: 0x80040111 (NS_ERROR_NOT_AVAILABLE) [nsICertOverrideService.setDisableAllSecurityChecksAndLetAttackersInterceptMyData]
###!!! [Parent][RunMessage] Error: Channel closing: too late to send/recv, messages will be lost
6
1629315964910 RemoteAgent WARN TLS certificate errors will be ignored for this session
1629315976593 Marionette INFO Stopped listening on port 50206
JavaScript error: resource:///modules/Interactions.jsm, line 209: NS_ERROR_FAILURE: Component returned failure code: 0x80004005 (NS_ERROR_FAILURE) [nsIUserIdleService.removeIdleObserver]
JavaScript error: chrome://remote/content/marionette/cert.js, line 55: NS_ERROR_NOT_AVAILABLE: Component returned failure code: 0x80040111 (NS_ERROR_NOT_AVAILABLE) [nsICertOverrideService.setDisableAllSecurityChecksAndLetAttackersInterceptMyData]
###!!! [Parent][RunMessage] Error: Channel closing: too late to send/recv, messages will be lost
9
1629315970022 RemoteAgent WARN TLS certificate errors will be ignored for this session
1629315973713 Marionette INFO Stopped listening on port 50259
JavaScript error: resource:///modules/Interactions.jsm, line 209: NS_ERROR_FAILURE: Component returned failure code: 0x80004005 (NS_ERROR_FAILURE) [nsIUserIdleService.removeIdleObserver]
JavaScript error: resource:///modules/FaviconLoader.jsm, line 596: InvalidStateError: JSWindowActorChild.sendAsyncMessage: JSWindowActorChild cannot send at the moment
###!!! [Parent][MessageChannel] Error: (msgtype=0x390076,name=PContent::Msg_DestroyBrowsingContextGroup) Closed channel: cannot send/recv
###!!! [Parent][RunMessage] Error: Channel closing: too late to send/recv, messages will be lost
1629315992270 geckodriver INFO Listening on 127.0.0.1:50377
1629315995293 mozrunner::runner INFO Running command: "C:\\Program Files\\Mozilla Firefox\\firefox.exe" "--marionette" "-foreground" "-no-remote" "-profile" "C:\\Users\\agsan\\AppData\\Local\\Temp\\rust_mozprofileCqXVEk"
1629315995522 Marionette INFO Marionette enabled
console.warn: SearchSettings: "get: No settings file exists, new profile?" (new NotFoundError("Could not open the file at C:\\Users\\agsan\\AppData\\Local\\Temp\\rust_mozprofileCqXVEk\\search.json.mozlz4", (void 0)))
1629315997380 Marionette INFO Listening on port 50385
1629315997432 RemoteAgent WARN TLS certificate errors will be ignored for this session
1629316001100 Marionette INFO Stopped listening on port 50385
JavaScript error: resource:///modules/Interactions.jsm, line 209: NS_ERROR_FAILURE: Component returned failure code: 0x80004005 (NS_ERROR_FAILURE) [nsIUserIdleService.removeIdleObserver]
1629316009940 geckodriver INFO Listening on 127.0.0.1:50512
1629316012978 mozrunner::runner INFO Running command: "C:\\Program Files\\Mozilla Firefox\\firefox.exe" "--marionette" "-foreground" "-no-remote" "-profile" "C:\\Users\\agsan\\AppData\\Local\\Temp\\rust_mozprofilejhFMET"
1629316013210 Marionette INFO Marionette enabled
console.warn: SearchSettings: "get: No settings file exists, new profile?" (new NotFoundError("Could not open the file at C:\\Users\\agsan\\AppData\\Local\\Temp\\rust_mozprofilejhFMET\\search.json.mozlz4", (void 0)))
1629316015018 Marionette INFO Listening on port 50520
1629316015121 RemoteAgent WARN TLS certificate errors will be ignored for this session
1629316038592 Marionette INFO Stopped listening on port 50520
JavaScript error: resource:///modules/Interactions.jsm, line 209: NS_ERROR_FAILURE: Component returned failure code: 0x80004005 (NS_ERROR_FAILURE) [nsIUserIdleService.removeIdleObserver]
JavaScript error: chrome://remote/content/marionette/cert.js, line 55: NS_ERROR_NOT_AVAILABLE: Component returned failure code: 0x80040111 (NS_ERROR_NOT_AVAILABLE) [nsICertOverrideService.setDisableAllSecurityChecksAndLetAttackersInterceptMyData]
###!!! [Parent][RunMessage] Error: Channel closing: too late to send/recv, messages will be lost
1629317423014 geckodriver INFO Listening on 127.0.0.1:50928
1629317426042 mozrunner::runner INFO Running command: "C:\\Program Files\\Mozilla Firefox\\firefox.exe" "--marionette" "-foreground" "-no-remote" "-profile" "C:\\Users\\agsan\\AppData\\Local\\Temp\\rust_mozprofilejS9T5T"
1629317426274 Marionette INFO Marionette enabled
console.warn: SearchSettings: "get: No settings file exists, new profile?" (new NotFoundError("Could not open the file at C:\\Users\\agsan\\AppData\\Local\\Temp\\rust_mozprofilejS9T5T\\search.json.mozlz4", (void 0)))
1629317428196 Marionette INFO Listening on port 50936
1629317428687 RemoteAgent WARN TLS certificate errors will be ignored for this session
1629317755571 Marionette INFO Stopped listening on port 50936
JavaScript error: resource:///modules/Interactions.jsm, line 209: NS_ERROR_FAILURE: Component returned failure code: 0x80004005 (NS_ERROR_FAILURE) [nsIUserIdleService.removeIdleObserver]
JavaScript error: chrome://remote/content/marionette/cert.js, line 55: NS_ERROR_NOT_AVAILABLE: Component returned failure code: 0x80040111 (NS_ERROR_NOT_AVAILABLE) [nsICertOverrideService.setDisableAllSecurityChecksAndLetAttackersInterceptMyData]
###!!! [Parent][RunMessage] Error: Channel closing: too late to send/recv, messages will be lost
1629318731379 geckodriver INFO Listening on 127.0.0.1:51546
1629318734408 mozrunner::runner INFO Running command: "C:\\Program Files\\Mozilla Firefox\\firefox.exe" "--marionette" "-foreground" "-no-remote" "-profile" "C:\\Users\\agsan\\AppData\\Local\\Temp\\rust_mozprofileyCB01w"
1629318734605 Marionette INFO Marionette enabled
console.warn: SearchSettings: "get: No settings file exists, new profile?" (new NotFoundError("Could not open the file at C:\\Users\\agsan\\AppData\\Local\\Temp\\rust_mozprofileyCB01w\\search.json.mozlz4", (void 0)))
1629318736094 Marionette INFO Listening on port 51554
1629318736451 RemoteAgent WARN TLS certificate errors will be ignored for this session
SourceActor threw an exception: [Exception... "Failed to open input source 'file:///'" nsresult: "0x80004005 (NS_ERROR_FAILURE)" location: "JS frame :: resource://devtools/shared/DevToolsUtils.js :: mainThreadFetch/< :: line 670" data: yes]
Stack: mainThreadFetch/<@resource://devtools/shared/DevToolsUtils.js:670:15
mainThreadFetch@resource://devtools/shared/DevToolsUtils.js:516:10
_fetchURLContents@resource://devtools/server/actors/utils/sources-manager.js:442:22
urlContents@resource://devtools/server/actors/utils/sources-manager.js:406:17
_resurrectSource@resource://devtools/server/actors/thread.js:2142:35
addAllSources@resource://devtools/server/actors/thread.js:1509:14
watch@resource://devtools/server/actors/resources/sources.js:52:17
watchResources@resource://devtools/server/actors/resources/index.js:239:19
_watchTargetResources@resource://devtools/server/actors/targets/target-actor-mixin.js:156:24
addWatcherDataEntry@resource://devtools/server/actors/targets/target-actor-mixin.js:47:20
_addWatcherDataEntry@resource://devtools/server/connectors/js-window-actor/DevToolsFrameChild.jsm:483:24
receiveMessage@resource://devtools/server/connectors/js-window-actor/DevToolsFrameChild.jsm:425:21
Line: 670, column: 0
console.error: ({})
JavaScript error: resource://devtools/shared/DevToolsUtils.js, line 670: NS_ERROR_FAILURE: Failed to open input source 'file:///'
console.error: services.settings:
main/doh-providers Signature failed InvalidSignatureError: Invalid content signature (main/doh-providers)
console.error: services.settings:
main/doh-providers local data was corrupted
console.warn: services.settings: main/doh-providers Signature verified failed. Retry from scratch
console.error: services.settings:
main/doh-config Signature failed InvalidSignatureError: Invalid content signature (main/doh-config)
console.error: services.settings:
main/doh-config local data was corrupted
console.warn: services.settings: main/doh-config Signature verified failed. Retry from scratch
console.log: WebExtensions: reset-default-search: starting.
console.log: WebExtensions: reset-default-search: No addons in our list are installed.
1629319329610 Marionette INFO Stopped listening on port 51554
JavaScript error: resource:///modules/Interactions.jsm, line 209: NS_ERROR_FAILURE: Component returned failure code: 0x80004005 (NS_ERROR_FAILURE) [nsIUserIdleService.removeIdleObserver]
JavaScript error: chrome://remote/content/marionette/cert.js, line 55: NS_ERROR_NOT_AVAILABLE: Component returned failure code: 0x80040111 (NS_ERROR_NOT_AVAILABLE) [nsICertOverrideService.setDisableAllSecurityChecksAndLetAttackersInterceptMyData]
ozprofilenb4Ewo\\search.json.mozlz4", (void 0)))
1629319319545 Marionette INFO Listening on port 51784
1629319319795 RemoteAgent WARN TLS certificate errors will be ignored for this session
1629319323110 Marionette INFO Stopped listening on port 51784
JavaScript error: resource:///modules/Interactions.jsm, line 209: NS_ERROR_FAILURE: Component returned failure code: 0x80004005 (NS_ERROR_FAILURE) [nsIUserIdleService.removeIdleObserver]
###!!! [Parent][RunMessage] Error: Channel closing: too late to send/recv, messages will be lost
1629319365765 geckodriver INFO Listening on 127.0.0.1:51875
1629319368800 mozrunner::runner INFO Running command: "C:\\Program Files\\Mozilla Firefox\\firefox.exe" "--marionette" "-foreground" "-no-remote" "-profile" "C:\\Users\\agsan\\AppData\\Local\\Temp\\rust_mozprofilenh5jvI"
1629319368991 Marionette INFO Marionette enabled
console.warn: SearchSettings: "get: No settings file exists, new profile?" (new NotFoundError("Could not open the file at C:\\Users\\agsan\\AppData\\Local\\Temp\\rust_mozprofilenh5jvI\\search.json.mozlz4", (void 0)))
1629319370327 Marionette INFO Listening on port 51883
1629319370840 RemoteAgent WARN TLS certificate errors will be ignored for this session
SourceActor threw an exception: [Exception... "Failed to open input source 'file:///'" nsresult: "0x80004005 (NS_ERROR_FAILURE)" location: "JS frame :: resource://devtools/shared/DevToolsUtils.js :: mainThreadFetch/< :: line 670" data: yes]
Stack: mainThreadFetch/<@resource://devtools/shared/DevToolsUtils.js:670:15
mainThreadFetch@resource://devtools/shared/DevToolsUtils.js:516:10
_fetchURLContents@resource://devtools/server/actors/utils/sources-manager.js:442:22
urlContents@resource://devtools/server/actors/utils/sources-manager.js:406:17
_resurrectSource@resource://devtools/server/actors/thread.js:2142:35
addAllSources@resource://devtools/server/actors/thread.js:1509:14
watch@resource://devtools/server/actors/resources/sources.js:52:17
watchResources@resource://devtools/server/actors/resources/index.js:239:19
_watchTargetResources@resource://devtools/server/actors/targets/target-actor-mixin.js:156:24
addWatcherDataEntry@resource://devtools/server/actors/targets/target-actor-mixin.js:47:20
_addWatcherDataEntry@resource://devtools/server/connectors/js-window-actor/DevToolsFrameChild.jsm:483:24
receiveMessage@resource://devtools/server/connectors/js-window-actor/DevToolsFrameChild.jsm:425:21
Line: 670, column: 0
console.error: ({})
JavaScript error: resource://devtools/shared/DevToolsUtils.js, line 670: NS_ERROR_FAILURE: Failed to open input source 'file:///'
console.error: services.settings:
main/doh-providers Signature failed InvalidSignatureError: Invalid content signature (main/doh-providers)
console.error: services.settings:
main/doh-providers local data was corrupted
console.warn: services.settings: main/doh-providers Signature verified failed. Retry from scratch
console.error: services.settings:
main/doh-config Signature failed InvalidSignatureError: Invalid content signature (main/doh-config)
console.error: services.settings:
main/doh-config local data was corrupted
console.warn: services.settings: main/doh-config Signature verified failed. Retry from scratch
console.log: WebExtensions: reset-default-search: starting.
console.log: WebExtensions: reset-default-search: No addons in our list are installed.
JavaScript error: , line 0: NS_ERROR_NOT_AVAILABLE
console.warn: "Resource of root-node was not found."
JavaScript warning: https://images-na.ssl-images-amazon.com/images/I/61XKxrBtDVL.js?AUIClients/AmazonUIjQuery, line 52: Using //@ to indicate sourceURL pragmas is deprecated. Use //# instead
console.warn: "Resource of root-node was not found."
console.warn: "Resource of root-node was not found."
JavaScript warning: https://images-na.ssl-images-amazon.com/images/I/61XKxrBtDVL.js?AUIClients/AmazonUIjQuery, line 52: Using //@ to indicate sourceURL pragmas is deprecated. Use //# instead
1629322608529 Marionette INFO Stopped listening on port 51883
JavaScript error: resource:///modules/Interactions.jsm, line 209: NS_ERROR_FAILURE: Component returned failure code: 0x80004005 (NS_ERROR_FAILURE) [nsIUserIdleService.removeIdleObserver]
y, line 52: Using //@ to indicate sourceURL pragmas is deprecated. Use //# instead
SourceActor threw an exception: [Exception... "Failed to open input source 'javascript:void(false)'" nsresult: "0x80040111 (NS_ERROR_NOT_AVAILABLE)" location: "JS frame :: resource://devtools/shared/DevToolsUtils.js :: mainThreadFetch/< :: line 670" data: yes]
Stack: mainThreadFetch/<@resource://devtools/shared/DevToolsUtils.js:670:15
mainThreadFetch@resource://devtools/shared/DevToolsUtils.js:516:10
_fetchURLContents@resource://devtools/server/actors/utils/sources-manager.js:442:22
urlContents@resource://devtools/server/actors/utils/sources-manager.js:406:17
_resurrectSource@resource://devtools/server/actors/thread.js:2142:35
addAllSources@resource://devtools/server/actors/thread.js:1509:14
watch@resource://devtools/server/actors/resources/sources.js:52:17
watchResources@resource://devtools/server/actors/resources/index.js:239:19
_watchTargetResources@resource://devtools/server/actors/targets/target-actor-mixin.js:156:24
addWatcherDataEntry@resource://devtools/server/actors/targets/target-actor-mixin.js:47:20
_addWatcherDataEntry@resource://devtools/server/connectors/js-window-actor/DevToolsFrameChild.jsm:483:24
receiveMessage@resource://devtools/server/connectors/js-window-actor/DevToolsFrameChild.jsm:425:21
Line: 670, column: 0
console.error: ({})
JavaScript error: resource://devtools/shared/DevToolsUtils.js, line 670: NS_ERROR_NOT_AVAILABLE: Failed to open input source 'javascript:void(false)'
console.error: services.settings:
main/doh-providers Signature failed InvalidSignatureError: Invalid content signature (main/doh-providers)
console.error: services.settings:
main/doh-providers local data was corrupted
console.warn: services.settings: main/doh-providers Signature verified failed. Retry from scratch
console.error: services.settings:
main/doh-config Signature failed InvalidSignatureError: Invalid content signature (main/doh-config)
console.error: services.settings:
main/doh-config local data was corrupted
console.warn: services.settings: main/doh-config Signature verified failed. Retry from scratch
console.log: WebExtensions: reset-default-search: starting.
console.log: WebExtensions: reset-default-search: No addons in our list are installed.
1629321504168 Marionette INFO Stopped listening on port 52184
JavaScript error: resource:///modules/Interactions.jsm, line 209: NS_ERROR_FAILURE: Component returned failure code: 0x80004005 (NS_ERROR_FAILURE) [nsIUserIdleService.removeIdleObserver]
JavaScript error: chrome://remote/content/marionette/cert.js, line 55: NS_ERROR_NOT_AVAILABLE: Component returned failure code: 0x80040111 (NS_ERROR_NOT_AVAILABLE) [nsICertOverrideService.setDisableAllSecurityChecksAndLetAttackersInterceptMyData]
###!!! [Parent][RunMessage] Error: Channel closing: too late to send/recv, messages will be lost
1629321505205 geckodriver INFO Listening on 127.0.0.1:52434
1629321508235 mozrunner::runner INFO Running command: "C:\\Program Files\\Mozilla Firefox\\firefox.exe" "--marionette" "-foreground" "-no-remote" "-profile" "C:\\Users\\agsan\\AppData\\Local\\Temp\\rust_mozprofileXDkoNL"
1629321508431 Marionette INFO Marionette enabled
console.warn: SearchSettings: "get: No settings file exists, new profile?" (new NotFoundError("Could not open the file at C:\\Users\\agsan\\AppData\\Local\\Temp\\rust_mozprofileXDkoNL\\search.json.mozlz4", (void 0)))
1629321509909 Marionette INFO Listening on port 52442
1629321510267 RemoteAgent WARN TLS certificate errors will be ignored for this session
JavaScript warning: https://images-na.ssl-images-amazon.com/images/I/61XKxrBtDVL.js?AUIClients/AmazonUIjQuery, line 52: Using //@ to indicate sourceURL pragmas is deprecated. Use //# instead
1629321556135 Marionette INFO Stopped listening on port 52442
JavaScript error: resource:///modules/Interactions.jsm, line 209: NS_ERROR_FAILURE: Component returned failure code: 0x80004005 (NS_ERROR_FAILURE) [nsIUserIdleService.removeIdleObserver]
JavaScript error: chrome://remote/content/marionette/cert.js, line 55: NS_ERROR_NOT_AVAILABLE: Component returned failure code: 0x80040111 (NS_ERROR_NOT_AVAILABLE) [nsICertOverrideService.setDisableAllSecurityChecksAndLetAttackersInterceptMyData]
###!!! [Parent][RunMessage] Error: Channel closing: too late to send/recv, messages will be lost
6
1629321549519 RemoteAgent WARN TLS certificate errors will be ignored for this session
JavaScript warning: https://images-na.ssl-images-amazon.com/images/I/61XKxrBtDVL.js?AUIClients/AmazonUIjQuery, line 52: Using //@ to indicate sourceURL pragmas is deprecated. Use //# instead
1629321557423 Marionette INFO Stopped listening on port 52586
JavaScript error: resource:///modules/Interactions.jsm, line 209: NS_ERROR_FAILURE: Component returned failure code: 0x80004005 (NS_ERROR_FAILURE) [nsIUserIdleService.removeIdleObserver]
JavaScript error: chrome://remote/content/marionette/cert.js, line 55: NS_ERROR_NOT_AVAILABLE: Component returned failure code: 0x80040111 (NS_ERROR_NOT_AVAILABLE) [nsICertOverrideService.setDisableAllSecurityChecksAndLetAttackersInterceptMyData]
###!!! [Parent][RunMessage] Error: Channel closing: too late to send/recv, messages will be lost
1629321807169 geckodriver INFO Listening on 127.0.0.1:52801
1629321810210 mozrunner::runner INFO Running command: "C:\\Program Files\\Mozilla Firefox\\firefox.exe" "--marionette" "-foreground" "-no-remote" "-profile" "C:\\Users\\agsan\\AppData\\Local\\Temp\\rust_mozprofiledbkGUm"
1629321810423 Marionette INFO Marionette enabled
console.warn: SearchSettings: "get: No settings file exists, new profile?" (new NotFoundError("Could not open the file at C:\\Users\\agsan\\AppData\\Local\\Temp\\rust_mozprofiledbkGUm\\search.json.mozlz4", (void 0)))
1629321811811 Marionette INFO Listening on port 52809
1629321812244 RemoteAgent WARN TLS certificate errors will be ignored for this session
JavaScript warning: https://images-na.ssl-images-amazon.com/images/I/61XKxrBtDVL.js?AUIClients/AmazonUIjQuery, line 52: Using //@ to indicate sourceURL pragmas is deprecated. Use //# instead
console.error: services.settings:
main/doh-providers Signature failed InvalidSignatureError: Invalid content signature (main/doh-providers)
console.error: services.settings:
main/doh-providers local data was corrupted
console.warn: services.settings: main/doh-providers Signature verified failed. Retry from scratch
console.error: services.settings:
main/doh-config Signature failed InvalidSignatureError: Invalid content signature (main/doh-config)
console.error: services.settings:
main/doh-config local data was corrupted
console.warn: services.settings: main/doh-config Signature verified failed. Retry from scratch
console.log: WebExtensions: reset-default-search: starting.
console.log: WebExtensions: reset-default-search: No addons in our list are installed.
console.error: "Tried to send a 'target-destroyed-form' event on an already destroyed actor 'watcher'"
1629322700905 Marionette INFO Stopped listening on port 52809
JavaScript error: resource:///modules/Interactions.jsm, line 209: NS_ERROR_FAILURE: Component returned failure code: 0x80004005 (NS_ERROR_FAILURE) [nsIUserIdleService.removeIdleObserver]
JavaScript error: chrome://remote/content/marionette/cert.js, line 55: NS_ERROR_NOT_AVAILABLE: Component returned failure code: 0x80040111 (NS_ERROR_NOT_AVAILABLE) [nsICertOverrideService.setDisableAllSecurityChecksAndLetAttackersInterceptMyData]
###!!! [Parent][RunMessage] Error: Channel closing: too late to send/recv, messages will be lost
1629747223713 geckodriver INFO Listening on 127.0.0.1:56232
1629747226725 mozrunner::runner INFO Running command: "C:\\Program Files\\Mozilla Firefox\\firefox.exe" "--marionette" "-foreground" "-no-remote" "-profile" "C:\\Users\\agsan\\AppData\\Local\\Temp\\rust_mozprofilehPg6Yq"
1629747226950 Marionette INFO Marionette enabled
console.warn: SearchSettings: "get: No settings file exists, new profile?" (new NotFoundError("Could not open the file at C:\\Users\\agsan\\AppData\\Local\\Temp\\rust_mozprofilehPg6Yq\\search.json.mozlz4", (void 0)))
1629747228424 Marionette INFO Listening on port 56240
1629747228767 RemoteAgent WARN TLS certificate errors will be ignored for this session
1629747228913 Marionette INFO Stopped listening on port 56240
JavaScript error: resource:///modules/Interactions.jsm, line 209: NS_ERROR_FAILURE: Component returned failure code: 0x80004005 (NS_ERROR_FAILURE) [nsIUserIdleService.removeIdleObserver]
JavaScript error: chrome://remote/content/marionette/cert.js, line 55: NS_ERROR_NOT_AVAILABLE: Component returned failure code: 0x80040111 (NS_ERROR_NOT_AVAILABLE) [nsICertOverrideService.setDisableAllSecurityChecksAndLetAttackersInterceptMyData]
###!!! [Parent][RunMessage] Error: Channel closing: too late to send/recv, messages will be lost
1629747242639 geckodriver INFO Listening on 127.0.0.1:56266
1629747245663 mozrunner::runner INFO Running command: "C:\\Program Files\\Mozilla Firefox\\firefox.exe" "--marionette" "-foreground" "-no-remote" "-profile" "C:\\Users\\agsan\\AppData\\Local\\Temp\\rust_mozprofileQB5zKH"
1629747245879 Marionette INFO Marionette enabled
console.warn: SearchSettings: "get: No settings file exists, new profile?" (new NotFoundError("Could not open the file at C:\\Users\\agsan\\AppData\\Local\\Temp\\rust_mozprofileQB5zKH\\search.json.mozlz4", (void 0)))
1629747247729 Marionette INFO Listening on port 56274
1629747247818 RemoteAgent WARN TLS certificate errors will be ignored for this session
JavaScript warning: https://images-na.ssl-images-amazon.com/images/I/61XKxrBtDVL.js?AUIClients/AmazonUIjQuery, line 52: Using //@ to indicate sourceURL pragmas is deprecated. Use //# instead
console.error: services.settings:
main/doh-providers Signature failed InvalidSignatureError: Invalid content signature (main/doh-providers)
console.error: services.settings:
main/doh-providers local data was corrupted
console.warn: services.settings: main/doh-providers Signature verified failed. Retry from scratch
console.error: services.settings:
main/doh-config Signature failed InvalidSignatureError: Invalid content signature (main/doh-config)
console.error: services.settings:
main/doh-config local data was corrupted
console.warn: services.settings: main/doh-config Signature verified failed. Retry from scratch
console.log: WebExtensions: reset-default-search: starting.
console.log: WebExtensions: reset-default-search: No addons in our list are installed.
1629751510810 Marionette INFO Stopped listening on port 56274
JavaScript error: resource:///modules/Interactions.jsm, line 209: NS_ERROR_FAILURE: Component returned failure code: 0x80004005 (NS_ERROR_FAILURE) [nsIUserIdleService.removeIdleObserver]
JavaScript error: chrome://remote/content/marionette/cert.js, line 55: NS_ERROR_NOT_AVAILABLE: Component returned failure code: 0x80040111 (NS_ERROR_NOT_AVAILABLE) [nsICertOverrideService.setDisableAllSecurityChecksAndLetAttackersInterceptMyData]
1629757923513 geckodriver INFO Listening on 127.0.0.1:60260
1629757926538 mozrunner::runner INFO Running command: "C:\\Program Files\\Mozilla Firefox\\firefox.exe" "--marionette" "-foreground" "-no-remote" "-profile" "C:\\Users\\agsan\\AppData\\Local\\Temp\\rust_mozprofilemU8dDP"
1629757926826 Marionette INFO Marionette enabled
console.warn: SearchSettings: "get: No settings file exists, new profile?" (new NotFoundError("Could not open the file at C:\\Users\\agsan\\AppData\\Local\\Temp\\rust_mozprofilemU8dDP\\search.json.mozlz4", (void 0)))
1629757928413 Marionette INFO Listening on port 60269
1629757928580 RemoteAgent WARN TLS certificate errors will be ignored for this session
JavaScript warning: https://images-na.ssl-images-amazon.com/images/I/61XKxrBtDVL.js?AUIClients/AmazonUIjQuery, line 52: Using //@ to indicate sourceURL pragmas is deprecated. Use //# instead
console.error: services.settings:
main/doh-providers Signature failed InvalidSignatureError: Invalid content signature (main/doh-providers)
console.error: services.settings:
main/doh-providers local data was corrupted
console.warn: services.settings: main/doh-providers Signature verified failed. Retry from scratch
console.error: services.settings:
main/doh-config Signature failed InvalidSignatureError: Invalid content signature (main/doh-config)
console.error: services.settings:
main/doh-config local data was corrupted
console.warn: services.settings: main/doh-config Signature verified failed. Retry from scratch
console.log: WebExtensions: reset-default-search: starting.
console.log: WebExtensions: reset-default-search: No addons in our list are installed.
1629760123574 Marionette INFO Stopped listening on port 60269
JavaScript error: resource:///modules/Interactions.jsm, line 209: NS_ERROR_FAILURE: Component returned failure code: 0x80004005 (NS_ERROR_FAILURE) [nsIUserIdleService.removeIdleObserver]
JavaScript error: chrome://remote/content/marionette/cert.js, line 55: NS_ERROR_NOT_AVAILABLE: Component returned failure code: 0x80040111 (NS_ERROR_NOT_AVAILABLE) [nsICertOverrideService.setDisableAllSecurityChecksAndLetAttackersInterceptMyData]
###!!! [Parent][RunMessage] Error: Channel closing: too late to send/recv, messages will be lost
6
1629759942135 RemoteAgent WARN TLS certificate errors will be ignored for this session
JavaScript warning: https://images-na.ssl-images-amazon.com/images/I/61XKxrBtDVL.js?AUIClients/AmazonUIjQuery, line 52: Using //@ to indicate sourceURL pragmas is deprecated. Use //# instead
1629760143875 Marionette INFO Stopped listening on port 60856
JavaScript error: resource:///modules/Interactions.jsm, line 209: NS_ERROR_FAILURE: Component returned failure code: 0x80004005 (NS_ERROR_FAILURE) [nsIUserIdleService.removeIdleObserver]
###!!! [Parent][RunMessage] Error: Channel closing: too late to send/recv, messages will be lost
ttings: "get: No settings file exists, new profile?" (new NotFoundError("Could not open the file at C:\\Users\\agsan\\AppData\\Local\\Temp\\rust_mozprofiledCfQ81\\search.json.mozlz4", (void 0)))
1629760144280 Marionette INFO Listening on port 61043
1629760144333 RemoteAgent WARN TLS certificate errors will be ignored for this session
JavaScript warning: https://images-na.ssl-images-amazon.com/images/I/61XKxrBtDVL.js?AUIClients/AmazonUIjQuery, line 52: Using //@ to indicate sourceURL pragmas is deprecated. Use //# instead
1629760176854 Marionette INFO Stopped listening on port 61043
JavaScript error: resource:///modules/Interactions.jsm, line 209: NS_ERROR_FAILURE: Component returned failure code: 0x80004005 (NS_ERROR_FAILURE) [nsIUserIdleService.removeIdleObserver]
JavaScript error: chrome://remote/content/marionette/cert.js, line 55: NS_ERROR_NOT_AVAILABLE: Component returned failure code: 0x80040111 (NS_ERROR_NOT_AVAILABLE) [nsICertOverrideService.setDisableAllSecurityChecksAndLetAttackersInterceptMyData]
###!!! [Parent][RunMessage] Error: Channel closing: too late to send/recv, messages will be lost
4
1629760166734 RemoteAgent WARN TLS certificate errors will be ignored for this session
JavaScript warning: https://images-na.ssl-images-amazon.com/images/I/61XKxrBtDVL.js?AUIClients/AmazonUIjQuery, line 52: Using //@ to indicate sourceURL pragmas is deprecated. Use //# instead
1629760177445 Marionette INFO Stopped listening on port 61191629760177609 mozrunner::runner INFO Running command: "C:\\Program Files\\Mozilla Firefox\\firefox.exe" "--marionette" "-foreground" "-no-remote" "-profile" "C:\\Users\\agsan\\AppData\\Local\\Temp\\rust_mozprofileE4LeaP"
1629760177825 Marionette INFO Marionette enabled
console.warn: SearchSettings: "get: No settings file exists, new profile?" (new NotFoundError("Could not open the file at C:\\Users\\agsan\\AppData\\Local\\Temp\\rust_mozprofileE4LeaP\\search.json.mozlz4", (void 0)))
1629760179424 Marionette INFO Listening on port 61377
1629760179651 RemoteAgent WARN TLS certificate errors will be ignored for this session
JavaScript warning: https://images-na.ssl-images-amazon.com/images/I/61XKxrBtDVL.js?AUIClients/AmazonUIjQuery, line 52: Using //@ to indicate sourceURL pragmas is deprecated. Use //# instead
1629760184747 Marionette INFO Stopped listening on port 61377
JavaScript error: resource:///modules/Interactions.jsm, line 209: NS_ERROR_FAILURE: Component returned failure code: 0x80004005 (NS_ERROR_FAILURE) [nsIUserIdleService.removeIdleObserver]
1629760225624 geckodriver INFO Listening on 127.0.0.1:61525
1629760228653 mozrunner::runner INFO Running command: "C:\\Program Files\\Mozilla Firefox\\firefox.exe" "--marionette" "-foreground" "-no-remote" "-profile" "C:\\Users\\agsan\\AppData\\Local\\Temp\\rust_mozprofilemPeAWN"
1629760228856 Marionette INFO Marionette enabled
console.warn: SearchSettings: "get: No settings file exists, new profile?" (new NotFoundError("Could not open the file at C:\\Users\\agsan\\AppData\\Local\\Temp\\rust_mozprofilemPeAWN\\search.json.mozlz4", (void 0)))
1629760230673 Marionette INFO Listening on port 61533
1629760230692 RemoteAgent WARN TLS certificate errors will be ignored for this session
JavaScript warning: https://images-na.ssl-images-amazon.com/images/I/61XKxrBtDVL.js?AUIClients/AmazonUIjQuery, line 52: Using //@ to indicate sourceURL pragmas is deprecated. Use //# instead
IPDL protocol error: Handler returned error code!
###!!! [Parent][DispatchAsyncMessage] Error: PClientManager::Msg_ExpectFutureClientSource Processing error: message was deserialized, but the handler returned false (indicating failure)
IPDL protocol error: Handler returned error code!
###!!! [Parent][DispatchAsyncMessage] Error: PClientManager::Msg_ForgetFutureClientSource Processing error: message was deserialized, but the handler returned false (indicating failure)
1629760604360 Marionette INFO Stopped listening on port 61533
JavaScript error: resource:///modules/Interactions.jsm, line 209: NS_ERROR_FAILURE: Component returned failure code: 0x80004005 (NS_ERROR_FAILURE) [nsIUserIdleService.removeIdleObserver]
###!!! [Parent][RunMessage] Error: Channel closing: too late to send/recv, messages will be lost
ttings: "get: No settings file exists, new profile?" (new NotFoundError("Could not open the file at C:\\Users\\agsan\\AppData\\Local\\Temp\\rust_mozprofileFayqGJ\\search.json.mozlz4", (void 0)))
1629760436968 Marionette INFO Listening on port 54481
1629760437304 RemoteAgent WARN TLS certificate errors will be ignored for this session
JavaScript warning: https://images-na.ssl-images-amazon.com/images/I/61XKxrBtDVL.js?AUIClients/AmazonUIjQuery, line 52: Using //@ to indicate sourceURL pragmas is deprecated. Use //# instead
1629760442566 Marionette INFO Stopped listening on port 54481
JavaScript error: resource:///modules/Interactions.jsm, line 209: NS_ERROR_FAILURE: Component returned failure code: 0x80004005 (NS_ERROR_FAILURE) [nsIUserIdleService.removeIdleObserver]
###!!! [Parent][RunMessage] Error: Channel closing: too late to send/recv, messages will be lost
1629760464229 geckodriver INFO Listening on 127.0.0.1:56259
1629760467260 mozrunner::runner INFO Running command: "C:\\Program Files\\Mozilla Firefox\\firefox.exe" "--marionette" "-foreground" "-no-remote" "-profile" "C:\\Users\\agsan\\AppData\\Local\\Temp\\rust_mozprofiletjov6o"
1629760467474 Marionette INFO Marionette enabled
console.warn: SearchSettings: "get: No settings file exists, new profile?" (new NotFoundError("Could not open the file at C:\\Users\\agsan\\AppData\\Local\\Temp\\rust_mozprofiletjov6o\\search.json.mozlz4", (void 0)))
1629760469049 Marionette INFO Listening on port 59123
1629760469298 RemoteAgent WARN TLS certificate errors will be ignored for this session
JavaScript warning: https://images-na.ssl-images-amazon.com/images/I/61XKxrBtDVL.js?AUIClients/AmazonUIjQuery, line 52: Using //@ to indicate sourceURL pragmas is deprecated. Use //# instead
1629760473960 Marionette INFO Stopped listening on port 59123
JavaScript error: resource:///modules/Interactions.jsm, line 209: NS_ERROR_FAILURE: Component returned failure code: 0x80004005 (NS_ERROR_FAILURE) [nsIUserIdleService.removeIdleObserver]
JavaScript error: resource://gre/modules/UrlClassifierListManager.jsm, line 691: TypeError: this.tablesData[table] is undefined
###!!! [Parent][RunMessage] Error: Channel closing: too late to send/recv, messages will be lost
1629760493620 geckodriver INFO Listening on 127.0.0.1:53969
1629760496641 mozrunner::runner INFO Running command: "C:\\Program Files\\Mozilla Firefox\\firefox.exe" "--marionette" "-foreground" "-no-remote" "-profile" "C:\\Users\\agsan\\AppData\\Local\\Temp\\rust_mozprofileLBlozi"
1629760496838 Marionette INFO Marionette enabled
console.warn: SearchSettings: "get: No settings file exists, new profile?" (new NotFoundError("Could not open the file at C:\\Users\\agsan\\AppData\\Local\\Temp\\rust_mozprofileLBlozi\\search.json.mozlz4", (void 0)))
1629760498312 Marionette INFO Listening on port 53977
1629760498685 RemoteAgent WARN TLS certificate errors will be ignored for this session
JavaScript warning: https://images-na.ssl-images-amazon.com/images/I/61XKxrBtDVL.js?AUIClients/AmazonUIjQuery, line 52: Using //@ to indicate sourceURL pragmas is deprecated. Use //# instead
1629760501338 Marionette WARN TimedPromise timed out after 500 ms: stacktrace:
TimedPromise/<@chrome://remote/content/marionette/sync.js:238:19
TimedPromise@chrome://remote/content/marionette/sync.js:223:10
interaction.flushEventLoop@chrome://remote/content/marionette/interaction.js:431:10
webdriverClickElement@chrome://remote/content/marionette/interaction.js:179:31
send@https://images-na.ssl-images-amazon.com/images/I/61XKxrBtDVL.js?AUIClients/AmazonUIjQuery:177:19
ajax@https://images-na.ssl-images-amazon.com/images/I/61XKxrBtDVL.js?AUIClients/AmazonUIjQuery:171:185
@https://d1nruqhae353qc.cloudfront.net/primesignup/mx/widget.js?_=1629760499821:185:15
k@https://www.amazon.com.mx/Apple-Nuevo-iPhone-12-128-GB/dp/B08L7PNH8B/ref=sr_1_5?__mk_es_MX=%C3%85M%C3%85%C5%BD%C3%95%C3%91&dchild=1&keywords=iphone+12&qid=1629318661&sr=8-5:86:135
Y/</<@https://www.amazon.com.mx/Apple-Nuevo-iPhone-12-128-GB/dp/B08L7PNH8B/ref=sr_1_5?__mk_es_MX=%C3%85M%C3%85%C5%BD%C3%95%C3%91&dchild=1&keywords=iphone+12&qid=1629318661&sr=8-5:87:461
ha@https://www.amazon.com.mx/Apple-Nuevo-iPhone-12-128-GB/dp/B08L7PNH8B/ref=sr_1_5?__mk_es_MX=%C3%85M%C3%85%C5%BD%C3%95%C3%91&dchild=1&keywords=iphone+12&qid=1629318661&sr=8-5:91:516
Ga@https://www.amazon.com.mx/Apple-Nuevo-iPhone-12-128-GB/dp/B08L7PNH8B/ref=sr_1_5?__mk_es_MX=%C3%85M%C3%85%C5%BD%C3%95%C3%91&dchild=1&keywords=iphone+12&qid=1629318661&sr=8-5:91:90
1629760503607 Marionette INFO Stopped listening on port 53977
JavaScript error: resource:///modules/Interactions.jsm, line 209: NS_ERROR_FAILURE: Component returned failure code: 0x80004005 (NS_ERROR_FAILURE) [nsIUserIdleService.removeIdleObserver]
###!!! [Parent][RunMessage] Error: Channel closing: too late to send/recv, messages will be lost
1629760514299 geckodriver INFO Listening on 127.0.0.1:63712
1629760517329 mozrunner::runner INFO Running command: "C:\\Program Files\\Mozilla Firefox\\firefox.exe" "--marionette" "-foreground" "-no-remote" "-profile" "C:\\Users\\agsan\\AppData\\Local\\Temp\\rust_mozprofile52JDua"
1629760517525 Marionette INFO Marionette enabled
console.warn: SearchSettings: "get: No settings file exists, new profile?" (new NotFoundError("Could not open the file at C:\\Users\\agsan\\AppData\\Local\\Temp\\rust_mozprofile52JDua\\search.json.mozlz4", (void 0)))
1629760519032 Marionette INFO Listening on port 63720
1629760519370 RemoteAgent WARN TLS certificate errors will be ignored for this session
JavaScript warning: https://images-na.ssl-images-amazon.com/images/I/61XKxrBtDVL.js?AUIClients/AmazonUIjQuery, line 52: Using //@ to indicate sourceURL pragmas is deprecated. Use //# instead
1629760524189 Marionette INFO Stopped listening on port 63720
JavaScript error: resource:///modules/Interactions.jsm, line 209: NS_ERROR_FAILURE: Component returned failure code: 0x80004005 (NS_ERROR_FAILURE) [nsIUserIdleService.removeIdleObserver]
###!!! [Parent][RunMessage] Error: Channel closing: too late to send/recv, messages will be lost
1629760583858 geckodriver INFO Listening on 127.0.0.1:63869
1629760586881 mozrunner::runner INFO Running command: "C:\\Program Files\\Mozilla Firefox\\firefox.exe" "--marionette" "-foreground" "-no-remote" "-profile" "C:\\Users\\agsan\\AppData\\Local\\Temp\\rust_mozprofilegrOgrO"
1629760587084 Marionette INFO Marionette enabled
console.warn: SearchSettings: "get: No settings file exists, new profile?" (new NotFoundError("Could not open the file at C:\\Users\\agsan\\AppData\\Local\\Temp\\rust_mozprofilegrOgrO\\search.json.mozlz4", (void 0)))
1629760588928 Marionette INFO Listening on port 63877
1629760589037 RemoteAgent WARN TLS certificate errors will be ignored for this session
JavaScript warning: https://images-na.ssl-images-amazon.com/images/I/61XKxrBtDVL.js?AUIClients/AmazonUIjQuery, line 52: Using //@ to indicate sourceURL pragmas is deprecated. Use //# instead
1629760594030 Marionette INFO Stopped listening on port 63877
JavaScript error: resource:///modules/Interactions.jsm, line 209: NS_ERROR_FAILURE: Component returned failure code: 0x80004005 (NS_ERROR_FAILURE) [nsIUserIdleService.removeIdleObserver]
###!!! [Parent][RunMessage] Error: Channel closing: too late to send/recv, messages will be lost
1629760601194 geckodriver INFO Listening on 127.0.0.1:64013
1629760604207 mozrunner::runner INFO Running command: "C:\\Program Files\\Mozilla Firefox\\firefox.exe" "--marionette" "-foreground" "-no-remote" "-profile" "C:\\Users\\agsan\\AppData\\Local\\Temp\\rust_mozprofilepkumpg"
1629760604450 Marionette INFO Marionette enabled
console.warn: SearchSettings: "get: No settings file exists, new profile?" (new NotFoundError("Could not open the file at C:\\Users\\agsan\\AppData\\Local\\Temp\\rust_mozprofilepkumpg\\search.json.mozlz4", (void 0)))
1629760605727 Marionette INFO Listening on port 64024
1629760605751 RemoteAgent WARN TLS certificate errors will be ignored for this session
JavaScript warning: https://images-na.ssl-images-amazon.com/images/I/61XKxrBtDVL.js?AUIClients/AmazonUIjQuery, line 52: Using //@ to indicate sourceURL pragmas is deprecated. Use //# instead
1629760610682 Marionette INFO Stopped listening on port 64024
JavaScript error: resource:///modules/Interactions.jsm, line 209: NS_ERROR_FAILURE: Component returned failure code: 0x80004005 (NS_ERROR_FAILURE) [nsIUserIdleService.removeIdleObserver]
###!!! [Parent][RunMessage] Error: Channel closing: too late to send/recv, messages will be lost
1629760615844 geckodriver INFO Listening on 127.0.0.1:64166
1629760618876 mozrunner::runner INFO Running command: "C:\\Program Files\\Mozilla Firefox\\firefox.exe" "--marionette" "-foreground" "-no-remote" "-profile" "C:\\Users\\agsan\\AppData\\Local\\Temp\\rust_mozprofileXUIikk"
1629760619086 Marionette INFO Marionette enabled
console.warn: SearchSettings: "get: No settings file exists, new profile?" (new NotFoundError("Could not open the file at C:\\Users\\agsan\\AppData\\Local\\Temp\\rust_mozprofileXUIikk\\search.json.mozlz4", (void 0)))
1629760620898 Marionette INFO Listening on port 64175
1629760620925 RemoteAgent WARN TLS certificate errors will be ignored for this session
JavaScript warning: https://images-na.ssl-images-amazon.com/images/I/61XKxrBtDVL.js?AUIClients/AmazonUIjQuery, line 52: Using //@ to indicate sourceURL pragmas is deprecated. Use //# instead
1629760626001 Marionette INFO Stopped listening on port 64175
JavaScript error: resource:///modules/Interactions.jsm, line 209: NS_ERROR_FAILURE: Component returned failure code: 0x80004005 (NS_ERROR_FAILURE) [nsIUserIdleService.removeIdleObserver]
###!!! [Parent][RunMessage] Error: Channel closing: too late to send/recv, messages will be lost
1629760787096 geckodriver INFO Listening on 127.0.0.1:60797
1629760790125 mozrunner::runner INFO Running command: "C:\\Program Files\\Mozilla Firefox\\firefox.exe" "--marionette" "-foreground" "-no-remote" "-profile" "C:\\Users\\agsan\\AppData\\Local\\Temp\\rust_mozprofileAOnZZ3"
1629760790330 Marionette INFO Marionette enabled
console.warn: SearchSettings: "get: No settings file exists, new profile?" (new NotFoundError("Could not open the file at C:\\Users\\agsan\\AppData\\Local\\Temp\\rust_mozprofileAOnZZ3\\search.json.mozlz4", (void 0)))
1629760792048 Marionette INFO Listening on port 60852
1629760792152 RemoteAgent WARN TLS certificate errors will be ignored for this session
JavaScript warning: https://images-na.ssl-images-amazon.com/images/I/61XKxrBtDVL.js?AUIClients/AmazonUIjQuery, line 52: Using //@ to indicate sourceURL pragmas is deprecated. Use //# instead
1629760796924 Marionette INFO Stopped listening on port 60852
JavaScript error: resource:///modules/Interactions.jsm, line 209: NS_ERROR_FAILURE: Component returned failure code: 0x80004005 (NS_ERROR_FAILURE) [nsIUserIdleService.removeIdleObserver]
###!!! [Parent][RunMessage] Error: Channel closing: too late to send/recv, messages will be lost
1629760846359 geckodriver INFO Listening on 127.0.0.1:60992
1629760849378 mozrunner::runner INFO Running command: "C:\\Program Files\\Mozilla Firefox\\firefox.exe" "--marionette" "-foreground" "-no-remote" "-profile" "C:\\Users\\agsan\\AppData\\Local\\Temp\\rust_mozprofileAy3p54"
1629760849582 Marionette INFO Marionette enabled
console.warn: SearchSettings: "get: No settings file exists, new profile?" (new NotFoundError("Could not open the file at C:\\Users\\agsan\\AppData\\Local\\Temp\\rust_mozprofileAy3p54\\search.json.mozlz4", (void 0)))
1629760851208 Marionette INFO Listening on port 61000
1629760851420 RemoteAgent WARN TLS certificate errors will be ignored for this session
JavaScript warning: https://images-na.ssl-images-amazon.com/images/I/61XKxrBtDVL.js?AUIClients/AmazonUIjQuery, line 52: Using //@ to indicate sourceURL pragmas is deprecated. Use //# instead
1629760856710 Marionette INFO Stopped listening on port 61000
JavaScript error: resource:///modules/Interactions.jsm, line 209: NS_ERROR_FAILURE: Component returned failure code: 0x80004005 (NS_ERROR_FAILURE) [nsIUserIdleService.removeIdleObserver]
###!!! [Parent][RunMessage] Error: Channel closing: too late to send/recv, messages will be lost
1629760923240 geckodriver INFO Listening on 127.0.0.1:60586
1629760926263 mozrunner::runner INFO Running command: "C:\\Program Files\\Mozilla Firefox\\firefox.exe" "--marionette" "-foreground" "-no-remote" "-profile" "C:\\Users\\agsan\\AppData\\Local\\Temp\\rust_mozprofileqEEDeC"
1629760926472 Marionette INFO Marionette enabled
console.warn: SearchSettings: "get: No settings file exists, new profile?" (new NotFoundError("Could not open the file at C:\\Users\\agsan\\AppData\\Local\\Temp\\rust_mozprofileqEEDeC\\search.json.mozlz4", (void 0)))
1629760928167 Marionette INFO Listening on port 60594
1629760928304 RemoteAgent WARN TLS certificate errors will be ignored for this session
JavaScript warning: https://images-na.ssl-images-amazon.com/images/I/61XKxrBtDVL.js?AUIClients/AmazonUIjQuery, line 52: Using //@ to indicate sourceURL pragmas is deprecated. Use //# instead
1629760933496 Marionette INFO Stopped listening on port 60594
JavaScript error: resource:///modules/Interactions.jsm, line 209: NS_ERROR_FAILURE: Component returned failure code: 0x80004005 (NS_ERROR_FAILURE) [nsIUserIdleService.removeIdleObserver]
###!!! [Parent][RunMessage] Error: Channel closing: too late to send/recv, messages will be lost
1629762024865 geckodriver INFO Listening on 127.0.0.1:63794
1629762027885 mozrunner::runner INFO Running command: "C:\\Program Files\\Mozilla Firefox\\firefox.exe" "--marionette" "-foreground" "-no-remote" "-profile" "C:\\Users\\agsan\\AppData\\Local\\Temp\\rust_mozprofileJDf1Gd"
1629762028101 Marionette INFO Marionette enabled
console.warn: SearchSettings: "get: No settings file exists, new profile?" (new NotFoundError("Could not open the file at C:\\Users\\agsan\\AppData\\Local\\Temp\\rust_mozprofileJDf1Gd\\search.json.mozlz4", (void 0)))
1629762029833 Marionette INFO Listening on port 63802
1629762029937 RemoteAgent WARN TLS certificate errors will be ignored for this session
JavaScript warning: https://images-na.ssl-images-amazon.com/images/I/61XKxrBtDVL.js?AUIClients/AmazonUIjQuery, line 52: Using //@ to indicate sourceURL pragmas is deprecated. Use //# instead
1629762035009 Marionette INFO Stopped listening on port 63802
JavaScript error: resource:///modules/Interactions.jsm, line 209: NS_ERROR_FAILURE: Component returned failure code: 0x80004005 (NS_ERROR_FAILURE) [nsIUserIdleService.removeIdleObserver]
###!!! [Parent][RunMessage] Error: Channel closing: too late to send/recv, messages will be lost
1629762364852 geckodriver INFO Listening on 127.0.0.1:59617
1629762367872 mozrunner::runner INFO Running command: "C:\\Program Files\\Mozilla Firefox\\firefox.exe" "--marionette" "-foreground" "-no-remote" "-profile" "C:\\Users\\agsan\\AppData\\Local\\Temp\\rust_mozprofileNrwPY9"
1629762368081 Marionette INFO Marionette enabled
console.warn: SearchSettings: "get: No settings file exists, new profile?" (new NotFoundError("Could not open the file at C:\\Users\\agsan\\AppData\\Local\\Temp\\rust_mozprofileNrwPY9\\search.json.mozlz4", (void 0)))
1629762369796 Marionette INFO Listening on port 59626
1629762369911 RemoteAgent WARN TLS certificate errors will be ignored for this session
JavaScript warning: https://images-na.ssl-images-amazon.com/images/I/61XKxrBtDVL.js?AUIClients/AmazonUIjQuery, line 52: Using //@ to indicate sourceURL pragmas is deprecated. Use //# instead
1629762374481 Marionette INFO Stopped listening on port 59626
JavaScript error: resource:///modules/Interactions.jsm, line 209: NS_ERROR_FAILURE: Component returned failure code: 0x80004005 (NS_ERROR_FAILURE) [nsIUserIdleService.removeIdleObserver]
###!!! [Parent][RunMessage] Error: Channel closing: too late to send/recv, messages will be lost
1629762401306 geckodriver INFO Listening on 127.0.0.1:59765
1629762404325 mozrunner::runner INFO Running command: "C:\\Program Files\\Mozilla Firefox\\firefox.exe" "--marionette" "-foreground" "-no-remote" "-profile" "C:\\Users\\agsan\\AppData\\Local\\Temp\\rust_mozprofilerhRZFC"
1629762404545 Marionette INFO Marionette enabled
console.warn: SearchSettings: "get: No settings file exists, new profile?" (new NotFoundError("Could not open the file at C:\\Users\\agsan\\AppData\\Local\\Temp\\rust_mozprofilerhRZFC\\search.json.mozlz4", (void 0)))
1629762406404 Marionette INFO Listening on port 59776
1629762406464 RemoteAgent WARN TLS certificate errors will be ignored for this session
JavaScript warning: https://images-na.ssl-images-amazon.com/images/I/61XKxrBtDVL.js?AUIClients/AmazonUIjQuery, line 52: Using //@ to indicate sourceURL pragmas is deprecated. Use //# instead
1629762411576 Marionette INFO Stopped listening on port 59776
JavaScript error: resource:///modules/Interactions.jsm, line 209: NS_ERROR_FAILURE: Component returned failure code: 0x80004005 (NS_ERROR_FAILURE) [nsIUserIdleService.removeIdleObserver]
###!!! [Parent][RunMessage] Error: Channel closing: too late to send/recv, messages will be lost
1629762413059 geckodriver INFO Listening on 127.0.0.1:59939
1629762416085 mozrunner::runner INFO Running command: "C:\\Program Files\\Mozilla Firefox\\firefox.exe" "--marionette" "-foreground" "-no-remote" "-profile" "C:\\Users\\agsan\\AppData\\Local\\Temp\\rust_mozprofileB6bx6O"
1629762416293 Marionette INFO Marionette enabled
console.warn: SearchSettings: "get: No settings file exists, new profile?" (new NotFoundError("Could not open the file at C:\\Users\\agsan\\AppData\\Local\\Temp\\rust_mozprofileB6bx6O\\search.json.mozlz4", (void 0)))
1629762418010 Marionette INFO Listening on port 59948
1629762418122 RemoteAgent WARN TLS certificate errors will be ignored for this session
JavaScript warning: https://images-na.ssl-images-amazon.com/images/I/61XKxrBtDVL.js?AUIClients/AmazonUIjQuery, line 52: Using //@ to indicate sourceURL pragmas is deprecated. Use //# instead
1629762423262 Marionette INFO Stopped listening on port 59948
JavaScript error: resource:///modules/Interactions.jsm, line 209: NS_ERROR_FAILURE: Component returned failure code: 0x80004005 (NS_ERROR_FAILURE) [nsIUserIdleService.removeIdleObserver]
###!!! [Parent][RunMessage] Error: Channel closing: too late to send/recv, messages will be lost
1629762428955 geckodriver INFO Listening on 127.0.0.1:58192
1629762431985 mozrunner::runner INFO Running command: "C:\\Program Files\\Mozilla Firefox\\firefox.exe" "--marionette" "-foreground" "-no-remote" "-profile" "C:\\Users\\agsan\\AppData\\Local\\Temp\\rust_mozprofiledI6IjH"
1629762432193 Marionette INFO Marionette enabled
console.warn: SearchSettings: "get: No settings file exists, new profile?" (new NotFoundError("Could not open the file at C:\\Users\\agsan\\AppData\\Local\\Temp\\rust_mozprofiledI6IjH\\search.json.mozlz4", (void 0)))
1629762433899 Marionette INFO Listening on port 58200
1629762434027 RemoteAgent WARN TLS certificate errors will be ignored for this session
JavaScript warning: https://images-na.ssl-images-amazon.com/images/I/61XKxrBtDVL.js?AUIClients/AmazonUIjQuery, line 52: Using //@ to indicate sourceURL pragmas is deprecated. Use //# instead
1629762438745 Marionette INFO Stopped listening on port 58200
JavaScript error: resource:///modules/Interactions.jsm, line 209: NS_ERROR_FAILURE: Component returned failure code: 0x80004005 (NS_ERROR_FAILURE) [nsIUserIdleService.removeIdleObserver]
###!!! [Parent][RunMessage] Error: Channel closing: too late to send/recv, messages will be lost
1629762500353 geckodriver INFO Listening on 127.0.0.1:58349
1629762503390 mozrunner::runner INFO Running command: "C:\\Program Files\\Mozilla Firefox\\firefox.exe" "--marionette" "-foreground" "-no-remote" "-profile" "C:\\Users\\agsan\\AppData\\Local\\Temp\\rust_mozprofile6Np6oX"
1629762503602 Marionette INFO Marionette enabled
console.warn: SearchSettings: "get: No settings file exists, new profile?" (new NotFoundError("Could not open the file at C:\\Users\\agsan\\AppData\\Local\\Temp\\rust_mozprofile6Np6oX\\search.json.mozlz4", (void 0)))
1629762505510 Marionette INFO Listening on port 58357
1629762505542 RemoteAgent WARN TLS certificate errors will be ignored for this session
JavaScript warning: https://images-na.ssl-images-amazon.com/images/I/61XKxrBtDVL.js?AUIClients/AmazonUIjQuery, line 52: Using //@ to indicate sourceURL pragmas is deprecated. Use //# instead
1629762510143 Marionette INFO Stopped listening on port 58357
JavaScript error: resource:///modules/Interactions.jsm, line 209: NS_ERROR_FAILURE: Component returned failure code: 0x80004005 (NS_ERROR_FAILURE) [nsIUserIdleService.removeIdleObserver]
###!!! [Parent][RunMessage] Error: Channel closing: too late to send/recv, messages will be lost
1629762983011 geckodriver INFO Listening on 127.0.0.1:56831
1629762986028 mozrunner::runner INFO Running command: "C:\\Program Files\\Mozilla Firefox\\firefox.exe" "--marionette" "-foreground" "-no-remote" "-profile" "C:\\Users\\agsan\\AppData\\Local\\Temp\\rust_mozprofileZdWng3"
1629762986239 Marionette INFO Marionette enabled
console.warn: SearchSettings: "get: No settings file exists, new profile?" (new NotFoundError("Could not open the file at C:\\Users\\agsan\\AppData\\Local\\Temp\\rust_mozprofileZdWng3\\search.json.mozlz4", (void 0)))
1629762988179 Marionette INFO Listening on port 56839
1629762988683 RemoteAgent WARN TLS certificate errors will be ignored for this session
JavaScript warning: https://images-na.ssl-images-amazon.com/images/I/61XKxrBtDVL.js?AUIClients/AmazonUIjQuery, line 52: Using //@ to indicate sourceURL pragmas is deprecated. Use //# instead
1629762993419 Marionette INFO Stopped listening on port 56839
JavaScript error: resource:///modules/Interactions.jsm, line 209: NS_ERROR_FAILURE: Component returned failure code: 0x80004005 (NS_ERROR_FAILURE) [nsIUserIdleService.removeIdleObserver]
###!!! [Parent][RunMessage] Error: Channel closing: too late to send/recv, messages will be lost
1629763046493 geckodriver INFO Listening on 127.0.0.1:56993
1629763049534 mozrunner::runner INFO Running command: "C:\\Program Files\\Mozilla Firefox\\firefox.exe" "--marionette" "-foreground" "-no-remote" "-profile" "C:\\Users\\agsan\\AppData\\Local\\Temp\\rust_mozprofilenhe5tF"
1629763049753 Marionette INFO Marionette enabled
console.warn: SearchSettings: "get: No settings file exists, new profile?" (new NotFoundError("Could not open the file at C:\\Users\\agsan\\AppData\\Local\\Temp\\rust_mozprofilenhe5tF\\search.json.mozlz4", (void 0)))
1629763051578 Marionette INFO Listening on port 57001
1629763051685 RemoteAgent WARN TLS certificate errors will be ignored for this session
JavaScript warning: https://images-na.ssl-images-amazon.com/images/I/61XKxrBtDVL.js?AUIClients/AmazonUIjQuery, line 52: Using //@ to indicate sourceURL pragmas is deprecated. Use //# instead
1629763056843 Marionette INFO Stopped listening on port 57001
JavaScript error: resource:///modules/Interactions.jsm, line 209: NS_ERROR_FAILURE: Component returned failure code: 0x80004005 (NS_ERROR_FAILURE) [nsIUserIdleService.removeIdleObserver]
###!!! [Parent][RunMessage] Error: Channel closing: too late to send/recv, messages will be lost
1629763077228 geckodriver INFO Listening on 127.0.0.1:57151
1629763080257 mozrunner::runner INFO Running command: "C:\\Program Files\\Mozilla Firefox\\firefox.exe" "--marionette" "-foreground" "-no-remote" "-profile" "C:\\Users\\agsan\\AppData\\Local\\Temp\\rust_mozprofileUuWH3o"
1629763080468 Marionette INFO Marionette enabled
console.warn: SearchSettings: "get: No settings file exists, new profile?" (new NotFoundError("Could not open the file at C:\\Users\\agsan\\AppData\\Local\\Temp\\rust_mozprofileUuWH3o\\search.json.mozlz4", (void 0)))
1629763082299 Marionette INFO Listening on port 57160
1629763082401 RemoteAgent WARN TLS certificate errors will be ignored for this session
JavaScript warning: https://images-na.ssl-images-amazon.com/images/I/61XKxrBtDVL.js?AUIClients/AmazonUIjQuery, line 52: Using //@ to indicate sourceURL pragmas is deprecated. Use //# instead
1629763087329 Marionette INFO Stopped listening on port 57160
JavaScript error: resource:///modules/Interactions.jsm, line 209: NS_ERROR_FAILURE: Component returned failure code: 0x80004005 (NS_ERROR_FAILURE) [nsIUserIdleService.removeIdleObserver]
###!!! [Parent][RunMessage] Error: Channel closing: too late to send/recv, messages will be lost
1629763199148 geckodriver INFO Listening on 127.0.0.1:60797
1629763202182 mozrunner::runner INFO Running command: "C:\\Program Files\\Mozilla Firefox\\firefox.exe" "--marionette" "-foreground" "-no-remote" "-profile" "C:\\Users\\agsan\\AppData\\Local\\Temp\\rust_mozprofilelI2GPd"
1629763202391 Marionette INFO Marionette enabled
console.warn: SearchSettings: "get: No settings file exists, new profile?" (new NotFoundError("Could not open the file at C:\\Users\\agsan\\AppData\\Local\\Temp\\rust_mozprofilelI2GPd\\search.json.mozlz4", (void 0)))
1629763204247 Marionette INFO Listening on port 60850
1629763204340 RemoteAgent WARN TLS certificate errors will be ignored for this session
JavaScript warning: https://images-na.ssl-images-amazon.com/images/I/61XKxrBtDVL.js?AUIClients/AmazonUIjQuery, line 52: Using //@ to indicate sourceURL pragmas is deprecated. Use //# instead
1629763209407 Marionette INFO Stopped listening on port 60850
JavaScript error: resource:///modules/Interactions.jsm, line 209: NS_ERROR_FAILURE: Component returned failure code: 0x80004005 (NS_ERROR_FAILURE) [nsIUserIdleService.removeIdleObserver]
###!!! [Parent][RunMessage] Error: Channel closing: too late to send/recv, messages will be lost
1629763221336 geckodriver INFO Listening on 127.0.0.1:60991
1629763224364 mozrunner::runner INFO Running command: "C:\\Program Files\\Mozilla Firefox\\firefox.exe" "--marionette" "-foreground" "-no-remote" "-profile" "C:\\Users\\agsan\\AppData\\Local\\Temp\\rust_mozprofileSEyQA2"
1629763224572 Marionette INFO Marionette enabled
console.warn: SearchSettings: "get: No settings file exists, new profile?" (new NotFoundError("Could not open the file at C:\\Users\\agsan\\AppData\\Local\\Temp\\rust_mozprofileSEyQA2\\search.json.mozlz4", (void 0)))
1629763226282 Marionette INFO Listening on port 60999
1629763226411 RemoteAgent WARN TLS certificate errors will be ignored for this session
JavaScript warning: https://images-na.ssl-images-amazon.com/images/I/61XKxrBtDVL.js?AUIClients/AmazonUIjQuery, line 52: Using //@ to indicate sourceURL pragmas is deprecated. Use //# instead
1629763231171 Marionette INFO Stopped listening on port 60999
JavaScript error: resource:///modules/Interactions.jsm, line 209: NS_ERROR_FAILURE: Component returned failure code: 0x80004005 (NS_ERROR_FAILURE) [nsIUserIdleService.removeIdleObserver]
###!!! [Parent][RunMessage] Error: Channel closing: too late to send/recv, messages will be lost
1629763245202 geckodriver INFO Listening on 127.0.0.1:61141
1629763248231 mozrunner::runner INFO Running command: "C:\\Program Files\\Mozilla Firefox\\firefox.exe" "--marionette" "-foreground" "-no-remote" "-profile" "C:\\Users\\agsan\\AppData\\Local\\Temp\\rust_mozprofilePahJIw"
1629763248443 Marionette INFO Marionette enabled
console.warn: SearchSettings: "get: No settings file exists, new profile?" (new NotFoundError("Could not open the file at C:\\Users\\agsan\\AppData\\Local\\Temp\\rust_mozprofilePahJIw\\search.json.mozlz4", (void 0)))
1629763250322 Marionette INFO Listening on port 61152
1629763250389 RemoteAgent WARN TLS certificate errors will be ignored for this session
JavaScript warning: https://images-na.ssl-images-amazon.com/images/I/61XKxrBtDVL.js?AUIClients/AmazonUIjQuery, line 52: Using //@ to indicate sourceURL pragmas is deprecated. Use //# instead
1629763255472 Marionette INFO Stopped listening on port 61152
JavaScript error: resource:///modules/Interactions.jsm, line 209: NS_ERROR_FAILURE: Component returned failure code: 0x80004005 (NS_ERROR_FAILURE) [nsIUserIdleService.removeIdleObserver]
###!!! [Parent][RunMessage] Error: Channel closing: too late to send/recv, messages will be lost
1629763336737 geckodriver INFO Listening on 127.0.0.1:63831
1629763339757 mozrunner::runner INFO Running command: "C:\\Program Files\\Mozilla Firefox\\firefox.exe" "--marionette" "-foreground" "-no-remote" "-profile" "C:\\Users\\agsan\\AppData\\Local\\Temp\\rust_mozprofilepTiquL"
1629763339969 Marionette INFO Marionette enabled
console.warn: SearchSettings: "get: No settings file exists, new profile?" (new NotFoundError("Could not open the file at C:\\Users\\agsan\\AppData\\Local\\Temp\\rust_mozprofilepTiquL\\search.json.mozlz4", (void 0)))
1629763341329 Marionette INFO Listening on port 63839
1629763341790 RemoteAgent WARN TLS certificate errors will be ignored for this session
JavaScript warning: https://images-na.ssl-images-amazon.com/images/I/61XKxrBtDVL.js?AUIClients/AmazonUIjQuery, line 52: Using //@ to indicate sourceURL pragmas is deprecated. Use //# instead
1629763346974 Marionette INFO Stopped listening on port 63839
JavaScript error: resource:///modules/Interactions.jsm, line 209: NS_ERROR_FAILURE: Component returned failure code: 0x80004005 (NS_ERROR_FAILURE) [nsIUserIdleService.removeIdleObserver]
###!!! [Parent][RunMessage] Error: Channel closing: too late to send/recv, messages will be lost
1629764203528 geckodriver INFO Listening on 127.0.0.1:51606
1629764206559 mozrunner::runner INFO Running command: "C:\\Program Files\\Mozilla Firefox\\firefox.exe" "--marionette" "-foreground" "-no-remote" "-profile" "C:\\Users\\agsan\\AppData\\Local\\Temp\\rust_mozprofilevbd5Lj"
1629764206780 Marionette INFO Marionette enabled
console.warn: SearchSettings: "get: No settings file exists, new profile?" (new NotFoundError("Could not open the file at C:\\Users\\agsan\\AppData\\Local\\Temp\\rust_mozprofilevbd5Lj\\search.json.mozlz4", (void 0)))
1629764208719 Marionette INFO Listening on port 51618
1629764209218 RemoteAgent WARN TLS certificate errors will be ignored for this session
JavaScript warning: https://images-na.ssl-images-amazon.com/images/I/61XKxrBtDVL.js?AUIClients/AmazonUIjQuery, line 52: Using //@ to indicate sourceURL pragmas is deprecated. Use //# instead
1629764214264 Marionette INFO Stopped listening on port 51618
JavaScript error: resource:///modules/Interactions.jsm, line 209: NS_ERROR_FAILURE: Component returned failure code: 0x80004005 (NS_ERROR_FAILURE) [nsIUserIdleService.removeIdleObserver]
###!!! [Parent][RunMessage] Error: Channel closing: too late to send/recv, messages will be lost
1629764223860 geckodriver INFO Listening on 127.0.0.1:51765
1629764226897 mozrunner::runner INFO Running command: "C:\\Program Files\\Mozilla Firefox\\firefox.exe" "--marionette" "-foreground" "-no-remote" "-profile" "C:\\Users\\agsan\\AppData\\Local\\Temp\\rust_mozprofilehdSHVQ"
1629764227122 Marionette INFO Marionette enabled
console.warn: SearchSettings: "get: No settings file exists, new profile?" (new NotFoundError("Could not open the file at C:\\Users\\agsan\\AppData\\Local\\Temp\\rust_mozprofilehdSHVQ\\search.json.mozlz4", (void 0)))
1629764228872 Marionette INFO Listening on port 51773
1629764228933 RemoteAgent WARN TLS certificate errors will be ignored for this session
JavaScript warning: https://images-na.ssl-images-amazon.com/images/I/61XKxrBtDVL.js?AUIClients/AmazonUIjQuery, line 52: Using //@ to indicate sourceURL pragmas is deprecated. Use //# instead
1629764234174 Marionette INFO Stopped listening on port 51773
JavaScript error: resource:///modules/Interactions.jsm, line 209: NS_ERROR_FAILURE: Component returned failure code: 0x80004005 (NS_ERROR_FAILURE) [nsIUserIdleService.removeIdleObserver]
###!!! [Parent][RunMessage] Error: Channel closing: too late to send/recv, messages will be lost
1629764312244 geckodriver INFO Listening on 127.0.0.1:49484
1629764315261 mozrunner::runner INFO Running command: "C:\\Program Files\\Mozilla Firefox\\firefox.exe" "--marionette" "-foreground" "-no-remote" "-profile" "C:\\Users\\agsan\\AppData\\Local\\Temp\\rust_mozprofile17u6LI"
1629764315479 Marionette INFO Marionette enabled
console.warn: SearchSettings: "get: No settings file exists, new profile?" (new NotFoundError("Could not open the file at C:\\Users\\agsan\\AppData\\Local\\Temp\\rust_mozprofile17u6LI\\search.json.mozlz4", (void 0)))
1629764317350 Marionette INFO Listening on port 49492
1629764317412 RemoteAgent WARN TLS certificate errors will be ignored for this session
JavaScript warning: https://images-na.ssl-images-amazon.com/images/I/61XKxrBtDVL.js?AUIClients/AmazonUIjQuery, line 52: Using //@ to indicate sourceURL pragmas is deprecated. Use //# instead
1629764322299 Marionette INFO Stopped listening on port 49492
JavaScript error: resource:///modules/Interactions.jsm, line 209: NS_ERROR_FAILURE: Component returned failure code: 0x80004005 (NS_ERROR_FAILURE) [nsIUserIdleService.removeIdleObserver]
###!!! [Parent][RunMessage] Error: Channel closing: too late to send/recv, messages will be lost
1629764423754 geckodriver INFO Listening on 127.0.0.1:49635
1629764426778 mozrunner::runner INFO Running command: "C:\\Program Files\\Mozilla Firefox\\firefox.exe" "--marionette" "-foreground" "-no-remote" "-profile" "C:\\Users\\agsan\\AppData\\Local\\Temp\\rust_mozprofile7MYB4S"
1629764426996 Marionette INFO Marionette enabled
console.warn: SearchSettings: "get: No settings file exists, new profile?" (new NotFoundError("Could not open the file at C:\\Users\\agsan\\AppData\\Local\\Temp\\rust_mozprofile7MYB4S\\search.json.mozlz4", (void 0)))
1629764428897 Marionette INFO Listening on port 59864
1629764428923 RemoteAgent WARN TLS certificate errors will be ignored for this session
JavaScript warning: https://images-na.ssl-images-amazon.com/images/I/61XKxrBtDVL.js?AUIClients/AmazonUIjQuery, line 52: Using //@ to indicate sourceURL pragmas is deprecated. Use //# instead
1629764433711 Marionette INFO Stopped listening on port 59864
JavaScript error: resource:///modules/Interactions.jsm, line 209: NS_ERROR_FAILURE: Component returned failure code: 0x80004005 (NS_ERROR_FAILURE) [nsIUserIdleService.removeIdleObserver]
###!!! [Parent][RunMessage] Error: Channel closing: too late to send/recv, messages will be lost
1629764943811 geckodriver INFO Listening on 127.0.0.1:62745
1629764946834 mozrunner::runner INFO Running command: "C:\\Program Files\\Mozilla Firefox\\firefox.exe" "--marionette" "-foreground" "-no-remote" "-profile" "C:\\Users\\agsan\\AppData\\Local\\Temp\\rust_mozprofile42pCCL"
1629764947050 Marionette INFO Marionette enabled
console.warn: SearchSettings: "get: No settings file exists, new profile?" (new NotFoundError("Could not open the file at C:\\Users\\agsan\\AppData\\Local\\Temp\\rust_mozprofile42pCCL\\search.json.mozlz4", (void 0)))
1629764948815 Marionette INFO Listening on port 62753
1629764948884 RemoteAgent WARN TLS certificate errors will be ignored for this session
JavaScript warning: https://images-na.ssl-images-amazon.com/images/I/61XKxrBtDVL.js?AUIClients/AmazonUIjQuery, line 52: Using //@ to indicate sourceURL pragmas is deprecated. Use //# instead
1629764953819 Marionette INFO Stopped listening on port 62753
JavaScript error: resource:///modules/Interactions.jsm, line 209: NS_ERROR_FAILURE: Component returned failure code: 0x80004005 (NS_ERROR_FAILURE) [nsIUserIdleService.removeIdleObserver]
###!!! [Parent][RunMessage] Error: Channel closing: too late to send/recv, messages will be lost
1629764954465 geckodriver INFO Listening on 127.0.0.1:62890
1629764957485 mozrunner::runner INFO Running command: "C:\\Program Files\\Mozilla Firefox\\firefox.exe" "--marionette" "-foreground" "-no-remote" "-profile" "C:\\Users\\agsan\\AppData\\Local\\Temp\\rust_mozprofileEE59pm"
1629764957696 Marionette INFO Marionette enabled
console.warn: SearchSettings: "get: No settings file exists, new profile?" (new NotFoundError("Could not open the file at C:\\Users\\agsan\\AppData\\Local\\Temp\\rust_mozprofileEE59pm\\search.json.mozlz4", (void 0)))
1629764959393 Marionette INFO Listening on port 62898
1629764959523 RemoteAgent WARN TLS certificate errors will be ignored for this session
JavaScript warning: https://images-na.ssl-images-amazon.com/images/I/61XKxrBtDVL.js?AUIClients/AmazonUIjQuery, line 52: Using //@ to indicate sourceURL pragmas is deprecated. Use //# instead
1629764964457 Marionette INFO Stopped listening on port 62898
JavaScript error: resource:///modules/Interactions.jsm, line 209: NS_ERROR_FAILURE: Component returned failure code: 0x80004005 (NS_ERROR_FAILURE) [nsIUserIdleService.removeIdleObserver]
###!!! [Parent][RunMessage] Error: Channel closing: too late to send/recv, messages will be lost
1629764966898 geckodriver INFO Listening on 127.0.0.1:63060
1629764969924 mozrunner::runner INFO Running command: "C:\\Program Files\\Mozilla Firefox\\firefox.exe" "--marionette" "-foreground" "-no-remote" "-profile" "C:\\Users\\agsan\\AppData\\Local\\Temp\\rust_mozprofilen9DYZa"
1629764970133 Marionette INFO Marionette enabled
console.warn: SearchSettings: "get: No settings file exists, new profile?" (new NotFoundError("Could not open the file at C:\\Users\\agsan\\AppData\\Local\\Temp\\rust_mozprofilen9DYZa\\search.json.mozlz4", (void 0)))
1629764971823 Marionette INFO Listening on port 63068
1629764971971 RemoteAgent WARN TLS certificate errors will be ignored for this session
JavaScript warning: https://images-na.ssl-images-amazon.com/images/I/61XKxrBtDVL.js?AUIClients/AmazonUIjQuery, line 52: Using //@ to indicate sourceURL pragmas is deprecated. Use //# instead
1629764976960 Marionette INFO Stopped listening on port 63068
JavaScript error: resource:///modules/Interactions.jsm, line 209: NS_ERROR_FAILURE: Component returned failure code: 0x80004005 (NS_ERROR_FAILURE) [nsIUserIdleService.removeIdleObserver]
###!!! [Parent][RunMessage] Error: Channel closing: too late to send/recv, messages will be lost
1629764980857 geckodriver INFO Listening on 127.0.0.1:63220
1629764983884 mozrunner::runner INFO Running command: "C:\\Program Files\\Mozilla Firefox\\firefox.exe" "--marionette" "-foreground" "-no-remote" "-profile" "C:\\Users\\agsan\\AppData\\Local\\Temp\\rust_mozprofileL8eJOB"
1629764984098 Marionette INFO Marionette enabled
console.warn: SearchSettings: "get: No settings file exists, new profile?" (new NotFoundError("Could not open the file at C:\\Users\\agsan\\AppData\\Local\\Temp\\rust_mozprofileL8eJOB\\search.json.mozlz4", (void 0)))
1629764985778 Marionette INFO Listening on port 63228
1629764985929 RemoteAgent WARN TLS certificate errors will be ignored for this session
JavaScript warning: https://images-na.ssl-images-amazon.com/images/I/61XKxrBtDVL.js?AUIClients/AmazonUIjQuery, line 52: Using //@ to indicate sourceURL pragmas is deprecated. Use //# instead
1629764990659 Marionette INFO Stopped listening on port 63228
JavaScript error: resource:///modules/Interactions.jsm, line 209: NS_ERROR_FAILURE: Component returned failure code: 0x80004005 (NS_ERROR_FAILURE) [nsIUserIdleService.removeIdleObserver]
###!!! [Parent][RunMessage] Error: Channel closing: too late to send/recv, messages will be lost
1629764997298 geckodriver INFO Listening on 127.0.0.1:63396
1629765000322 mozrunner::runner INFO Running command: "C:\\Program Files\\Mozilla Firefox\\firefox.exe" "--marionette" "-foreground" "-no-remote" "-profile" "C:\\Users\\agsan\\AppData\\Local\\Temp\\rust_mozprofileU7S6O6"
1629765000532 Marionette INFO Marionette enabled
console.warn: SearchSettings: "get: No settings file exists, new profile?" (new NotFoundError("Could not open the file at C:\\Users\\agsan\\AppData\\Local\\Temp\\rust_mozprofileU7S6O6\\search.json.mozlz4", (void 0)))
1629765002391 Marionette INFO Listening on port 63404
1629765002483 RemoteAgent WARN TLS certificate errors will be ignored for this session
JavaScript warning: https://images-na.ssl-images-amazon.com/images/I/61XKxrBtDVL.js?AUIClients/AmazonUIjQuery, line 52: Using //@ to indicate sourceURL pragmas is deprecated. Use //# instead
1629765007321 Marionette INFO Stopped listening on port 63404
JavaScript error: resource:///modules/Interactions.jsm, line 209: NS_ERROR_FAILURE: Component returned failure code: 0x80004005 (NS_ERROR_FAILURE) [nsIUserIdleService.removeIdleObserver]
###!!! [Parent][RunMessage] Error: Channel closing: too late to send/recv, messages will be lost
1629765011433 geckodriver INFO Listening on 127.0.0.1:63532
1629765014457 mozrunner::runner INFO Running command: "C:\\Program Files\\Mozilla Firefox\\firefox.exe" "--marionette" "-foreground" "-no-remote" "-profile" "C:\\Users\\agsan\\AppData\\Local\\Temp\\rust_mozprofile5DNjJO"
1629765014666 Marionette INFO Marionette enabled
console.warn: SearchSettings: "get: No settings file exists, new profile?" (new NotFoundError("Could not open the file at C:\\Users\\agsan\\AppData\\Local\\Temp\\rust_mozprofile5DNjJO\\search.json.mozlz4", (void 0)))
1629765016527 Marionette INFO Listening on port 63540
1629765016617 RemoteAgent WARN TLS certificate errors will be ignored for this session
JavaScript warning: https://images-na.ssl-images-amazon.com/images/I/61XKxrBtDVL.js?AUIClients/AmazonUIjQuery, line 52: Using //@ to indicate sourceURL pragmas is deprecated. Use //# instead
1629765021633 Marionette INFO Stopped listening on port 63540
JavaScript error: resource:///modules/Interactions.jsm, line 209: NS_ERROR_FAILURE: Component returned failure code: 0x80004005 (NS_ERROR_FAILURE) [nsIUserIdleService.removeIdleObserver]
###!!! [Child][MessageChannel] Error: (msgtype=0x690023,name=PNecko::Msg_RemoveRequestContext) Channel closing: too late to send/recv, messages will be lost
###!!! [Parent][RunMessage] Error: Channel closing: too late to send/recv, messages will be lost
1629765079083 geckodriver INFO Listening on 127.0.0.1:63699
1629765082122 mozrunner::runner INFO Running command: "C:\\Program Files\\Mozilla Firefox\\firefox.exe" "--marionette" "-foreground" "-no-remote" "-profile" "C:\\Users\\agsan\\AppData\\Local\\Temp\\rust_mozprofileSkwZRW"
1629765082336 Marionette INFO Marionette enabled
console.warn: SearchSettings: "get: No settings file exists, new profile?" (new NotFoundError("Could not open the file at C:\\Users\\agsan\\AppData\\Local\\Temp\\rust_mozprofileSkwZRW\\search.json.mozlz4", (void 0)))
1629765084210 Marionette INFO Listening on port 63708
1629765084269 RemoteAgent WARN TLS certificate errors will be ignored for this session
JavaScript warning: https://images-na.ssl-images-amazon.com/images/I/61XKxrBtDVL.js?AUIClients/AmazonUIjQuery, line 52: Using //@ to indicate sourceURL pragmas is deprecated. Use //# instead
1629765089428 Marionette INFO Stopped listening on port 63708
JavaScript error: resource:///modules/Interactions.jsm, line 209: NS_ERROR_FAILURE: Component returned failure code: 0x80004005 (NS_ERROR_FAILURE) [nsIUserIdleService.removeIdleObserver]
###!!! [Parent][RunMessage] Error: Channel closing: too late to send/recv, messages will be lost
1629765179847 geckodriver INFO Listening on 127.0.0.1:64269
1629765182887 mozrunner::runner INFO Running command: "C:\\Program Files\\Mozilla Firefox\\firefox.exe" "--marionette" "-foreground" "-no-remote" "-profile" "C:\\Users\\agsan\\AppData\\Local\\Temp\\rust_mozprofilekPgh2n"
1629765183102 Marionette INFO Marionette enabled
console.warn: SearchSettings: "get: No settings file exists, new profile?" (new NotFoundError("Could not open the file at C:\\Users\\agsan\\AppData\\Local\\Temp\\rust_mozprofilekPgh2n\\search.json.mozlz4", (void 0)))
1629765184848 Marionette INFO Listening on port 64277
1629765184926 RemoteAgent WARN TLS certificate errors will be ignored for this session
JavaScript warning: https://images-na.ssl-images-amazon.com/images/I/61XKxrBtDVL.js?AUIClients/AmazonUIjQuery, line 52: Using //@ to indicate sourceURL pragmas is deprecated. Use //# instead
1629765189989 Marionette INFO Stopped listening on port 64277
JavaScript error: resource:///modules/Interactions.jsm, line 209: NS_ERROR_FAILURE: Component returned failure code: 0x80004005 (NS_ERROR_FAILURE) [nsIUserIdleService.removeIdleObserver]
###!!! [Parent][RunMessage] Error: Channel closing: too late to send/recv, messages will be lost
1629765206847 geckodriver INFO Listening on 127.0.0.1:64422
1629765209890 mozrunner::runner INFO Running command: "C:\\Program Files\\Mozilla Firefox\\firefox.exe" "--marionette" "-foreground" "-no-remote" "-profile" "C:\\Users\\agsan\\AppData\\Local\\Temp\\rust_mozprofilet9ZqqA"
1629765210108 Marionette INFO Marionette enabled
console.warn: SearchSettings: "get: No settings file exists, new profile?" (new NotFoundError("Could not open the file at C:\\Users\\agsan\\AppData\\Local\\Temp\\rust_mozprofilet9ZqqA\\search.json.mozlz4", (void 0)))
1629765211964 Marionette INFO Listening on port 64430
1629765212045 RemoteAgent WARN TLS certificate errors will be ignored for this session
JavaScript warning: https://images-na.ssl-images-amazon.com/images/I/61XKxrBtDVL.js?AUIClients/AmazonUIjQuery, line 52: Using //@ to indicate sourceURL pragmas is deprecated. Use //# instead
1629765216920 Marionette INFO Stopped listening on port 64430
JavaScript error: resource:///modules/Interactions.jsm, line 209: NS_ERROR_FAILURE: Component returned failure code: 0x80004005 (NS_ERROR_FAILURE) [nsIUserIdleService.removeIdleObserver]
###!!! [Parent][RunMessage] Error: Channel closing: too late to send/recv, messages will be lost
1629765282310 geckodriver INFO Listening on 127.0.0.1:64588
1629765285342 mozrunner::runner INFO Running command: "C:\\Program Files\\Mozilla Firefox\\firefox.exe" "--marionette" "-foreground" "-no-remote" "-profile" "C:\\Users\\agsan\\AppData\\Local\\Temp\\rust_mozprofilekKaToZ"
1629765285557 Marionette INFO Marionette enabled
console.warn: SearchSettings: "get: No settings file exists, new profile?" (new NotFoundError("Could not open the file at C:\\Users\\agsan\\AppData\\Local\\Temp\\rust_mozprofilekKaToZ\\search.json.mozlz4", (void 0)))
1629765287416 Marionette INFO Listening on port 64596
1629765287500 RemoteAgent WARN TLS certificate errors will be ignored for this session
JavaScript warning: https://images-na.ssl-images-amazon.com/images/I/61XKxrBtDVL.js?AUIClients/AmazonUIjQuery, line 52: Using //@ to indicate sourceURL pragmas is deprecated. Use //# instead
1629765292303 Marionette INFO Stopped listening on port 64596
JavaScript error: resource:///modules/Interactions.jsm, line 209: NS_ERROR_FAILURE: Component returned failure code: 0x80004005 (NS_ERROR_FAILURE) [nsIUserIdleService.removeIdleObserver]
###!!! [Parent][RunMessage] Error: Channel closing: too late to send/recv, messages will be lost
1629765321792 geckodriver INFO Listening on 127.0.0.1:64737
1629765324805 mozrunner::runner INFO Running command: "C:\\Program Files\\Mozilla Firefox\\firefox.exe" "--marionette" "-foreground" "-no-remote" "-profile" "C:\\Users\\agsan\\AppData\\Local\\Temp\\rust_mozprofileWMlhhf"
1629765325021 Marionette INFO Marionette enabled
console.warn: SearchSettings: "get: No settings file exists, new profile?" (new NotFoundError("Could not open the file at C:\\Users\\agsan\\AppData\\Local\\Temp\\rust_mozprofileWMlhhf\\search.json.mozlz4", (void 0)))
1629765326728 Marionette INFO Listening on port 64745
1629765326844 RemoteAgent WARN TLS certificate errors will be ignored for this session
JavaScript warning: https://images-na.ssl-images-amazon.com/images/I/61XKxrBtDVL.js?AUIClients/AmazonUIjQuery, line 52: Using //@ to indicate sourceURL pragmas is deprecated. Use //# instead
1629765332181 Marionette INFO Stopped listening on port 64745
JavaScript error: resource:///modules/Interactions.jsm, line 209: NS_ERROR_FAILURE: Component returned failure code: 0x80004005 (NS_ERROR_FAILURE) [nsIUserIdleService.removeIdleObserver]
###!!! [Parent][RunMessage] Error: Channel closing: too late to send/recv, messages will be lost
1629765395380 geckodriver INFO Listening on 127.0.0.1:64900
1629765398398 mozrunner::runner INFO Running command: "C:\\Program Files\\Mozilla Firefox\\firefox.exe" "--marionette" "-foreground" "-no-remote" "-profile" "C:\\Users\\agsan\\AppData\\Local\\Temp\\rust_mozprofilewV9FTl"
1629765398632 Marionette INFO Marionette enabled
console.warn: SearchSettings: "get: No settings file exists, new profile?" (new NotFoundError("Could not open the file at C:\\Users\\agsan\\AppData\\Local\\Temp\\rust_mozprofilewV9FTl\\search.json.mozlz4", (void 0)))
1629765400353 Marionette INFO Listening on port 64908
1629765400456 RemoteAgent WARN TLS certificate errors will be ignored for this session
JavaScript warning: https://images-na.ssl-images-amazon.com/images/I/61XKxrBtDVL.js?AUIClients/AmazonUIjQuery, line 52: Using //@ to indicate sourceURL pragmas is deprecated. Use //# instead
1629765405767 Marionette INFO Stopped listening on port 64908
JavaScript error: resource:///modules/Interactions.jsm, line 209: NS_ERROR_FAILURE: Component returned failure code: 0x80004005 (NS_ERROR_FAILURE) [nsIUserIdleService.removeIdleObserver]
###!!! [Parent][RunMessage] Error: Channel closing: too late to send/recv, messages will be lost
1629765434444 geckodriver INFO Listening on 127.0.0.1:65048
1629765437463 mozrunner::runner INFO Running command: "C:\\Program Files\\Mozilla Firefox\\firefox.exe" "--marionette" "-foreground" "-no-remote" "-profile" "C:\\Users\\agsan\\AppData\\Local\\Temp\\rust_mozprofileRVE518"
1629765437675 Marionette INFO Marionette enabled
console.warn: SearchSettings: "get: No settings file exists, new profile?" (new NotFoundError("Could not open the file at C:\\Users\\agsan\\AppData\\Local\\Temp\\rust_mozprofileRVE518\\search.json.mozlz4", (void 0)))
1629765439570 Marionette INFO Listening on port 65056
1629765439622 RemoteAgent WARN TLS certificate errors will be ignored for this session
JavaScript warning: https://images-na.ssl-images-amazon.com/images/I/61XKxrBtDVL.js?AUIClients/AmazonUIjQuery, line 52: Using //@ to indicate sourceURL pragmas is deprecated. Use //# instead
1629765444693 Marionette INFO Stopped listening on port 65056
JavaScript error: resource:///modules/Interactions.jsm, line 209: NS_ERROR_FAILURE: Component returned failure code: 0x80004005 (NS_ERROR_FAILURE) [nsIUserIdleService.removeIdleObserver]
###!!! [Parent][RunMessage] Error: Channel closing: too late to send/recv, messages will be lost
1629765469877 geckodriver INFO Listening on 127.0.0.1:65206
1629765472904 mozrunner::runner INFO Running command: "C:\\Program Files\\Mozilla Firefox\\firefox.exe" "--marionette" "-foreground" "-no-remote" "-profile" "C:\\Users\\agsan\\AppData\\Local\\Temp\\rust_mozprofileIxb0Qx"
1629765473123 Marionette INFO Marionette enabled
console.warn: SearchSettings: "get: No settings file exists, new profile?" (new NotFoundError("Could not open the file at C:\\Users\\agsan\\AppData\\Local\\Temp\\rust_mozprofileIxb0Qx\\search.json.mozlz4", (void 0)))
1629765474832 Marionette INFO Listening on port 65214
1629765474944 RemoteAgent WARN TLS certificate errors will be ignored for this session
JavaScript warning: https://images-na.ssl-images-amazon.com/images/I/61XKxrBtDVL.js?AUIClients/AmazonUIjQuery, line 52: Using //@ to indicate sourceURL pragmas is deprecated. Use //# instead
1629765480281 Marionette INFO Stopped listening on port 65214
JavaScript error: resource:///modules/Interactions.jsm, line 209: NS_ERROR_FAILURE: Component returned failure code: 0x80004005 (NS_ERROR_FAILURE) [nsIUserIdleService.removeIdleObserver]
1629765889487 geckodriver INFO Listening on 127.0.0.1:64161
1629765892516 mozrunner::runner INFO Running command: "C:\\Program Files\\Mozilla Firefox\\firefox.exe" "--marionette" "-foreground" "-no-remote" "-profile" "C:\\Users\\agsan\\AppData\\Local\\Temp\\rust_mozprofile63gHKT"
1629765892728 Marionette INFO Marionette enabled
console.warn: SearchSettings: "get: No settings file exists, new profile?" (new NotFoundError("Could not open the file at C:\\Users\\agsan\\AppData\\Local\\Temp\\rust_mozprofile63gHKT\\search.json.mozlz4", (void 0)))
1629765894509 Marionette INFO Listening on port 64169
1629765894561 RemoteAgent WARN TLS certificate errors will be ignored for this session
JavaScript warning: https://images-na.ssl-images-amazon.com/images/I/61XKxrBtDVL.js?AUIClients/AmazonUIjQuery, line 52: Using //@ to indicate sourceURL pragmas is deprecated. Use //# instead
1629765899452 Marionette INFO Stopped listening on port 64169
JavaScript error: resource:///modules/Interactions.jsm, line 209: NS_ERROR_FAILURE: Component returned failure code: 0x80004005 (NS_ERROR_FAILURE) [nsIUserIdleService.removeIdleObserver]
###!!! [Parent][RunMessage] Error: Channel closing: too late to send/recv, messages will be lost
1629766908234 geckodriver INFO Listening on 127.0.0.1:65141
1629766911259 mozrunner::runner INFO Running command: "C:\\Program Files\\Mozilla Firefox\\firefox.exe" "--marionette" "-foreground" "-no-remote" "-profile" "C:\\Users\\agsan\\AppData\\Local\\Temp\\rust_mozprofilezd9Tom"
1629766911478 Marionette INFO Marionette enabled
console.warn: SearchSettings: "get: No settings file exists, new profile?" (new NotFoundError("Could not open the file at C:\\Users\\agsan\\AppData\\Local\\Temp\\rust_mozprofilezd9Tom\\search.json.mozlz4", (void 0)))
1629766913433 Marionette INFO Listening on port 65150
1629766913919 RemoteAgent WARN TLS certificate errors will be ignored for this session
JavaScript warning: https://images-na.ssl-images-amazon.com/images/I/61XKxrBtDVL.js?AUIClients/AmazonUIjQuery, line 52: Using //@ to indicate sourceURL pragmas is deprecated. Use //# instead
1629766916935 Marionette INFO Stopped listening on port 65150
JavaScript error: resource:///modules/Interactions.jsm, line 209: NS_ERROR_FAILURE: Component returned failure code: 0x80004005 (NS_ERROR_FAILURE) [nsIUserIdleService.removeIdleObserver]
###!!! [Child][RunMessage] Error: Channel closing: too late to send/recv, messages will be lost
###!!! [Parent][MessageChannel] Error: (msgtype=0x390076,name=PContent::Msg_DestroyBrowsingContextGroup) Closed channel: cannot send/recv
###!!! [Parent][RunMessage] Error: Channel closing: too late to send/recv, messages will be lost
1629773135286 geckodriver INFO Listening on 127.0.0.1:63039
1629773138310 mozrunner::runner INFO Running command: "C:\\Program Files\\Mozilla Firefox\\firefox.exe" "--marionette" "-foreground" "-no-remote" "-profile" "C:\\Users\\agsan\\AppData\\Local\\Temp\\rust_mozprofileUPzMjO"
1629773138533 Marionette INFO Marionette enabled
console.warn: SearchSettings: "get: No settings file exists, new profile?" (new NotFoundError("Could not open the file at C:\\Users\\agsan\\AppData\\Local\\Temp\\rust_mozprofileUPzMjO\\search.json.mozlz4", (void 0)))
1629773140507 Marionette INFO Listening on port 63048
1629773140964 RemoteAgent WARN TLS certificate errors will be ignored for this session
1629773164924 Marionette INFO Stopped listening on port 63048
JavaScript error: chrome://global/content/elements/browser-custom-element.js, line 1695: NotFoundError: No such JSWindowActor 'MarionetteEvents'
JavaScript error: resource:///modules/Interactions.jsm, line 209: NS_ERROR_FAILURE: Component returned failure code: 0x80004005 (NS_ERROR_FAILURE) [nsIUserIdleService.removeIdleObserver]
###!!! [Parent][MessageChannel] Error: (msgtype=0x390076,name=PContent::Msg_DestroyBrowsingContextGroup) Closed channel: cannot send/recv
###!!! [Child][RunMessage] Error: Channel closing: too late to send/recv, messages will be lost
###!!! [Child][RunMessage] Error: Channel closing: too late to send/recv, messages will be lost
###!!! [Child][MessageChannel] Error: (msgtype=0x690014,name=PNecko::Msg_PredLearn) Channel closing: too late to send/recv, messages will be lost
###!!! [Child][RunMessage] Error: Channel closing: too late to send/recv, messages will be lost
###!!! [Child][RunMessage] Error: Channel closing: too late to send/recv, messages will be lost
###!!! [Child][RunMessage] Error: Channel closing: too late to send/recv, messages will be lost
###!!! [Child][RunMessage] Error: Channel closing: too late to send/recv, messages will be lost
###!!! [Child][RunMessage] Error: Channel closing: too late to send/recv, messages will be lost
###!!! [Child][RunMessage] Error: Channel closing: too late to send/recv, messages will be lost
###!!! [Child][RunMessage] Error: Channel closing: too late to send/recv, messages will be lost
###!!! [Child][RunMessage] Error: Channel closing: too late to send/recv, messages will be lost
###!!! [Child][RunMessage] Error: Channel closing: too late to send/recv, messages will be lost
###!!! [Child][RunMessage] Error: Channel closing: too late to send/recv, messages will be lost
###!!! [Child][RunMessage] Error: Channel closing: too late to send/recv, messages will be lost
###!!! [Child][RunMessage] Error: Channel closing: too late to send/recv, messages will be lost
###!!! [Child][MessageChannel] Error: (msgtype=0x390140,name=PContent::Msg_ScriptError) Channel closing: too late to send/recv, messages will be lost
###!!! [Child][MessageChannel] Error: (msgtype=0x390140,name=PContent::Msg_ScriptError) Channel closing: too late to send/recv, messages will be lost
###!!! [Child][RunMessage] Error: Channel closing: too late to send/recv, messages will be lost
###!!! [Child][RunMessage] Error: Channel closing: too late to send/recv, messages will be lost
###!!! [Child][RunMessage] Error: Channel closing: too late to send/recv, messages will be lost
###!!! [Child][RunMessage] Error: Channel closing: too late to send/recv, messages will be lost
###!!! [Child][RunMessage] Error: Channel closing: too late to send/recv, messages will be lost
###!!! [Child][RunMessage] Error: Channel closing: too late to send/recv, messages will be lost
###!!! [Parent][RunMessage] Error: Channel closing: too late to send/recv, messages will be lost