-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathgeckodriver.log
2018 lines (1425 loc) · 136 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
1615458094271 geckodriver INFO Listening on 127.0.0.1:50160
1615458636395 geckodriver INFO Listening on 127.0.0.1:50353
1615458639412 mozrunner::runner INFO Running command: "C:\\Program Files\\Mozilla Firefox\\firefox.exe" "--marionette" "-foreground" "-no-remote" "-profile" "C:\\Users\\hamza\\AppData\\Local\\Temp\\rust_mozprofileLZiRT7"
console.warn: SearchSettings: "get: No settings file exists, new profile?" (new Error("", "(unknown module)"))
1615458644981 Marionette INFO Listening on port 50362
1615458645264 Marionette WARN TLS certificate errors will be ignored for this session
1615458650683 Marionette INFO Stopped listening on port 50362
###!!! [Child][RunMessage] Error: Channel closing: too late to send/recv, messages will be lost
1615458682483 geckodriver INFO Listening on 127.0.0.1:50422
1615458685493 mozrunner::runner INFO Running command: "C:\\Program Files\\Mozilla Firefox\\firefox.exe" "--marionette" "-foreground" "-no-remote" "-profile" "C:\\Users\\hamza\\AppData\\Local\\Temp\\rust_mozprofileOl0Xhn"
console.warn: SearchSettings: "get: No settings file exists, new profile?" (new Error("", "(unknown module)"))
1615458691301 Marionette INFO Listening on port 50430
1615458691375 Marionette WARN TLS certificate errors will be ignored for this session
console.log: WebExtensions: reset-default-search: No addons in our list are installed.
console.warn: "Inspector destroyed while executing onReflow callback"
1615465655047 Marionette WARN Ignoring event 'pageshow' because document has an invalid readyState of 'interactive'.
JavaScript error: https://maps.googleapis.com/maps/api/js?v=3.31&sensor=false&callback=_wf_maps_loaded&key=AIzaSyDPEQplCOg6Z3cc7c4YJmpEPk_Ck2ZYm30&_=1615466191136, line 78: Error: Could not load "marker".
JavaScript error: https://maps.googleapis.com/maps/api/js?v=3.31&sensor=false&callback=_wf_maps_loaded&key=AIzaSyDPEQplCOg6Z3cc7c4YJmpEPk_Ck2ZYm30&_=1615466191136, line 78: Error: Could not load "infowindow".
1615482651136 Marionette INFO Stopped listening on port 50430
###!!! [Child][RunMessage] Error: Channel closing: too late to send/recv, messages will be lost
"--marionette" "-foreground" "-no-remote" "-profile" "C:\\Users\\hamza\\AppData\\Local\\Temp\\rust_mozprofileSMFxYU"
console.warn: SearchSettings: "get: No settings file exists, new profile?" (new Error("", "(unknown module)"))
1615471498033 Marionette INFO Listening on port 54113
1615471498562 Marionette WARN TLS certificate errors will be ignored for this session
1615471619150 Marionette INFO Stopped listening on port 54113
###!!! [Child][RunMessage] Error: Channel closing: too late to send/recv, messages will be lost
1615471656602 geckodriver INFO Listening on 127.0.0.1:54325
1615471659624 mozrunner::runner INFO Running command: "C:\\Program Files\\Mozilla Firefox\\firefox.exe" "--marionette" "-foreground" "-no-remote" "-profile" "C:\\Users\\hamza\\AppData\\Local\\Temp\\rust_mozprofiletcdLPU"
console.warn: SearchSettings: "get: No settings file exists, new profile?" (new Error("", "(unknown module)"))
1615471664938 Marionette INFO Listening on port 54334
1615471664993 Marionette WARN TLS certificate errors will be ignored for this session
###!!! [Child][MessageChannel] Error: (msgtype=0x5B0004,name=PHttpChannel::Msg_Cancel) Channel closing: too late to send/recv, messages will be lost
###!!! [Child][MessageChannel] Error: (msgtype=0x5B0009,name=PHttpChannel::Msg_DeletingChannel) Channel closing: too late to send/recv, messages will be lost
1615471693777 Marionette INFO Stopped listening on port 54334
###!!! [Child][RunMessage] Error: Channel closing: too late to send/recv, messages will be lost
1615471698609 geckodriver INFO Listening on 127.0.0.1:54456
1615471701628 mozrunner::runner INFO Running command: "C:\\Program Files\\Mozilla Firefox\\firefox.exe" "--marionette" "-foreground" "-no-remote" "-profile" "C:\\Users\\hamza\\AppData\\Local\\Temp\\rust_mozprofilezxWdWO"
console.warn: SearchSettings: "get: No settings file exists, new profile?" (new Error("", "(unknown module)"))
1615471706893 Marionette INFO Listening on port 54466
1615471706964 Marionette WARN TLS certificate errors will be ignored for this session
1615471714780 Marionette INFO Stopped listening on port 54466
###!!! [Child][RunMessage] Error: Channel closing: too late to send/recv, messages will be lost
1615471741567 geckodriver INFO Listening on 127.0.0.1:54596
1615471744594 mozrunner::runner INFO Running command: "C:\\Program Files\\Mozilla Firefox\\firefox.exe" "--marionette" "-foreground" "-no-remote" "-profile" "C:\\Users\\hamza\\AppData\\Local\\Temp\\rust_mozprofile9yanYB"
console.warn: SearchSettings: "get: No settings file exists, new profile?" (new Error("", "(unknown module)"))
1615471750102 Marionette INFO Listening on port 54605
1615471750470 Marionette WARN TLS certificate errors will be ignored for this session
1615471760883 Marionette INFO Stopped listening on port 54605
###!!! [Child][RunMessage] Error: Channel closing: too late to send/recv, messages will be lost
1615471772524 geckodriver INFO Listening on 127.0.0.1:54731
1615471775546 mozrunner::runner INFO Running command: "C:\\Program Files\\Mozilla Firefox\\firefox.exe" "--marionette" "-foreground" "-no-remote" "-profile" "C:\\Users\\hamza\\AppData\\Local\\Temp\\rust_mozprofile9eK4ui"
console.warn: SearchSettings: "get: No settings file exists, new profile?" (new Error("", "(unknown module)"))
1615471780800 Marionette INFO Listening on port 54741
1615471780886 Marionette WARN TLS certificate errors will be ignored for this session
1615472277478 Marionette INFO Stopped listening on port 54741
###!!! [Child][RunMessage] Error: Channel closing: too late to send/recv, messages will be lost
1615472404206 geckodriver INFO Listening on 127.0.0.1:55257
1615472407240 mozrunner::runner INFO Running command: "C:\\Program Files\\Mozilla Firefox\\firefox.exe" "--marionette" "-foreground" "-no-remote" "-profile" "C:\\Users\\hamza\\AppData\\Local\\Temp\\rust_mozprofileuTJFQ2"
console.warn: SearchSettings: "get: No settings file exists, new profile?" (new Error("", "(unknown module)"))
1615472412765 Marionette INFO Listening on port 55266
1615472413112 Marionette WARN TLS certificate errors will be ignored for this session
1615472896969 Marionette INFO Stopped listening on port 55266
###!!! [Child][RunMessage] Error: Channel closing: too late to send/recv, messages will be lost
1615472898738 geckodriver INFO Listening on 127.0.0.1:55592
1615472901770 mozrunner::runner INFO Running command: "C:\\Program Files\\Mozilla Firefox\\firefox.exe" "--marionette" "-foreground" "-no-remote" "-profile" "C:\\Users\\hamza\\AppData\\Local\\Temp\\rust_mozprofileLDrUgw"
console.warn: SearchSettings: "get: No settings file exists, new profile?" (new Error("", "(unknown module)"))
1615472907274 Marionette INFO Listening on port 55601
1615472907645 Marionette WARN TLS certificate errors will be ignored for this session
console.log: WebExtensions: reset-default-search: No addons in our list are installed.
1615482652225 Marionette INFO Stopped listening on port 55601
###!!! [Child][RunMessage] Error: Channel closing: too late to send/recv, messages will be lost
"--marionette" "-foreground" "-no-remote" "-profile" "C:\\Users\\hamza\\AppData\\Local\\Temp\\rust_mozprofilevdIcTj"
console.warn: SearchSettings: "get: No settings file exists, new profile?" (new Error("", "(unknown module)"))
1615473681537 Marionette INFO Listening on port 56209
1615473682047 Marionette WARN TLS certificate errors will be ignored for this session
console.log: WebExtensions: reset-default-search: No addons in our list are installed.
1615482653300 Marionette INFO Stopped listening on port 56209
###!!! [Child][RunMessage] Error: Channel closing: too late to send/recv, messages will be lost
Temp\\rust_mozprofileps3tLb"
console.warn: SearchSettings: "get: No settings file exists, new profile?" (new Error("", "(unknown module)"))
1615473851845 Marionette INFO Listening on port 56435
1615473851976 Marionette WARN TLS certificate errors will be ignored for this session
console.log: WebExtensions: reset-default-search: No addons in our list are installed.
1615482654587 Marionette INFO Stopped listening on port 56435
###!!! [Child][RunMessage] Error: Channel closing: too late to send/recv, messages will be lost
1615499454660 geckodriver INFO Listening on 127.0.0.1:51802
1615499457716 mozrunner::runner INFO Running command: "C:\\Program Files\\Mozilla Firefox\\firefox.exe" "--marionette" "-foreground" "-no-remote" "-profile" "C:\\Users\\hamza\\AppData\\Local\\Temp\\rust_mozprofilevizIAw"
console.warn: SearchSettings: "get: No settings file exists, new profile?" (new Error("", "(unknown module)"))
1615499463619 Marionette INFO Listening on port 51810
JavaScript error: resource://activity-stream/lib/ASRouter.jsm, line 988: NS_ERROR_ILLEGAL_VALUE: Component returned failure code: 0x80070057 (NS_ERROR_ILLEGAL_VALUE) [nsIObserverService.removeObserver]
console.warn: services.settings: main/message-groups sync interrupted by shutdown
console.warn: services.settings: main/fxmonitor-breaches sync interrupted by shutdown
1615499464150 Marionette WARN TLS certificate errors will be ignored for this session
Marionette threw an error: TypeError: this.curBrowser is null
GeckoDriver.prototype.newSession@chrome://marionette/content/driver.js:910:7
despatch@chrome://marionette/content/server.js:297:40
execute@chrome://marionette/content/server.js:267:16
onPacket/<@chrome://marionette/content/server.js:240:20
onPacket@chrome://marionette/content/server.js:241:9
_onJSONObjectReady/<@chrome://marionette/content/transport.js:504:20
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", 422))
1615499464497 Marionette INFO Stopped listening on port 51810
###!!! [Child][RunMessage] Error: Channel closing: too late to send/recv, messages will be lost
1615499498362 geckodriver INFO Listening on 127.0.0.1:51839
1615499501397 mozrunner::runner INFO Running command: "C:\\Program Files\\Mozilla Firefox\\firefox.exe" "--marionette" "-foreground" "-no-remote" "-profile" "C:\\Users\\hamza\\AppData\\Local\\Temp\\rust_mozprofilegJE0UB"
console.warn: SearchSettings: "get: No settings file exists, new profile?" (new Error("", "(unknown module)"))
1615499507263 Marionette INFO Listening on port 51847
1615499507758 Marionette WARN TLS certificate errors will be ignored for this session
console.log: WebExtensions: reset-default-search: No addons in our list are installed.
1615500495379 Marionette INFO Stopped listening on port 51847
###!!! [Child][RunMessage] Error: Channel closing: too late to send/recv, messages will be lost
1615500648575 geckodriver INFO Listening on 127.0.0.1:52224
1615500651653 mozrunner::runner INFO Running command: "C:\\Program Files\\Mozilla Firefox\\firefox.exe" "--marionette" "-foreground" "-no-remote" "-profile" "C:\\Users\\hamza\\AppData\\Local\\Temp\\rust_mozprofileiOtqil"
console.warn: SearchSettings: "get: No settings file exists, new profile?" (new Error("", "(unknown module)"))
1615500657666 Marionette INFO Listening on port 52235
1615500657989 Marionette WARN TLS certificate errors will be ignored for this session
1615500713356 Marionette INFO Stopped listening on port 52235
###!!! [Child][RunMessage] Error: Channel closing: too late to send/recv, messages will be lost
"--marionette" "-foreground" "-no-remote" "-profile" "C:\\Users\\hamza\\AppData\\Local\\Temp\\rust_mozprofileedJj7P"
console.warn: SearchSettings: "get: No settings file exists, new profile?" (new Error("", "(unknown module)"))
[Parent 43596, IPC I/O Parent] WARNING: file /builds/worker/checkouts/gecko/ipc/chromium/src/base/process_util_win.cc:167
1615500708690 Marionette INFO Listening on port 52371
1615500708776 Marionette WARN TLS certificate errors will be ignored for this session
1615500722301 Marionette INFO Stopped listening on port 52371
###!!! [Child][RunMessage] Error: Channel closing: too late to send/recv, messages will be lost
1615538856656 geckodriver INFO Listening on 127.0.0.1:49477
1615538859756 mozrunner::runner INFO Running command: "C:\\Program Files\\Mozilla Firefox\\firefox.exe" "--marionette" "-foreground" "-no-remote" "-profile" "C:\\Users\\hamza\\AppData\\Local\\Temp\\rust_mozprofilepzE48V"
console.warn: SearchSettings: "get: No settings file exists, new profile?" (new Error("", "(unknown module)"))
1615538865888 Marionette INFO Listening on port 49485
1615538866156 Marionette WARN TLS certificate errors will be ignored for this session
console.log: WebExtensions: reset-default-search: No addons in our list are installed.
1615539695321 Marionette INFO Stopped listening on port 49485
###!!! [Child][RunMessage] Error: Channel closing: too late to send/recv, messages will be lost
"--marionette" "-foreground" "-no-remote" "-profile" "C:\\Users\\hamza\\AppData\\Local\\Temp\\rust_mozprofile01a8UB"
console.warn: SearchSettings: "get: No settings file exists, new profile?" (new Error("", "(unknown module)"))
1615539415461 Marionette INFO Listening on port 49759
1615539415670 Marionette WARN TLS certificate errors will be ignored for this session
1615539696430 Marionette INFO Stopped listening on port 49759
###!!! [Child][RunMessage] Error: Channel closing: too late to send/recv, messages will be lost
"--marionette" "-foreground" "-no-remote" "-profile" "C:\\Users\\hamza\\AppData\\Local\\Temp\\rust_mozprofilendBwLI"
console.warn: SearchSettings: "get: No settings file exists, new profile?" (new Error("", "(unknown module)"))
1615539592114 Marionette INFO Listening on port 49980
1615539592521 Marionette WARN TLS certificate errors will be ignored for this session
1615539616154 Marionette INFO Stopped listening on port 49980
JavaScript error: resource:///modules/FaviconLoader.jsm, line 596: InvalidStateError: JSWindowActorChild.sendAsyncMessage: JSWindowActorChild cannot send at the moment
###!!! [Child][RunMessage] Error: Channel closing: too late to send/recv, messages will be lost
1615539709365 geckodriver INFO Listening on 127.0.0.1:50122
1615539712419 mozrunner::runner INFO Running command: "C:\\Program Files\\Mozilla Firefox\\firefox.exe" "--marionette" "-foreground" "-no-remote" "-profile" "C:\\Users\\hamza\\AppData\\Local\\Temp\\rust_mozprofilespgb9C"
console.warn: SearchSettings: "get: No settings file exists, new profile?" (new Error("", "(unknown module)"))
1615539717544 Marionette INFO Listening on port 50130
1615539717797 Marionette WARN TLS certificate errors will be ignored for this session
1615539881181 Marionette INFO Stopped listening on port 50130
###!!! [Child][RunMessage] Error: Channel closing: too late to send/recv, messages will be lost
1615539895717 geckodriver INFO Listening on 127.0.0.1:50266
1615539898770 mozrunner::runner INFO Running command: "C:\\Program Files\\Mozilla Firefox\\firefox.exe" "--marionette" "-foreground" "-no-remote" "-profile" "C:\\Users\\hamza\\AppData\\Local\\Temp\\rust_mozprofileJVlv6p"
console.warn: SearchSettings: "get: No settings file exists, new profile?" (new Error("", "(unknown module)"))
1615539903776 Marionette INFO Listening on port 50274
1615539904138 Marionette WARN TLS certificate errors will be ignored for this session
1615539928655 Marionette INFO Stopped listening on port 50274
###!!! [Child][RunMessage] Error: Channel closing: too late to send/recv, messages will be lost
1615540041448 geckodriver INFO Listening on 127.0.0.1:50414
1615540044495 mozrunner::runner INFO Running command: "C:\\Program Files\\Mozilla Firefox\\firefox.exe" "--marionette" "-headless" "-foreground" "-no-remote" "-profile" "C:\\Users\\hamza\\AppData\\Local\\Temp\\rust_mozprofile4aUM4d"
*** You are running in headless mode.
console.warn: SearchSettings: "get: No settings file exists, new profile?" (new Error("", "(unknown module)"))
1615540047861 Marionette INFO Listening on port 50423
1615540048221 Marionette WARN TLS certificate errors will be ignored for this session
1615540073470 Marionette INFO Stopped listening on port 50423
1615541562472 geckodriver INFO Listening on 127.0.0.1:50849
1615541565532 mozrunner::runner INFO Running command: "C:\\Program Files\\Mozilla Firefox\\firefox.exe" "--marionette" "-headless" "-foreground" "-no-remote" "-profile" "C:\\Users\\hamza\\AppData\\Local\\Temp\\rust_mozprofile5i2fUw"
*** You are running in headless mode.
console.warn: SearchSettings: "get: No settings file exists, new profile?" (new Error("", "(unknown module)"))
1615541568879 Marionette INFO Listening on port 50857
1615541569251 Marionette WARN TLS certificate errors will be ignored for this session
1615541593953 Marionette INFO Stopped listening on port 50857
1615546547225 geckodriver INFO Listening on 127.0.0.1:51832
1615546550269 mozrunner::runner INFO Running command: "C:\\Program Files\\Mozilla Firefox\\firefox.exe" "--marionette" "-headless" "-foreground" "-no-remote" "-profile" "C:\\Users\\hamza\\AppData\\Local\\Temp\\rust_mozprofileAxLfG2"
*** You are running in headless mode.
console.warn: SearchSettings: "get: No settings file exists, new profile?" (new Error("", "(unknown module)"))
1615546553600 Marionette INFO Listening on port 51841
1615546553974 Marionette WARN TLS certificate errors will be ignored for this session
1615546578024 Marionette INFO Stopped listening on port 51841
1615546664951 geckodriver INFO Listening on 127.0.0.1:51981
1615546668024 mozrunner::runner INFO Running command: "C:\\Program Files\\Mozilla Firefox\\firefox.exe" "--marionette" "-headless" "-foreground" "-no-remote" "-profile" "C:\\Users\\hamza\\AppData\\Local\\Temp\\rust_mozprofileE3o7dK"
*** You are running in headless mode.
console.warn: SearchSettings: "get: No settings file exists, new profile?" (new Error("", "(unknown module)"))
1615546671370 Marionette INFO Listening on port 51989
1615546671753 Marionette WARN TLS certificate errors will be ignored for this session
1615546691555 Marionette INFO Stopped listening on port 51989
1615549314468 geckodriver INFO Listening on 127.0.0.1:52523
1615549317515 mozrunner::runner INFO Running command: "C:\\Program Files\\Mozilla Firefox\\firefox.exe" "--marionette" "-headless" "-foreground" "-no-remote" "-profile" "C:\\Users\\hamza\\AppData\\Local\\Temp\\rust_mozprofileCfjuQf"
*** You are running in headless mode.
console.warn: SearchSettings: "get: No settings file exists, new profile?" (new Error("", "(unknown module)"))
1615549320770 Marionette INFO Listening on port 52532
1615549321206 Marionette WARN TLS certificate errors will be ignored for this session
1615549341284 Marionette INFO Stopped listening on port 52532
JavaScript error: resource:///modules/FaviconLoader.jsm, line 596: InvalidStateError: JSWindowActorChild.sendAsyncMessage: JSWindowActorChild cannot send at the moment
1615549658307 geckodriver INFO Listening on 127.0.0.1:52700
1615549661366 mozrunner::runner INFO Running command: "C:\\Program Files\\Mozilla Firefox\\firefox.exe" "--marionette" "-headless" "-foreground" "-no-remote" "-profile" "C:\\Users\\hamza\\AppData\\Local\\Temp\\rust_mozprofileoFOQi2"
*** You are running in headless mode.
console.warn: SearchSettings: "get: No settings file exists, new profile?" (new Error("", "(unknown module)"))
1615549664788 Marionette INFO Listening on port 52709
1615549665090 Marionette WARN TLS certificate errors will be ignored for this session
1615549688068 Marionette INFO Stopped listening on port 52709
1615550106757 geckodriver INFO Listening on 127.0.0.1:52895
1615550109805 mozrunner::runner INFO Running command: "C:\\Program Files\\Mozilla Firefox\\firefox.exe" "--marionette" "-headless" "-foreground" "-no-remote" "-profile" "C:\\Users\\hamza\\AppData\\Local\\Temp\\rust_mozprofileXScAFA"
*** You are running in headless mode.
console.warn: SearchSettings: "get: No settings file exists, new profile?" (new Error("", "(unknown module)"))
1615550113354 Marionette INFO Listening on port 52903
1615550113520 Marionette WARN TLS certificate errors will be ignored for this session
1615550137458 Marionette INFO Stopped listening on port 52903
JavaScript error: resource:///modules/FaviconLoader.jsm, line 596: InvalidStateError: JSWindowActorChild.sendAsyncMessage: JSWindowActorChild cannot send at the moment
1615550203623 geckodriver INFO Listening on 127.0.0.1:53031
1615550206668 mozrunner::runner INFO Running command: "C:\\Program Files\\Mozilla Firefox\\firefox.exe" "--marionette" "-headless" "-foreground" "-no-remote" "-profile" "C:\\Users\\hamza\\AppData\\Local\\Temp\\rust_mozprofilem15dQB"
*** You are running in headless mode.
console.warn: SearchSettings: "get: No settings file exists, new profile?" (new Error("", "(unknown module)"))
1615550210241 Marionette INFO Listening on port 53041
1615550210378 Marionette WARN TLS certificate errors will be ignored for this session
1615550228845 Marionette INFO Stopped listening on port 53041
JavaScript error: chrome://global/content/elements/browser-custom-element.js, line 1681: NotFoundError: No such JSWindowActor 'MarionetteEvents'
JavaScript error: resource:///modules/FaviconLoader.jsm, line 596: InvalidStateError: JSWindowActorChild.sendAsyncMessage: JSWindowActorChild cannot send at the moment
1615550271245 geckodriver INFO Listening on 127.0.0.1:53170
1615550274291 mozrunner::runner INFO Running command: "C:\\Program Files\\Mozilla Firefox\\firefox.exe" "--marionette" "-headless" "-foreground" "-no-remote" "-profile" "C:\\Users\\hamza\\AppData\\Local\\Temp\\rust_mozprofileznEfVK"
*** You are running in headless mode.
console.warn: SearchSettings: "get: No settings file exists, new profile?" (new Error("", "(unknown module)"))
1615550278286 Marionette INFO Listening on port 53180
1615550278505 Marionette WARN TLS certificate errors will be ignored for this session
1615550301900 Marionette INFO Stopped listening on port 53180
1615747775641 geckodriver INFO Listening on 127.0.0.1:55934
1615747778629 mozrunner::runner INFO Running command: "C:\\Program Files\\Mozilla Firefox\\firefox.exe" "--marionette" "-foreground" "-no-remote" "-profile" "C:\\Users\\hamza\\AppData\\Local\\Temp\\rust_mozprofileSRPWKt"
console.warn: SearchSettings: "get: No settings file exists, new profile?" (new Error("", "(unknown module)"))
1615747785048 Marionette INFO Listening on port 55945
1615747785097 Marionette WARN TLS certificate errors will be ignored for this session
1615748274384 Marionette INFO Stopped listening on port 55945
###!!! [Child][RunMessage] Error: Channel closing: too late to send/recv, messages will be lost
"--marionette" "-headless" "-foreground" "-no-remote" "-profile" "C:\\Users\\hamza\\AppData\\Local\\Temp\\rust_mozprofilevIpqqC"
*** You are running in headless mode.
console.warn: SearchSettings: "get: No settings file exists, new profile?" (new Error("", "(unknown module)"))
1615748173468 Marionette INFO Listening on port 56333
1615748173653 Marionette WARN TLS certificate errors will be ignored for this session
1615748215683 Marionette INFO Stopped listening on port 56333
1615748299710 geckodriver INFO Listening on 127.0.0.1:56519
1615748302753 mozrunner::runner INFO Running command: "C:\\Program Files\\Mozilla Firefox\\firefox.exe" "--marionette" "-foreground" "-no-remote" "-profile" "C:\\Users\\hamza\\AppData\\Local\\Temp\\rust_mozprofilefaiVvz"
console.warn: SearchSettings: "get: No settings file exists, new profile?" (new Error("", "(unknown module)"))
1615748308684 Marionette INFO Listening on port 56530
1615748309104 Marionette WARN TLS certificate errors will be ignored for this session
1615748345323 Marionette INFO Stopped listening on port 56530
###!!! [Child][RunMessage] Error: Channel closing: too late to send/recv, messages will be lost
1615749339708 geckodriver INFO Listening on 127.0.0.1:57359
1615749342740 mozrunner::runner INFO Running command: "C:\\Program Files\\Mozilla Firefox\\firefox.exe" "--marionette" "-foreground" "-no-remote" "-profile" "C:\\Users\\hamza\\AppData\\Local\\Temp\\rust_mozprofilegjg9zj"
console.warn: SearchSettings: "get: No settings file exists, new profile?" (new Error("", "(unknown module)"))
1615749348518 Marionette INFO Listening on port 57368
1615749348590 Marionette WARN TLS certificate errors will be ignored for this session
1615749750961 Marionette INFO Stopped listening on port 57368
###!!! [Child][RunMessage] Error: Channel closing: too late to send/recv, messages will be lost
1615751925038 geckodriver INFO Listening on 127.0.0.1:59033
1615751928091 mozrunner::runner INFO Running command: "C:\\Program Files\\Mozilla Firefox\\firefox.exe" "--marionette" "-foreground" "-no-remote" "-profile" "C:\\Users\\hamza\\AppData\\Local\\Temp\\rust_mozprofileKMYvJk"
console.warn: SearchSettings: "get: No settings file exists, new profile?" (new Error("", "(unknown module)"))
1615751933664 Marionette INFO Listening on port 59043
1615751933954 Marionette WARN TLS certificate errors will be ignored for this session
1615751969992 Marionette INFO Stopped listening on port 59043
###!!! [Child][RunMessage] Error: Channel closing: too late to send/recv, messages will be lost
1615752007510 geckodriver INFO Listening on 127.0.0.1:59214
1615752010580 mozrunner::runner INFO Running command: "C:\\Program Files\\Mozilla Firefox\\firefox.exe" "--marionette" "-foreground" "-no-remote" "-profile" "C:\\Users\\hamza\\AppData\\Local\\Temp\\rust_mozprofileWdfJPs"
console.warn: SearchSettings: "get: No settings file exists, new profile?" (new Error("", "(unknown module)"))
1615752015619 Marionette INFO Listening on port 59223
1615752015917 Marionette WARN TLS certificate errors will be ignored for this session
1615752041056 Marionette INFO Stopped listening on port 59223
###!!! [Child][RunMessage] Error: Channel closing: too late to send/recv, messages will be lost
1615752216628 geckodriver INFO Listening on 127.0.0.1:59458
1615752219663 mozrunner::runner INFO Running command: "C:\\Program Files\\Mozilla Firefox\\firefox.exe" "--marionette" "-foreground" "-no-remote" "-profile" "C:\\Users\\hamza\\AppData\\Local\\Temp\\rust_mozprofileFcBtOg"
console.warn: SearchSettings: "get: No settings file exists, new profile?" (new Error("", "(unknown module)"))
1615752225105 Marionette INFO Listening on port 59467
1615752225484 Marionette WARN TLS certificate errors will be ignored for this session
console.error: services.settings:
main/partitioning-exempt-urls Signature failed TypeError: NetworkError when attempting to fetch resource.
1615752263888 Marionette INFO Stopped listening on port 59467
###!!! [Child][RunMessage] Error: Channel closing: too late to send/recv, messages will be lost
1615752688154 geckodriver INFO Listening on 127.0.0.1:59867
1615752691204 mozrunner::runner INFO Running command: "C:\\Program Files\\Mozilla Firefox\\firefox.exe" "--marionette" "-foreground" "-no-remote" "-profile" "C:\\Users\\hamza\\AppData\\Local\\Temp\\rust_mozprofile3VmOD4"
console.warn: SearchSettings: "get: No settings file exists, new profile?" (new Error("", "(unknown module)"))
1615752696526 Marionette INFO Listening on port 59877
1615752697062 Marionette WARN TLS certificate errors will be ignored for this session
1615752729132 Marionette INFO Stopped listening on port 59877
###!!! [Child][RunMessage] Error: Channel closing: too late to send/recv, messages will be lost
1615752810389 geckodriver INFO Listening on 127.0.0.1:60066
1615752813432 mozrunner::runner INFO Running command: "C:\\Program Files\\Mozilla Firefox\\firefox.exe" "--marionette" "-foreground" "-no-remote" "-profile" "C:\\Users\\hamza\\AppData\\Local\\Temp\\rust_mozprofilecwSyKc"
console.warn: SearchSettings: "get: No settings file exists, new profile?" (new Error("", "(unknown module)"))
1615752818668 Marionette INFO Listening on port 60075
1615752818799 Marionette WARN TLS certificate errors will be ignored for this session
1615752851926 Marionette INFO Stopped listening on port 60075
###!!! [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
1615796105017 geckodriver INFO Listening on 127.0.0.1:62394
1615796107898 mozrunner::runner INFO Running command: "C:\\Program Files\\Mozilla Firefox\\firefox.exe" "--marionette" "-foreground" "-no-remote" "-profile" "C:\\Users\\hamza\\AppData\\Local\\Temp\\rust_mozprofile1FkR14"
console.warn: SearchSettings: "get: No settings file exists, new profile?" (new Error("", "(unknown module)"))
1615796114436 Marionette INFO Listening on port 62404
1615796114893 Marionette WARN TLS certificate errors will be ignored for this session
console.log: WebExtensions: reset-default-search: No addons in our list are installed.
1615806916177 Marionette INFO Stopped listening on port 62404
###!!! [Child][RunMessage] Error: Channel closing: too late to send/recv, messages will be lost
1615806941199 geckodriver INFO Listening on 127.0.0.1:52963
1615806944267 mozrunner::runner INFO Running command: "C:\\Program Files\\Mozilla Firefox\\firefox.exe" "--marionette" "-foreground" "-no-remote" "-profile" "C:\\Users\\hamza\\AppData\\Local\\Temp\\rust_mozprofilecKtnQS"
console.warn: SearchSettings: "get: No settings file exists, new profile?" (new Error("", "(unknown module)"))
1615806949842 Marionette INFO Listening on port 52973
1615806950125 Marionette WARN TLS certificate errors will be ignored for this session
1615806973944 Marionette INFO Stopped listening on port 52973
###!!! [Child][RunMessage] Error: Channel closing: too late to send/recv, messages will be lost
1615807259057 geckodriver INFO Listening on 127.0.0.1:53287
1615807262091 mozrunner::runner INFO Running command: "C:\\Program Files\\Mozilla Firefox\\firefox.exe" "--marionette" "-foreground" "-no-remote" "-profile" "C:\\Users\\hamza\\AppData\\Local\\Temp\\rust_mozprofileKbnwNV"
console.warn: SearchSettings: "get: No settings file exists, new profile?" (new Error("", "(unknown module)"))
1615807267128 Marionette INFO Listening on port 53297
1615807267448 Marionette WARN TLS certificate errors will be ignored for this session
1615807291653 Marionette INFO Stopped listening on port 53297
###!!! [Child][RunMessage] Error: Channel closing: too late to send/recv, messages will be lost
1615807969058 geckodriver INFO Listening on 127.0.0.1:53820
1615807972107 mozrunner::runner INFO Running command: "C:\\Program Files\\Mozilla Firefox\\firefox.exe" "--marionette" "-foreground" "-no-remote" "-profile" "C:\\Users\\hamza\\AppData\\Local\\Temp\\rust_mozprofilePAW2a7"
console.warn: SearchSettings: "get: No settings file exists, new profile?" (new Error("", "(unknown module)"))
1615807977382 Marionette INFO Listening on port 53829
1615807977474 Marionette WARN TLS certificate errors will be ignored for this session
1615808003755 Marionette INFO Stopped listening on port 53829
[Child 33460, IPC I/O Child] WARNING: pipe error: 232: file /builds/worker/checkouts/gecko/ipc/chromium/src/chrome/common/ipc_channel_win.cc:545
[Child 33460, IPC I/O Child] WARNING: pipe error: 232: file /builds/worker/checkouts/gecko/ipc/chromium/src/chrome/common/ipc_channel_win.cc:545
###!!! [Child][RunMessage] Error: Channel closing: too late to send/recv, messages will be lost
1615808132301 geckodriver INFO Listening on 127.0.0.1:54051
1615808135334 mozrunner::runner INFO Running command: "C:\\Program Files\\Mozilla Firefox\\firefox.exe" "--marionette" "-foreground" "-no-remote" "-profile" "C:\\Users\\hamza\\AppData\\Local\\Temp\\rust_mozprofileUKUgVR"
console.warn: SearchSettings: "get: No settings file exists, new profile?" (new Error("", "(unknown module)"))
1615808140284 Marionette INFO Listening on port 54062
1615808140703 Marionette WARN TLS certificate errors will be ignored for this session
1615808166932 Marionette INFO Stopped listening on port 54062
###!!! [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
1615808331720 geckodriver INFO Listening on 127.0.0.1:54306
1615808334749 mozrunner::runner INFO Running command: "C:\\Program Files\\Mozilla Firefox\\firefox.exe" "--marionette" "-foreground" "-no-remote" "-profile" "C:\\Users\\hamza\\AppData\\Local\\Temp\\rust_mozprofile4zjs5l"
console.warn: SearchSettings: "get: No settings file exists, new profile?" (new Error("", "(unknown module)"))
1615808339740 Marionette INFO Listening on port 54315
1615808340093 Marionette WARN TLS certificate errors will be ignored for this session
1615808381777 Marionette INFO Stopped listening on port 54315
1615808428519 geckodriver INFO Listening on 127.0.0.1:54511
1615808431583 mozrunner::runner INFO Running command: "C:\\Program Files\\Mozilla Firefox\\firefox.exe" "--marionette" "-foreground" "-no-remote" "-profile" "C:\\Users\\hamza\\AppData\\Local\\Temp\\rust_mozprofilebM2efe"
console.warn: SearchSettings: "get: No settings file exists, new profile?" (new Error("", "(unknown module)"))
1615808437140 Marionette INFO Listening on port 54522
1615808437426 Marionette WARN TLS certificate errors will be ignored for this session
1615808470282 Marionette INFO Stopped listening on port 54522
###!!! [Child][RunMessage] Error: Channel closing: too late to send/recv, messages will be lost
1615822056585 geckodriver INFO Listening on 127.0.0.1:57503
1615822059638 mozrunner::runner INFO Running command: "C:\\Program Files\\Mozilla Firefox\\firefox.exe" "--marionette" "-foreground" "-no-remote" "-profile" "C:\\Users\\hamza\\AppData\\Local\\Temp\\rust_mozprofileXKp0tC"
console.warn: SearchSettings: "get: No settings file exists, new profile?" (new Error("", "(unknown module)"))
1615822065110 Marionette INFO Listening on port 57514
1615822065469 Marionette WARN TLS certificate errors will be ignored for this session
###!!! [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
1615822079299 Marionette INFO Stopped listening on port 57514
###!!! [Child][RunMessage] Error: Channel closing: too late to send/recv, messages will be lost
1615822099873 geckodriver INFO Listening on 127.0.0.1:57626
1615822102891 mozrunner::runner INFO Running command: "C:\\Program Files\\Mozilla Firefox\\firefox.exe" "--marionette" "-foreground" "-no-remote" "-profile" "C:\\Users\\hamza\\AppData\\Local\\Temp\\rust_mozprofileAwcOyn"
console.warn: SearchSettings: "get: No settings file exists, new profile?" (new Error("", "(unknown module)"))
1615822108299 Marionette INFO Listening on port 57634
1615822108769 Marionette WARN TLS certificate errors will be ignored for this session
1615822145524 Marionette INFO Stopped listening on port 57634
[Parent 9412, IPC I/O Parent] WARNING: file /builds/worker/checkouts/gecko/ipc/chromium/src/base/process_util_win.cc:167
###!!! [Child][RunMessage] Error: Channel closing: too late to send/recv, messages will be lost
1615822147692 geckodriver INFO Listening on 127.0.0.1:57760
1615822150742 mozrunner::runner INFO Running command: "C:\\Program Files\\Mozilla Firefox\\firefox.exe" "--marionette" "-foreground" "-no-remote" "-profile" "C:\\Users\\hamza\\AppData\\Local\\Temp\\rust_mozprofileqPLc50"
console.warn: SearchSettings: "get: No settings file exists, new profile?" (new Error("", "(unknown module)"))
1615822156133 Marionette INFO Listening on port 57768
1615822156590 Marionette WARN TLS certificate errors will be ignored for this session
1615822191182 Marionette INFO Stopped listening on port 57768
###!!! [Child][RunMessage] Error: Channel closing: too late to send/recv, messages will be lost
1615822192986 geckodriver INFO Listening on 127.0.0.1:57907
1615822196060 mozrunner::runner INFO Running command: "C:\\Program Files\\Mozilla Firefox\\firefox.exe" "--marionette" "-foreground" "-no-remote" "-profile" "C:\\Users\\hamza\\AppData\\Local\\Temp\\rust_mozprofileBEbLGE"
console.warn: SearchSettings: "get: No settings file exists, new profile?" (new Error("", "(unknown module)"))
1615822201452 Marionette INFO Listening on port 57915
1615822201901 Marionette WARN TLS certificate errors will be ignored for this session
[Child 31392, IPC I/O Child] WARNING: pipe error: 232: file /builds/worker/checkouts/gecko/ipc/chromium/src/chrome/common/ipc_channel_win.cc:545
1615822207219 Marionette INFO Stopped listening on port 57915
###!!! [Child][RunMessage] Error: Channel closing: too late to send/recv, messages will be lost
1615825717327 geckodriver INFO Listening on 127.0.0.1:58547
1615825720352 mozrunner::runner INFO Running command: "C:\\Program Files\\Mozilla Firefox\\firefox.exe" "--marionette" "-foreground" "-no-remote" "-profile" "C:\\Users\\hamza\\AppData\\Local\\Temp\\rust_mozprofilexDpkyU"
console.warn: SearchSettings: "get: No settings file exists, new profile?" (new Error("", "(unknown module)"))
1615825725831 Marionette INFO Listening on port 58558
1615825726182 Marionette WARN TLS certificate errors will be ignored for this session
1615825769020 Marionette INFO Stopped listening on port 58558
###!!! [Child][RunMessage] Error: Channel closing: too late to send/recv, messages will be lost
"--marionette" "-foreground" "-no-remote" "-profile" "C:\\Users\\hamza\\AppData\\Local\\Temp\\rust_mozprofileLHGxDv"
console.warn: SearchSettings: "get: No settings file exists, new profile?" (new Error("", "(unknown module)"))
1615825744335 Marionette INFO Listening on port 58686
1615825744660 Marionette WARN TLS certificate errors will be ignored for this session
1615825788673 Marionette INFO Stopped listening on port 58686
###!!! [Child][RunMessage] Error: Channel closing: too late to send/recv, messages will be lost
1615826251807 geckodriver INFO Listening on 127.0.0.1:58922
1615826254836 mozrunner::runner INFO Running command: "C:\\Program Files\\Mozilla Firefox\\firefox.exe" "--marionette" "-foreground" "-no-remote" "-profile" "C:\\Users\\hamza\\AppData\\Local\\Temp\\rust_mozprofiles7PuBU"
console.warn: SearchSettings: "get: No settings file exists, new profile?" (new Error("", "(unknown module)"))
1615826260359 Marionette INFO Listening on port 58930
1615826260670 Marionette WARN TLS certificate errors will be ignored for this session
1615826406524 Marionette INFO Stopped listening on port 5893161
###!!! [Child][RunMessage] Error: Channel closing: too late to send/recv, messages will be lost
"--marionette" "-foreground" "-no-remote" "-profile" "C:\\Users\\hamza\\AppData\\Local\\Temp\\rust_mozprofilecBcEco"
console.warn: SearchSettings: "get: No settings file exists, new profile?" (new Error("", "(unknown module)"))
1615826412075 Marionette INFO Listening on port 59094
1615826412243 Marionette WARN TLS certificate errors will be ignored for this session
console.log: WebExtensions: reset-default-search: No addons in our list are installed.
1615827445279 Marionette INFO Stopped listening on port 59094
###!!! [Child][RunMessage] Error: Channel closing: too late to send/recv, messages will be lost
"--marionette" "-foreground" "-no-remote" "-profile" "C:\\Users\\hamza\\AppData\\Local\\Temp\\rust_mozprofileUbq2XL"
console.warn: SearchSettings: "get: No settings file exists, new profile?" (new Error("", "(unknown module)"))
1615826947115 Marionette INFO Listening on port 59686
1615826947273 Marionette WARN TLS certificate errors will be ignored for this session
1615827446323 Marionette INFO Stopped listening on port 59686
###!!! [Child][RunMessage] Error: Channel closing: too late to send/recv, messages will be lost
1615827449734 geckodriver INFO Listening on 127.0.0.1:60117
1615827452772 mozrunner::runner INFO Running command: "C:\\Program Files\\Mozilla Firefox\\firefox.exe" "--marionette" "-foreground" "-no-remote" "-profile" "C:\\Users\\hamza\\AppData\\Local\\Temp\\rust_mozprofileELX8b5"
console.warn: SearchSettings: "get: No settings file exists, new profile?" (new Error("", "(unknown module)"))
1615827457856 Marionette INFO Listening on port 60129
1615827458108 Marionette WARN TLS certificate errors will be ignored for this session
1615827763088 Marionette INFO Stopped listening on port 60129
###!!! [Child][RunMessage] Error: Channel closing: too late to send/recv, messages will be lost
1615827779993 geckodriver INFO Listening on 127.0.0.1:60449
1615827783021 mozrunner::runner INFO Running command: "C:\\Program Files\\Mozilla Firefox\\firefox.exe" "--marionette" "-foreground" "-no-remote" "-profile" "C:\\Users\\hamza\\AppData\\Local\\Temp\\rust_mozprofiletL1J6N"
console.warn: SearchSettings: "get: No settings file exists, new profile?" (new Error("", "(unknown module)"))
1615827788329 Marionette INFO Listening on port 60459
1615827788868 Marionette WARN TLS certificate errors will be ignored for this session
1615827836300 Marionette INFO Stopped listening on port 60459
1615828711568 geckodriver INFO Listening on 127.0.0.1:61162
1615828714618 mozrunner::runner INFO Running command: "C:\\Program Files\\Mozilla Firefox\\firefox.exe" "--marionette" "-foreground" "-no-remote" "-profile" "C:\\Users\\hamza\\AppData\\Local\\Temp\\rust_mozprofileMiZcsF"
console.warn: SearchSettings: "get: No settings file exists, new profile?" (new Error("", "(unknown module)"))
1615828720109 Marionette INFO Listening on port 61172
1615828720459 Marionette WARN TLS certificate errors will be ignored for this session
1615828752526 Marionette INFO Stopped listening on port 61172
JavaScript error: resource:///modules/FaviconLoader.jsm, line 596: InvalidStateError: JSWindowActorChild.sendAsyncMessage: JSWindowActorChild cannot send at the moment
###!!! [Child][RunMessage] Error: Channel closing: too late to send/recv, messages will be lost
1615887346234 geckodriver INFO Listening on 127.0.0.1:64748
1615887349255 mozrunner::runner INFO Running command: "C:\\Program Files\\Mozilla Firefox\\firefox.exe" "--marionette" "-foreground" "-no-remote" "-profile" "C:\\Users\\hamza\\AppData\\Local\\Temp\\rust_mozprofile8erakr"
console.warn: SearchSettings: "get: No settings file exists, new profile?" (new Error("", "(unknown module)"))
1615887355598 Marionette INFO Listening on port 64756
1615887355743 Marionette WARN TLS certificate errors will be ignored for this session
1615887462336 Marionette INFO Stopped listening on port 64756
###!!! [Child][RunMessage] Error: Channel closing: too late to send/recv, messages will be lost
1615887467296 geckodriver INFO Listening on 127.0.0.1:64905
1615887470336 mozrunner::runner INFO Running command: "C:\\Program Files\\Mozilla Firefox\\firefox.exe" "--marionette" "-foreground" "-no-remote" "-profile" "C:\\Users\\hamza\\AppData\\Local\\Temp\\rust_mozprofilehXH2eH"
console.warn: SearchSettings: "get: No settings file exists, new profile?" (new Error("", "(unknown module)"))
1615887475431 Marionette INFO Listening on port 64914
1615887475692 Marionette WARN TLS certificate errors will be ignored for this session
console.log: WebExtensions: reset-default-search: No addons in our list are installed.
1615888508908 Marionette INFO Stopped listening on port 64914
###!!! [Child][RunMessage] Error: Channel closing: too late to send/recv, messages will be lost
"--marionette" "-foreground" "-no-remote" "-profile" "C:\\Users\\hamza\\AppData\\Local\\Temp\\rust_mozprofileRDa3Is"
console.warn: SearchSettings: "get: No settings file exists, new profile?" (new Error("", "(unknown module)"))
1615888406317 Marionette INFO Listening on port 65409
1615888406768 Marionette WARN TLS certificate errors will be ignored for this session
1615888413071 Marionette INFO Stopped listening on port 65409
###!!! [Child][RunMessage] Error: Channel closing: too late to send/recv, messages will be lost
1615888472888 geckodriver INFO Listening on 127.0.0.1:65508
1615888475904 mozrunner::runner INFO Running command: "C:\\Program Files\\Mozilla Firefox\\firefox.exe" "--marionette" "-foreground" "-no-remote" "-profile" "C:\\Users\\hamza\\AppData\\Local\\Temp\\rust_mozprofileRn6xFJ"
console.warn: SearchSettings: "get: No settings file exists, new profile?" (new Error("", "(unknown module)"))
1615888481141 Marionette INFO Listening on port 65516
1615888481271 Marionette WARN TLS certificate errors will be ignored for this session
1615888486697 Marionette INFO Stopped listening on port 65516
###!!! [Child][RunMessage] Error: Channel closing: too late to send/recv, messages will be lost
1615888521058 geckodriver INFO Listening on 127.0.0.1:49220
1615888524104 mozrunner::runner INFO Running command: "C:\\Program Files\\Mozilla Firefox\\firefox.exe" "--marionette" "-foreground" "-no-remote" "-profile" "C:\\Users\\hamza\\AppData\\Local\\Temp\\rust_mozprofileLgrKVH"
console.warn: SearchSettings: "get: No settings file exists, new profile?" (new Error("", "(unknown module)"))
1615888529411 Marionette INFO Listening on port 49228
1615888529458 Marionette WARN TLS certificate errors will be ignored for this session
1615888535737 Marionette INFO Stopped listening on port 49228
###!!! [Child][RunMessage] Error: Channel closing: too late to send/recv, messages will be lost
1615888689263 geckodriver INFO Listening on 127.0.0.1:49358
1615888692293 mozrunner::runner INFO Running command: "C:\\Program Files\\Mozilla Firefox\\firefox.exe" "--marionette" "-foreground" "-no-remote" "-profile" "C:\\Users\\hamza\\AppData\\Local\\Temp\\rust_mozprofileTcjKhd"
console.warn: SearchSettings: "get: No settings file exists, new profile?" (new Error("", "(unknown module)"))
1615888697380 Marionette INFO Listening on port 49368
1615888697654 Marionette WARN TLS certificate errors will be ignored for this session
1615888701493 Marionette INFO Stopped listening on port 49368
###!!! [Child][RunMessage] Error: Channel closing: too late to send/recv, messages will be lost
1615889394835 geckodriver INFO Listening on 127.0.0.1:49688
1615889397885 mozrunner::runner INFO Running command: "C:\\Program Files\\Mozilla Firefox\\firefox.exe" "--marionette" "-foreground" "-no-remote" "-profile" "C:\\Users\\hamza\\AppData\\Local\\Temp\\rust_mozprofileCdzeMC"
console.warn: SearchSettings: "get: No settings file exists, new profile?" (new Error("", "(unknown module)"))
1615889403096 Marionette INFO Listening on port 49698
1615889403217 Marionette WARN TLS certificate errors will be ignored for this session
1615889407281 Marionette INFO Stopped listening on port 49698
###!!! [Child][RunMessage] Error: Channel closing: too late to send/recv, messages will be lost
1615889408717 geckodriver INFO Listening on 127.0.0.1:49762
1615889411752 mozrunner::runner INFO Running command: "C:\\Program Files\\Mozilla Firefox\\firefox.exe" "--marionette" "-foreground" "-no-remote" "-profile" "C:\\Users\\hamza\\AppData\\Local\\Temp\\rust_mozprofilek6CHJR"
console.warn: SearchSettings: "get: No settings file exists, new profile?" (new Error("", "(unknown module)"))
1615889416825 Marionette INFO Listening on port 49770
1615889417128 Marionette WARN TLS certificate errors will be ignored for this session
1615889421164 Marionette INFO Stopped listening on port 49770
###!!! [Child][RunMessage] Error: Channel closing: too late to send/recv, messages will be lost
1615889422674 geckodriver INFO Listening on 127.0.0.1:49841
1615889425704 mozrunner::runner INFO Running command: "C:\\Program Files\\Mozilla Firefox\\firefox.exe" "--marionette" "-foreground" "-no-remote" "-profile" "C:\\Users\\hamza\\AppData\\Local\\Temp\\rust_mozprofileVTIxrp"
console.warn: SearchSettings: "get: No settings file exists, new profile?" (new Error("", "(unknown module)"))
1615889431222 Marionette INFO Listening on port 49849
1615889431545 Marionette WARN TLS certificate errors will be ignored for this session
1615889435211 Marionette INFO Stopped listening on port 49849
[Parent 40556, IPC I/O Parent] WARNING: file /builds/worker/checkouts/gecko/ipc/chromium/src/base/process_util_win.cc:167
###!!! [Child][RunMessage] Error: Channel closing: too late to send/recv, messages will be lost
1615889613685 geckodriver INFO Listening on 127.0.0.1:49951
1615889616725 mozrunner::runner INFO Running command: "C:\\Program Files\\Mozilla Firefox\\firefox.exe" "--marionette" "-foreground" "-no-remote" "-profile" "C:\\Users\\hamza\\AppData\\Local\\Temp\\rust_mozprofileYLADEr"
console.warn: SearchSettings: "get: No settings file exists, new profile?" (new Error("", "(unknown module)"))
1615889622191 Marionette INFO Listening on port 49959
1615889622601 Marionette WARN TLS certificate errors will be ignored for this session
1615889627565 Marionette INFO Stopped listening on port 49959
[Child 17744, IPC I/O Child] WARNING: pipe error: 232: file /builds/worker/checkouts/gecko/ipc/chromium/src/chrome/common/ipc_channel_win.cc:545
[Child 17744, IPC I/O Child] WARNING: pipe error: 232: file /builds/worker/checkouts/gecko/ipc/chromium/src/chrome/common/ipc_channel_win.cc:545
###!!! [Child][RunMessage] Error: Channel closing: too late to send/recv, messages will be lost
1615889650957 geckodriver INFO Listening on 127.0.0.1:50044
1615889654005 mozrunner::runner INFO Running command: "C:\\Program Files\\Mozilla Firefox\\firefox.exe" "--marionette" "-foreground" "-no-remote" "-profile" "C:\\Users\\hamza\\AppData\\Local\\Temp\\rust_mozprofilep3jmCK"
console.warn: SearchSettings: "get: No settings file exists, new profile?" (new Error("", "(unknown module)"))
1615889659420 Marionette INFO Listening on port 50053
1615889659868 Marionette WARN TLS certificate errors will be ignored for this session
1615889664419 Marionette INFO Stopped listening on port 50053
###!!! [Child][RunMessage] Error: Channel closing: too late to send/recv, messages will be lost
1615889665942 geckodriver INFO Listening on 127.0.0.1:50131
1615889668978 mozrunner::runner INFO Running command: "C:\\Program Files\\Mozilla Firefox\\firefox.exe" "--marionette" "-foreground" "-no-remote" "-profile" "C:\\Users\\hamza\\AppData\\Local\\Temp\\rust_mozprofilefdQ8i4"
console.warn: SearchSettings: "get: No settings file exists, new profile?" (new Error("", "(unknown module)"))
1615889674002 Marionette INFO Listening on port 50139
1615889674314 Marionette WARN TLS certificate errors will be ignored for this session
1615889699451 Marionette INFO Stopped listening on port 50139
###!!! [Child][MessageChannel] Error: (msgtype=0x3A00D5,name=PContent::Msg_ScriptErrorWithStack) 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
1615895301605 geckodriver INFO Listening on 127.0.0.1:51609
1615895304641 mozrunner::runner INFO Running command: "C:\\Program Files\\Mozilla Firefox\\firefox.exe" "--marionette" "-foreground" "-no-remote" "-profile" "C:\\Users\\hamza\\AppData\\Local\\Temp\\rust_mozprofileCn6VYC"
console.warn: SearchSettings: "get: No settings file exists, new profile?" (new Error("", "(unknown module)"))
1615895310204 Marionette INFO Listening on port 51619
1615895310464 Marionette WARN TLS certificate errors will be ignored for this session
1615895319991 Marionette INFO Stopped listening on port 51619
[Parent 33588, IPC I/O Parent] WARNING: file /builds/worker/checkouts/gecko/ipc/chromium/src/base/process_util_win.cc:167
###!!! [Child][RunMessage] Error: Channel closing: too late to send/recv, messages will be lost
1615895323672 geckodriver INFO Listening on 127.0.0.1:51676
1615895326719 mozrunner::runner INFO Running command: "C:\\Program Files\\Mozilla Firefox\\firefox.exe" "--marionette" "-foreground" "-no-remote" "-profile" "C:\\Users\\hamza\\AppData\\Local\\Temp\\rust_mozprofileiqm6TH"
console.warn: SearchSettings: "get: No settings file exists, new profile?" (new Error("", "(unknown module)"))
1615895332105 Marionette INFO Listening on port 51684
1615895332579 Marionette WARN TLS certificate errors will be ignored for this session
1615895340682 Marionette INFO Stopped listening on port 51684
JavaScript error: resource://gre/modules/UrlClassifierListManager.jsm, line 691: TypeError: this.tablesData[table] is undefined
###!!! [Child][RunMessage] Error: Channel closing: too late to send/recv, messages will be lost
1615895382343 geckodriver INFO Listening on 127.0.0.1:51765
1615895385388 mozrunner::runner INFO Running command: "C:\\Program Files\\Mozilla Firefox\\firefox.exe" "--marionette" "-foreground" "-no-remote" "-profile" "C:\\Users\\hamza\\AppData\\Local\\Temp\\rust_mozprofile03pZVf"
console.warn: SearchSettings: "get: No settings file exists, new profile?" (new Error("", "(unknown module)"))
1615895390535 Marionette INFO Listening on port 51773
1615895390748 Marionette WARN TLS certificate errors will be ignored for this session
1615895400716 Marionette INFO Stopped listening on port 51773
###!!! [Child][RunMessage] Error: Channel closing: too late to send/recv, messages will be lost
1615895404192 geckodriver INFO Listening on 127.0.0.1:51830
1615895407235 mozrunner::runner INFO Running command: "C:\\Program Files\\Mozilla Firefox\\firefox.exe" "--marionette" "-foreground" "-no-remote" "-profile" "C:\\Users\\hamza\\AppData\\Local\\Temp\\rust_mozprofileL6ce9i"
console.warn: SearchSettings: "get: No settings file exists, new profile?" (new Error("", "(unknown module)"))
1615895412606 Marionette INFO Listening on port 51838
1615895413116 Marionette WARN TLS certificate errors will be ignored for this session
1615895424927 Marionette INFO Stopped listening on port 51838
###!!! [Child][RunMessage] Error: Channel closing: too late to send/recv, messages will be lost
1615895915121 geckodriver INFO Listening on 127.0.0.1:52148
1615895918146 mozrunner::runner INFO Running command: "C:\\Program Files\\Mozilla Firefox\\firefox.exe" "--marionette" "-foreground" "-no-remote" "-profile" "C:\\Users\\hamza\\AppData\\Local\\Temp\\rust_mozprofileZHo0RB"
console.warn: SearchSettings: "get: No settings file exists, new profile?" (new Error("", "(unknown module)"))
1615895923635 Marionette INFO Listening on port 52158
1615895923992 Marionette WARN TLS certificate errors will be ignored for this session
1615895934005 Marionette INFO Stopped listening on port 52158
###!!! [Child][RunMessage] Error: Channel closing: too late to send/recv, messages will be lost
1615895937440 geckodriver INFO Listening on 127.0.0.1:52212
1615895940466 mozrunner::runner INFO Running command: "C:\\Program Files\\Mozilla Firefox\\firefox.exe" "--marionette" "-foreground" "-no-remote" "-profile" "C:\\Users\\hamza\\AppData\\Local\\Temp\\rust_mozprofilePfKy8Z"
console.warn: SearchSettings: "get: No settings file exists, new profile?" (new Error("", "(unknown module)"))
1615895946001 Marionette INFO Listening on port 52220
1615895946372 Marionette WARN TLS certificate errors will be ignored for this session
JavaScript error: resource://activity-stream/lib/ASRouter.jsm, line 988: NS_ERROR_ILLEGAL_VALUE: Component returned failure code: 0x80070057 (NS_ERROR_ILLEGAL_VALUE) [nsIObserverService.removeObserver]
console.error: services.settings:
main/message-groups Signature failed TypeError: NetworkError when attempting to fetch resource.
1615895946876 Marionette INFO Stopped listening on port 52220
###!!! [Child][RunMessage] Error: Channel closing: too late to send/recv, messages will be lost
1615896749994 geckodriver INFO Listening on 127.0.0.1:52446
1615896753034 mozrunner::runner INFO Running command: "C:\\Program Files\\Mozilla Firefox\\firefox.exe" "--marionette" "-foreground" "-no-remote" "-profile" "C:\\Users\\hamza\\AppData\\Local\\Temp\\rust_mozprofilep5SL60"
console.warn: SearchSettings: "get: No settings file exists, new profile?" (new Error("", "(unknown module)"))
1615896758302 Marionette INFO Listening on port 52455
1615896758383 Marionette 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", 775))
console.error: Region.jsm: "Failed to fetch region" (new Error("TIMEOUT", "resource://gre/modules/Region.jsm", 422))
1615896794774 Marionette INFO Stopped listening on port 52455
1615897101362 geckodriver INFO Listening on 127.0.0.1:52618
1615897104394 mozrunner::runner INFO Running command: "C:\\Program Files\\Mozilla Firefox\\firefox.exe" "--marionette" "-foreground" "-no-remote" "-profile" "C:\\Users\\hamza\\AppData\\Local\\Temp\\rust_mozprofileYuRJeD"
console.warn: SearchSettings: "get: No settings file exists, new profile?" (new Error("", "(unknown module)"))
1615897109916 Marionette INFO Listening on port 52627
1615897110256 Marionette WARN TLS certificate errors will be ignored for this session
1615897386812 Marionette INFO Stopped listening on port 52627
###!!! [Child][RunMessage] Error: Channel closing: too late to send/recv, messages will be lost
1615897467490 geckodriver INFO Listening on 127.0.0.1:52781
1615897470555 mozrunner::runner INFO Running command: "C:\\Program Files\\Mozilla Firefox\\firefox.exe" "--marionette" "-foreground" "-no-remote" "-profile" "C:\\Users\\hamza\\AppData\\Local\\Temp\\rust_mozprofile0m5eXr"
console.warn: SearchSettings: "get: No settings file exists, new profile?" (new Error("", "(unknown module)"))
1615897475540 Marionette INFO Listening on port 52798
1615897475893 Marionette WARN TLS certificate errors will be ignored for this session
1615897492728 Marionette INFO Stopped listening on port 52798
###!!! [Child][RunMessage] Error: Channel closing: too late to send/recv, messages will be lost
1615897589994 geckodriver INFO Listening on 127.0.0.1:52988
1615897593019 mozrunner::runner INFO Running command: "C:\\Program Files\\Mozilla Firefox\\firefox.exe" "--marionette" "-foreground" "-no-remote" "-profile" "C:\\Users\\hamza\\AppData\\Local\\Temp\\rust_mozprofileuhKOnF"
console.warn: SearchSettings: "get: No settings file exists, new profile?" (new Error("", "(unknown module)"))
1615897598292 Marionette INFO Listening on port 53002
1615897598370 Marionette WARN TLS certificate errors will be ignored for this session
1615897775198 Marionette INFO Stopped listening on port 53002
###!!! [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
1615898769381 geckodriver INFO Listening on 127.0.0.1:53359
1615898772426 mozrunner::runner INFO Running command: "C:\\Program Files\\Mozilla Firefox\\firefox.exe" "--marionette" "-foreground" "-no-remote" "-profile" "C:\\Users\\hamza\\AppData\\Local\\Temp\\rust_mozprofileYaXaFM"
console.warn: SearchSettings: "get: No settings file exists, new profile?" (new Error("", "(unknown module)"))
1615898777998 Marionette INFO Listening on port 53375
1615898778264 Marionette WARN TLS certificate errors will be ignored for this session
1615898788565 Marionette INFO Stopped listening on port 53371
###!!! [Child][RunMessage] Error: Channel closing: too late to send/recv, messages will be lost
1615898841698 geckodriver INFO Listening on 127.0.0.1:53485
1615898844729 mozrunner::runner INFO Running command: "C:\\Program Files\\Mozilla Firefox\\firefox.exe" "--marionette" "-foreground" "-no-remote" "-profile" "C:\\Users\\hamza\\AppData\\Local\\Temp\\rust_mozprofileglJo2m"
console.warn: SearchSettings: "get: No settings file exists, new profile?" (new Error("", "(unknown module)"))
1615898849368 Marionette INFO Listening on port 53497
1615898849589 Marionette 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", 775))
console.error: Region.jsm: "Failed to fetch region" (new Error("TIMEOUT", "resource://gre/modules/Region.jsm", 422))
1615898859799 Marionette INFO Stopped listening on port 53497
###!!! [Child][RunMessage] Error: Channel closing: too late to send/recv, messages will be lost
um/src/chrome/common/ipc_channel_win.cc:545
[Child 32792, IPC I/O Child] WARNING: pipe error: 232: file /builds/worker/checkouts/gecko/ipc/chromium/src/chrome/common/ipc_channel_win.cc:545
###!!! [Child][RunMessage] Error: Channel closing: too late to send/recv, messages will be lost
1615899012130 geckodriver INFO Listening on 127.0.0.1:53648
1615899015181 mozrunner::runner INFO Running command: "C:\\P1615899015213 mozrunner::runner INFO Running command: "C:\\Program Files\\Mozilla Firefox\\firefox.exe" "--marionette" "-foreground" "-no-remote" "-profile" "C:\console.warn: SearchSettings: "get: No settings file exists, new profile?" (new Error("", "(unknown module)"))
1615899019878 Marionette INFO Listening on port 53664
161581615899020070 Marionette INFO Listening on port 53668
1615899020587 Marionette WA1615899030242 Marionette INFO Stopped listening on port 53661615899030243 Marionette INFO Stopped listening on port 53668
###!!! [Child][MessageChannel] Error: (msgtype=0x5B000D,name=PHttpChannel::Msg___delete__) Channel closing: too late to send/recv, messages will be lost
###!!! [Child][RunMessage] Error: Channel closing: too late to send/recv, messages will be lost
###!!! [Child][RunMessage] Error: Channel closing: too late to send/recv, messages will be lost
###!!! [Child][RunMessage] Error: Channel closing: too late to send/recv, messages will be lost
1615899060627 geckodriver INFO Listening on 127.0.0.1:53765
1615899063653 mozrunner::runner INFO Running command: "C:\\P1615899063699 mozrunner::runner INFO Running command: "C:\\Program Files\\Mozilla Firefox\\firefox.exe" "--marionette" "-foreground" "-no-remote" "-profile" "C:\console.warn: SearchSettings: "get: No settings file exists, new profile?" (new Error("", "(unknown module)"))
1615899068802 Marionette INFO Listening on port 53781
1615899068986 Marionette WARN TLS certificate errors will be1615899069036 Marionette WA1615899074025 Marionette INFO Stopped listening on port 53781615899079132 Marionette INFO Stopped listening on port 53785
###!!! [Child][RunMessage] Error: Channel closing: too late to send/recv, messages will be lost
][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
1615899166774 geckodriver INFO Listening on 127.0.0.1:53922
1615899169803 mozrunner::runner INFO Running command: "C:\\P1615899169849 mozrunner::runner INFO Running command: "C:\\Program Files\\Mozilla Firefox\\firefox.exe" "--marionette" "-foreground" "-no-remote" "-profile" "C:\console.warn: SearchSettings: "get: No settings file exists, new profile?" (new Error("", "(unknown module)"))
1615899174880 Marionette INFO Listening on port 53939
1615899175138 Marionette WARN TLS certificate errors will be1615899175186 Marionette WA1615899185188 Marionette INFO Stopped listening on port 53939
###!!! [Child][RunMessage] Error: Channel closing: too late to send/recv, messages will be lost
el closing: too late to send/recv, messages will be lost
1615900453568 geckodriver INFO Listening on 127.0.0.1:54368
1615900456616 mozrunner::runner INFO Running command: "C:\\Program Files\\Mozilla Firefox\\firefox.exe" "--marionette" "-foreground" "-no-remote" "-profile" "C:\\Users\\hamza\\AppData\\Local\\Temp\\rust_mozprofilecF1lsQ"
console.warn: SearchSettings: "get: No settings file exists, new profile?" (new Error("", "(unknown module)"))
1615900462151 Marionette INFO Listening on port 54385
1615900462464 Marionette WARN TLS certificate errors will be ignored for this session
1615900473968 Marionette INFO Stopped listening on port 54385
###!!! [Child][RunMessage] Error: Channel closing: too late to send/recv, messages will be lost
ion" (new Error("TIMEOUT", "resource://gre/modules/Region.jsm", 422))
1615900474042 Marionette INFO Stopped listening on port 54384
[Child 11060, IPC I/O Child] WARNING: pipe error: 232: file /builds/worker/checkouts/gecko/ipc/chromium/src/chrome/common/ipc_channel_win.cc:545
###!!! [Child][RunMessage] Error: Channel closing: too late to send/recv, messages will be lost
1615904269154 geckodriver INFO Listening on 127.0.0.1:55308
1615904272213 mozrunner::runner INFO Running command: "C:\\Program Files\\Mozilla Firefox\\firefox.exe" "--marionette" "-foreground" "-no-remote" "-profile" "C:\\Users\\hamza\\AppData\\Local\\Temp\\rust_mozprofile8EWzaU"
console.warn: SearchSettings: "get: No settings file exists, new profile?" (new Error("", "(unknown module)"))
1615904277394 Marionette INFO Listening on port 55318
1615904277556 Marionette WARN TLS certificate errors will be ignored for this session
1615904286891 Marionette INFO Stopped listening on port 55318
###!!! [Child][RunMessage] Error: Channel closing: too late to send/recv, messages will be lost
###!!! [Child][RunMessage] Error: Channel closing: too late to send/recv, messages will be lost
###!!! [Child][RunMessage] Error: Channel closing: too late to send/recv, messages will be lost
1615904290320 geckodriver INFO Listening on 127.0.0.1:55367
1615904293347 mozrunner::runner INFO Running command: "C:\\Program Files\\Mozilla Firefox\\firefox.exe" "--marionette" "-foreground" "-no-remote" "-profile" "C:\\Users\\hamza\\AppData\\Local\\Temp\\rust_mozprofileOqenwG"
console.warn: SearchSettings: "get: No settings file exists, new profile?" (new Error("", "(unknown module)"))
JavaScript error: resource://activity-stream/lib/ASRouterNewTabHook.jsm, line 61: TypeError: this._router is null
console.warn: SearchService: "_init: abandoning init due to shutting down"
JavaScript error: , line 0: uncaught exception: 2147500036
JavaScript error: , line 0: uncaught exception: 2147500036
JavaScript error: , line 0: uncaught exception: 2147500036
JavaScript error: , line 0: uncaught exception: 2147500036
JavaScript error: , line 0: uncaught exception: 2147500036
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", 422))
JavaScript error: resource://gre/modules/AsyncShutdown.jsm, line 573: uncaught exception: Object
###!!! [Child][RunMessage] Error: Channel closing: too late to send/recv, messages will be lost
1615904301985 geckodriver INFO Listening on 127.0.0.1:55396
1615904305027 mozrunner::runner INFO Running command: "C:\\Program Files\\Mozilla Firefox\\firefox.exe" "--marionette" "-foreground" "-no-remote" "-profile" "C:\\Users\\hamza\\AppData\\Local\\Temp\\rust_mozprofilepeLQWL"
console.warn: SearchSettings: "get: No settings file exists, new profile?" (new Error("", "(unknown module)"))
1615904310487 Marionette INFO Listening on port 55405
JavaScript error: resource://activity-stream/lib/ASRouter.jsm, line 988: NS_ERROR_ILLEGAL_VALUE: Component returned failure code: 0x80070057 (NS_ERROR_ILLEGAL_VALUE) [nsIObserverService.removeObserver]
console.error: services.settings:
main/message-groups Signature failed TypeError: NetworkError when attempting to fetch resource.
console.error: services.settings:
main/fxmonitor-breaches Signature failed Error: Shutdown, aborting read-only worker requests.
1615904311097 Marionette INFO Stopped listening on port 55405
###!!! [Child][RunMessage] Error: Channel closing: too late to send/recv, messages will be lost
1615904313668 geckodriver INFO Listening on 127.0.0.1:55430
1615904316707 mozrunner::runner INFO Running command: "C:\\Program Files\\Mozilla Firefox\\firefox.exe" "--marionette" "-foreground" "-no-remote" "-profile" "C:\\Users\\hamza\\AppData\\Local\\Temp\\rust_mozprofileDSEZdf"
console.warn: SearchSettings: "get: No settings file exists, new profile?" (new Error("", "(unknown module)"))
1615904321929 Marionette INFO Listening on port 55438
1615904322078 Marionette WARN TLS certificate errors will be ignored for this session
JavaScript error: resource://activity-stream/lib/ASRouter.jsm, line 988: NS_ERROR_ILLEGAL_VALUE: Component returned failure code: 0x80070057 (NS_ERROR_ILLEGAL_VALUE) [nsIObserverService.removeObserver]
1615904326502 Marionette INFO Stopped listening on port 55431615904329340 mozrunner::runner INFO Running command: "C:\\Program Files\\Mozilla Firefox\\firefox.exe" "--marionette" "-foreground" "-no-remote" "-profile" "C:\\Users\\hamza\\AppData\\Local\\Temp\\rust_mozprofilezw8RcU"
console.warn: SearchSettings: "get: No settings file exists, new profile?" (new Error("", "(unknown module)"))
JavaScript error: resource://activity-stream/lib/ASRouterNewTabHook.jsm, line 61: TypeError: this._router is null
JavaScript error: resource://gre/modules/AsyncShutdown.jsm, line 573: uncaught exception: Object
###!!! [Child][RunMessage] Error: Channel closing: too late to send/recv, messages will be lost
1615907289398 geckodriver INFO Listening on 127.0.0.1:55848
1615907292458 mozrunner::runner INFO Running command: "C:\\Program Files\\Mozilla Firefox\\firefox.exe" "--marionette" "-foreground" "-no-remote" "-profile" "C:\\Users\\hamza\\AppData\\Local\\Temp\\rust_mozprofiletfIZ58"
console.warn: SearchSettings: "get: No settings file exists, new profile?" (new Error("", "(unknown module)"))
1615907304517 Marionette INFO Listening on port 55876
1615907305017 Marionette WARN TLS certificate errors will be ignored for this session
1615907426937 Marionette INFO Stopped listening on port 55877
###!!! [Child][RunMessage] Error: Channel closing: too late to send/recv, messages will be lost
###!!! [Child][RunMessage] Error: Channel closing: too late to send/recv, messages will be lost
###!!! [Child][RunMessage] Error: Channel closing: too late to send/recv, messages will be lost
1615907562774 geckodriver INFO Listening on 127.0.0.1:56300
1615907565825 mozrunner::runner INFO Running command: "C:\\Program Files\\Mozilla Firefox\\firefox.exe" "--marionette" "-foreground" "-no-remote" "-profile" "C:\\Users\\hamza\\AppData\\Local\\Temp\\rust_mozprofilew61Yz6"
console.warn: SearchSettings: "get: No settings file exists, new profile?" (new Error("", "(unknown module)"))
1615907578772 Marionette INFO Listening on port 56346
1615907579227 Marionette WARN TLS certificate errors will be ignored for this session
Marionette threw an error: TypeError: browsingContextFn().curre
###!!! [Child][RunMessage] Error: Channel closing: too late to send/recv, messages will be lost
onetteCommandsParent.jsm:332:29
1615907628671 Marionette INFO Stopped listening on port 56335
send/recv, messages will be lost
ed listening on port 56334
###!!! [Child][RunMessage] Error: Channel closing: too late to send/recv, messages will be lost
1615907667806 geckodriver INFO Listening on 127.0.0.1:56951
1615907670883 mozrunner::runner INFO Running command: "C:\\Program Files\\Mozilla Firefox\\firefox.exe" "--marionette" "-foreground" "-no-remote" "-profile" "C:\\Users\\hamza\\AppData\\Local\\Temp\\rust_mozprofileVOFZAm"
console.warn: SearchSettings: "get: No settings file exists, new profile?" (new Error("", "(unknown module)"))
1615907682893 Marionette INFO Listening on port 56988
1615907683532 Marionette WARN TLS certificate errors will be ignored for this session
1615907694977 Marionette INFO Stopped listening on port 56986
###!!! [Child][RunMessage] Error: Channel closing: too late to send/recv, messages will be lost
###!!! [Child][RunMessage] Error: Channel closing: too late to send/recv, messages will be lost
###!!! [Child][RunMessage] Error: Channel closing: too late to send/recv, messages will be lost
###!!! [Child][RunMessage] Error: Channe
###!!! [Child][RunMessage] Error: Channel closing: too late to send/recv, messages will be lost
l closing: too late to send/recv, messages will be lost
###!!! [Child][RunMessage] Error: Channel closing: too late to send/recv, messages will be lost
###!!! [Child][RunMessage] Error: Channel closing: too late to send/recv, messages will be lost
###!!! [Child][RunMessage] Error: Channel closing: too late to send/recv, messages will be lost
1615909579370 geckodriver INFO Listening on 127.0.0.1:57565
1615909582434 mozrunner::runner INFO Running command: "C:\\Program Files\\Mozilla Firefox\\firefox.exe" "--marionette" "-foreground" "-no-remote" "-profile" "C:\\Users\\hamza\\AppData\\Local\\Temp\\rust_mozprofilefbiTOC"
console.warn: SearchSettings: "get: No settings file exists, new profile?" (new Error("", "(unknown module)"))
1615909595501 Marionette INFO Listening on port 57605
1615909596150 Marionette WARN TLS certificate errors will be ignored for this session
1615909607621 Marionette INFO Stopped listening on port 57604
###!!! [Child][RunMessage] Error: Channel closing: too late to send/recv, messages will be lost
###!!! [Child][RunMessage] Error: Channel closing: too late to send/recv, messages will be lost
###!!! [Child][RunMessage] Error: Channel closing: too late to send/recv, messages will be lost
###!!! [Child][RunMessage]
###!!! [Child][RunMessage] Error: Channel closing: too late to send/recv, messages will be lost
Error: Channel closing: too late to send/recv, messages will be lost
###!!! [Child][RunMessage] Error: Channel closing: too late to send/recv, messages will be lost
###!!! [Child][RunMessage] Error: Channel closing: too late to send/recv, messages will be lost
###!!! [Child][RunMessage] Error: Channel closing: too late to send/recv, messages will be lost
###!!! [Child][RunMessage] Error: Channel closing: too
###!!! [Child][RunMessage] Error: Channel closing: too late to send/recv, messages will be lost
d/recv, messages will be lost
###!!! [Child][RunMessage] Error: Channel closing: too late to send/recv, messages will be lost
###!!! [Child][RunMessage] Error: Channel closing: too late to send/recv, messages will be lost
###!!! [Child][RunMessage] Error: Channel closing: too late to send/recv, messages will be lost
###!!! [Child][RunMessage] Error: Channel closing: too late to send/recv, messages will be lost
1615909631797 geckodriver INFO Listening on 127.0.0.1:57928
1615909634874 mozrunner::runner INFO Running command: "C:\\Program Files\\Mozilla Firefox\\firefox.exe" "--marionette" "-foreground" "-no-remote" "-profile" "C:\\Users\\hamza\\AppData\\Local\\Temp\\rust_mozprofileE0VNJ2"
console.warn: SearchSettings: "get: No settings file exists, new profile?" (new Error("", "(unknown module)"))
1615909647600 Marionette INFO Listening on port 57972
1615909648211 Marionette WARN TLS certificate errors will be ignored for this session
1615909658674 Marionette INFO Stopped listening on port 57972
###!!! [Child][RunMessage] Error: Channel closing: too late to send/recv, messages will be lost
esData[table] is undefined