-
Notifications
You must be signed in to change notification settings - Fork 0
/
geckodriver.log
4387 lines (4043 loc) · 451 KB
/
geckodriver.log
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
149
150
151
152
153
154
155
156
157
158
159
160
161
162
163
164
165
166
167
168
169
170
171
172
173
174
175
176
177
178
179
180
181
182
183
184
185
186
187
188
189
190
191
192
193
194
195
196
197
198
199
200
201
202
203
204
205
206
207
208
209
210
211
212
213
214
215
216
217
218
219
220
221
222
223
224
225
226
227
228
229
230
231
232
233
234
235
236
237
238
239
240
241
242
243
244
245
246
247
248
249
250
251
252
253
254
255
256
257
258
259
260
261
262
263
264
265
266
267
268
269
270
271
272
273
274
275
276
277
278
279
280
281
282
283
284
285
286
287
288
289
290
291
292
293
294
295
296
297
298
299
300
301
302
303
304
305
306
307
308
309
310
311
312
313
314
315
316
317
318
319
320
321
322
323
324
325
326
327
328
329
330
331
332
333
334
335
336
337
338
339
340
341
342
343
344
345
346
347
348
349
350
351
352
353
354
355
356
357
358
359
360
361
362
363
364
365
366
367
368
369
370
371
372
373
374
375
376
377
378
379
380
381
382
383
384
385
386
387
388
389
390
391
392
393
394
395
396
397
398
399
400
401
402
403
404
405
406
407
408
409
410
411
412
413
414
415
416
417
418
419
420
421
422
423
424
425
426
427
428
429
430
431
432
433
434
435
436
437
438
439
440
441
442
443
444
445
446
447
448
449
450
451
452
453
454
455
456
457
458
459
460
461
462
463
464
465
466
467
468
469
470
471
472
473
474
475
476
477
478
479
480
481
482
483
484
485
486
487
488
489
490
491
492
493
494
495
496
497
498
499
500
501
502
503
504
505
506
507
508
509
510
511
512
513
514
515
516
517
518
519
520
521
522
523
524
525
526
527
528
529
530
531
532
533
534
535
536
537
538
539
540
541
542
543
544
545
546
547
548
549
550
551
552
553
554
555
556
557
558
559
560
561
562
563
564
565
566
567
568
569
570
571
572
573
574
575
576
577
578
579
580
581
582
583
584
585
586
587
588
589
590
591
592
593
594
595
596
597
598
599
600
601
602
603
604
605
606
607
608
609
610
611
612
613
614
615
616
617
618
619
620
621
622
623
624
625
626
627
628
629
630
631
632
633
634
635
636
637
638
639
640
641
642
643
644
645
646
647
648
649
650
651
652
653
654
655
656
657
658
659
660
661
662
663
664
665
666
667
668
669
670
671
672
673
674
675
676
677
678
679
680
681
682
683
684
685
686
687
688
689
690
691
692
693
694
695
696
697
698
699
700
701
702
703
704
705
706
707
708
709
710
711
712
713
714
715
716
717
718
719
720
721
722
723
724
725
726
727
728
729
730
731
732
733
734
735
736
737
738
739
740
741
742
743
744
745
746
747
748
749
750
751
752
753
754
755
756
757
758
759
760
761
762
763
764
765
766
767
768
769
770
771
772
773
774
775
776
777
778
779
780
781
782
783
784
785
786
787
788
789
790
791
792
793
794
795
796
797
798
799
800
801
802
803
804
805
806
807
808
809
810
811
812
813
814
815
816
817
818
819
820
821
822
823
824
825
826
827
828
829
830
831
832
833
834
835
836
837
838
839
840
841
842
843
844
845
846
847
848
849
850
851
852
853
854
855
856
857
858
859
860
861
862
863
864
865
866
867
868
869
870
871
872
873
874
875
876
877
878
879
880
881
882
883
884
885
886
887
888
889
890
891
892
893
894
895
896
897
898
899
900
901
902
903
904
905
906
907
908
909
910
911
912
913
914
915
916
917
918
919
920
921
922
923
924
925
926
927
928
929
930
931
932
933
934
935
936
937
938
939
940
941
942
943
944
945
946
947
948
949
950
951
952
953
954
955
956
957
958
959
960
961
962
963
964
965
966
967
968
969
970
971
972
973
974
975
976
977
978
979
980
981
982
983
984
985
986
987
988
989
990
991
992
993
994
995
996
997
998
999
1000
1644078024516 geckodriver INFO Listening on 127.0.0.1:57778
1644078027588 mozrunner::runner INFO Running command: "C:\\Program Files\\Mozilla Firefox\\firefox.exe" "--marionette" "--remote-debugging-port" "57779" "-no-remote" "-profile" "C:\\Users\\holti\\AppData\\Local\\Temp\\rust_mozprofileDUw0D8"
1644078028031 Marionette INFO Marionette enabled
console.warn: SearchSettings: "get: No settings file exists, new profile?" (new NotFoundError("Could not open the file at C:\\Users\\holti\\AppData\\Local\\Temp\\rust_mozprofileDUw0D8\\search.json.mozlz4", (void 0)))
DevTools listening on ws://localhost:57779/devtools/browser/649aceed-fbf9-49fd-84ab-31be687bbfca
1644078030830 Marionette INFO Listening on port 57784
1644078031299 RemoteAgent WARN TLS certificate errors will be ignored for this session
console.warn: LoginRecipes: "getRecipes: falling back to a synchronous message for:" "https://login.live.com"
console.warn: LoginRecipes: "getRecipes: falling back to a synchronous message for:" "https://login.live.com"
console.warn: LoginRecipes: "getRecipes: falling back to a synchronous message for:" "https://login.live.com"
console.warn: LoginRecipes: "getRecipes: falling back to a synchronous message for:" "https://login.live.com"
console.warn: LoginRecipes: "getRecipes: falling back to a synchronous message for:" "https://login.live.com"
JavaScript error: resource://gre/modules/LoginManagerParent.jsm, line 136: TypeError: gRecipeManager is null
console.warn: LoginRecipes: "getRecipes: falling back to a synchronous message for:" "https://login.live.com"
JavaScript error: resource://gre/modules/LoginManagerParent.jsm, line 136: TypeError: gRecipeManager is null
1644078047817 Marionette INFO Stopped listening on port 57784
console.warn: TopSitesFeed: Failed to fetch data from Contile server: NetworkError when attempting to fetch resource.
###!!! [Parent][RunMessage] Error: Channel closing: too late to send/recv, messages will be lost
1644078475482 geckodriver INFO Listening on 127.0.0.1:59758
1644078478543 mozrunner::runner INFO Running command: "C:\\Program Files\\Mozilla Firefox\\firefox.exe" "--marionette" "--remote-debugging-port" "59759" "-no-remote" "-profile" "C:\\Users\\holti\\AppData\\Local\\Temp\\rust_mozprofilemmNNlG"
1644078478977 Marionette INFO Marionette enabled
console.warn: SearchSettings: "get: No settings file exists, new profile?" (new NotFoundError("Could not open the file at C:\\Users\\holti\\AppData\\Local\\Temp\\rust_mozprofilemmNNlG\\search.json.mozlz4", (void 0)))
DevTools listening on ws://localhost:59759/devtools/browser/14e9b106-a452-49bb-a6fc-d72268c1031f
1644078481824 Marionette INFO Listening on port 59764
1644078482235 RemoteAgent WARN TLS certificate errors will be ignored for this session
1644078541297 Marionette INFO Stopped listening on port 59764
console.warn: TopSitesFeed: Failed to fetch data from Contile server: NetworkError when attempting to fetch resource.
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]
NotFoundError("Could not open the file at C:\\Users\\holti\\AppData\\Local\\Temp\\rust_mozprofileIYWssn\\search.json.mozlz4", (void 0)))
DevTools listening on ws://localhost:59782/devtools/browser/1ad60031-3829-4ca2-8a50-074a31322481
1644078488523 Marionette INFO Listening on port 59805
1644078489017 RemoteAgent WARN TLS certificate errors will be ignored for this session
1644078539618 Marionette INFO Stopped listening on port 59805
console.warn: TopSitesFeed: Failed to fetch data from Contile server: NetworkError when attempting to fetch resource.
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]
1644081801866 geckodriver INFO Listening on 127.0.0.1:63199
1644081804937 mozrunner::runner INFO Running command: "C:\\Program Files\\Mozilla Firefox\\firefox.exe" "--marionette" "--remote-debugging-port" "63200" "-no-remote" "-profile" "C:\\Users\\holti\\AppData\\Local\\Temp\\rust_mozprofileIjfLMH"
1644081805398 Marionette INFO Marionette enabled
console.warn: SearchSettings: "get: No settings file exists, new profile?" (new NotFoundError("Could not open the file at C:\\Users\\holti\\AppData\\Local\\Temp\\rust_mozprofileIjfLMH\\search.json.mozlz4", (void 0)))
console.error: Region.jsm: "Error fetching region" (new TypeError("NetworkError when attempting to fetch resource.", ""))
console.error: Region.jsm: "Failed to fetch region" (new Error("NO_RESULT", "resource://gre/modules/Region.jsm", 419))
console.warn: TopSitesFeed: Failed to fetch data from Contile server: NetworkError when attempting to fetch resource.
DevTools listening on ws://localhost:63200/devtools/browser/c0fdecac-2a69-4819-b4a2-3c5cc57ccac4
1644081808514 Marionette INFO Listening on port 63205
1644081808661 RemoteAgent WARN TLS certificate errors will be ignored for this session
1644081873255 Marionette INFO Stopped listening on port 63205
console.warn: TopSitesFeed: Failed to fetch data from Contile server: NetworkError when attempting to fetch resource.
remote-debugging-port" "63217" "-no-remote" "-profile" "C:\\Users\\holti\\AppData\\Local\\Temp\\rust_mozprofilehPJ63H"
1644081812160 Marionette INFO Marionette enabled
console.warn: SearchSettings: "get: No settings file exists, new profile?" (new NotFoundError("Could not open the file at C:\\Users\\holti\\AppData\\Local\\Temp\\rust_mozprofilehPJ63H\\search.json.mozlz4", (void 0)))
console.error: Region.jsm: "Error fetching region" (new TypeError("NetworkError when attempting to fetch resource.", ""))
console.error: Region.jsm: "Failed to fetch region" (new Error("NO_RESULT", "resource://gre/modules/Region.jsm", 419))
console.warn: TopSitesFeed: Failed to fetch data from Contile server: NetworkError when attempting to fetch resource.
DevTools listening on ws://localhost:63217/devtools/browser/afe7b6d3-b310-46f6-a409-30d1b8706ca7
1644081815063 Marionette INFO Listening on port 63222
1644081815445 RemoteAgent WARN TLS certificate errors will be ignored for this session
1644081871693 Marionette INFO Stopped listening on port 63222
console.warn: TopSitesFeed: Failed to fetch data from Contile server: NetworkError when attempting to fetch resource.
###!!! [Parent][RunMessage] Error: Channel closing: too late to send/recv, messages will be lost
1644081933153 geckodriver INFO Listening on 127.0.0.1:63625
1644081936193 mozrunner::runner INFO Running command: "C:\\Program Files\\Mozilla Firefox\\firefox.exe" "--marionette" "--remote-debugging-port" "63626" "-no-remote" "-profile" "C:\\Users\\holti\\AppData\\Local\\Temp\\rust_mozprofile0uQpSY"
1644081936726 Marionette INFO Marionette enabled
console.warn: SearchSettings: "get: No settings file exists, new profile?" (new NotFoundError("Could not open the file at C:\\Users\\holti\\AppData\\Local\\Temp\\rust_mozprofile0uQpSY\\search.json.mozlz4", (void 0)))
DevTools listening on ws://localhost:63626/devtools/browser/297b8bf2-72ae-4d90-9650-cddec11dd8ee
1644081939802 Marionette INFO Listening on port 63771
1644081939955 RemoteAgent WARN TLS certificate errors will be ignored for this session
console.warn: LoginRecipes: "getRecipes: falling back to a synchronous message for:" "https://login.live.com"
console.warn: LoginRecipes: "getRecipes: falling back to a synchronous message for:" "https://login.live.com"
console.warn: LoginRecipes: "getRecipes: falling back to a synchronous message for:" "https://login.live.com"
console.warn: LoginRecipes: "getRecipes: falling back to a synchronous message for:" "https://login.live.com"
console.warn: LoginRecipes: "getRecipes: falling back to a synchronous message for:" "https://login.live.com"
JavaScript error: resource://gre/modules/LoginManagerParent.jsm, line 136: TypeError: gRecipeManager is null
console.warn: LoginRecipes: "getRecipes: falling back to a synchronous message for:" "https://login.live.com"
JavaScript error: resource://gre/mconsole.warn: LoginRecipes: "getRecipes: falling back to a synchronous messaconsole.warn: LoginRecipes: "getRecipes: falling back to a synchronous message for:" "https://login.live.com"
JavaScript error: resource://gre/modules/LoginManagerParent.jsm, line 136: TypeError: gRecipeManager is null
console.warn: LoginRecipes: "getRecipes: falling back to a synchronous message for:" "https://login.live.com"
JavaScript error: resource://gre/modules/LoginManagerParent.jsm, line 136: TypeError: gRecipeManager is null
console.warn: LoginRecipes: "getRecipes: falling back to a synchronous message for:" "https://login.live.com"
JavaScript error: resource://gre/modules/LoginManagerParent.jsm, line 136: TypeError: gRecipeManager is null
console.warn: LoginRecipes: "getRecipes: falling back to a synchronous message for:" "https://login.live.com"
JavaScript error: resource://gre/modules/LoginManagerParent.jsm, line 136: TypeError: gRecipeManager is null
1644082014614 Marionette INFO Stopped listening on port 63771
###!!! [Child][MessageChannel] Error: (msgtype=0x6B0023,name=PNecko::Msg_RemoveRequestContext) Channel closing: too late to send/recv, messages will be lost
console.warn: TopSitesFeed: Failed to fetch data from Contile server: NetworkError when attempting to fetch resource.
gRecipeManager is null
console.warn: LoginRecipes: "getRecipes: falling back to a synchronous message for:" "https://login.live.com"
JavaScript error: resource://gre/modules/LoginManagerParent.jsm, line 136: TypeError: gRecipeManager is null
console.warn: LoginRecipes: "getRecipes: falling back to a synchronous message for:" "https://login.live.com"
JavaScript error: resource://gre/modules/LoginManagerParent.jsm, line 136: TypeError: gRecipeManager is null
1644082012681 Marionette INFO Stopped listening on port 63831
console.warn: TopSitesFeed: Failed to fetch data from Contile server: NetworkError when attempting to fetch resource.
###!!! [Parent][RunMessage] Error: Channel closing: too late to send/recv, messages will be lost
1644082018550 geckodriver INFO Listening on 127.0.0.1:64020
1644082021606 mozrunner::runner INFO Running command: "C:\\Program Files\\Mozilla Firefox\\firefox.exe" "--marionette" "--remote-debugging-port" "64021" "-no-remote" "-profile" "C:\\Users\\holti\\AppData\\Local\\Temp\\rust_mozprofilePPbyoL"
1644082022085 Marionette INFO Marionette enabled
console.warn: SearchSettings: "get: No settings file exists, new profile?" (new NotFoundError("Could not open the file at C:\\Users\\holti\\AppData\\Local\\Temp\\rust_mozprofilePPbyoL\\search.json.mozlz4", (void 0)))
DevTools listening on ws://localhost:64021/devtools/browser/87bf5451-f135-4794-9cc7-d0b0730a3cb5
1644082024747 Marionette INFO Listening on port 64026
1644082024802 RemoteAgent WARN TLS certificate errors will be ignored for this session
console.warn: LoginRecipes: "getRecipes: falling back to a synchronous message for:" "https://login.live.com"
console.warn: LoginRecipes: "getRecipes: falling back to a synchronous message for:" "https://login.live.com"
console.warn: LoginRecipes: "getRecipes: falling back to a synchronous message for:" "https://login.live.com"
console.warn: LoginRecipes: "getRecipes: falling back to a synchronous message for:" "https://login.live.com"
console.warn: LoginRecipes: "getRecipes: falling back to a synchronous message for:" "https://login.live.com"
JavaScript error: resource://gre/modules/LoginManagerParent.jsm, line 136: TypeError: gRecipeManager is null
console.warn: LoginRecipes: "getRecipes: falling back to a synchronous message for:" "https://login.live.com"
JavaScript error: resource://gre/mconsole.warn: LoginRecipes: "getRecipes: falling back to a synchronous messaconsole.warn: LoginRecipes: "getRecipes: falling back to a synchronous message for:" "https://login.microsoftonline.com"
JavaScript error: resource://gre/modules/LoginManagerParent.jsm, line 136: TypeError: gRecipeManager is null
console.warn: LoginRecipes: "getRecipes: falling back to a synchronous message for:" "https://login.microsoftonline.com"
JavaScript error: resource://gre/modules/LoginManagerParent.jsm, line 136: TypeError: gRecipeManager is null
1644082068389 Marionette WARN Ignoring event 'DOMContentLoaded' because document has an invalid readyState of 'complete'.
1644082085695 Marionette INFO Stopped listening on port 64026
console.warn: TopSitesFeed: Failed to fetch data from Contile server: NetworkError when attempting to fetch resource.
###!!! [Parent][RunMessage] Error: Channel closing: too late to send/recv, messages will be lost
console.warn: TopSitesFeed: Failed to fetch data from Contile server: NetworkError when attempting to fetch resource.
JavaScript error: resource://gre/modules/CrashManager.jsm, line 828: AbortError: IOUtils: Shutting down and refusing additional I/O tasks
1644082277209 geckodriver INFO Listening on 127.0.0.1:54623
1644082280289 mozrunner::runner INFO Running command: "C:\\Program Files\\Mozilla Firefox\\firefox.exe" "--marionette" "--remote-debugging-port" "54624" "-no-remote" "-profile" "C:\\Users\\holti\\AppData\\Local\\Temp\\rust_mozprofile842mOu"
1644082280788 Marionette INFO Marionette enabled
console.warn: SearchSettings: "get: No settings file exists, new profile?" (new NotFoundError("Could not open the file at C:\\Users\\holti\\AppData\\Local\\Temp\\rust_mozprofile842mOu\\search.json.mozlz4", (void 0)))
DevTools listening on ws://localhost:54624/devtools/browser/b0fae11f-0c71-47f3-9fd3-d7968d10ac70
1644082283800 Marionette INFO Listening on port 54629
1644082284056 RemoteAgent WARN TLS certificate errors will be ignored for this session
console.warn: LoginRecipes: "getRecipes: falling back to a synchronous message for:" "https://login.live.com"
console.warn: LoginRecipes: "getRecipes: falling back to a synchronous message for:" "https://login.live.com"
console.warn: LoginRecipes: "getRecipes: falling back to a synchronous message for:" "https://login.live.com"
console.warn: LoginRecipes: "getRecipes: falling back to a synchronous message for:" "https://login.live.com"
console.warn: LoginRecipes: "getRecipes: falling back to a synchronous message for:" "https://login.live.com"
JavaScript error: resource://gre/modules/LoginManagerParent.jsm, line 136: TypeError: gRecipeManager is null
console.warn: LoginRecipes: "getRecipes: falling back to a synchronous message for:" "https://login.live.com"
JavaScript error: resource://gre/mconsole.warn: LoginRecipes: "getRecipes: falling back to a synchronous message for:" "https://login.live.com"
console.warn: LoginRecipes: "getRecipes: falling back to a synchronous message for:" "https://login.live.com"
console.warn: LoginRecipes: "getRecipes: falling back to a synchronous message for:" "https://login.live.com"
console.warn: LoginRecipes: "getRecipes: falling back to a synchronous message for:" "https://login.live.com"
console.warn: LoginRecipes: "getRecipes: falling back to a synchronous message for:" "https://login.live.com"
JavaScript error: resource://gre/modules/LoginManagerParent.jsm, line 136: TypeError: gRecipeManager is null
console.warn: LoginRecipes: "getRecipes: falling back to a synchronous message for:" "https://login.live.com"
JavaScript error: resource://gre/modules/LoginManagerParent.jsm, line 136: TypeError: gRecipeManager is null
JavaScript error: resource://devtools/server/actors/network-monitor/network-event-actor.js, line 110: Error: Got a request https://logincdn.msauth.net/16.000/Converged_v21033_aaRUc92kCx1I0HSCbabz7g2.css without a browsingContextID set
JavaScript error: resource://gre/modules/AsyncShutdown.jsm, line 575: NotFoundError: No such JSWindowActor 'DevToolsFrame'
1644082556383 Marionette INFO Stopped listening on port 54681
console.warn: TopSitesFeed: Failed to fetch data from Contile server: NetworkError when attem1644082558642 Marionette INFO Stopped listening on port 54629
console.warn: TopSitesFeed: Failed to fetch data from Contile server: NetworkError when attempting to fetch resource.
1644082562853 geckodriver INFO Listening on 127.0.0.1:64393
1644082565935 mozrunner::runner INFO Running command: "C:\\Program Files\\Mozilla Firefox\\firefox.exe" "--marionette" "--remote-debugging-port" "64394" "-no-remote" "-profile" "C:\\Users\\holti\\AppData\\Local\\Temp\\rust_mozprofileeB9FRp"
1644082566686 Marionette INFO Marionette enabled
console.warn: SearchSettings: "get: No settings file exists, new profile?" (new NotFoundError("Could not open the file at C:\\Users\\holti\\AppData\\Local\\Temp\\rust_mozprofileeB9FRp\\search.json.mozlz4", (void 0)))
DevTools listening on ws://localhost:64394/devtools/browser/7947bd68-5a31-46cb-b6ce-9298efbb3381
1644082569899 Marionette INFO Listening on port 64399
1644082570185 RemoteAgent WARN TLS certificate errors will be ignored for this session
console.warn: LoginRecipes: "getRecipes: falling back to a synchronous message for:" "https://login.live.com"
console.warn: LoginRecipes: "getRecipes: falling back to a synchronous message for:" "https://login.live.com"
console.warn: LoginRecipes: "getRecipes: falling back to a synchronous message for:" "https://login.live.com"
console.warn: LoginRecipes: "getRecipes: falling back to a synchronous message for:" "https://login.live.com"
console.warn: LoginRecipes: "getRecipes: falling back to a synchronous message for:" "https://login.live.com"
JavaScript error: resource://gre/modules/LoginManagerParent.jsm, line 136: TypeError: gRecipeManager is null
console.warn: LoginRecipes: "getRecipes: falling back to a synchronous message for:" "https://login.live.com"
JavaScript error: resource://gre/mconsole.warn: LoginRecipes: "getRecipes: falling back to a synchronous message for:" "https://login.live.com"
console.warn: LoginRecipes: "getRecipes: falling back to a synchronous message for:" "https://login.live.com"
console.warn: LoginRecipes: "getRecipes: falling back to a synchronous message for:" "https://login.live.com"
console.warn: LoginRecipes: "getRecipes: falling back to a synchronous message for:" "https://login.live.com"
console.warn: LoginRecipes: "getRecipes: falling back to a synchronous message for:" "https://login.live.com"
JavaScript error: resource://gre/modules/LoginManagerParent.jsm, line 136: TypeError: gRecipeManager is null
console.warn: LoginRecipes: "getRecipes: falling back to a synchronous message for:" "https://login.live.com"
JavaScript error: resource://gre/modules/LoginManagerParent.jsm, line 136: TypeError: gRecipeManager is null
console.warn: LoginRecipes: "getRecipes: falling back to a synchronous message for:" "https://login.live.com"
JavaScript error: resource://gre/modules/LoginManagerParent.jsm, line 136: TypeError: gRecipeManager is null
console.warn: LoginRecipes: "getRecipes: falling back to a synchronous message for:" "https://login.live.com"
JavaScript error: resource://gre/modules/LoginManagerParent.jsm, line 136: TypeError: gRecipeManager is null
console.warn: LoginRecipes: "getRecipes: falling back to a synchronous mesconsole.warn: LoginRecipes: "getRecipes: falling back to a synchronous message for:" "https://login.microsoftonline.com"
JavaScript error: resource://gre/modules/LoginManagerParent.jsm, line 136: TypeError: gRecipeManager is null
console.warn: LoginRecipes: "getRecipes: falling back to a synchronous message for:" "https://login.microsoftonline.com"
JavaScript err1644082627990 Marionette INFO Stopped listening on port 64455
console.warn: TopSitesFeed: Failed to fetch data from Contile server: NetworkError when attempting to fetch resource.
JavaScript error: chrome://remote/con1644082630004 Marionette INFO Stopped listening on port 64399
console.warn: TopSitesFeed: Failed to fetch data from Contile server: NetworkError when attempting to fetch resource.
###!!! [Parent][RunMessage] Error: Channel closing: too late to send/recv, messages will be lost
cv, messages will be lost
1644089777466 geckodriver INFO Listening on 127.0.0.1:61787
1644089780545 mozrunner::runner INFO Running command: "C:\\Program Files\\Mozilla Firefox\\firefox.exe" "--marionette" "--remote-debugging-port" "61788" "-no-remote" "-profile" "C:\\Users\\holti\\AppData\\Local\\Temp\\rust_mozprofiletnkMKd"
1644089781066 Marionette INFO Marionette enabled
console.warn: SearchSettings: "get: No settings file exists, new profile?" (new NotFoundError("Could not open the file at C:\\Users\\holti\\AppData\\Local\\Temp\\rust_mozprofiletnkMKd\\search.json.mozlz4", (void 0)))
DevTools listening on ws://localhost:61788/devtools/browser/7b0b2e65-b00f-4a9e-a057-97269216674c
1644089785291 Marionette INFO Listening on port 61793
1644089785440 RemoteAgent WARN TLS certificate errors will be ignored for this session
console.warn: LoginRecipes: "getRecipes: falling back to a synchronous message for:" "https://login.live.com"
console.warn: LoginRecipes: "getRecipes: falling back to a synchronous message for:" "https://login.live.com"
console.warn: LoginRecipes: "getRecipes: falling back to a synchronous message for:" "https://login.live.com"
console.warn: LoginRecipes: "getRecipes: falling back to a synchronous message for:" "https://login.live.com"
console.warn: LoginRecipes: "getRecipes: falling back to a synchronous message for:" "https://login.live.com"
JavaScript error: resource://gre/modules/LoginManagerParent.jsm, line 136: TypeError: gRecipeManager is null
console.warn: LoginRecipes: "getRecipes: falling back to a synchronous message for:" "https://login.live.com"
JavaScript error: resource://gre/mconsole.warn: LoginRecipes: "getRecipes: falling back to a synchronous message for:" "https://login.live.com"
console.warn: LoginRecipes: "getRecipes: falling back to a synchronous message for:" "https://login.live.com"
console.warn: LoginRecipes: "getRecipes: falling back to a synchronous message for:" "https://login.live.com"
console.warn: LoginRecipes: "getRecipes: falling back to a synchronous message for:" "https://login.live.com"
console.warn: LoginRecipes: "getRecipes: falling back to a synchronous message for:" "https://login.live.com"
JavaScript error: resource://gre/modules/LoginManagerParent.jsm, line 136: TypeError: gRecipeManager is null
console.warn: LoginRecipes: "getRecipes: falling back to a synchronous message for:" "https://login.live.com"
JavaScript error: resource://gre/modules/LoginManagerParent.jsm, line 136: TypeError: gRecipeManager is null
console.warn: LoginRecipes: "getRecipes: falling back to a synchronous mesconsole.warn: LoginRecipes: "getRecipes: falling back to a synchronous message for:" "https://login.live.com"
JavaScript error: resource://gre/modules/LoginManagerParent.jsm, line 136: TypeError: gRecipeManager is null
console.warn: LoginRecipes: "getRecipes: falling back to a synchronous message for:" "https://login.live.com"
JavaScript error: resource://gre/modconsole.warn: LoginRecipes: "getRecipes: falling back to a synchronous mes1644089862822 Marionette WARN Ignoring event 'DOMContentLoaded' because document has an invalid readyState of 'complete'.
1644089890644 Marionette INFO Stopped listening on port 61793
console.warn: TopSitesFeed: Failed to fetch data from Contile server: NetworkError when attempting to fetch resource.
###!!! [Parent][RunMessage] Error: Channel closing: too late to send/recv, messages will be lost
event 'DOMContentLoaded' because document has an invalid readyState of 'complete'.
1644089888619 Marionette INFO Stopped listening on port 58842
console.warn: TopSitesFeed: Failed to fetch data from Contile server: NetworkError when attempting to fetch resource.
###!!! [Parent][RunMessage] Error: Channel closing: too late to send/recv, messages will be lost
1644091103898 geckodriver INFO Listening on 127.0.0.1:52248
1644091106981 mozrunner::runner INFO Running command: "C:\\Program Files\\Mozilla Firefox\\firefox.exe" "--marionette" "--remote-debugging-port" "52249" "-no-remote" "-profile" "C:\\Users\\holti\\AppData\\Local\\Temp\\rust_mozprofilet5oAfy"
1644091107479 Marionette INFO Marionette enabled
console.warn: SearchSettings: "get: No settings file exists, new profile?" (new NotFoundError("Could not open the file at C:\\Users\\holti\\AppData\\Local\\Temp\\rust_mozprofilet5oAfy\\search.json.mozlz4", (void 0)))
console.error: Region.jsm: "Error fetching region" (new TypeError("NetworkError when attempting to fetch resource.", ""))
console.error: Region.jsm: "Failed to fetch region" (new Error("NO_RESULT", "resource://gre/modules/Region.jsm", 419))
console.warn: TopSitesFeed: Failed to fetch data from Contile server: NetworkError when attempting to fetch resource.
DevTools listening on ws://localhost:52249/devtools/browser/fa526a59-0a29-4337-a846-f1d1e9a9ff9c
1644091110983 Marionette INFO Listening on port 52254
1644091111260 Marionette INFO Stopped listening on port 52254
console.warn: TopSitesFeed: Failed to fetch data from Contile server: NetworkError when attempting to fetch resource.
1644091111337 RemoteAgent WARN TLS certificate errors will be ignored for this session
1644091129584 geckodriver INFO Listening on 127.0.0.1:52266
1644091132662 mozrunner::runner INFO Running command: "C:\\Program Files\\Mozilla Firefox\\firefox.exe" "--marionette" "--remote-debugging-port" "52267" "-no-remote" "-profile" "C:\\Users\\holti\\AppData\\Local\\Temp\\rust_mozprofiletD4WSY"
1644091133161 Marionette INFO Marionette enabled
console.warn: SearchSettings: "get: No settings file exists, new profile?" (new NotFoundError("Could not open the file at C:\\Users\\holti\\AppData\\Local\\Temp\\rust_mozprofiletD4WSY\\search.json.mozlz4", (void 0)))
console.error: Region.jsm: "Error fetching region" (new TypeError("NetworkError when attempting to fetch resource.", ""))
console.error: Region.jsm: "Failed to fetch region" (new Error("NO_RESULT", "resource://gre/modules/Region.jsm", 419))
console.warn: TopSitesFeed: Failed to fetch data from Contile server: NetworkError when attempting to fetch resource.
DevTools listening on ws://localhost:52267/devtools/browser/84a3265e-e889-407d-b0f0-b73e21949761
1644091136213 Marionette INFO Listening on port 52272
1644091136384 RemoteAgent WARN TLS certificate errors will be ignored for this session
1644091216666 Marionette INFO Stopped listening on port 52272
console.warn: TopSitesFeed: Failed to fetch data from Contile server: NetworkError when attempting to fetch resource.
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
7L\\search.json.mozlz4", (void 0)))
console.error: Region.jsm: "Error fetching region" (new TypeError("NetworkError when attempting to fetch resource.", ""))
console.error: Region.jsm: "Failed to fetch region" (new Error("NO_RESULT", "resource://gre/modules/Region.jsm", 419))
console.warn: TopSitesFeed: Failed to fetch data from Contile server: NetworkError when attempting to fetch resource.
DevTools listening on ws://localhost:52284/devtools/browser/8f90df22-448a-4fdc-beb1-124ba7012eb4
1644091143232 Marionette INFO Listening on port 52289
1644091143670 RemoteAgent WARN TLS certificate errors will be ignored for this session
1644091215249 Marionette INFO Stopped listening on port 52289
console.warn: TopSitesFeed: Failed to fetch data from Contile server: NetworkError when attempting to fetch resource.
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
1644092432954 geckodriver INFO Listening on 127.0.0.1:62656
1644092436027 mozrunner::runner INFO Running command: "C:\\Program Files\\Mozilla Firefox\\firefox.exe" "--marionette" "--remote-debugging-port" "62657" "-no-remote" "-profile" "C:\\Users\\holti\\AppData\\Local\\Temp\\rust_mozprofileuOIcQW"
1644092436570 Marionette INFO Marionette enabled
console.warn: SearchSettings: "get: No settings file exists, new profile?" (new NotFoundError("Could not open the file at C:\\Users\\holti\\AppData\\Local\\Temp\\rust_mozprofileuOIcQW\\search.json.mozlz4", (void 0)))
DevTools listening on ws://localhost:62657/devtools/browser/68f497d6-1c21-4232-ad3c-d593a1e8d2c8
1644092440114 Marionette INFO Listening on port 62662
1644092440276 RemoteAgent WARN TLS certificate errors will be ignored for this session
console.error: Region.jsm: "Error fetching region" (new Error("TIMEOUT", "resource://gre/modules/Region.jsm", 772))
console.error: Region.jsm: "Failed to fetch region" (new Error("TIMEOUT", "resource://gre/modules/Region.jsm", 419))
1644092527343 Marionette INFO Stopped listening on port 62662
console.warn: TopSitesFeed: Failed to fetch data from Contile server: NetworkError when attempting to fetch resource.
rofile?" (new NotFoundError("Could not open the file at C:\\Users\\holti\\AppData\\Local\\Temp\\rust_mozprofileGtpoVM\\search.json.mozlz4", (void 0)))
DevTools listening on ws://localhost:62674/devtools/browser/bc137f08-140f-479e-9e44-8f9fec1b9be8
1644092447706 Marionette INFO Listening on port 62692
1644092448212 RemoteAgent WARN TLS certificate errors will be ignored for this session
1644092525591 Marionette INFO Stopped listening on port 62692
console.warn: TopSitesFeed: Failed to fetch data from Contile server: NetworkError when attempting to fetch resource.
1644094660615 geckodriver INFO Listening on 127.0.0.1:53568
1644094663697 mozrunner::runner INFO Running command: "C:\\Program Files\\Mozilla Firefox\\firefox.exe" "--marionette" "--remote-debugging-port" "53569" "-no-remote" "-profile" "C:\\Users\\holti\\AppData\\Local\\Temp\\rust_mozprofilekEkc46"
1644094664506 Marionette INFO Marionette enabled
console.warn: SearchSettings: "get: No settings file exists, new profile?" (new NotFoundError("Could not open the file at C:\\Users\\holti\\AppData\\Local\\Temp\\rust_mozprofilekEkc46\\search.json.mozlz4", (void 0)))
DevTools listening on ws://localhost:53569/devtools/browser/8aaefee7-444a-4a91-be06-2b3f24d06f00
1644094669645 Marionette INFO Listening on port 53575
1644094670156 RemoteAgent WARN TLS certificate errors will be ignored for this session
1644094704432 Marionette INFO Stopped listening on port 53575
console.warn: TopSitesFeed: Failed to fetch data from Contile server: NetworkError when attempting to fetch resource.
###!!! [Parent][RunMessage] Error: Channel closing: too late to send/recv, messages will be lost
ozprofilev7tiF6"
1644094674023 Marionette INFO Marionette enabled
console.warn: SearchSettings: "get: No settings file exists, new profile?" (new NotFoundError("Could not open the file at C:\\Users\\holti\\AppData\\Local\\Temp\\rust_mozprofilev7tiF6\\search.json.mozlz4", (void 0)))
DevTools listening on ws://localhost:53615/devtools/browser/64d20c32-c805-4f80-9c18-90508cd8056c
1644094678538 Marionette INFO Listening on port 53639
1644094678675 RemoteAgent WARN TLS certificate errors will be ignored for this session
1644094702935 Marionette INFO Stopped listening on port 53639
console.warn: TopSitesFeed: Failed to fetch data from Contile server: NetworkError when attempting to fetch resource.
[Parent 18464, IPC I/O Parent] WARNING: file /builds/worker/checkouts/gecko/ipc/chromium/src/base/process_util_win.cc:167
1644094744879 geckodriver INFO Listening on 127.0.0.1:53711
1644094747997 mozrunner::runner INFO Running command: "C:\\Program Files\\Mozilla Firefox\\firefox.exe" "--marionette" "--remote-debugging-port" "53712" "-no-remote" "-profile" "C:\\Users\\holti\\AppData\\Local\\Temp\\rust_mozprofileNcVqEf"
1644094748827 Marionette INFO Marionette enabled
console.warn: SearchSettings: "get: No settings file exists, new profile?" (new NotFoundError("Could not open the file at C:\\Users\\holti\\AppData\\Local\\Temp\\rust_mozprofileNcVqEf\\search.json.mozlz4", (void 0)))
DevTools listening on ws://localhost:53712/devtools/browser/10926157-abf7-469b-8c13-890954bd3814
1644094754234 Marionette INFO Listening on port 53718
1644094754424 RemoteAgent WARN TLS certificate errors will be ignored for this session
1644094787959 Marionette INFO Stopped listening on port 53718
console.warn: TopSitesFeed: Failed to fetch data from Contile server: NetworkError when attempting to fetch resource.
remote-debugging-port" "53749" "-no-remote" "-profile" "C:\\Users\\holti\\AppData\\Local\\Temp\\rust_mozprofile0nJWL5"
1644094758244 Marionette INFO Marionette enabled
console.warn: SearchSettings: "get: No settings file exists, new profile?" (new NotFoundError("Could not open the file at C:\\Users\\holti\\AppData\\Local\\Temp\\rust_mozprofile0nJWL5\\search.json.mozlz4", (void 0)))
DevTools listening on ws://localhost:53749/devtools/browser/92432d08-b46c-4081-9b11-7d3d2ae48f2f
1644094762894 Marionette INFO Listening on port 53768
1644094763000 RemoteAgent WARN TLS certificate errors will be ignored for this session
1644094786091 Marionette INFO Stopped listening on port 53768
console.warn: TopSitesFeed: Failed to fetch data from Contile server: NetworkError when attempting to fetch resource.
[Parent 12196, IPC I/O Parent] WARNING: file /builds/worker/checkouts/gecko/ipc/chromium/src/base/process_util_win.cc:167
1644095028184 geckodriver INFO Listening on 127.0.0.1:53927
1644095031318 mozrunner::runner INFO Running command: "C:\\Program Files\\Mozilla Firefox\\firefox.exe" "--marionette" "--remote-debugging-port" "53928" "-no-remote" "-profile" "C:\\Users\\holti\\AppData\\Local\\Temp\\rust_mozprofilebwit2r"
1644095031994 Marionette INFO Marionette enabled
console.warn: SearchSettings: "get: No settings file exists, new profile?" (new NotFoundError("Could not open the file at C:\\Users\\holti\\AppData\\Local\\Temp\\rust_mozprofilebwit2r\\search.json.mozlz4", (void 0)))
DevTools listening on ws://localhost:53928/devtools/browser/52318b6d-e5de-4557-b8e0-5f539980e139
1644095036239 Marionette INFO Listening on port 53933
1644095036714 RemoteAgent WARN TLS certificate errors will be ignored for this session
console.warn: LoginRecipes: "getRecipes: falling back to a synchronous message for:" "https://login.live.com"
console.warn: LoginRecipes: "getRecipes: falling back to a synchronous message for:" "https://login.live.com"
console.warn: LoginRecipes: "getRecipes: falling back to a synchronous message for:" "https://login.live.com"
console.warn: LoginRecipes: "getRecipes: falling back to a synchronous message for:" "https://login.live.com"
console.warn: LoginRecipes: "getRecipes: falling back to a synchronous message for:" "https://login.live.com"
JavaScript error: resource://gre/modules/LoginManagerParent.jsm, line 136: TypeError: gRecipeManager is null
console.warn: LoginRecipes: "getRecipes: falling back to a synchronous message for:" "https://login.live.com"
JavaScript error: resource://gre/mconsole.warn: LoginRecipes: "getRecipes: falling back to a synchronous message for:" "https://login.live.com"
console.warn: LoginRecipes: "getRecipes: falling back to a synchronous message for:" "https://login.live.com"
console.warn: LoginRecipes: "getRecipes: falling back to a synchronous message for:" "https://login.live.com"
console.warn: LoginRecipes: "getRecipes: falling back to a synchronous message for:" "https://login.live.com"
console.warn: LoginRecipes: "getRecipes: falling back to a synchronous message for:" "https://login.live.com"
JavaScript error: resource://gre/modules/LoginManagerParent.jsm, line 136: TypeError: gRecipeManager is null
console.warn: LoginRecipes: "getRecipes: falling back to a synchronous message for:" "https://login.live.com"
JavaScript error: resource://gre/modules/LoginManagerParent.jsm, line 136: TypeError: gRecipeManager is null
console.warn: LoginRecipes: "getRecipes: falling back to a synchronous message for:" "https://login.live.com"
JavaScript error: resource://gre/modules/LoginManagerParent.jsm, line 136: TypeError: gRecipeManager is null
console.warn: LoginRecipes: "getRecipes: falling back to a synchronous message for:" "https://login.live.com"
JavaScript error: resource://gre/modules/LoginManagerParent.jsm, line 136: TypeError: gRecipeManager is null
console.warn: LoginRecipes: "getRecipes: falling back to a synchronous mes1644095111653 Marionette INFO Stopped listening on port 53933
console.warn: TopSitesFeed: Failed to fetch data from Contile server: NetworkError when attempting to fetch resource.
###!!! [Parent][RunMessage] Error: Channel closing: too late to send/recv, messages will be lost
://gre/modules/LoginManagerParent.jsm, line 136: TypeError: gRecipeManager is null
1644095109001 Marionette INFO Stopped listening on port 53983
###!!! [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
1644095188739 geckodriver INFO Listening on 127.0.0.1:54168
1644095191820 mozrunner::runner INFO Running command: "C:\\Program Files\\Mozilla Firefox\\firefox.exe" "--marionette" "--remote-debugging-port" "54169" "-no-remote" "-profile" "C:\\Users\\holti\\AppData\\Local\\Temp\\rust_mozprofileW6k37X"
1644095192897 Marionette INFO Marionette enabled
console.warn: SearchSettings: "get: No settings file exists, new profile?" (new NotFoundError("Could not open the file at C:\\Users\\holti\\AppData\\Local\\Temp\\rust_mozprofileW6k37X\\search.json.mozlz4", (void 0)))
DevTools listening on ws://localhost:54169/devtools/browser/eba89775-2f3b-4d5d-bf7c-131376f06381
1644095197189 Marionette INFO Listening on port 54174
1644095197253 RemoteAgent WARN TLS certificate errors will be ignored for this session
1644095239883 Marionette INFO Stopped listening on port 54174
console.warn: TopSitesFeed: Failed to fetch data from Contile server: NetworkError when attempting to fetch resource.
[Parent 356, IPC I/O Parent] WARNING: file /builds/worker/checkouts/gecko/ipc/chromium/src/base/process_util_win.cc:167
44095201084 Marionette INFO Marionette enabled
console.warn: SearchSettings: "get: No settings file exists, new profile?" (new NotFoundError("Could not open the file at C:\\Users\\holti\\AppData\\Local\\Temp\\rust_mozprofileggIBO9\\search.json.mozlz4", (void 0)))
DevTools listening on ws://localhost:54195/devtools/browser/bdae30d7-d8d7-4d4c-8066-104b19860f42
1644095205672 Marionette INFO Listening on port 54210
1644095205742 RemoteAgent WARN TLS certificate errors will be ignored for this session
1644095227902 Marionette INFO Stopped listening on port 54210
console.warn: TopSitesFeed: Failed to fetch data from Contile server: NetworkError when attempting to fetch resource.
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]
1644095326114 geckodriver INFO Listening on 127.0.0.1:54312
1644095329257 mozrunner::runner INFO Running command: "C:\\Program Files\\Mozilla Firefox\\firefox.exe" "--marionette" "--remote-debugging-port" "54313" "-no-remote" "-profile" "C:\\Users\\holti\\AppData\\Local\\Temp\\rust_mozprofileXjEWgf"
1644095329868 Marionette INFO Marionette enabled
console.warn: SearchSettings: "get: No settings file exists, new profile?" (new NotFoundError("Could not open the file at C:\\Users\\holti\\AppData\\Local\\Temp\\rust_mozprofileXjEWgf\\search.json.mozlz4", (void 0)))
DevTools listening on ws://localhost:54313/devtools/browser/d2b91163-9efa-4448-b96d-bcf07dd142db
1644095334177 Marionette INFO Listening on port 54318
1644095334724 RemoteAgent WARN TLS certificate errors will be ignored for this session
1644095360447 Marionette INFO Stopped listening on port 54318
console.warn: TopSitesFeed: Failed to fetch data from Contile server: NetworkError when attempting to fetch resource.
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]
NotFoundError("Could not open the file at C:\\Users\\holti\\AppData\\Local\\Temp\\rust_mozprofilepMltl2\\search.json.mozlz4", (void 0)))
DevTools listening on ws://localhost:54345/devtools/browser/4bb72b9e-af86-48eb-89e5-80c36500f41d
1644095343268 Marionette INFO Listening on port 54369
1644095343821 RemoteAgent WARN TLS certificate errors will be ignored for this session
1644095358730 Marionette INFO Stopped listening on port 54369
console.error: PushServiceWebSocket:
_beginWSSetup: Not in shutdown state! Current state
2
console.warn: TopSitesFeed: Failed to fetch data from Contile server: NetworkError when attempting to fetch resource.
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 17980, IPC I/O Parent] WARNING: file /builds/worker/checkouts/gecko/ipc/chromium/src/base/process_util_win.cc:167
1644095565102 geckodriver INFO Listening on 127.0.0.1:54466
1644095568210 mozrunner::runner INFO Running command: "C:\\Program Files\\Mozilla Firefox\\firefox.exe" "--marionette" "--remote-debugging-port" "54467" "-no-remote" "-profile" "C:\\Users\\holti\\AppData\\Local\\Temp\\rust_mozprofile2n6hxO"
1644095569024 Marionette INFO Marionette enabled
console.warn: SearchSettings: "get: No settings file exists, new profile?" (new NotFoundError("Could not open the file at C:\\Users\\holti\\AppData\\Local\\Temp\\rust_mozprofile2n6hxO\\search.json.mozlz4", (void 0)))
DevTools listening on ws://localhost:54467/devtools/browser/ca731678-ec17-4c67-a936-53af5f3258f5
1644095573249 Marionette INFO Listening on port 54473
1644095573566 RemoteAgent WARN TLS certificate errors will be ignored for this session
1644095623899 Marionette INFO Stopped listening on port 54473
console.warn: TopSitesFeed: Failed to fetch data from Contile server: NetworkError when attempting to fetch resource.
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
pa\\search.json.mozlz4", (void 0)))
DevTools listening on ws://localhost:54501/devtools/browser/243d6a48-162a-4582-a82b-25a15acba5cb
1644095581579 Marionette INFO Listening on port 54525
1644095581614 RemoteAgent WARN TLS certificate errors will be ignored for this session
1644095618663 Marionette INFO Stopped listening on port 54525
console.warn: TopSitesFeed: Failed to fetch data from Contile server: NetworkError when attempting to fetch resource.
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 3472, IPC I/O Parent] WARNING: file /builds/worker/checkouts/gecko/ipc/chromium/src/base/process_util_win.cc:167
1644095842871 geckodriver INFO Listening on 127.0.0.1:54610
1644095846015 mozrunner::runner INFO Running command: "C:\\Program Files\\Mozilla Firefox\\firefox.exe" "--marionette" "--remote-debugging-port" "54611" "-no-remote" "-profile" "C:\\Users\\holti\\AppData\\Local\\Temp\\rust_mozprofileP1dCMn"
1644095846624 Marionette INFO Marionette enabled
console.warn: SearchSettings: "get: No settings file exists, new profile?" (new NotFoundError("Could not open the file at C:\\Users\\holti\\AppData\\Local\\Temp\\rust_mozprofileP1dCMn\\search.json.mozlz4", (void 0)))
DevTools listening on ws://localhost:54611/devtools/browser/68514cf3-7fb9-40e1-885c-b3fe7b9ae5ab
1644095850559 Marionette INFO Listening on port 54616
1644095850884 RemoteAgent WARN TLS certificate errors will be ignored for this session
1644096224574 Marionette INFO Stopped listening on port 54616
console.warn: TopSitesFeed: Failed to fetch data from Contile server: NetworkError when attempting to fetch resource.
remote-debugging-port" "54645" "-no-remote" "-profile" "C:\\Users\\holti\\AppData\\Local\\Temp\\rust_mozprofileBe51n6"
1644095854750 Marionette INFO Marionette enabled
console.warn: SearchSettings: "get: No settings file exists, new profile?" (new NotFoundError("Could not open the file at C:\\Users\\holti\\AppData\\Local\\Temp\\rust_mozprofileBe51n6\\search.json.mozlz4", (void 0)))
DevTools listening on ws://localhost:54645/devtools/browser/bce1caff-1002-46ce-9270-d029c42ba0bf
1644095858926 Marionette INFO Listening on port 54668
1644095859392 RemoteAgent WARN TLS certificate errors will be ignored for this session
1644096222614 Marionette INFO Stopped listening on port 54668
console.warn: TopSitesFeed: Failed to fetch data from Contile server: NetworkError when attempting to fetch resource.
1644096597993 geckodriver INFO Listening on 127.0.0.1:61593
1644096601184 mozrunner::runner INFO Running command: "C:\\Program Files\\Mozilla Firefox\\firefox.exe" "--marionette" "--remote-debugging-port" "61594" "-no-remote" "-profile" "C:\\Users\\holti\\AppData\\Local\\Temp\\rust_mozprofilew48avC"
1644096602042 Marionette INFO Marionette enabled
console.warn: SearchSettings: "get: No settings file exists, new profile?" (new NotFoundError("Could not open the file at C:\\Users\\holti\\AppData\\Local\\Temp\\rust_mozprofilew48avC\\search.json.mozlz4", (void 0)))
DevTools listening on ws://localhost:61594/devtools/browser/c81297c5-0c0c-4028-ab45-aa794f4a49c8
1644096605673 Marionette INFO Listening on port 61599
1644096606038 RemoteAgent WARN TLS certificate errors will be ignored for this session
1644096758206 Marionette INFO Stopped listening on port 61599
console.warn: TopSitesFeed: Failed to fetch data from Contile server: NetworkError when attempting to fetch resource.
###!!! [Parent][RunMessage] Error: Channel closing: too late to send/recv, messages will be lost
ozprofileJC74NU"
1644096609595 Marionette INFO Marionette enabled
console.warn: SearchSettings: "get: No settings file exists, new profile?" (new NotFoundError("Could not open the file at C:\\Users\\holti\\AppData\\Local\\Temp\\rust_mozprofileJC74NU\\search.json.mozlz4", (void 0)))
DevTools listening on ws://localhost:61624/devtools/browser/4259d3b8-bc9f-4f5d-a38a-18a5ea9400fd
1644096612614 Marionette INFO Listening on port 61653
1644096612846 RemoteAgent WARN TLS certificate errors will be ignored for this session
1644096754763 Marionette INFO Stopped listening on port 61653
console.warn: TopSitesFeed: Failed to fetch data from Contile server: NetworkError when attempting to fetch resource.
###!!! [Parent][RunMessage] Error: Channel closing: too late to send/recv, messages will be lost
ozprofileEUczG1"
1644096751867 Marionette INFO Marionette enabled
console.warn: SearchSettings: "get: No settings file exists, new profile?" (new NotFoundError("Could not open the file at C:\\Users\\holti\\AppData\\Local\\Temp\\rust_mozprofileEUczG1\\search.json.mozlz4", (void 0)))
DevTools listening on ws://localhost:64247/devtools/browser/4780357b-920e-4ea4-8318-1acc30041028
1644096755590 Marionette INFO Listening on port 64254
1644096755756 RemoteAgent WARN TLS certificate errors will be ignored for this session
1644096756450 Marionette INFO Stopped listening on port 64251644096758879 mozrunner::runner INFO Running command: "C:\\Program Files\\Mozilla Firefox\\firefox.exe" "--marionette" "--remote-debugging-port" "64285" "-no-remote" "-profile" "C:\\Users\\holti\\AppData\\Local\\Temp\\rust_mozprofile1xRszb"
1644096759709 Marionette INFO Marionette enabled
console.warn: SearchSettings: "get: No settings file exists, new profile?" (new NotFoundError("Could not open the file at C:\\Users\\holti\\AppData\\Local\\Temp\\rust_mozprofile1xRszb\\search.json.mozlz4", (void 0)))
DevTools listening on ws://localhost:64285/devtools/browser/74d1b11e-ad58-4d82-8f31-6d1d78fa176a
1644096762717 Marionette INFO Listening on port 64297
1644096763094 RemoteAgent WARN TLS certificate errors will be ignored for this session
1644096779526 Marionette INFO Stopped listening on port 64297
console.warn: TopSitesFeed: Failed to fetch data from Contile server: NetworkError when attempting to fetch resource.
###!!! [Parent][RunMessage] Error: Channel closing: too late to send/recv, messages will be lost
1644096782302 geckodriver INFO Listening on 127.0.0.1:64370
1644096785362 mozrunner::runner INFO Running command: "C:\\Program Files\\Mozilla Firefox\\firefox.exe" "--marionette" "--remote-debugging-port" "64371" "-no-remote" "-profile" "C:\\Users\\holti\\AppData\\Local\\Temp\\rust_mozprofileWn5mkt"
1644096785813 Marionette INFO Marionette enabled
console.warn: SearchSettings: "get: No settings file exists, new profile?" (new NotFoundError("Could not open the file at C:\\Users\\holti\\AppData\\Local\\Temp\\rust_mozprofileWn5mkt\\search.json.mozlz4", (void 0)))
DevTools listening on ws://localhost:64371/devtools/browser/d08cb860-8757-4972-a38e-297dc74c4c1b
1644096788881 Marionette INFO Listening on port 64376
1644096789068 RemoteAgent WARN TLS certificate errors will be ignored for this session
1644096818830 Marionette INFO Stopped listening on port 64376
console.warn: TopSitesFeed: Failed to fetch data from Contile server: NetworkError when attempting to fetch resource.
remote-debugging-port" "64403" "-no-remote" "-profile" "C:\\Users\\holti\\AppData\\Local\\Temp\\rust_mozprofilenSqsmm"
1644096792632 Marionette INFO Marionette enabled
console.warn: SearchSettings: "get: No settings file exists, new profile?" (new NotFoundError("Could not open the file at C:\\Users\\holti\\AppData\\Local\\Temp\\rust_mozprofilenSqsmm\\search.json.mozlz4", (void 0)))
DevTools listening on ws://localhost:64403/devtools/browser/8e896bb8-0b7c-4970-ad47-c3dd10a35b9a
1644096795906 Marionette INFO Listening on port 64430
1644096796364 RemoteAgent WARN TLS certificate errors will be ignored for this session
1644096817384 Marionette INFO Stopped listening on port 64430
console.warn: TopSitesFeed: Failed to fetch data from Contile server: NetworkError when attempting to fetch resource.
###!!! [Parent][RunMessage] Error: Channel closing: too late to send/recv, messages will be lost
1644096934567 geckodriver INFO Listening on 127.0.0.1:63640
1644096937651 mozrunner::runner INFO Running command: "C:\\Program Files\\Mozilla Firefox\\firefox.exe" "--marionette" "--remote-debugging-port" "63641" "-no-remote" "-profile" "C:\\Users\\holti\\AppData\\Local\\Temp\\rust_mozprofile19ipLm"
1644096938087 Marionette INFO Marionette enabled
console.warn: SearchSettings: "get: No settings file exists, new profile?" (new NotFoundError("Could not open the file at C:\\Users\\holti\\AppData\\Local\\Temp\\rust_mozprofile19ipLm\\search.json.mozlz4", (void 0)))
DevTools listening on ws://localhost:63641/devtools/browser/948fad8c-ce32-41bb-be3d-0eaed55fa4c0
1644096941167 Marionette INFO Listening on port 63646
1644096941363 RemoteAgent WARN TLS certificate errors will be ignored for this session
1644096961476 Marionette INFO Stopped listening on port 63646
console.warn: TopSitesFeed: Failed to fetch data from Contile server: NetworkError when attempting to fetch resource.
remote-debugging-port" "63670" "-no-remote" "-profile" "C:\\Users\\holti\\AppData\\Local\\Temp\\rust_mozprofileP7L0Hx"
1644096944903 Marionette INFO Marionette enabled
console.warn: SearchSettings: "get: No settings file exists, new profile?" (new NotFoundError("Could not open the file at C:\\Users\\holti\\AppData\\Local\\Temp\\rust_mozprofileP7L0Hx\\search.json.mozlz4", (void 0)))
DevTools listening on ws://localhost:63670/devtools/browser/736a5997-08a9-4cd3-82b0-3715539745bc
1644096947671 Marionette INFO Listening on port 63697
1644096948162 RemoteAgent WARN TLS certificate errors will be ignored for this session
1644096959903 Marionette INFO Stopped listening on port 63697
console.warn: TopSitesFeed: Failed to fetch data from Contile server: NetworkError when attempting to fetch resource.
1644097400447 geckodriver INFO Listening on 127.0.0.1:61724
1644097403536 mozrunner::runner INFO Running command: "C:\\Program Files\\Mozilla Firefox\\firefox.exe" "--marionette" "--remote-debugging-port" "61725" "-no-remote" "-profile" "C:\\Users\\holti\\AppData\\Local\\Temp\\rust_mozprofilegGpuOX"
1644097403994 Marionette INFO Marionette enabled
console.warn: SearchSettings: "get: No settings file exists, new profile?" (new NotFoundError("Could not open the file at C:\\Users\\holti\\AppData\\Local\\Temp\\rust_mozprofilegGpuOX\\search.json.mozlz4", (void 0)))
DevTools listening on ws://localhost:61725/devtools/browser/65a721f4-f667-4b55-90de-9573bdeba7f3
1644097406910 Marionette INFO Listening on port 61731
1644097407238 RemoteAgent WARN TLS certificate errors will be ignored for this session
1644097420752 Marionette INFO Stopped listening on port 61731
console.warn: TopSitesFeed: Failed to fetch data from Contile server: NetworkError when attempting to fetch resource.
###!!! [Parent][RunMessage] Error: Channel closing: too late to send/recv, messages will be lost
ozprofile2ETdH6"
1644097410796 Marionette INFO Marionette enabled
console.warn: SearchSettings: "get: No settings file exists, new profile?" (new NotFoundError("Could not open the file at C:\\Users\\holti\\AppData\\Local\\Temp\\rust_mozprofile2ETdH6\\search.json.mozlz4", (void 0)))
DevTools listening on ws://localhost:61756/devtools/browser/61d6f72a-2382-48d0-bd92-1ff549214e22
1644097413985 Marionette INFO Listening on port 61785
1644097414019 RemoteAgent WARN TLS certificate errors will be ignored for this session
1644097419423 Marionette INFO Stopped listening on port 61785
console.warn: TopSitesFeed: Failed to fetch data from Contile server: NetworkError when attempting to fetch resource.
###!!! [Parent][RunMessage] Error: Channel closing: too late to send/recv, messages will be lost
1644097746277 geckodriver INFO Listening on 127.0.0.1:61851
1644097749354 mozrunner::runner INFO Running command: "C:\\Program Files\\Mozilla Firefox\\firefox.exe" "--marionette" "--remote-debugging-port" "61852" "-no-remote" "-profile" "C:\\Users\\holti\\AppData\\Local\\Temp\\rust_mozprofile4icQqe"
1644097749860 Marionette INFO Marionette enabled
console.warn: SearchSettings: "get: No settings file exists, new profile?" (new NotFoundError("Could not open the file at C:\\Users\\holti\\AppData\\Local\\Temp\\rust_mozprofile4icQqe\\search.json.mozlz4", (void 0)))
DevTools listening on ws://localhost:61852/devtools/browser/d5e0f317-fab8-4401-8f31-9c63793c67a6
1644097753321 Marionette INFO Listening on port 61857
1644097753573 RemoteAgent WARN TLS certificate errors will be ignored for this session
1644097776805 Marionette INFO Stopped listening on port 61857
console.warn: TopSitesFeed: Failed to fetch data from Contile server: NetworkError when attempting to fetch resource.
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]
NotFoundError("Could not open the file at C:\\Users\\holti\\AppData\\Local\\Temp\\rust_mozprofileX9aGU1\\search.json.mozlz4", (void 0)))
DevTools listening on ws://localhost:61886/devtools/browser/6d77cba3-479b-4462-b343-83890088f628
1644097760604 Marionette INFO Listening on port 61921
1644097760888 RemoteAgent WARN TLS certificate errors will be ignored for this session
1644097774332 Marionette INFO Stopped listening on port 61921
console.warn: TopSitesFeed: Failed to fetch data from Contile server: NetworkError when attempting to fetch resource.
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
1644097797125 geckodriver INFO Listening on 127.0.0.1:63915
1644097800201 mozrunner::runner INFO Running command: "C:\\Program Files\\Mozilla Firefox\\firefox.exe" "--marionette" "--remote-debugging-port" "63916" "-no-remote" "-profile" "C:\\Users\\holti\\AppData\\Local\\Temp\\rust_mozprofile8CWZqV"
1644097800906 Marionette INFO Marionette enabled
console.warn: SearchSettings: "get: No settings file exists, new profile?" (new NotFoundError("Could not open the file at C:\\Users\\holti\\AppData\\Local\\Temp\\rust_mozprofile8CWZqV\\search.json.mozlz4", (void 0)))
DevTools listening on ws://localhost:63916/devtools/browser/3876f0cf-d939-4b58-9fbf-6111a4f39697
1644097804413 Marionette INFO Listening on port 63922
1644097804546 RemoteAgent WARN TLS certificate errors will be ignored for this session
console.warn: LoginRecipes: "getRecipes: falling back to a synchronous message for:" "https://login.live.com"
console.warn: LoginRecipes: "getRecipes: falling back to a synchronous message for:" "https://login.live.com"
console.warn: LoginRecipes: "getRecipes: falling back to a synchronous message for:" "https://login.live.com"
1644097856606 Marionette INFO Stopped listening on port 63922
console.warn: TopSitesFeed: Failed to fetch data from Contile server: NetworkError when attempting to fetch resource.
###!!! [Parent][RunMessage] Error: Channel closing: too late to send/recv, messages will be lost
ols/browser/955c99a9-0036-4515-b3b2-75810107d567
1644097811113 Marionette INFO Listening on port 63979
1644097811396 RemoteAgent WARN TLS certificate errors will be ignored for this session
1644097854655 Marionette INFO Stopped listening on port 63979
console.warn: TopSitesFeed: Failed to fetch data from Contile server: NetworkError when attempting to fetch resource.
1644097875159 geckodriver INFO Listening on 127.0.0.1:61797
1644097878207 mozrunner::runner INFO Running command: "C:\\Program Files\\Mozilla Firefox\\firefox.exe" "--marionette" "--remote-debugging-port" "61798" "-no-remote" "-profile" "C:\\Users\\holti\\AppData\\Local\\Temp\\rust_mozprofileGrKofq"
1644097878686 Marionette INFO Marionette enabled
console.warn: SearchSettings: "get: No settings file exists, new profile?" (new NotFoundError("Could not open the file at C:\\Users\\holti\\AppData\\Local\\Temp\\rust_mozprofileGrKofq\\search.json.mozlz4", (void 0)))
DevTools listening on ws://localhost:61798/devtools/browser/fa858a1d-2ca5-41b8-9c46-e630c930105a
1644097882262 Marionette INFO Listening on port 61803
1644097882427 RemoteAgent WARN TLS certificate errors will be ignored for this session
1644097917752 Marionette INFO Stopped listening on port 61803
console.warn: TopSitesFeed: Failed to fetch data from Contile server: NetworkError when attempting to fetch resource.
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]
NotFoundError("Could not open the file at C:\\Users\\holti\\AppData\\Local\\Temp\\rust_mozprofile6ea7Il\\search.json.mozlz4", (void 0)))
DevTools listening on ws://localhost:61832/devtools/browser/9fd7df23-5d64-404f-ba3b-38da2e336206
1644097890003 Marionette INFO Listening on port 60949
1644097890409 RemoteAgent WARN TLS certificate errors will be ignored for this session
1644097916066 Marionette INFO Stopped listening on port 60949
console.warn: TopSitesFeed: Failed to fetch data from Contile server: NetworkError when attempting to fetch resource.
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
1644098331885 geckodriver INFO Listening on 127.0.0.1:62299
1644098334969 mozrunner::runner INFO Running command: "C:\\Program Files\\Mozilla Firefox\\firefox.exe" "--marionette" "--remote-debugging-port" "62300" "-no-remote" "-profile" "C:\\Users\\holti\\AppData\\Local\\Temp\\rust_mozprofile02aHig"
1644098335506 Marionette INFO Marionette enabled
console.warn: SearchSettings: "get: No settings file exists, new profile?" (new NotFoundError("Could not open the file at C:\\Users\\holti\\AppData\\Local\\Temp\\rust_mozprofile02aHig\\search.json.mozlz4", (void 0)))
DevTools listening on ws://localhost:62300/devtools/browser/47bf20b1-7cc6-4b59-9690-9682bd633d10
1644098339979 Marionette INFO Listening on port 62305
1644098340345 RemoteAgent WARN TLS certificate errors will be ignored for this session
console.warn: LoginRecipes: "getRecipes: falling back to a synchronous message for:" "https://login.live.com"
console.warn: LoginRecipes: "getRecipes: falling back to a synchronous message for:" "https://login.live.com"
console.warn: LoginRecipes: "getRecipes: falling back to a synchronous message for:" "https://login.live.com"
console.warn: LoginRecipes: "getRecipes: falling back to a synchronous message for:" "https://login.live.com"
console.warn: LoginRecipes: "getRecipes: falling back to a synchronous message for:" "https://login.live.com"
JavaScript error: resource://gre/modules/LoginManagerParent.jsm, line 136: TypeError: gRecipeManager is null
console.warn: LoginRecipes: "getRecipes: falling back to a synchronous message for:" "https://login.live.com"
JavaScript error: resource://gre/mconsole.warn: LoginRecipes: "getRecipes: falling back to a synchronous message for:" "https://login.live.com"
console.warn: LoginRecipes: "getRecipes: falling back to a synchronous message for:" "https://login.live.com"
console.warn: LoginRecipes: "getRecipes: falling back to a synchronous message for:" "https://login.live.com"
console.warn: LoginRecipes: "getRecipes: falling back to a synchronous message for:" "https://login.live.com"
console.warn: LoginRecipes: "getRecipes: falling back to a synchronous message for:" "https://login.live.com"
JavaScript error: resource://gre/modules/LoginManagerParent.jsm, line 136: TypeError: gRecipeManager is null
console.warn: LoginRecipes: "getRecipes: falling back to a synchronous message for:" "https://login.live.com"
JavaScript error: resource://gre/modules/LoginManagerParent.jsm, line 136: TypeError: gRecipeManager is null
console.warn: LoginRecipes: "getRecipes: falling back to a synchronous message for:" "https://login.live.com"
JavaScript error: resource://gre/modules/LoginManagerParent.jsm, line 136: TypeError: gRecipeManager is null
console.warn: LoginRecipes: "getRecipes: falling back to a synchronous message for:" "https://login.live.com"
JavaScript error: resource://gre/modules/LoginManagerParent.jsm, line 136: TypeError: gRecipeManager is null
console.warn: LoginRecipes: "getRecipes: falling back to a synchronous mesconsole.warn: LoginRecipes: "getRecipes: falling back to a synchronous message for:" "https://login.microsoftonline.com"
JavaScript error: resource://gre/modules/LoginManagerParent.jsm, line 136: TypeError: gRecipeManager is null
console.warn: LoginRecipes: "getRecipes: falling back to a synchronous message for:" "https://login.microsoftonline.com"
JavaScript error: resource://gre/modules/LoginManagerParent.jsm, line 136: TypeError: gRecipeManager is null
1644098395303 Marionette WARN Ignoring event 'DOMContentLoaded' because document has an invalid readyState of 'complete'.
console.warn: LoginRecipes: "getRecipes: falling back to a synchronous message for:" "https://login.live.com"
JavaScript error: resource://gre/modules/LoginManagerParent.jsm, line 136: TypeError: gRecipeManager is null
console.warn: LoginRecipes: "getRecipes: falling back to a synchronous message for:" "https://login.live.com"
JavaScript error: resource://gre/modules/LoginManagerParent.jsm, line 136: TypeError: gRecipeManager is null
1644098427289 Marionette INFO Stopped listening on port 62305
console.warn: TopSitesFeed: Failed to fetch data from Contile server: NetworkError when attempting to fetch resource.
urce://gre/modules/LoginManagerParent.jsm, line 136: TypeError: gRecipeManager is null
console.warn: LoginRecipes: "getRecipes: falling back to a synchronous message for:" "https://login.live.com"
JavaScript error: resource://gre/modules/LoginManagerParent.jsm, line 136: TypeError: gRecipeManager is null
console.warn: LoginRecipes: "getRecipes: falling back to a synchronous message for:" "https://login.live.com"
JavaScript error: resource://gre/modules/LoginManagerParent.jsm, line 136: TypeError: gRecipeManager is null
JavaScript warning: https://fpt.microsoft.com/tags?session_id=562b82d4-dd16-4f8d-a925-11897438f421, line 5: WEBGL_debug_renderer_info is deprecated in Firefox and will be removed. Please use RENDERER.
1644098425762 Marionette INFO Stopped listening on port 62370
console.warn: TopSitesFeed: Failed to fetch data from Contile server: NetworkError when attempting to fetch resource.
###!!! [Parent][RunMessage] Error: Channel closing: too late to send/recv, messages will be lost
1644098991998 geckodriver INFO Listening on 127.0.0.1:62074
1644098995073 mozrunner::runner INFO Running command: "C:\\Program Files\\Mozilla Firefox\\firefox.exe" "--marionette" "--remote-debugging-port" "62075" "-no-remote" "-profile" "C:\\Users\\holti\\AppData\\Local\\Temp\\rust_mozprofileCjTO2A"
1644098995625 Marionette INFO Marionette enabled
console.warn: SearchSettings: "get: No settings file exists, new profile?" (new NotFoundError("Could not open the file at C:\\Users\\holti\\AppData\\Local\\Temp\\rust_mozprofileCjTO2A\\search.json.mozlz4", (void 0)))
DevTools listening on ws://localhost:62075/devtools/browser/63aab740-e709-4672-8f5c-a260123f13f9
1644098998888 Marionette INFO Listening on port 62082
1644098999358 RemoteAgent WARN TLS certificate errors will be ignored for this session
console.warn: LoginRecipes: "getRecipes: falling back to a synchronous message for:" "https://login.live.com"
console.warn: LoginRecipes: "getRecipes: falling back to a synchronous message for:" "https://login.live.com"
console.warn: LoginRecipes: "getRecipes: falling back to a synchronous message for:" "https://login.live.com"
console.warn: LoginRecipes: "getRecipes: falling back to a synchronous message for:" "https://login.live.com"
console.warn: LoginRecipes: "getRecipes: falling back to a synchronous message for:" "https://login.live.com"
JavaScript error: resource://gre/modules/LoginManagerParent.jsm, line 136: TypeError: gRecipeManager is null
console.warn: LoginRecipes: "getRecipes: falling back to a synchronous message for:" "https://login.live.com"
JavaScript error: resource://gre/mconsole.warn: LoginRecipes: "getRecipes: falling back to a synchronous message for:" "https://login.live.com"
console.warn: LoginRecipes: "getRecipes: falling back to a synchronous message for:" "https://login.live.com"
console.warn: LoginRecipes: "getRecipes: falling back to a synchronous message for:" "https://login.live.com"
console.warn: LoginRecipes: "getRecipes: falling back to a synchronous message for:" "https://login.live.com"
console.warn: LoginRecipes: "getRecipes: falling back to a synchronous message for:" "https://login.live.com"
JavaScript error: resource://gre/modules/LoginManagerParent.jsm, line 136: TypeError: gRecipeManager is null
console.warn: LoginRecipes: "getRecipes: falling back to a synchronous message for:" "https://login.live.com"
JavaScript error: resource://gre/modules/LoginManagerParent.jsm, line 136: TypeError: gRecipeManager is null
console.warn: LoginRecipes: "getRecipes: falling back to a synchronous message for:" "https://login.live.com"
JavaScript error: resource://gre/modules/LoginManagerParent.jsm, line 136: TypeError: gRecipeManager is null
console.warn: LoginRecipes: "getRecipes: falling back to a synchronous message for:" "https://login.live.com"
JavaScript error: resource://gre/modules/LoginManagerParent.jsm, line 136: TypeError: gRecipeManager is null
console.warn: LoginRecipes: "getRecipes: falling back to a synchronous mesconsole.warn: LoginRecipes: "getRecipes: falling back to a synchronous message for:" "https://www.bing.com"
JavaScript error: resource://gre/modules/LoginManagerParent.jsm, line 136: TypeError: gRecipeManager is null
console.warn: LoginRecipes: "getRecipes: falling back to a synchronous message for:" "https://www.bing.com"
JavaScript error: resource://gre/modules/LoginManagerParent.jsm, line 136: TypeError: gRecipeManager is null
console.warn: LoginRecipes: "getRecipes: falling back to a synchronous message for:" "https://login.live.com"
JavaScript error: resource://gre/modules/LoginManagerParent.jsm, line 136: TypeError: gRecipeManager is null
console.warn: LoginRecipes: "getRecipes: falling back to a synchronous message for:" "https://login.live.com"
JavaScript error: resource://gre/modules/LoginManagerParent.jsm, line 136: TypeError: gRecipeManager is null
console.warn: LoginRecipes: "getRecipes: falling back to a synchronous message for:" "https://login.microsoftonline.com"
JavaScript error: resource://gre/modules/LoginManagerParent.jsm, line 136: TypeError: gRecipeManager is null
console.warn: LoginRecipes: "getRecipes: falling back to a synchronous message for:" "https://login.microsoftonline.com"
JavaScript error: resource://gre/modules/LoginManagerParent.jsm, line 136: TypeError: gRecipeManager is null
1644099121584 Marionette INFO Stopped listening on port 62082
console.warn: TopSitesFeed: Failed to fetch data from Contile server: NetworkError when attempting to fetch resource.
###!!! [Parent][RunMessage] Error: Channel closing: too late to send/recv, messages will be lost
Marionette WARN Ignoring event 'DOMContentLoaded' because document has an invalid readyState of 'complete'.
console.warn: LoginRecipes: "getRecipes: falling back to a synchronous message for:" "https://www.bing.com"
JavaScript error: resource://gre/modules/LoginManagerParent.jsm, line 136: TypeError: gRecipeManager is null
console.warn: LoginRecipes: "getRecipes: falling back to a synchronous message for:" "https://login.live.com"
JavaScript error: resource://gre/modules/LoginManagerParent.jsm, line 136: TypeError: gRecipeManager is null
console.warn: LoginRecipes: "getRecipes: falling back to a synchronous message for:" "https://login.live.com"
JavaScript error: resource://gre/modules/LoginManagerParent.jsm, line 136: TypeError: gRecipeManager is null
console.warn: LoginRecipes: "getRecipes: falling back to a synchronous message for:" "https://login.microsoftonline.com"
JavaScript error: resource://gre/modules/LoginManagerParent.jsm, line 136: TypeError: gRecipeManager is null
console.warn: LoginRecipes: "getRecipes: falling back to a synchronous message for:" "https://login.microsoftonline.com"
JavaScript error: resource://gre/modules/LoginManagerParent.jsm, line 136: TypeError: gRecipeManager is null
console.warn: LoginRecipes: "getRecipes: falling back to a synchronous message for:" "https://login.microsoftonline.com"
JavaScript error: resource://gre/modules/LoginManagerParent.jsm, line 136: TypeError: gRecipeManager is null
console.warn: LoginRecipes: "getRecipes: falling back to a synchronous message for:" "https://login.microsoftonline.com"
JavaScript error: resource://gre/modules/LoginManagerParent.jsm, line 136: TypeError: gRecipeManager is null
1644099110663 Marionette INFO Stopped listening on port 62136
1644099302142 geckodriver INFO Listening on 127.0.0.1:58778
1644099305233 mozrunner::runner INFO Running command: "C:\\Program Files\\Mozilla Firefox\\firefox.exe" "--marionette" "--remote-debugging-port" "58779" "-no-remote" "-profile" "C:\\Users\\holti\\AppData\\Local\\Temp\\rust_mozprofiletrFfqu"
1644099306005 Marionette INFO Marionette enabled
console.warn: SearchSettings: "get: No settings file exists, new profile?" (new NotFoundError("Could not open the file at C:\\Users\\holti\\AppData\\Local\\Temp\\rust_mozprofiletrFfqu\\search.json.mozlz4", (void 0)))
DevTools listening on ws://localhost:58779/devtools/browser/04b50a8c-a786-4aac-90d0-d8a570406a6a
1644099311630 Marionette INFO Listening on port 58784
1644099311762 RemoteAgent WARN TLS certificate errors will be ignored for this session
console.warn: LoginRecipes: "getRecipes: falling back to a synchronous message for:" "https://login.live.com"
console.warn: LoginRecipes: "getRecipes: falling back to a synchronous message for:" "https://login.live.com"
console.warn: LoginRecipes: "getRecipes: falling back to a synchronous message for:" "https://login.live.com"
console.warn: LoginRecipes: "getRecipes: falling back to a synchronous message for:" "https://login.live.com"
console.warn: LoginRecipes: "getRecipes: falling back to a synchronous message for:" "https://login.live.com"
JavaScript error: resource://gre/modules/LoginManagerParent.jsm, line 136: TypeError: gRecipeManager is null
console.warn: LoginRecipes: "getRecipes: falling back to a synchronous message for:" "https://login.live.com"
JavaScript error: resource://gre/mconsole.warn: LoginRecipes: "getRecipes: falling back to a synchronous message for:" "https://login.live.com"
console.warn: LoginRecipes: "getRecipes: falling back to a synchronous message for:" "https://login.live.com"
console.warn: LoginRecipes: "getRecipes: falling back to a synchronous message for:" "https://login.live.com"
console.warn: LoginRecipes: "getRecipes: falling back to a synchronous message for:" "https://login.live.com"
console.warn: LoginRecipes: "getRecipes: falling back to a synchronous message for:" "https://login.live.com"
JavaScript error: resource://gre/modules/LoginManagerParent.jsm, line 136: TypeError: gRecipeManager is null
console.warn: LoginRecipes: "getRecipes: falling back to a synchronous message for:" "https://login.live.com"
JavaScript error: resource://gre/modules/LoginManagerParent.jsm, line 136: TypeError: gRecipeManager is null
console.warn: LoginRecipes: "getRecipes: falling back to a synchronous message for:" "https://login.live.com"
JavaScript error: resource://gre/modules/LoginManagerParent.jsm, line 136: TypeError: gRecipeManager is null
console.warn: LoginRecipes: "getRecipes: falling back to a synchronous message for:" "https://login.live.com"
JavaScript error: resource://gre/modules/LoginManagerParent.jsm, line 136: TypeError: gRecipeManager is null
console.warn: LoginRecipes: "getRecipes: falling back to a synchronous mesconsole.warn: LoginRecipes: "getRecipes: falling back to a synchronous message for:" "https://login.microsoftonline.com"
JavaScript error: resource://gre/modules/LoginManagerParent.jsm, line 136: TypeError: gRecipeManager is null
console.warn: LoginRecipes: "getRecipes: falling back to a synchronous message for:" "https://login.microsoftonline.com"
JavaScript error: resource://gre/modules/LoginManagerParent.jsm, line 136: TypeError: gRecipeManager is null
1644099377800 Marionette WARN Ignoring event 'DOMContentLoaded' because document has an invalid readyState of 'complete'.
1644099553682 Marionette INFO Stopped listening on port 58784
###!!! [Child][RunMessage] Error: Channel closing: too late to send/recv, messages will be lost
console.warn: TopSitesFeed: Failed to fetch data from Contile server: NetworkError when attempting to fetch resource.
136: TypeError: gRecipeManager is null
console.warn: LoginRecipes: "getRecipes: falling back to a synchronous message for:" "https://login.microsoftonline.com"
JavaScript error: resource://gre/modules/LoginManagerParent.jsm, line 136: TypeError: gRecipeManager is null
1644099390866 Marionette WARN Ignoring event 'DOMContentLoaded' because document has an invalid readyState of 'complete'.
console.warn: LoginRecipes: "getRecipes: falling back to a synchronous message for:" "https://login.live.com"
JavaScript error: resource://gre/modules/LoginManagerParent.jsm, line 136: TypeError: gRecipeManager is null
console.warn: LoginRecipes: "getRecipes: falling back to a synchronous message for:" "https://login.live.com"
JavaScript error: resource://gre/modules/LoginManagerParent.jsm, line 136: TypeError: gRecipeManager is null
1644099548901 Marionette INFO Stopped listening on port 58840
console.warn: TopSitesFeed: Failed to fetch data from Contile server: NetworkError when attempting to fetch resource.
###!!! [Parent][RunMessage] Error: Channel closing: too late to send/recv, messages will be lost
1644099604714 geckodriver INFO Listening on 127.0.0.1:63967
1644099607784 mozrunner::runner INFO Running command: "C:\\Program Files\\Mozilla Firefox\\firefox.exe" "--marionette" "--remote-debugging-port" "63968" "-no-remote" "-profile" "C:\\Users\\holti\\AppData\\Local\\Temp\\rust_mozprofileMaENbV"
1644099608485 Marionette INFO Marionette enabled
console.warn: SearchSettings: "get: No settings file exists, new profile?" (new NotFoundError("Could not open the file at C:\\Users\\holti\\AppData\\Local\\Temp\\rust_mozprofileMaENbV\\search.json.mozlz4", (void 0)))
DevTools listening on ws://localhost:63968/devtools/browser/12d19e95-a5c7-46ed-867f-5a340b278aab
1644099612190 Marionette INFO Listening on port 63973
1644099612681 RemoteAgent WARN TLS certificate errors will be ignored for this session
console.warn: LoginRecipes: "getRecipes: falling back to a synchronous message for:" "https://login.live.com"
console.warn: LoginRecipes: "getRecipes: falling back to a synchronous message for:" "https://login.live.com"
console.warn: LoginRecipes: "getRecipes: falling back to a synchronous message for:" "https://login.live.com"
console.warn: LoginRecipes: "getRecipes: falling back to a synchronous message for:" "https://login.live.com"
console.warn: LoginRecipes: "getRecipes: falling back to a synchronous message for:" "https://login.live.com"
JavaScript error: resource://gre/modules/LoginManagerParent.jsm, line 136: TypeError: gRecipeManager is null
console.warn: LoginRecipes: "getRecipes: falling back to a synchronous message for:" "https://login.live.com"
JavaScript error: resource://gre/mconsole.warn: LoginRecipes: "getRecipes: falling back to a synchronous message for:" "https://login.live.com"
console.warn: LoginRecipes: "getRecipes: falling back to a synchronous message for:" "https://login.live.com"
console.warn: LoginRecipes: "getRecipes: falling back to a synchronous message for:" "https://login.live.com"
console.warn: LoginRecipes: "getRecipes: falling back to a synchronous message for:" "https://login.live.com"
console.warn: LoginRecipes: "getRecipes: falling back to a synchronous message for:" "https://login.live.com"
JavaScript error: resource://gre/modules/LoginManagerParent.jsm, line 136: TypeError: gRecipeManager is null
console.warn: LoginRecipes: "getRecipes: falling back to a synchronous message for:" "https://login.live.com"
JavaScript error: resource://gre/modules/LoginManagerParent.jsm, line 136: TypeError: gRecipeManager is null
console.warn: LoginRecipes: "getRecipes: falling back to a synchronous message for:" "https://login.live.com"
JavaScript error: resource://gre/modules/LoginManagerParent.jsm, line 136: TypeError: gRecipeManager is null
console.warn: LoginRecipes: "getRecipes: falling back to a synchronous message for:" "https://login.live.com"
JavaScript error: resource://gre/modules/LoginManagerParent.jsm, line 136: TypeError: gRecipeManager is null
console.warn: LoginRecipes: "getRecipes: falling back to a synchronous mesconsole.warn: LoginRecipes: "getRecipes: falling back to a synchronous message for:" "https://login.microsoftonline.com"
JavaScript error: resource://gre/modules/LoginManagerParent.jsm, line 136: TypeError: gRecipeManager is null
console.warn: LoginRecipes: "getRecipes: falling back to a synchronous message for:" "https://login.microsoftonline.com"
JavaScript error: resource://gre/modules/LoginManagerParent.jsm, line 136: TypeError: gRecipeManager is null
1644099691313 Marionette WARN Ignoring event 'DOMContentLoaded' because document has an invalid readyState of 'complete'.
1644101632082 Marionette INFO Stopped listening on port 63973
console.warn: TopSitesFeed: Failed to fetch data from Contile server: NetworkError when attempting to fetch resource.
MediaDecoderStateMachine.cpp:3568
JavaScript error: resource://gre/modules/AsyncShutdown.jsm, line 575: NotFoundError: No such JSWindowActor 'DevToolsFrame'
1644101633695 Marionette INFO Stopped listening on port 64030
console.warn: TopSitesFeed: Failed to fetch data from Contile server: NetworkError when attempting to fetch resource.
###!!! [Parent][RunMessage] Error: Channel closing: too late to send/recv, messages will be lost
1644101656069 geckodriver INFO Listening on 127.0.0.1:59515
1644101659161 mozrunner::runner INFO Running command: "C:\\Program Files\\Mozilla Firefox\\firefox.exe" "--marionette" "--remote-debugging-port" "59516" "-no-remote" "-profile" "C:\\Users\\holti\\AppData\\Local\\Temp\\rust_mozprofileDpKkzA"
1644101659748 Marionette INFO Marionette enabled
console.warn: SearchSettings: "get: No settings file exists, new profile?" (new NotFoundError("Could not open the file at C:\\Users\\holti\\AppData\\Local\\Temp\\rust_mozprofileDpKkzA\\search.json.mozlz4", (void 0)))
DevTools listening on ws://localhost:59516/devtools/browser/448d4c7b-1349-47c8-9606-1f0783fb6ba3
1644101663437 Marionette INFO Listening on port 59522
1644101663508 RemoteAgent WARN TLS certificate errors will be ignored for this session
console.warn: LoginRecipes: "getRecipes: falling back to a synchronous message for:" "https://login.live.com"
console.warn: LoginRecipes: "getRecipes: falling back to a synchronous message for:" "https://login.live.com"
console.warn: LoginRecipes: "getRecipes: falling back to a synchronous message for:" "https://login.live.com"
console.warn: LoginRecipes: "getRecipes: falling back to a synchronous message for:" "https://login.live.com"
console.warn: LoginRecipes: "getRecipes: falling back to a synchronous message for:" "https://login.live.com"
JavaScript error: resource://gre/modules/LoginManagerParent.jsm, line 136: TypeError: gRecipeManager is null
console.warn: LoginRecipes: "getRecipes: falling back to a synchronous message for:" "https://login.live.com"
JavaScript error: resource://gre/mconsole.warn: LoginRecipes: "getRecipes: falling back to a synchronous message for:" "https://login.live.com"
console.warn: LoginRecipes: "getRecipes: falling back to a synchronous message for:" "https://login.live.com"
console.warn: LoginRecipes: "getRecipes: falling back to a synchronous message for:" "https://login.live.com"
console.warn: LoginRecipes: "getRecipes: falling back to a synchronous message for:" "https://login.live.com"
console.warn: LoginRecipes: "getRecipes: falling back to a synchronous message for:" "https://login.live.com"
JavaScript error: resource://gre/modules/LoginManagerParent.jsm, line 136: TypeError: gRecipeManager is null
console.warn: LoginRecipes: "getRecipes: falling back to a synchronous message for:" "https://login.live.com"
JavaScript error: resource://gre/modules/LoginManagerParent.jsm, line 136: TypeError: gRecipeManager is null
console.warn: LoginRecipes: "getRecipes: falling back to a synchronous message for:" "https://login.live.com"
JavaScript error: resource://gre/modules/LoginManagerParent.jsm, line 136: TypeError: gRecipeManager is null
console.warn: LoginRecipes: "getRecipes: falling back to a synchronous message for:" "https://login.live.com"
JavaScript error: resource://gre/modules/LoginManagerParent.jsm, line 136: TypeError: gRecipeManager is null
console.warn: LoginRecipes: "getRecipes: falling back to a synchronous mesconsole.warn: LoginRecipes: "getRecipes: falling back to a synchronous message for:" "https://login.microsoftonline.com"
JavaScript error: resource://gre/modules/LoginManagerParent.jsm, line 136: TypeError: gRecipeManager is null
console.warn: LoginRecipes: "getRecipes: falling back to a synchronous message for:" "https://login.microsoftonline.com"
JavaScript errconsole.warn: LoginRecipes: "getRecipes: falling back to a synchronous message for:" "https://login.microsoftonline.com"
JavaScript error: resource://gre/modules/LoginManagerParent.jsm, line 136: TypeError: gRecipeManager is null
console.warn: LoginRecipes: "getRecipes: falling back to a synchronous message for:" "https://login.microsoftonline.com"
JavaScript error: resource://gre/modules/LoginManagerParent.jsm, line 136: TypeError: gRecipeManager is null
1644101732088 Marionette WARN Ignoring event 'DOMContentLoaded' because document has an invalid readyState of 'complete'.
console.warn: LoginRecipes: "getRecipes: falling back to a synchronous mes1644101741932 Marionette INFO Stopped listening on port 59522
###!!! [Child][MessageChannel] Error: (msgtype=0x5A0008,name=PHttpChannel::Msg_DeletingChannel) Channel closing: too late to send/recv, messages will be lost
###!!! [Child][MessageChannel] Error: (msgtype=0x5A0008,name=PHttpChannel::Msg_DeletingChannel) Channel closing: too late to send/recv, mess1644101743293 Marionette INFO Stopped listening on port 59575
###!!! [Parent][RunMessage] Error: Channel closing: too late to send/recv, messages will be lost
es will be lost
###!!! [Child][MessageChannel] Error: (msgtype=0x5A0008,name=PHttpChannel::Msg_DeletingChannel) Channel closing: too late to send/recv, messages will be lost
console.warn: TopSitesFeed: Failed to fetch data from Contile server: NetworkError when attempting to fetch resource.
1644101769398 geckodriver INFO Listening on 127.0.0.1:50918
1644101772481 mozrunner::runner INFO Running command: "C:\\Program Files\\Mozilla Firefox\\firefox.exe" "--marionette" "--remote-debugging-port" "50919" "-no-remote" "-profile" "C:\\Users\\holti\\AppData\\Local\\Temp\\rust_mozprofileCqdmeF"
1644101772940 Marionette INFO Marionette enabled
console.warn: SearchSettings: "get: No settings file exists, new profile?" (new NotFoundError("Could not open the file at C:\\Users\\holti\\AppData\\Local\\Temp\\rust_mozprofileCqdmeF\\search.json.mozlz4", (void 0)))
DevTools listening on ws://localhost:50919/devtools/browser/0ff9fe6b-9c8a-40f2-ad62-0b36609e5c8e
1644101776263 Marionette INFO Listening on port 50924
1644101776730 RemoteAgent WARN TLS certificate errors will be ignored for this session
1644101828074 Marionette INFO Stopped listening on port 50924
console.warn: TopSitesFeed: Failed to fetch data from Contile server: NetworkError when attempting to fetch resource.
###!!! [Parent][RunMessage] Error: Channel closing: too late to send/recv, messages will be lost
ozprofileKuTdWB"
1644101780257 Marionette INFO Marionette enabled
console.warn: SearchSettings: "get: No settings file exists, new profile?" (new NotFoundError("Could not open the file at C:\\Users\\holti\\AppData\\Local\\Temp\\rust_mozprofileKuTdWB\\search.json.mozlz4", (void 0)))
DevTools listening on ws://localhost:50958/devtools/browser/f49dc309-7dc3-4932-b470-35187c835cfa
1644101783321 Marionette INFO Listening on port 50991
1644101783537 RemoteAgent WARN TLS certificate errors will be ignored for this session
console.warn: LoginRecipes: "getRecipes: falling back to a synchronous message for:" "https://login.microsoftonline.com"
1644101798698 Marionette WARN Ignoring event 'DOMContentLoaded' because document has an invalid readyState of 'complete'.
console.warn: LoginRecipes: "getRecipes: falling back to a synchronous message for:" "https://login.microsoftonline.com"
1644101800924 Marionette WARN Ignoring event 'DOMContentLoaded' because document has an invalid readyState of 'complete'.
1644101829037 Marionette INFO Stopped listening on port 50991
console.warn: TopSitesFeed: Failed to fetch data from Contile server: NetworkError when attempting to fetch resource.
###!!! [Parent][RunMessage] Error: Channel closing: too late to send/recv, messages will be lost
1644111592033 geckodriver INFO Listening on 127.0.0.1:63237
1644111595470 mozrunner::runner INFO Running command: "C:\\Program Files\\Mozilla Firefox\\firefox.exe" "--marionette" "--remote-debugging-port" "63238" "-no-remote" "-profile" "C:\\Users\\holti\\AppData\\Local\\Temp\\rust_mozprofileXjK18Q"
1644111598703 Marionette INFO Marionette enabled
console.warn: SearchSettings: "get: No settings file exists, new profile?" (new NotFoundError("Could not open the file at C:\\Users\\holti\\AppData\\Local\\Temp\\rust_mozprofileXjK18Q\\search.json.mozlz4", (void 0)))
DevTools listening on ws://localhost:63238/devtools/browser/4020aaa4-5ea4-45b1-8158-f244497dcaaf
1644111611426 Marionette INFO Listening on port 63249
1644111611948 RemoteAgent WARN TLS certificate errors will be ignored for this session
console.warn: LoginRecipes: "getRecipes: falling back to a synchronous message for:" "https://login.live.com"
console.warn: LoginRecipes: "getRecipes: falling back to a synchronous message for:" "https://login.live.com"
console.warn: LoginRecipes: "getRecipes: falling back to a synchronous message for:" "https://login.live.com"
console.warn: LoginRecipes: "getRecipes: falling back to a synchronous message for:" "https://login.live.com"
console.warn: LoginRecipes: "getRecipes: falling back to a synchronous message for:" "https://login.live.com"
JavaScript error: resource://gre/modules/LoginManagerParent.jsm, line 136: TypeError: gRecipeManager is null
console.warn: LoginRecipes: "getRecipes: falling back to a synchronous message for:" "https://login.live.com"
JavaScript error: resource://gre/mconsole.warn: LoginRecipes: "getRecipes: falling back to a synchronous message for:" "https://login.live.com"
console.warn: LoginRecipes: "getRecipes: falling back to a synchronous message for:" "https://login.live.com"
console.warn: LoginRecipes: "getRecipes: falling back to a synchronous message for:" "https://login.live.com"
console.warn: LoginRecipes: "getRecipes: falling back to a synchronous message for:" "https://login.live.com"
console.warn: LoginRecipes: "getRecipes: falling back to a synchronous message for:" "https://login.live.com"
JavaScript error: resource://gre/modules/LoginManagerParent.jsm, line 136: TypeError: gRecipeManager is null
console.warn: LoginRecipes: "getRecipes: falling back to a synchronous message for:" "https://login.live.com"
JavaScript error: resource://gre/modules/LoginManagerParent.jsm, line 136: TypeError: gRecipeManager is null
console.warn: LoginRecipes: "getRecipes: falling back to a synchronous message for:" "https://login.live.com"
JavaScript error: resource://gre/modules/LoginManagerParent.jsm, line 136: TypeError: gRecipeManager is null
console.warn: LoginRecipes: "getRecipes: falling back to a synchronous message for:" "https://login.live.com"
JavaScript error: resource://gre/modules/LoginManagerParent.jsm, line 136: TypeError: gRecipeManager is null
console.warn: LoginRecipes: "getRecipes: falling back to a synchronous mesconsole.warn: LoginRecipes: "getRecipes: falling back to a synchronous message for:" "https://login.microsoftonline.com"
JavaScript error: resource://gre/modules/LoginManagerParent.jsm, line 136: TypeError: gRecipeManager is null
console.warn: LoginRecipes: "getRecipes: falling back to a synchronous message for:" "https://login.microsoftonline.com"
JavaScript error: resource://gre/modules/LoginManagerParent.jsm, line 136: TypeError: gRecipeManager is null
1644111753673 Marionette WARN Ignoring event 'DOMContentLoaded' because document has an invalid readyState of 'complete'.
console.warn: LoginRecipes: "getRecipes: falling back to a synchro1644111779305 Marionette INFO Stopped listening on port 63362
console.warn: TopSitesFeed: Failed to fetch data from Contile server: NetworkError when attempting to fetch resource.
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]
###!!! [Child][MessageChannel] Error: (msgtype=0x5A0008,name=PHttpChannel::Msg_DeletingChannel) 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=0x3A0147,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
LABLE: Component returned failure code: 0x80040111 (NS_ERROR_NOT_AVAILABLE) [nsICertOverrideService.setDisableAllSecurityChecksAndLetAttackersInterceptMyData]
###!!! [Child][MessageChannel] Error: (msgtype=0x5A0008,name=PHttpChannel::Msg_DeletingChannel) Channel closing: too late to send/recv, messages will be lost
1644119205619 geckodriver INFO Listening on 127.0.0.1:50152
1644119208721 mozrunner::runner INFO Running command: "C:\\Program Files\\Mozilla Firefox\\firefox.exe" "--marionette" "--remote-debugging-port" "50153" "-no-remote" "-profile" "C:\\Users\\holti\\AppData\\Local\\Temp\\rust_mozprofile6d1OCn"
1644119209482 Marionette INFO Marionette enabled
console.warn: SearchSettings: "get: No settings file exists, new profile?" (new NotFoundError("Could not open the file at C:\\Users\\holti\\AppData\\Local\\Temp\\rust_mozprofile6d1OCn\\search.json.mozlz4", (void 0)))
DevTools listening on ws://localhost:50153/devtools/browser/f57ceae6-1f38-454b-bdc7-6253823a5f48
1644119214979 Marionette INFO Listening on port 50161
1644119215183 RemoteAgent WARN TLS certificate errors will be ignored for this session
console.warn: LoginRecipes: "getRecipes: falling back to a synchronous message for:" "https://login.live.com"
console.warn: LoginRecipes: "getRecipes: falling back to a synchronous message for:" "https://login.live.com"
console.warn: LoginRecipes: "getRecipes: falling back to a synchronous message for:" "https://login.live.com"
console.warn: LoginRecipes: "getRecipes: falling back to a synchronous message for:" "https://login.live.com"
console.warn: LoginRecipes: "getRecipes: falling back to a synchronous message for:" "https://login.live.com"
JavaScript error: resource://gre/modules/LoginManagerParent.jsm, line 136: TypeError: gRecipeManager is null
console.warn: LoginRecipes: "getRecipes: falling back to a synchronous message for:" "https://login.live.com"
JavaScript error: resource://gre/mconsole.warn: LoginRecipes: "getRecipes: falling back to a synchronous message for:" "https://login.live.com"
console.warn: LoginRecipes: "getRecipes: falling back to a synchronous message for:" "https://login.live.com"
console.warn: LoginRecipes: "getRecipes: falling back to a synchronous message for:" "https://login.live.com"
1644119299758 Marionette INFO Stopped listening on port 50341
console.warn: TopSitesFeed: Failed to fetch data from Contile server: NetworkError when attempting to fetch resource.
###!!! [Parent][RunMessage] Error: Channel closing: too late to send/recv, messages will be lost
.live.com"
JavaScript error: resource://gre/modules/LoginManagerParent.jsm, line 136: TypeError: gRecipeManager is null
console.warn: LoginRecipes: "getRecipes: falling back to a synchronous message for:" "https://login.live.com"
JavaScript error: resource://gre/modules/LoginManagerParent.jsm, line 136: TypeError: gRecipeManager is null
console.warn: LoginRecipes: "getRecipes: falling back to a synchronous message for:" "https://login.live.com"
JavaScript error: resource://gre/modules/LoginManagerParent.jsm, line 136: TypeError: gRecipeManager is null
console.warn: LoginRecipes: "getRecipes: falling back to a synchronous message for:" "https://login.live.com"
JavaScript error: resource://gre/modules/LoginManagerParent.jsm, line 136: TypeError: gRecipeManager is null
1644119301777 Marionette INFO Stopped listening on port 50161
console.warn: TopSitesFeed: Failed to fetch data from Contile server: NetworkError when attempting to fetch resource.
[Parent 728, IPC I/O Parent] WARNING: file /builds/worker/checkouts/gecko/ipc/chromium/src/base/process_util_win.cc:167
###!!! [Parent][RunMessage] Error: Channel closing: too late to send/recv, messages will be lost
1644119315782 geckodriver INFO Listening on 127.0.0.1:58048
1644119318849 mozrunner::runner INFO Running command: "C:\\Program Files\\Mozilla Firefox\\firefox.exe" "--marionette" "--remote-debugging-port" "58049" "-no-remote" "-profile" "C:\\Users\\holti\\AppData\\Local\\Temp\\rust_mozprofilelyD7W7"
1644119319521 Marionette INFO Marionette enabled
console.warn: SearchSettings: "get: No settings file exists, new profile?" (new NotFoundError("Could not open the file at C:\\Users\\holti\\AppData\\Local\\Temp\\rust_mozprofilelyD7W7\\search.json.mozlz4", (void 0)))
DevTools listening on ws://localhost:58049/devtools/browser/7415ffc1-b5d8-4e2b-bb3e-faff49dbd909
1644119322963 Marionette INFO Listening on port 58057
1644119323106 RemoteAgent WARN TLS certificate errors will be ignored for this session
console.warn: LoginRecipes: "getRecipes: falling back to a synchronous message for:" "https://login.live.com"
console.warn: LoginRecipes: "getRecipes: falling back to a synchronous message for:" "https://login.live.com"
console.warn: LoginRecipes: "getRecipes: falling back to a synchronous message for:" "https://login.live.com"
console.warn: LoginRecipes: "getRecipes: falling back to a synchronous message for:" "https://login.live.com"
console.warn: LoginRecipes: "getRecipes: falling back to a synchronous message for:" "https://login.live.com"
JavaScript error: resource://gre/modules/LoginManagerParent.jsm, line 136: TypeError: gRecipeManager is null
console.warn: LoginRecipes: "getRecipes: falling back to a synchronous message for:" "https://login.live.com"
JavaScript error: resource://gre/mconsole.warn: LoginRecipes: "getRecipes: falling back to a synchronous message for:" "https://login.live.com"
console.warn: LoginRecipes: "getRecipes: falling back to a synchronous message for:" "https://login.live.com"
console.warn: LoginRecipes: "getRecipes: falling back to a synchronous message for:" "https://login.live.com"
console.warn: LoginRecipes: "getRecipes: falling back to a synchronous message for:" "https://login.live.com"
console.warn: LoginRecipes: "getRecipes: falling back to a synchronous message for:" "https://login.live.com"
JavaScript error: resource://gre/modules/LoginManagerParent.jsm, line 136: TypeError: gRecipeManager is null
console.warn: LoginRecipes: "getRecipes: falling back to a synchronous message for:" "https://login.live.com"
JavaScript error: resource://gre/modules/LoginManagerParent.jsm, line 136: TypeError: gRecipeManager is null
console.warn: LoginRecipes: "getRecipes: falling back to a synchronous message for:" "https://login.live.com"
JavaScript error: resource://gre/modules/LoginManagerParent.jsm, line 136: TypeError: gRecipeManager is null
console.warn: LoginRecipes: "getRecipes: falling back to a synchronous message for:" "https://login.live.com"
JavaScript error: resource://gre/modules/LoginManagerParent.jsm, line 136: TypeError: gRecipeManager is null
console.warn: LoginRecipes: "getRecipes: falling back to a synchronous mesconsole.warn: LoginRecipes: "getRecipes: falling back to a synchronous message for:" "https://login.microsoftonline.com"
JavaScript error: resource://gre/modules/LoginManagerParent.jsm, line 136: TypeError: gRecipeManager is null
console.warn: LoginRecipes: "getRecipes: falling back to a synchronous message for:" "https://login.microsoftonline.com"
JavaScript error: resource://gre/modules/LoginManagerParent.jsm, line 136: TypeError: gRecipeManager is null
1644119381066 Marionette WARN Ignoring event 'DOMContentLoaded' because document has an invalid readyState of 'complete'.
1644119458297 Marionette INFO Stopped listening on port 58057
console.warn: TopSitesFeed: Failed to fetch data from Contile server: NetworkError when attempting to fetch resource.
ng back to a synchronous message for:" "https://login.microsoftonline.com"
JavaScript error: resource://gre/modules/LoginManagerParent.jsm, line 136: TypeError: gRecipeManager is null
1644119377769 Marionette WARN Ignoring event 'DOMContentLoaded' because document has an invalid readyState of 'complete'.
1644119456556 Marionette INFO Stopped listening on port 58113