-
Notifications
You must be signed in to change notification settings - Fork 2
/
Copy pathgeckodriver.log
1789 lines (1691 loc) · 147 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
1602700458893 geckodriver INFO Listening on 127.0.0.1:38707
1602700459913 mozrunner::runner INFO Running command: "/usr/bin/firefox" "--marionette" "-foreground" "-no-remote" "-profile" "/tmp/rust_mozprofileIh9s1W"
console.error: SearchCache: "_readCacheFile: Error reading cache file:" (new Error("", "(unknown module)"))
JavaScript error: resource://gre/modules/TelemetryUtils.jsm, line 161: TypeError: date is undefined
1602700462469 Marionette INFO Listening on port 40547
1602700462525 Marionette WARN TLS certificate errors will be ignored for this session
Exiting due to channel error.
Exiting due to channel error.
Exiting due to channel error.
1602700666174 geckodriver INFO Listening on 127.0.0.1:41755
1602700666179 mozrunner::runner INFO Running command: "/usr/bin/firefox" "--marionette" "-foreground" "-no-remote" "-profile" "/tmp/rust_mozprofiley8FPN3"
console.error: SearchCache: "_readCacheFile: Error reading cache file:" (new Error("", "(unknown module)"))
JavaScript error: resource://gre/modules/TelemetryUtils.jsm, line 161: TypeError: date is undefined
1602700668549 Marionette INFO Listening on port 43975
1602700668602 Marionette WARN TLS certificate errors will be ignored for this session
Exiting due to channel error.
Exiting due to channel error.
Exiting due to channel error.
1602700835552 geckodriver INFO Listening on 127.0.0.1:36581
1602700835558 mozrunner::runner INFO Running command: "/usr/bin/firefox" "--marionette" "-foreground" "-no-remote" "-profile" "/tmp/rust_mozprofileYUtbbJ"
console.error: SearchCache: "_readCacheFile: Error reading cache file:" (new Error("", "(unknown module)"))
JavaScript error: resource://gre/modules/TelemetryUtils.jsm, line 161: TypeError: date is undefined
1602700837822 Marionette INFO Listening on port 44401
1602700837866 Marionette WARN TLS certificate errors will be ignored for this session
1602700897829 geckodriver INFO Listening on 127.0.0.1:44955
1602700897835 mozrunner::runner INFO Running command: "/usr/bin/firefox" "--marionette" "-foreground" "-no-remote" "-profile" "/tmp/rust_mozprofileVgQ8vo"
console.error: SearchCache: "_readCacheFile: Error reading cache file:" (new Error("", "(unknown module)"))
JavaScript error: resource://gre/modules/TelemetryUtils.jsm, line 161: TypeError: date is undefined
1602700900205 Marionette INFO Listening on port 40601
1602700900245 Marionette WARN TLS certificate errors will be ignored for this session
1602700971342 geckodriver INFO Listening on 127.0.0.1:49113
1602700971347 mozrunner::runner INFO Running command: "/usr/bin/firefox" "--marionette" "-foreground" "-no-remote" "-profile" "/tmp/rust_mozprofilel47dDc"
console.error: SearchCache: "_readCacheFile: Error reading cache file:" (new Error("", "(unknown module)"))
JavaScript error: resource://gre/modules/TelemetryUtils.jsm, line 161: TypeError: date is undefined
1602700973780 Marionette INFO Listening on port 42063
1602700973855 Marionette WARN TLS certificate errors will be ignored for this session
1602701100349 Marionette INFO Stopped listening on port 42063
1602701103397 Marionette INFO Stopped listening on port 40601
1602701105811 Marionette INFO Stopped listening on port 44401
1602701240172 geckodriver INFO Listening on 127.0.0.1:45827
1602701240178 mozrunner::runner INFO Running command: "/usr/bin/firefox" "--marionette" "-foreground" "-no-remote" "-profile" "/tmp/rust_mozprofileZCnboJ"
console.error: SearchCache: "_readCacheFile: Error reading cache file:" (new Error("", "(unknown module)"))
JavaScript error: resource://gre/modules/TelemetryUtils.jsm, line 161: TypeError: date is undefined
1602701242567 Marionette INFO Listening on port 39501
1602701242589 Marionette WARN TLS certificate errors will be ignored for this session
1602701289421 geckodriver INFO Listening on 127.0.0.1:54769
1602701289427 mozrunner::runner INFO Running command: "/usr/bin/firefox" "--marionette" "-foreground" "-no-remote" "-profile" "/tmp/rust_mozprofilePAAZHh"
console.error: SearchCache: "_readCacheFile: Error reading cache file:" (new Error("", "(unknown module)"))
JavaScript error: resource://gre/modules/TelemetryUtils.jsm, line 161: TypeError: date is undefined
1602701291742 Marionette INFO Listening on port 42631
1602701291835 Marionette WARN TLS certificate errors will be ignored for this session
1602701343523 geckodriver INFO Listening on 127.0.0.1:48103
1602701343536 mozrunner::runner INFO Running command: "/usr/bin/firefox" "--marionette" "-foreground" "-no-remote" "-profile" "/tmp/rust_mozprofileYbRfKr"
console.error: SearchCache: "_readCacheFile: Error reading cache file:" (new Error("", "(unknown module)"))
JavaScript error: resource://gre/modules/TelemetryUtils.jsm, line 161: TypeError: date is undefined
1602701345980 Marionette INFO Listening on port 37975
1602701346044 Marionette WARN TLS certificate errors will be ignored for this session
1602701426890 Marionette INFO Stopped listening on port 37975
1602701429775 Marionette INFO Stopped listening on port 42631
1602701432616 Marionette INFO Stopped listening on port 39501
1602701527538 geckodriver INFO Listening on 127.0.0.1:49671
1602701527544 mozrunner::runner INFO Running command: "/usr/bin/firefox" "--marionette" "-foreground" "-no-remote" "-profile" "/tmp/rust_mozprofilePmkwF7"
console.error: SearchCache: "_readCacheFile: Error reading cache file:" (new Error("", "(unknown module)"))
JavaScript error: resource://gre/modules/TelemetryUtils.jsm, line 161: TypeError: date is undefined
1602701529880 Marionette INFO Listening on port 32913
1602701529962 Marionette WARN TLS certificate errors will be ignored for this session
1602701599170 geckodriver INFO Listening on 127.0.0.1:53475
1602701599175 mozrunner::runner INFO Running command: "/usr/bin/firefox" "--marionette" "-foreground" "-no-remote" "-profile" "/tmp/rust_mozprofile9W1BBj"
console.error: SearchCache: "_readCacheFile: Error reading cache file:" (new Error("", "(unknown module)"))
JavaScript error: resource://gre/modules/TelemetryUtils.jsm, line 161: TypeError: date is undefined
1602701601482 Marionette INFO Listening on port 39921
1602701601584 Marionette WARN TLS certificate errors will be ignored for this session
1602701650644 Marionette INFO Stopped listening on port 39921
1602701652113 Marionette INFO Stopped listening on port 32913
1602701924838 geckodriver INFO Listening on 127.0.0.1:35261
1602701924847 mozrunner::runner INFO Running command: "/usr/bin/firefox" "--marionette" "-foreground" "-no-remote" "-profile" "/tmp/rust_mozprofilesFbM8t"
console.error: SearchCache: "_readCacheFile: Error reading cache file:" (new Error("", "(unknown module)"))
JavaScript error: resource://gre/modules/TelemetryUtils.jsm, line 161: TypeError: date is undefined
1602701927092 Marionette INFO Listening on port 46187
1602701927155 Marionette WARN TLS certificate errors will be ignored for this session
1602701931032 Marionette INFO Stopped listening on port 46187
1602701983964 geckodriver INFO Listening on 127.0.0.1:41155
1602701983970 mozrunner::runner INFO Running command: "/usr/bin/firefox" "--marionette" "-foreground" "-no-remote" "-profile" "/tmp/rust_mozprofileQkN2g6"
console.error: SearchCache: "_readCacheFile: Error reading cache file:" (new Error("", "(unknown module)"))
JavaScript error: resource://gre/modules/TelemetryUtils.jsm, line 161: TypeError: date is undefined
1602701986370 Marionette INFO Listening on port 40131
1602701986396 Marionette WARN TLS certificate errors will be ignored for this session
1602701990247 Marionette INFO Stopped listening on port 40131
1602702136525 geckodriver INFO Listening on 127.0.0.1:47253
1602702136533 mozrunner::runner INFO Running command: "/usr/bin/firefox" "--marionette" "-foreground" "-no-remote" "-profile" "/tmp/rust_mozprofileNOnfQx"
console.error: SearchCache: "_readCacheFile: Error reading cache file:" (new Error("", "(unknown module)"))
JavaScript error: resource://gre/modules/TelemetryUtils.jsm, line 161: TypeError: date is undefined
1602702138891 Marionette INFO Listening on port 33679
1602702138947 Marionette WARN TLS certificate errors will be ignored for this session
1602702167793 Marionette INFO Stopped listening on port 33679
1602702198229 geckodriver INFO Listening on 127.0.0.1:54881
1602702198235 mozrunner::runner INFO Running command: "/usr/bin/firefox" "--marionette" "-foreground" "-no-remote" "-profile" "/tmp/rust_mozprofilekX2t47"
console.error: SearchCache: "_readCacheFile: Error reading cache file:" (new Error("", "(unknown module)"))
JavaScript error: resource://gre/modules/TelemetryUtils.jsm, line 161: TypeError: date is undefined
1602702200538 Marionette INFO Listening on port 33301
1602702200544 Marionette WARN TLS certificate errors will be ignored for this session
1602702239935 Marionette INFO Stopped listening on port 33301
1602702270426 geckodriver INFO Listening on 127.0.0.1:32993
1602702270432 mozrunner::runner INFO Running command: "/usr/bin/firefox" "--marionette" "-foreground" "-no-remote" "-profile" "/tmp/rust_mozprofileLm2P9N"
console.error: SearchCache: "_readCacheFile: Error reading cache file:" (new Error("", "(unknown module)"))
JavaScript error: resource://gre/modules/TelemetryUtils.jsm, line 161: TypeError: date is undefined
1602702272855 Marionette INFO Listening on port 41201
1602702272941 Marionette WARN TLS certificate errors will be ignored for this session
1602702275440 Marionette INFO Stopped listening on port 41201
1602839977628 geckodriver INFO Listening on 127.0.0.1:48841
1602839977635 mozrunner::runner INFO Running command: "/usr/bin/firefox" "--marionette" "-foreground" "-no-remote" "-profile" "/tmp/rust_mozprofilegkXKRv"
console.error: SearchCache: "_readCacheFile: Error reading cache file:" (new Error("", "(unknown module)"))
JavaScript error: resource://gre/modules/TelemetryUtils.jsm, line 161: TypeError: date is undefined
1602839981085 Marionette INFO Listening on port 39961
1602839981161 Marionette WARN TLS certificate errors will be ignored for this session
1602840017111 Marionette INFO Stopped listening on port 39961
1602840617873 geckodriver INFO Listening on 127.0.0.1:47475
1602840617880 mozrunner::runner INFO Running command: "/usr/bin/firefox" "--marionette" "-foreground" "-no-remote" "-profile" "/tmp/rust_mozprofileAWpLMN"
console.error: SearchCache: "_readCacheFile: Error reading cache file:" (new Error("", "(unknown module)"))
JavaScript error: resource://gre/modules/TelemetryUtils.jsm, line 161: TypeError: date is undefined
1602840621377 Marionette INFO Listening on port 40103
1602840621397 Marionette WARN TLS certificate errors will be ignored for this session
1602840660064 Marionette INFO Stopped listening on port 40103
1602841260808 geckodriver INFO Listening on 127.0.0.1:32893
1602841260814 mozrunner::runner INFO Running command: "/usr/bin/firefox" "--marionette" "-foreground" "-no-remote" "-profile" "/tmp/rust_mozprofilezOrWYu"
console.error: SearchCache: "_readCacheFile: Error reading cache file:" (new Error("", "(unknown module)"))
JavaScript error: resource://gre/modules/TelemetryUtils.jsm, line 161: TypeError: date is undefined
1602841264390 Marionette INFO Listening on port 38559
1602841264429 Marionette WARN TLS certificate errors will be ignored for this session
1602841294967 Marionette INFO Stopped listening on port 38559
###!!! [Child][RunMessage] Error: Channel closing: too late to send/recv, messages will be lost
1602841895756 geckodriver INFO Listening on 127.0.0.1:39173
1602841895761 mozrunner::runner INFO Running command: "/usr/bin/firefox" "--marionette" "-foreground" "-no-remote" "-profile" "/tmp/rust_mozprofile9LJmCQ"
console.error: SearchCache: "_readCacheFile: Error reading cache file:" (new Error("", "(unknown module)"))
JavaScript error: resource://gre/modules/TelemetryUtils.jsm, line 161: TypeError: date is undefined
1602841898906 Marionette INFO Listening on port 35699
1602841898976 Marionette WARN TLS certificate errors will be ignored for this session
1602841932630 Marionette INFO Stopped listening on port 35699
###!!! [Child][RunMessage] Error: Channel closing: too late to send/recv, messages will be lost
1602842533338 geckodriver INFO Listening on 127.0.0.1:34105
1602842533356 mozrunner::runner INFO Running command: "/usr/bin/firefox" "--marionette" "-foreground" "-no-remote" "-profile" "/tmp/rust_mozprofileHSDmzA"
console.error: SearchCache: "_readCacheFile: Error reading cache file:" (new Error("", "(unknown module)"))
JavaScript error: resource://gre/modules/TelemetryUtils.jsm, line 161: TypeError: date is undefined
1602842548448 Marionette INFO Listening on port 41169
1602842548749 Marionette WARN TLS certificate errors will be ignored for this session
1602842598086 Marionette INFO Stopped listening on port 41169
1602843201219 geckodriver INFO Listening on 127.0.0.1:33371
1602843201237 mozrunner::runner INFO Running command: "/usr/bin/firefox" "--marionette" "-foreground" "-no-remote" "-profile" "/tmp/rust_mozprofileExJf0M"
console.error: SearchCache: "_readCacheFile: Error reading cache file:" (new Error("", "(unknown module)"))
JavaScript error: resource://gre/modules/TelemetryUtils.jsm, line 161: TypeError: date is undefined
1602843217775 Marionette INFO Listening on port 43443
1602843217877 Marionette WARN TLS certificate errors will be ignored for this session
1602843266165 Marionette INFO Stopped listening on port 43443
1602843869252 geckodriver INFO Listening on 127.0.0.1:54897
1602843869258 mozrunner::runner INFO Running command: "/usr/bin/firefox" "--marionette" "-foreground" "-no-remote" "-profile" "/tmp/rust_mozprofilecwzdpk"
console.error: SearchCache: "_readCacheFile: Error reading cache file:" (new Error("", "(unknown module)"))
JavaScript error: resource://gre/modules/TelemetryUtils.jsm, line 161: TypeError: date is undefined
1602843871696 Marionette INFO Listening on port 34649
1602843871769 Marionette WARN TLS certificate errors will be ignored for this session
1602843901033 Marionette INFO Stopped listening on port 34649
1602844501558 geckodriver INFO Listening on 127.0.0.1:47837
1602844501563 mozrunner::runner INFO Running command: "/usr/bin/firefox" "--marionette" "-foreground" "-no-remote" "-profile" "/tmp/rust_mozprofileduvsmV"
console.error: SearchCache: "_readCacheFile: Error reading cache file:" (new Error("", "(unknown module)"))
JavaScript error: resource://gre/modules/TelemetryUtils.jsm, line 161: TypeError: date is undefined
1602844503913 Marionette INFO Listening on port 43749
1602844503974 Marionette WARN TLS certificate errors will be ignored for this session
1602844531941 Marionette INFO Stopped listening on port 43749
###!!! [Child][RunMessage] Error: Channel closing: too late to send/recv, messages will be lost
1602845132494 geckodriver INFO Listening on 127.0.0.1:51595
1602845132500 mozrunner::runner INFO Running command: "/usr/bin/firefox" "--marionette" "-foreground" "-no-remote" "-profile" "/tmp/rust_mozprofileoAdr8m"
console.error: SearchCache: "_readCacheFile: Error reading cache file:" (new Error("", "(unknown module)"))
JavaScript error: resource://gre/modules/TelemetryUtils.jsm, line 161: TypeError: date is undefined
1602845135016 Marionette INFO Listening on port 40421
1602845135109 Marionette WARN TLS certificate errors will be ignored for this session
1602845162876 Marionette INFO Stopped listening on port 40421
1602845763299 geckodriver INFO Listening on 127.0.0.1:33399
1602845763305 mozrunner::runner INFO Running command: "/usr/bin/firefox" "--marionette" "-foreground" "-no-remote" "-profile" "/tmp/rust_mozprofilePTpz2h"
console.error: SearchCache: "_readCacheFile: Error reading cache file:" (new Error("", "(unknown module)"))
JavaScript error: resource://gre/modules/TelemetryUtils.jsm, line 161: TypeError: date is undefined
1602845765820 Marionette INFO Listening on port 35183
1602845765930 Marionette WARN TLS certificate errors will be ignored for this session
1602845799012 Marionette INFO Stopped listening on port 35183
1602846399543 geckodriver INFO Listening on 127.0.0.1:53079
1602846399552 mozrunner::runner INFO Running command: "/usr/bin/firefox" "--marionette" "-foreground" "-no-remote" "-profile" "/tmp/rust_mozprofilem9ipRM"
console.error: SearchCache: "_readCacheFile: Error reading cache file:" (new Error("", "(unknown module)"))
JavaScript error: resource://gre/modules/TelemetryUtils.jsm, line 161: TypeError: date is undefined
1602846402067 Marionette INFO Listening on port 45257
1602846402179 Marionette WARN TLS certificate errors will be ignored for this session
1602846427661 Marionette INFO Stopped listening on port 45257
1602847028179 geckodriver INFO Listening on 127.0.0.1:37265
1602847028184 mozrunner::runner INFO Running command: "/usr/bin/firefox" "--marionette" "-foreground" "-no-remote" "-profile" "/tmp/rust_mozprofile5Gj2JH"
console.error: SearchCache: "_readCacheFile: Error reading cache file:" (new Error("", "(unknown module)"))
JavaScript error: resource://gre/modules/TelemetryUtils.jsm, line 161: TypeError: date is undefined
1602847030579 Marionette INFO Listening on port 36377
1602847030611 Marionette WARN TLS certificate errors will be ignored for this session
1602847062368 Marionette INFO Stopped listening on port 36377
1602847662857 geckodriver INFO Listening on 127.0.0.1:33825
1602847662863 mozrunner::runner INFO Running command: "/usr/bin/firefox" "--marionette" "-foreground" "-no-remote" "-profile" "/tmp/rust_mozprofile4Lr0yr"
console.error: SearchCache: "_readCacheFile: Error reading cache file:" (new Error("", "(unknown module)"))
JavaScript error: resource://gre/modules/TelemetryUtils.jsm, line 161: TypeError: date is undefined
1602847665207 Marionette INFO Listening on port 42187
1602847665272 Marionette WARN TLS certificate errors will be ignored for this session
1602847705342 Marionette INFO Stopped listening on port 42187
1602848305878 geckodriver INFO Listening on 127.0.0.1:44109
1602848305883 mozrunner::runner INFO Running command: "/usr/bin/firefox" "--marionette" "-foreground" "-no-remote" "-profile" "/tmp/rust_mozprofileGiRTQc"
console.error: SearchCache: "_readCacheFile: Error reading cache file:" (new Error("", "(unknown module)"))
JavaScript error: resource://gre/modules/TelemetryUtils.jsm, line 161: TypeError: date is undefined
1602848308159 Marionette INFO Listening on port 35417
1602848308210 Marionette WARN TLS certificate errors will be ignored for this session
1602848341148 Marionette INFO Stopped listening on port 35417
1602848941680 geckodriver INFO Listening on 127.0.0.1:57079
1602848941685 mozrunner::runner INFO Running command: "/usr/bin/firefox" "--marionette" "-foreground" "-no-remote" "-profile" "/tmp/rust_mozprofile3OUNzD"
console.error: SearchCache: "_readCacheFile: Error reading cache file:" (new Error("", "(unknown module)"))
JavaScript error: resource://gre/modules/TelemetryUtils.jsm, line 161: TypeError: date is undefined
1602848944108 Marionette INFO Listening on port 34099
1602848944194 Marionette WARN TLS certificate errors will be ignored for this session
1602848969607 Marionette INFO Stopped listening on port 34099
1602849570147 geckodriver INFO Listening on 127.0.0.1:53735
1602849571152 mozrunner::runner INFO Running command: "/usr/bin/firefox" "--marionette" "-foreground" "-no-remote" "-profile" "/tmp/rust_mozprofileLdMJu8"
console.error: SearchCache: "_readCacheFile: Error reading cache file:" (new Error("", "(unknown module)"))
JavaScript error: resource://gre/modules/TelemetryUtils.jsm, line 161: TypeError: date is undefined
1602849573807 Marionette INFO Listening on port 36191
1602849573861 Marionette WARN TLS certificate errors will be ignored for this session
1602849597045 Marionette INFO Stopped listening on port 36191
1602850197580 geckodriver INFO Listening on 127.0.0.1:37457
1602850197586 mozrunner::runner INFO Running command: "/usr/bin/firefox" "--marionette" "-foreground" "-no-remote" "-profile" "/tmp/rust_mozprofileBOquXh"
console.error: SearchCache: "_readCacheFile: Error reading cache file:" (new Error("", "(unknown module)"))
JavaScript error: resource://gre/modules/TelemetryUtils.jsm, line 161: TypeError: date is undefined
1602850199933 Marionette INFO Listening on port 42259
1602850200010 Marionette WARN TLS certificate errors will be ignored for this session
1602850239829 Marionette INFO Stopped listening on port 42259
IPDL protocol error: Handler returned error code!
###!!! [Parent][DispatchAsyncMessage] Error: PLayerTransaction::Msg_ReleaseLayer Processing error: message was deserialized, but the handler returned false (indicating failure)
IPDL protocol error: Handler returned error code!
###!!! [Parent][DispatchAsyncMessage] Error: PLayerTransaction::Msg_ReleaseLayer Processing error: message was deserialized, but the handler returned false (indicating failure)
IPDL protocol error: Handler returned error code!
###!!! [Parent][DispatchAsyncMessage] Error: PLayerTransaction::Msg_ReleaseLayer Processing error: message was deserialized, but the handler returned false (indicating failure)
IPDL protocol error: Handler returned error code!
###!!! [Parent][DispatchAsyncMessage] Error: PLayerTransaction::Msg_ReleaseLayer Processing error: message was deserialized, but the handler returned false (indicating failure)
1602851070723 geckodriver INFO Listening on 127.0.0.1:42503
1602851070729 mozrunner::runner INFO Running command: "/usr/bin/firefox" "--marionette" "-foreground" "-no-remote" "-profile" "/tmp/rust_mozprofileETdZ5k"
console.error: SearchCache: "_readCacheFile: Error reading cache file:" (new Error("", "(unknown module)"))
JavaScript error: resource://gre/modules/TelemetryUtils.jsm, line 161: TypeError: date is undefined
1602851073058 Marionette INFO Listening on port 34191
1602851073158 Marionette WARN TLS certificate errors will be ignored for this session
1602851097653 Marionette INFO Stopped listening on port 34191
1602851698171 geckodriver INFO Listening on 127.0.0.1:47475
1602851698177 mozrunner::runner INFO Running command: "/usr/bin/firefox" "--marionette" "-foreground" "-no-remote" "-profile" "/tmp/rust_mozprofilefMa6ko"
console.error: SearchCache: "_readCacheFile: Error reading cache file:" (new Error("", "(unknown module)"))
JavaScript error: resource://gre/modules/TelemetryUtils.jsm, line 161: TypeError: date is undefined
1602851700655 Marionette INFO Listening on port 36363
1602851700693 Marionette WARN TLS certificate errors will be ignored for this session
1602851722991 Marionette INFO Stopped listening on port 36363
1602852323518 geckodriver INFO Listening on 127.0.0.1:53699
1602852323523 mozrunner::runner INFO Running command: "/usr/bin/firefox" "--marionette" "-foreground" "-no-remote" "-profile" "/tmp/rust_mozprofileaAJi3k"
console.error: SearchCache: "_readCacheFile: Error reading cache file:" (new Error("", "(unknown module)"))
JavaScript error: resource://gre/modules/TelemetryUtils.jsm, line 161: TypeError: date is undefined
1602852325908 Marionette INFO Listening on port 42865
1602852325942 Marionette WARN TLS certificate errors will be ignored for this session
1602852350604 Marionette INFO Stopped listening on port 42865
1602852951119 geckodriver INFO Listening on 127.0.0.1:43927
1602852951125 mozrunner::runner INFO Running command: "/usr/bin/firefox" "--marionette" "-foreground" "-no-remote" "-profile" "/tmp/rust_mozprofile1x5Xie"
console.error: SearchCache: "_readCacheFile: Error reading cache file:" (new Error("", "(unknown module)"))
JavaScript error: resource://gre/modules/TelemetryUtils.jsm, line 161: TypeError: date is undefined
1602852953575 Marionette INFO Listening on port 33597
1602852953645 Marionette WARN TLS certificate errors will be ignored for this session
1602852994042 Marionette INFO Stopped listening on port 33597
###!!! [Child][RunMessage] Error: Channel closing: too late to send/recv, messages will be lost
1602853594529 geckodriver INFO Listening on 127.0.0.1:58189
1602853594536 mozrunner::runner INFO Running command: "/usr/bin/firefox" "--marionette" "-foreground" "-no-remote" "-profile" "/tmp/rust_mozprofileXyvIFT"
console.error: SearchCache: "_readCacheFile: Error reading cache file:" (new Error("", "(unknown module)"))
JavaScript error: resource://gre/modules/TelemetryUtils.jsm, line 161: TypeError: date is undefined
1602853596934 Marionette INFO Listening on port 46841
1602853596954 Marionette WARN TLS certificate errors will be ignored for this session
1602853628426 Marionette INFO Stopped listening on port 46841
1602922184520 geckodriver INFO Listening on 127.0.0.1:38111
1602922185545 mozrunner::runner INFO Running command: "/usr/bin/firefox" "--marionette" "-foreground" "-no-remote" "-profile" "/tmp/rust_mozprofile4n8eN2"
console.error: SearchCache: "_readCacheFile: Error reading cache file:" (new Error("", "(unknown module)"))
JavaScript error: resource://gre/modules/TelemetryUtils.jsm, line 161: TypeError: date is undefined
1602922188833 Marionette INFO Listening on port 42711
1602922188858 Marionette WARN TLS certificate errors will be ignored for this session
1602922202529 Marionette INFO Stopped listening on port 42711
1602922803172 geckodriver INFO Listening on 127.0.0.1:37429
1602922803181 mozrunner::runner INFO Running command: "/usr/bin/firefox" "--marionette" "-foreground" "-no-remote" "-profile" "/tmp/rust_mozprofile6NkA68"
console.error: SearchCache: "_readCacheFile: Error reading cache file:" (new Error("", "(unknown module)"))
JavaScript error: resource://gre/modules/TelemetryUtils.jsm, line 161: TypeError: date is undefined
1602922806705 Marionette INFO Listening on port 40507
1602922806801 Marionette WARN TLS certificate errors will be ignored for this session
1602922822980 Marionette INFO Stopped listening on port 40507
IPDL protocol error: Handler returned error code!
###!!! [Parent][DispatchAsyncMessage] Error: PLayerTransaction::Msg_ReleaseLayer Processing error: message was deserialized, but the handler returned false (indicating failure)
IPDL protocol error: Handler returned error code!
###!!! [Parent][DispatchAsyncMessage] Error: PLayerTransaction::Msg_ReleaseLayer Processing error: message was deserialized, but the handler returned false (indicating failure)
IPDL protocol error: Handler returned error code!
###!!! [Parent][DispatchAsyncMessage] Error: PLayerTransaction::Msg_ReleaseLayer Processing error: message was deserialized, but the handler returned false (indicating failure)
IPDL protocol error: Handler returned error code!
###!!! [Parent][DispatchAsyncMessage] Error: PLayerTransaction::Msg_ReleaseLayer Processing error: message was deserialized, but the handler returned false (indicating failure)
###!!! [Child][MessageChannel] Error: (msgtype=0x5B000D,name=PHttpChannel::Msg_DeletingChannel) Channel closing: too late to send/recv, messages will be lost
1602923423834 geckodriver INFO Listening on 127.0.0.1:42449
1602923423844 mozrunner::runner INFO Running command: "/usr/bin/firefox" "--marionette" "-foreground" "-no-remote" "-profile" "/tmp/rust_mozprofileFVEMjQ"
console.error: SearchCache: "_readCacheFile: Error reading cache file:" (new Error("", "(unknown module)"))
JavaScript error: resource://gre/modules/TelemetryUtils.jsm, line 161: TypeError: date is undefined
1602923427306 Marionette INFO Listening on port 46815
1602923427356 Marionette WARN TLS certificate errors will be ignored for this session
1602923437669 Marionette INFO Stopped listening on port 46815
1602924038445 geckodriver INFO Listening on 127.0.0.1:58303
1602924038450 mozrunner::runner INFO Running command: "/usr/bin/firefox" "--marionette" "-foreground" "-no-remote" "-profile" "/tmp/rust_mozprofile9xivLK"
console.error: SearchCache: "_readCacheFile: Error reading cache file:" (new Error("", "(unknown module)"))
JavaScript error: resource://gre/modules/TelemetryUtils.jsm, line 161: TypeError: date is undefined
1602924043834 Marionette INFO Listening on port 39011
1602924043877 Marionette WARN TLS certificate errors will be ignored for this session
1602924064817 Marionette INFO Stopped listening on port 39011
###!!! [Child][RunMessage] Error: Channel closing: too late to send/recv, messages will be lost
1602924665522 geckodriver INFO Listening on 127.0.0.1:40127
1602924665530 mozrunner::runner INFO Running command: "/usr/bin/firefox" "--marionette" "-foreground" "-no-remote" "-profile" "/tmp/rust_mozprofile4StqPN"
console.error: SearchCache: "_readCacheFile: Error reading cache file:" (new Error("", "(unknown module)"))
JavaScript error: resource://gre/modules/TelemetryUtils.jsm, line 161: TypeError: date is undefined
1602924669699 Marionette INFO Listening on port 45809
1602924669746 Marionette WARN TLS certificate errors will be ignored for this session
1602924686718 Marionette INFO Stopped listening on port 45809
1602925287394 geckodriver INFO Listening on 127.0.0.1:49089
1602925287400 mozrunner::runner INFO Running command: "/usr/bin/firefox" "--marionette" "-foreground" "-no-remote" "-profile" "/tmp/rust_mozprofileAFU6me"
console.error: SearchCache: "_readCacheFile: Error reading cache file:" (new Error("", "(unknown module)"))
JavaScript error: resource://gre/modules/TelemetryUtils.jsm, line 161: TypeError: date is undefined
1602925290540 Marionette INFO Listening on port 43317
1602925290619 Marionette WARN TLS certificate errors will be ignored for this session
1602925309935 Marionette INFO Stopped listening on port 43317
1602925910606 geckodriver INFO Listening on 127.0.0.1:59927
1602925911620 mozrunner::runner INFO Running command: "/usr/bin/firefox" "--marionette" "-foreground" "-no-remote" "-profile" "/tmp/rust_mozprofiledjgyHT"
console.error: SearchCache: "_readCacheFile: Error reading cache file:" (new Error("", "(unknown module)"))
JavaScript error: resource://gre/modules/TelemetryUtils.jsm, line 161: TypeError: date is undefined
1602925916378 Marionette INFO Listening on port 34403
1602925916450 Marionette WARN TLS certificate errors will be ignored for this session
1602925936136 Marionette INFO Stopped listening on port 34403
1602926537318 geckodriver INFO Listening on 127.0.0.1:54621
1602926537331 mozrunner::runner INFO Running command: "/usr/bin/firefox" "--marionette" "-foreground" "-no-remote" "-profile" "/tmp/rust_mozprofileXj00sz"
console.error: SearchCache: "_readCacheFile: Error reading cache file:" (new Error("", "(unknown module)"))
JavaScript error: resource://gre/modules/TelemetryUtils.jsm, line 161: TypeError: date is undefined
1602926540549 Marionette INFO Listening on port 36249
1602926540643 Marionette WARN TLS certificate errors will be ignored for this session
1602926558116 Marionette INFO Stopped listening on port 36249
JavaScript error: https://g0.ipcamlive.com/player/ipcamliveplayer.min.js?version=3, line 119: ReferenceError: Hls is not defined
1602927158779 geckodriver INFO Listening on 127.0.0.1:51107
1602927158785 mozrunner::runner INFO Running command: "/usr/bin/firefox" "--marionette" "-foreground" "-no-remote" "-profile" "/tmp/rust_mozprofileJvjmqX"
console.error: SearchCache: "_readCacheFile: Error reading cache file:" (new Error("", "(unknown module)"))
JavaScript error: resource://gre/modules/TelemetryUtils.jsm, line 161: TypeError: date is undefined
1602927161897 Marionette INFO Listening on port 40703
1602927162001 Marionette WARN TLS certificate errors will be ignored for this session
1602927177355 Marionette INFO Stopped listening on port 40703
JavaScript error: https://g0.ipcamlive.com/player/ipcamliveplayer.min.js?version=3, line 119: ReferenceError: Hls is not defined
1602927778034 geckodriver INFO Listening on 127.0.0.1:48427
1602927779040 mozrunner::runner INFO Running command: "/usr/bin/firefox" "--marionette" "-foreground" "-no-remote" "-profile" "/tmp/rust_mozprofileIIr6NK"
console.error: SearchCache: "_readCacheFile: Error reading cache file:" (new Error("", "(unknown module)"))
JavaScript error: resource://gre/modules/TelemetryUtils.jsm, line 161: TypeError: date is undefined
1602927782586 Marionette INFO Listening on port 36623
1602927782654 Marionette WARN TLS certificate errors will be ignored for this session
1602927798600 Marionette INFO Stopped listening on port 36623
1602928399381 geckodriver INFO Listening on 127.0.0.1:50253
1602928399387 mozrunner::runner INFO Running command: "/usr/bin/firefox" "--marionette" "-foreground" "-no-remote" "-profile" "/tmp/rust_mozprofileFaiR0S"
console.error: SearchCache: "_readCacheFile: Error reading cache file:" (new Error("", "(unknown module)"))
JavaScript error: resource://gre/modules/TelemetryUtils.jsm, line 161: TypeError: date is undefined
1602928402922 Marionette INFO Listening on port 42541
1602928403004 Marionette WARN TLS certificate errors will be ignored for this session
1602928422483 Marionette INFO Stopped listening on port 42541
###!!! [Child][MessageChannel] Error: (msgtype=0x5B000D,name=PHttpChannel::Msg_DeletingChannel) Channel closing: too late to send/recv, messages will be lost
1602929023356 geckodriver INFO Listening on 127.0.0.1:35293
1602929023361 mozrunner::runner INFO Running command: "/usr/bin/firefox" "--marionette" "-foreground" "-no-remote" "-profile" "/tmp/rust_mozprofileUO3HQh"
console.error: SearchCache: "_readCacheFile: Error reading cache file:" (new Error("", "(unknown module)"))
JavaScript error: resource://gre/modules/TelemetryUtils.jsm, line 161: TypeError: date is undefined
1602929026625 Marionette INFO Listening on port 36303
1602929026700 Marionette WARN TLS certificate errors will be ignored for this session
1602929039075 Marionette INFO Stopped listening on port 36303
1602929639705 geckodriver INFO Listening on 127.0.0.1:57143
1602929639710 mozrunner::runner INFO Running command: "/usr/bin/firefox" "--marionette" "-foreground" "-no-remote" "-profile" "/tmp/rust_mozprofile92NSno"
console.error: SearchCache: "_readCacheFile: Error reading cache file:" (new Error("", "(unknown module)"))
JavaScript error: resource://gre/modules/TelemetryUtils.jsm, line 161: TypeError: date is undefined
1602929643190 Marionette INFO Listening on port 34829
1602929643230 Marionette WARN TLS certificate errors will be ignored for this session
1602929663505 Marionette INFO Stopped listening on port 34829
1602930264146 geckodriver INFO Listening on 127.0.0.1:33931
1602930264152 mozrunner::runner INFO Running command: "/usr/bin/firefox" "--marionette" "-foreground" "-no-remote" "-profile" "/tmp/rust_mozprofileobWrqz"
console.error: SearchCache: "_readCacheFile: Error reading cache file:" (new Error("", "(unknown module)"))
JavaScript error: resource://gre/modules/TelemetryUtils.jsm, line 161: TypeError: date is undefined
1602930267283 Marionette INFO Listening on port 43513
1602930267364 Marionette WARN TLS certificate errors will be ignored for this session
1602930279231 Marionette INFO Stopped listening on port 43513
1602930879874 geckodriver INFO Listening on 127.0.0.1:48469
1602930879880 mozrunner::runner INFO Running command: "/usr/bin/firefox" "--marionette" "-foreground" "-no-remote" "-profile" "/tmp/rust_mozprofileoEuv5B"
console.error: SearchCache: "_readCacheFile: Error reading cache file:" (new Error("", "(unknown module)"))
JavaScript error: resource://gre/modules/TelemetryUtils.jsm, line 161: TypeError: date is undefined
1602930883119 Marionette INFO Listening on port 43901
1602930883197 Marionette WARN TLS certificate errors will be ignored for this session
1602930906635 Marionette INFO Stopped listening on port 43901
###!!! [Child][RunMessage] Error: Channel closing: too late to send/recv, messages will be lost
1602931507217 geckodriver INFO Listening on 127.0.0.1:52051
1602931507222 mozrunner::runner INFO Running command: "/usr/bin/firefox" "--marionette" "-foreground" "-no-remote" "-profile" "/tmp/rust_mozprofileutWEGq"
console.error: SearchCache: "_readCacheFile: Error reading cache file:" (new Error("", "(unknown module)"))
JavaScript error: resource://gre/modules/TelemetryUtils.jsm, line 161: TypeError: date is undefined
1602931510379 Marionette INFO Listening on port 46323
1602931510436 Marionette WARN TLS certificate errors will be ignored for this session
1602931522100 Marionette INFO Stopped listening on port 46323
1602932122740 geckodriver INFO Listening on 127.0.0.1:41967
1602932122745 mozrunner::runner INFO Running command: "/usr/bin/firefox" "--marionette" "-foreground" "-no-remote" "-profile" "/tmp/rust_mozprofileDILhlC"
console.error: SearchCache: "_readCacheFile: Error reading cache file:" (new Error("", "(unknown module)"))
JavaScript error: resource://gre/modules/TelemetryUtils.jsm, line 161: TypeError: date is undefined
1602932125640 Marionette INFO Listening on port 36193
1602932125657 Marionette WARN TLS certificate errors will be ignored for this session
JavaScript error: resource://gre/actors/PictureInPictureChild.jsm, line 143: InvalidStateError: An attempt was made to use an object that is not, or is no longer, usable
1602932140205 Marionette INFO Stopped listening on port 36193
1602932740830 geckodriver INFO Listening on 127.0.0.1:53155
1602932740835 mozrunner::runner INFO Running command: "/usr/bin/firefox" "--marionette" "-foreground" "-no-remote" "-profile" "/tmp/rust_mozprofileuNv422"
console.error: SearchCache: "_readCacheFile: Error reading cache file:" (new Error("", "(unknown module)"))
JavaScript error: resource://gre/modules/TelemetryUtils.jsm, line 161: TypeError: date is undefined
1602932743818 Marionette INFO Listening on port 33981
1602932743851 Marionette WARN TLS certificate errors will be ignored for this session
1602932757341 Marionette INFO Stopped listening on port 33981
1602933357938 geckodriver INFO Listening on 127.0.0.1:35993
1602933357945 mozrunner::runner INFO Running command: "/usr/bin/firefox" "--marionette" "-foreground" "-no-remote" "-profile" "/tmp/rust_mozprofile8rgoU6"
console.error: SearchCache: "_readCacheFile: Error reading cache file:" (new Error("", "(unknown module)"))
JavaScript error: resource://gre/modules/TelemetryUtils.jsm, line 161: TypeError: date is undefined
1602933361013 Marionette INFO Listening on port 42947
1602933361056 Marionette WARN TLS certificate errors will be ignored for this session
1602933379948 Marionette INFO Stopped listening on port 42947
###!!! [Child][RunMessage] Error: Channel closing: too late to send/recv, messages will be lost
1602933980497 geckodriver INFO Listening on 127.0.0.1:48523
1602933980503 mozrunner::runner INFO Running command: "/usr/bin/firefox" "--marionette" "-foreground" "-no-remote" "-profile" "/tmp/rust_mozprofilej1j6PA"
console.error: SearchCache: "_readCacheFile: Error reading cache file:" (new Error("", "(unknown module)"))
JavaScript error: resource://gre/modules/TelemetryUtils.jsm, line 161: TypeError: date is undefined
1602933983471 Marionette INFO Listening on port 39027
1602933983516 Marionette WARN TLS certificate errors will be ignored for this session
1602933995955 Marionette INFO Stopped listening on port 39027
1602934596498 geckodriver INFO Listening on 127.0.0.1:56427
1602934596504 mozrunner::runner INFO Running command: "/usr/bin/firefox" "--marionette" "-foreground" "-no-remote" "-profile" "/tmp/rust_mozprofileqIqIaC"
console.error: SearchCache: "_readCacheFile: Error reading cache file:" (new Error("", "(unknown module)"))
JavaScript error: resource://gre/modules/TelemetryUtils.jsm, line 161: TypeError: date is undefined
1602934599563 Marionette INFO Listening on port 44499
1602934599615 Marionette WARN TLS certificate errors will be ignored for this session
1602934620726 Marionette INFO Stopped listening on port 44499
1602935221340 geckodriver INFO Listening on 127.0.0.1:33841
1602935221345 mozrunner::runner INFO Running command: "/usr/bin/firefox" "--marionette" "-foreground" "-no-remote" "-profile" "/tmp/rust_mozprofileVmrZ7M"
console.error: SearchCache: "_readCacheFile: Error reading cache file:" (new Error("", "(unknown module)"))
JavaScript error: resource://gre/modules/TelemetryUtils.jsm, line 161: TypeError: date is undefined
1602935224401 Marionette INFO Listening on port 32847
1602935224457 Marionette WARN TLS certificate errors will be ignored for this session
1602935235962 Marionette INFO Stopped listening on port 32847
1602935836520 geckodriver INFO Listening on 127.0.0.1:37371
1602935836525 mozrunner::runner INFO Running command: "/usr/bin/firefox" "--marionette" "-foreground" "-no-remote" "-profile" "/tmp/rust_mozprofilephsW4o"
console.error: SearchCache: "_readCacheFile: Error reading cache file:" (new Error("", "(unknown module)"))
JavaScript error: resource://gre/modules/TelemetryUtils.jsm, line 161: TypeError: date is undefined
1602935839922 Marionette INFO Listening on port 46243
1602935839944 Marionette WARN TLS certificate errors will be ignored for this session
1602935856685 Marionette INFO Stopped listening on port 46243
1602936457318 geckodriver INFO Listening on 127.0.0.1:42849
1602936457324 mozrunner::runner INFO Running command: "/usr/bin/firefox" "--marionette" "-foreground" "-no-remote" "-profile" "/tmp/rust_mozprofileF9SoNx"
console.error: SearchCache: "_readCacheFile: Error reading cache file:" (new Error("", "(unknown module)"))
JavaScript error: resource://gre/modules/TelemetryUtils.jsm, line 161: TypeError: date is undefined
1602936460513 Marionette INFO Listening on port 36569
1602936460538 Marionette WARN TLS certificate errors will be ignored for this session
1602936471869 Marionette INFO Stopped listening on port 36569
1602937072612 geckodriver INFO Listening on 127.0.0.1:56235
1602937072618 mozrunner::runner INFO Running command: "/usr/bin/firefox" "--marionette" "-foreground" "-no-remote" "-profile" "/tmp/rust_mozprofileshSMf8"
console.error: SearchCache: "_readCacheFile: Error reading cache file:" (new Error("", "(unknown module)"))
JavaScript error: resource://gre/modules/TelemetryUtils.jsm, line 161: TypeError: date is undefined
1602937075855 Marionette INFO Listening on port 44125
1602937075930 Marionette WARN TLS certificate errors will be ignored for this session
1602937091140 Marionette INFO Stopped listening on port 44125
1602937691786 geckodriver INFO Listening on 127.0.0.1:45835
1602937691791 mozrunner::runner INFO Running command: "/usr/bin/firefox" "--marionette" "-foreground" "-no-remote" "-profile" "/tmp/rust_mozprofile1qRBWp"
console.error: SearchCache: "_readCacheFile: Error reading cache file:" (new Error("", "(unknown module)"))
JavaScript error: resource://gre/modules/TelemetryUtils.jsm, line 161: TypeError: date is undefined
1602937694856 Marionette INFO Listening on port 40101
1602937694906 Marionette WARN TLS certificate errors will be ignored for this session
1602937708729 Marionette INFO Stopped listening on port 40101
1602938309400 geckodriver INFO Listening on 127.0.0.1:49851
1602938309434 mozrunner::runner INFO Running command: "/usr/bin/firefox" "--marionette" "-foreground" "-no-remote" "-profile" "/tmp/rust_mozprofilegA0vjs"
console.error: SearchCache: "_readCacheFile: Error reading cache file:" (new Error("", "(unknown module)"))
JavaScript error: resource://gre/modules/TelemetryUtils.jsm, line 161: TypeError: date is undefined
1602938325635 Marionette INFO Listening on port 41403
1602938325690 Marionette WARN TLS certificate errors will be ignored for this session
JavaScript error: resource://gre/actors/PictureInPictureChild.jsm, line 143: InvalidStateError: An attempt was made to use an object that is not, or is no longer, usable
1602938364685 Marionette INFO Stopped listening on port 41403
1602938967719 geckodriver INFO Listening on 127.0.0.1:59891
1602938967738 mozrunner::runner INFO Running command: "/usr/bin/firefox" "--marionette" "-foreground" "-no-remote" "-profile" "/tmp/rust_mozprofilejU7mK1"
console.error: SearchCache: "_readCacheFile: Error reading cache file:" (new Error("", "(unknown module)"))
JavaScript error: resource://gre/modules/TelemetryUtils.jsm, line 161: TypeError: date is undefined
1602938982920 Marionette INFO Listening on port 37601
1602938983107 Marionette WARN TLS certificate errors will be ignored for this session
JavaScript error: resource://gre/actors/PictureInPictureChild.jsm, line 143: InvalidStateError: An attempt was made to use an object that is not, or is no longer, usable
1602939024983 Marionette INFO Stopped listening on port 37601
1602939628065 geckodriver INFO Listening on 127.0.0.1:59459
1602939628071 mozrunner::runner INFO Running command: "/usr/bin/firefox" "--marionette" "-foreground" "-no-remote" "-profile" "/tmp/rust_mozprofileNb378p"
console.error: SearchCache: "_readCacheFile: Error reading cache file:" (new Error("", "(unknown module)"))
JavaScript error: resource://gre/modules/TelemetryUtils.jsm, line 161: TypeError: date is undefined
1602939630358 Marionette INFO Listening on port 45817
1602939630381 Marionette WARN TLS certificate errors will be ignored for this session
1602939647907 Marionette INFO Stopped listening on port 45817
###!!! [Child][RunMessage] Error: Channel closing: too late to send/recv, messages will be lost
1602940248437 geckodriver INFO Listening on 127.0.0.1:42685
1602940248442 mozrunner::runner INFO Running command: "/usr/bin/firefox" "--marionette" "-foreground" "-no-remote" "-profile" "/tmp/rust_mozprofileM2JUAi"
console.error: SearchCache: "_readCacheFile: Error reading cache file:" (new Error("", "(unknown module)"))
JavaScript error: resource://gre/modules/TelemetryUtils.jsm, line 161: TypeError: date is undefined
1602940250814 Marionette INFO Listening on port 40147
1602940250859 Marionette WARN TLS certificate errors will be ignored for this session
1602940260310 Marionette INFO Stopped listening on port 40147
1602942243163 geckodriver INFO Listening on 127.0.0.1:55389
1602942243168 mozrunner::runner INFO Running command: "/usr/bin/firefox" "--marionette" "-foreground" "-no-remote" "-profile" "/tmp/rust_mozprofileQqhFLl"
console.error: SearchCache: "_readCacheFile: Error reading cache file:" (new Error("", "(unknown module)"))
JavaScript error: resource://gre/modules/TelemetryUtils.jsm, line 161: TypeError: date is undefined
1602942245637 Marionette INFO Listening on port 37769
1602942245678 Marionette WARN TLS certificate errors will be ignored for this session
1602942256152 Marionette INFO Stopped listening on port 37769
###!!! [Child][RunMessage] Error: Channel closing: too late to send/recv, messages will be lost
1602945740034 geckodriver INFO Listening on 127.0.0.1:57893
1602945740040 mozrunner::runner INFO Running command: "/usr/bin/firefox" "--marionette" "-foreground" "-no-remote" "-profile" "/tmp/rust_mozprofileeg3iG4"
console.error: SearchCache: "_readCacheFile: Error reading cache file:" (new Error("", "(unknown module)"))
JavaScript error: resource://gre/modules/TelemetryUtils.jsm, line 161: TypeError: date is undefined
1602945742302 Marionette INFO Listening on port 33601
1602945742348 Marionette WARN TLS certificate errors will be ignored for this session
console.error: Region.jsm: "Error fetching region" (new AbortError("The operation was aborted. ", (void 0), 697))
console.error: Region.jsm: "Failed to fetch region" (new Error("NO_RESULT", "resource://gre/modules/Region.jsm", 351))
JavaScript error: , line 0: AbortError: A request was aborted, for example through a call to IDBTransaction.abort.
1602945896373 Marionette INFO Stopped listening on port 33601
1602946678558 geckodriver INFO Listening on 127.0.0.1:34801
1602946679583 mozrunner::runner INFO Running command: "/usr/bin/firefox" "--marionette" "-foreground" "-no-remote" "-profile" "/tmp/rust_mozprofilepcKPIX"
console.error: SearchCache: "_readCacheFile: Error reading cache file:" (new Error("", "(unknown module)"))
JavaScript error: resource://gre/modules/TelemetryUtils.jsm, line 161: TypeError: date is undefined
1602946682092 Marionette INFO Listening on port 36397
1602946682196 Marionette WARN TLS certificate errors will be ignored for this session
console.error: Region.jsm: "Error fetching region" (new AbortError("The operation was aborted. ", (void 0), 697))
console.error: Region.jsm: "Failed to fetch region" (new Error("NO_RESULT", "resource://gre/modules/Region.jsm", 351))
1602946717631 Marionette INFO Stopped listening on port 36397
1602947138106 geckodriver INFO Listening on 127.0.0.1:33385
1602947138112 mozrunner::runner INFO Running command: "/usr/bin/firefox" "--marionette" "-foreground" "-no-remote" "-profile" "/tmp/rust_mozprofileOoqUEx"
console.error: SearchCache: "_readCacheFile: Error reading cache file:" (new Error("", "(unknown module)"))
JavaScript error: resource://gre/modules/TelemetryUtils.jsm, line 161: TypeError: date is undefined
1602947140545 Marionette INFO Listening on port 45619
1602947140620 Marionette WARN TLS certificate errors will be ignored for this session
1602947157330 Marionette INFO Stopped listening on port 45619
###!!! [Child][RunMessage] Error: Channel closing: too late to send/recv, messages will be lost
1602947577800 geckodriver INFO Listening on 127.0.0.1:51651
1602947577806 mozrunner::runner INFO Running command: "/usr/bin/firefox" "--marionette" "-foreground" "-no-remote" "-profile" "/tmp/rust_mozprofileFmPBcT"
console.error: SearchCache: "_readCacheFile: Error reading cache file:" (new Error("", "(unknown module)"))
JavaScript error: resource://gre/modules/TelemetryUtils.jsm, line 161: TypeError: date is undefined
1602947580407 Marionette INFO Listening on port 37357
1602947580425 Marionette WARN TLS certificate errors will be ignored for this session
JavaScript error: resource://gre/modules/URIFixup.jsm, line 271: NS_ERROR_FAILURE: Should pass a non-null uri
1602947594986 Marionette INFO Stopped listening on port 37357
1602948015595 geckodriver INFO Listening on 127.0.0.1:44455
1602948016602 mozrunner::runner INFO Running command: "/usr/bin/firefox" "--marionette" "-foreground" "-no-remote" "-profile" "/tmp/rust_mozprofilei9IxlV"
console.error: SearchCache: "_readCacheFile: Error reading cache file:" (new Error("", "(unknown module)"))
JavaScript error: resource://gre/modules/TelemetryUtils.jsm, line 161: TypeError: date is undefined
1602948019061 Marionette INFO Listening on port 34687
1602948019112 Marionette WARN TLS certificate errors will be ignored for this session
1602948040259 Marionette INFO Stopped listening on port 34687
1602948460766 geckodriver INFO Listening on 127.0.0.1:45781
1602948460771 mozrunner::runner INFO Running command: "/usr/bin/firefox" "--marionette" "-foreground" "-no-remote" "-profile" "/tmp/rust_mozprofileOf9zqG"
console.error: SearchCache: "_readCacheFile: Error reading cache file:" (new Error("", "(unknown module)"))
JavaScript error: resource://gre/modules/TelemetryUtils.jsm, line 161: TypeError: date is undefined
1602948463337 Marionette INFO Listening on port 37577
1602948463384 Marionette WARN TLS certificate errors will be ignored for this session
1602948477393 Marionette INFO Stopped listening on port 37577
1602948897898 geckodriver INFO Listening on 127.0.0.1:38293
1602948897903 mozrunner::runner INFO Running command: "/usr/bin/firefox" "--marionette" "-foreground" "-no-remote" "-profile" "/tmp/rust_mozprofileB0xnwQ"
console.error: SearchCache: "_readCacheFile: Error reading cache file:" (new Error("", "(unknown module)"))
JavaScript error: resource://gre/modules/TelemetryUtils.jsm, line 161: TypeError: date is undefined
1602948900277 Marionette INFO Listening on port 43763
1602948900311 Marionette WARN TLS certificate errors will be ignored for this session
1602948923119 Marionette INFO Stopped listening on port 43763
1602949343638 geckodriver INFO Listening on 127.0.0.1:46403
1602949343644 mozrunner::runner INFO Running command: "/usr/bin/firefox" "--marionette" "-foreground" "-no-remote" "-profile" "/tmp/rust_mozprofileCowOTa"
console.error: SearchCache: "_readCacheFile: Error reading cache file:" (new Error("", "(unknown module)"))
JavaScript error: resource://gre/modules/TelemetryUtils.jsm, line 161: TypeError: date is undefined
1602949346225 Marionette INFO Listening on port 40121
1602949346260 Marionette WARN TLS certificate errors will be ignored for this session
1602949364382 Marionette INFO Stopped listening on port 40121
1602949784890 geckodriver INFO Listening on 127.0.0.1:52017
1602949784903 mozrunner::runner INFO Running command: "/usr/bin/firefox" "--marionette" "-foreground" "-no-remote" "-profile" "/tmp/rust_mozprofileBjK44V"
console.error: SearchCache: "_readCacheFile: Error reading cache file:" (new Error("", "(unknown module)"))
JavaScript error: resource://gre/modules/TelemetryUtils.jsm, line 161: TypeError: date is undefined
1602949787353 Marionette INFO Listening on port 35209
1602949787411 Marionette WARN TLS certificate errors will be ignored for this session
1602949801635 Marionette INFO Stopped listening on port 35209
1602950222154 geckodriver INFO Listening on 127.0.0.1:32797
1602950222159 mozrunner::runner INFO Running command: "/usr/bin/firefox" "--marionette" "-foreground" "-no-remote" "-profile" "/tmp/rust_mozprofileiLvBJZ"
console.error: SearchCache: "_readCacheFile: Error reading cache file:" (new Error("", "(unknown module)"))
JavaScript error: resource://gre/modules/TelemetryUtils.jsm, line 161: TypeError: date is undefined
1602950224500 Marionette INFO Listening on port 46751
1602950224567 Marionette WARN TLS certificate errors will be ignored for this session
console.error: Region.jsm: "Error fetching region" (new AbortError("The operation was aborted. ", (void 0), 697))
console.error: Region.jsm: "Failed to fetch region" (new Error("NO_RESULT", "resource://gre/modules/Region.jsm", 351))
1602950243354 Marionette INFO Stopped listening on port 46751
###!!! [Child][RunMessage] Error: Channel closing: too late to send/recv, messages will be lost
1602950663877 geckodriver INFO Listening on 127.0.0.1:50401
1602950663883 mozrunner::runner INFO Running command: "/usr/bin/firefox" "--marionette" "-foreground" "-no-remote" "-profile" "/tmp/rust_mozprofile1NNzs6"
console.error: SearchCache: "_readCacheFile: Error reading cache file:" (new Error("", "(unknown module)"))
JavaScript error: resource://gre/modules/TelemetryUtils.jsm, line 161: TypeError: date is undefined
1602950666340 Marionette INFO Listening on port 36277
1602950666392 Marionette WARN TLS certificate errors will be ignored for this session
1602950688895 Marionette INFO Stopped listening on port 36277
1602951109433 geckodriver INFO Listening on 127.0.0.1:48941
1602951109439 mozrunner::runner INFO Running command: "/usr/bin/firefox" "--marionette" "-foreground" "-no-remote" "-profile" "/tmp/rust_mozprofileB4LyWY"
console.error: SearchCache: "_readCacheFile: Error reading cache file:" (new Error("", "(unknown module)"))
JavaScript error: resource://gre/modules/TelemetryUtils.jsm, line 161: TypeError: date is undefined
1602951111924 Marionette INFO Listening on port 41839
1602951111949 Marionette WARN TLS certificate errors will be ignored for this session
1602951133287 Marionette INFO Stopped listening on port 41839
1602951553790 geckodriver INFO Listening on 127.0.0.1:54933
1602951553798 mozrunner::runner INFO Running command: "/usr/bin/firefox" "--marionette" "-foreground" "-no-remote" "-profile" "/tmp/rust_mozprofile19J7VU"
console.error: SearchCache: "_readCacheFile: Error reading cache file:" (new Error("", "(unknown module)"))
JavaScript error: resource://gre/modules/TelemetryUtils.jsm, line 161: TypeError: date is undefined
1602951556526 Marionette INFO Listening on port 33801
1602951556615 Marionette WARN TLS certificate errors will be ignored for this session
1602951579445 Marionette INFO Stopped listening on port 33801
###!!! [Child][RunMessage] Error: Channel closing: too late to send/recv, messages will be lost
1602951999958 geckodriver INFO Listening on 127.0.0.1:35199
1602951999967 mozrunner::runner INFO Running command: "/usr/bin/firefox" "--marionette" "-foreground" "-no-remote" "-profile" "/tmp/rust_mozprofilem6kBZR"
console.error: SearchCache: "_readCacheFile: Error reading cache file:" (new Error("", "(unknown module)"))
JavaScript error: resource://gre/modules/TelemetryUtils.jsm, line 161: TypeError: date is undefined
1602952002401 Marionette INFO Listening on port 44079
1602952002475 Marionette WARN TLS certificate errors will be ignored for this session
Exiting due to channel error.
Exiting due to channel error.
Exiting due to channel error.
1603007098656 geckodriver INFO Listening on 127.0.0.1:39595
1603007099676 mozrunner::runner INFO Running command: "/usr/bin/firefox" "--marionette" "-foreground" "-no-remote" "-profile" "/tmp/rust_mozprofileVDdum1"
console.error: SearchCache: "_readCacheFile: Error reading cache file:" (new Error("", "(unknown module)"))
JavaScript error: resource://gre/modules/TelemetryUtils.jsm, line 161: TypeError: date is undefined
1603007103076 Marionette INFO Listening on port 36953
1603007103092 Marionette WARN TLS certificate errors will be ignored for this session
1603007130570 Marionette INFO Stopped listening on port 36953
1603007551113 geckodriver INFO Listening on 127.0.0.1:48959
1603007551119 mozrunner::runner INFO Running command: "/usr/bin/firefox" "--marionette" "-foreground" "-no-remote" "-profile" "/tmp/rust_mozprofilelWDDPZ"
console.error: SearchCache: "_readCacheFile: Error reading cache file:" (new Error("", "(unknown module)"))
JavaScript error: resource://gre/modules/TelemetryUtils.jsm, line 161: TypeError: date is undefined
1603007554338 Marionette INFO Listening on port 43603
1603007554432 Marionette WARN TLS certificate errors will be ignored for this session
1603007579555 Marionette INFO Stopped listening on port 43603
1603008000158 geckodriver INFO Listening on 127.0.0.1:39917
1603008000163 mozrunner::runner INFO Running command: "/usr/bin/firefox" "--marionette" "-foreground" "-no-remote" "-profile" "/tmp/rust_mozprofilej95HBY"
console.error: SearchCache: "_readCacheFile: Error reading cache file:" (new Error("", "(unknown module)"))
JavaScript error: resource://gre/modules/TelemetryUtils.jsm, line 161: TypeError: date is undefined
1603008003363 Marionette INFO Listening on port 41307
1603008003379 Marionette WARN TLS certificate errors will be ignored for this session
1603011827572 geckodriver INFO Listening on 127.0.0.1:54667
1603011827577 mozrunner::runner INFO Running command: "/usr/bin/firefox" "--marionette" "-foreground" "-no-remote" "-profile" "/tmp/rust_mozprofileAj8caT"
console.error: SearchCache: "_readCacheFile: Error reading cache file:" (new Error("", "(unknown module)"))
JavaScript error: resource://gre/modules/TelemetryUtils.jsm, line 161: TypeError: date is undefined
1603011830894 Marionette INFO Listening on port 34297
1603011830990 Marionette WARN TLS certificate errors will be ignored for this session
1603011855464 Marionette INFO Stopped listening on port 34297
###!!! [Child][RunMessage] Error: Channel closing: too late to send/recv, messages will be lost
1603012276110 geckodriver INFO Listening on 127.0.0.1:45499
1603012276116 mozrunner::runner INFO Running command: "/usr/bin/firefox" "--marionette" "-foreground" "-no-remote" "-profile" "/tmp/rust_mozprofilevoUDy1"
console.error: SearchCache: "_readCacheFile: Error reading cache file:" (new Error("", "(unknown module)"))
JavaScript error: resource://gre/modules/TelemetryUtils.jsm, line 161: TypeError: date is undefined
1603012279407 Marionette INFO Listening on port 38073
1603012279432 Marionette WARN TLS certificate errors will be ignored for this session
1603012305526 Marionette INFO Stopped listening on port 38073
###!!! [Child][MessageChannel] Error: (msgtype=0x5B0011,name=PHttpChannel::Msg___delete__) Channel closing: too late to send/recv, messages will be lost
1603012313589 Marionette INFO Stopped listening on port 41307
1603012726157 geckodriver INFO Listening on 127.0.0.1:47069
1603012726163 mozrunner::runner INFO Running command: "/usr/bin/firefox" "--marionette" "-foreground" "-no-remote" "-profile" "/tmp/rust_mozprofileWuhlQr"
console.error: SearchCache: "_readCacheFile: Error reading cache file:" (new Error("", "(unknown module)"))
JavaScript error: resource://gre/modules/TelemetryUtils.jsm, line 161: TypeError: date is undefined
1603012729382 Marionette INFO Listening on port 37987
1603012729476 Marionette WARN TLS certificate errors will be ignored for this session
1603012746979 Marionette INFO Stopped listening on port 37987
1603013167602 geckodriver INFO Listening on 127.0.0.1:49441
1603013167607 mozrunner::runner INFO Running command: "/usr/bin/firefox" "--marionette" "-foreground" "-no-remote" "-profile" "/tmp/rust_mozprofilesezX3b"
console.error: SearchCache: "_readCacheFile: Error reading cache file:" (new Error("", "(unknown module)"))
JavaScript error: resource://gre/modules/TelemetryUtils.jsm, line 161: TypeError: date is undefined
1603013170894 Marionette INFO Listening on port 41307
1603013170926 Marionette WARN TLS certificate errors will be ignored for this session
1603013190447 Marionette INFO Stopped listening on port 41307
1603013611069 geckodriver INFO Listening on 127.0.0.1:49717
1603013612081 mozrunner::runner INFO Running command: "/usr/bin/firefox" "--marionette" "-foreground" "-no-remote" "-profile" "/tmp/rust_mozprofileDKpI70"
console.error: SearchCache: "_readCacheFile: Error reading cache file:" (new Error("", "(unknown module)"))
JavaScript error: resource://gre/modules/TelemetryUtils.jsm, line 161: TypeError: date is undefined
1603013616165 Marionette INFO Listening on port 33605
1603013616215 Marionette WARN TLS certificate errors will be ignored for this session
1603013644513 Marionette INFO Stopped listening on port 33605
###!!! [Child][MessageChannel] Error: (msgtype=0x5B000D,name=PHttpChannel::Msg_DeletingChannel) Channel closing: too late to send/recv, messages will be lost
1603014065309 geckodriver INFO Listening on 127.0.0.1:35173
1603014065315 mozrunner::runner INFO Running command: "/usr/bin/firefox" "--marionette" "-foreground" "-no-remote" "-profile" "/tmp/rust_mozprofileIgM8b7"
console.error: SearchCache: "_readCacheFile: Error reading cache file:" (new Error("", "(unknown module)"))
JavaScript error: resource://gre/modules/TelemetryUtils.jsm, line 161: TypeError: date is undefined
1603014068493 Marionette INFO Listening on port 41169
1603014068531 Marionette WARN TLS certificate errors will be ignored for this session
1603014091493 Marionette INFO Stopped listening on port 41169
1603014512163 geckodriver INFO Listening on 127.0.0.1:36185
1603014512169 mozrunner::runner INFO Running command: "/usr/bin/firefox" "--marionette" "-foreground" "-no-remote" "-profile" "/tmp/rust_mozprofilevE97f4"
console.error: SearchCache: "_readCacheFile: Error reading cache file:" (new Error("", "(unknown module)"))
JavaScript error: resource://gre/modules/TelemetryUtils.jsm, line 161: TypeError: date is undefined
1603014515429 Marionette INFO Listening on port 41281
1603014515483 Marionette WARN TLS certificate errors will be ignored for this session
1603014541916 Marionette INFO Stopped listening on port 41281
1603014962618 geckodriver INFO Listening on 127.0.0.1:59245
1603014962623 mozrunner::runner INFO Running command: "/usr/bin/firefox" "--marionette" "-foreground" "-no-remote" "-profile" "/tmp/rust_mozprofileHZL2Ap"
console.error: SearchCache: "_readCacheFile: Error reading cache file:" (new Error("", "(unknown module)"))
JavaScript error: resource://gre/modules/TelemetryUtils.jsm, line 161: TypeError: date is undefined
1603014965604 Marionette INFO Listening on port 37385
1603014965642 Marionette WARN TLS certificate errors will be ignored for this session
1603014991635 Marionette INFO Stopped listening on port 37385
1603015412245 geckodriver INFO Listening on 127.0.0.1:38361
1603015412251 mozrunner::runner INFO Running command: "/usr/bin/firefox" "--marionette" "-foreground" "-no-remote" "-profile" "/tmp/rust_mozprofile0BADBQ"
console.error: SearchCache: "_readCacheFile: Error reading cache file:" (new Error("", "(unknown module)"))
JavaScript error: resource://gre/modules/TelemetryUtils.jsm, line 161: TypeError: date is undefined
1603015415401 Marionette INFO Listening on port 45591
1603015415463 Marionette WARN TLS certificate errors will be ignored for this session
console.error: Region.jsm: "Error fetching region" (new AbortError("The operation was aborted. ", (void 0), 697))
console.error: Region.jsm: "Failed to fetch region" (new Error("NO_RESULT", "resource://gre/modules/Region.jsm", 351))
1603015445107 Marionette INFO Stopped listening on port 45591
1603015865767 geckodriver INFO Listening on 127.0.0.1:60509
1603015865773 mozrunner::runner INFO Running command: "/usr/bin/firefox" "--marionette" "-foreground" "-no-remote" "-profile" "/tmp/rust_mozprofileB2u6Jq"
console.error: SearchCache: "_readCacheFile: Error reading cache file:" (new Error("", "(unknown module)"))
JavaScript error: resource://gre/modules/TelemetryUtils.jsm, line 161: TypeError: date is undefined
1603015868865 Marionette INFO Listening on port 40167
1603015868889 Marionette WARN TLS certificate errors will be ignored for this session
1603015891686 Marionette INFO Stopped listening on port 40167
1603016312335 geckodriver INFO Listening on 127.0.0.1:50993
1603016312340 mozrunner::runner INFO Running command: "/usr/bin/firefox" "--marionette" "-foreground" "-no-remote" "-profile" "/tmp/rust_mozprofileZ7CCkl"
console.error: SearchCache: "_readCacheFile: Error reading cache file:" (new Error("", "(unknown module)"))
JavaScript error: resource://gre/modules/TelemetryUtils.jsm, line 161: TypeError: date is undefined
1603016315483 Marionette INFO Listening on port 41715
1603016315557 Marionette WARN TLS certificate errors will be ignored for this session
1603016333238 Marionette INFO Stopped listening on port 41715
1603016753887 geckodriver INFO Listening on 127.0.0.1:60901
1603016753893 mozrunner::runner INFO Running command: "/usr/bin/firefox" "--marionette" "-foreground" "-no-remote" "-profile" "/tmp/rust_mozprofileBkK58p"
console.error: SearchCache: "_readCacheFile: Error reading cache file:" (new Error("", "(unknown module)"))
JavaScript error: resource://gre/modules/TelemetryUtils.jsm, line 161: TypeError: date is undefined
1603016757131 Marionette INFO Listening on port 39743
1603016757205 Marionette WARN TLS certificate errors will be ignored for this session
1603016773567 Marionette INFO Stopped listening on port 39743
1603017194200 geckodriver INFO Listening on 127.0.0.1:45517
1603017194205 mozrunner::runner INFO Running command: "/usr/bin/firefox" "--marionette" "-foreground" "-no-remote" "-profile" "/tmp/rust_mozprofileqoP7Mn"
console.error: SearchCache: "_readCacheFile: Error reading cache file:" (new Error("", "(unknown module)"))
JavaScript error: resource://gre/modules/TelemetryUtils.jsm, line 161: TypeError: date is undefined
1603017197358 Marionette INFO Listening on port 45551
1603017197416 Marionette WARN TLS certificate errors will be ignored for this session
1603017222055 Marionette INFO Stopped listening on port 45551
1603017642638 geckodriver INFO Listening on 127.0.0.1:53067
1603017642644 mozrunner::runner INFO Running command: "/usr/bin/firefox" "--marionette" "-foreground" "-no-remote" "-profile" "/tmp/rust_mozprofile2QjWSF"
console.error: SearchCache: "_readCacheFile: Error reading cache file:" (new Error("", "(unknown module)"))
JavaScript error: resource://gre/modules/TelemetryUtils.jsm, line 161: TypeError: date is undefined
1603017645674 Marionette INFO Listening on port 43243
1603017645756 Marionette WARN TLS certificate errors will be ignored for this session
1603017668715 Marionette INFO Stopped listening on port 43243
1603018089286 geckodriver INFO Listening on 127.0.0.1:52447
1603018089300 mozrunner::runner INFO Running command: "/usr/bin/firefox" "--marionette" "-foreground" "-no-remote" "-profile" "/tmp/rust_mozprofilevGNUpa"
console.error: SearchCache: "_readCacheFile: Error reading cache file:" (new Error("", "(unknown module)"))
JavaScript error: resource://gre/modules/TelemetryUtils.jsm, line 161: TypeError: date is undefined
1603018092411 Marionette INFO Listening on port 43297
1603018092512 Marionette WARN TLS certificate errors will be ignored for this session
1603018116183 Marionette INFO Stopped listening on port 43297
###!!! [Child][RunMessage] Error: Channel closing: too late to send/recv, messages will be lost
1603018536835 geckodriver INFO Listening on 127.0.0.1:46133
1603018536840 mozrunner::runner INFO Running command: "/usr/bin/firefox" "--marionette" "-foreground" "-no-remote" "-profile" "/tmp/rust_mozprofileeAFENL"
console.error: SearchCache: "_readCacheFile: Error reading cache file:" (new Error("", "(unknown module)"))
JavaScript error: resource://gre/modules/TelemetryUtils.jsm, line 161: TypeError: date is undefined
1603018539793 Marionette INFO Listening on port 36873
1603018539851 Marionette WARN TLS certificate errors will be ignored for this session
1603018565706 Marionette INFO Stopped listening on port 36873
1603018986254 geckodriver INFO Listening on 127.0.0.1:60187
1603018986260 mozrunner::runner INFO Running command: "/usr/bin/firefox" "--marionette" "-foreground" "-no-remote" "-profile" "/tmp/rust_mozprofile6MYklh"
console.error: SearchCache: "_readCacheFile: Error reading cache file:" (new Error("", "(unknown module)"))
JavaScript error: resource://gre/modules/TelemetryUtils.jsm, line 161: TypeError: date is undefined
1603018989329 Marionette INFO Listening on port 41881
1603018989371 Marionette WARN TLS certificate errors will be ignored for this session
Corrupt JPEG data: premature end of data segment
1603023586280 geckodriver INFO Listening on 127.0.0.1:52219
1603023586286 mozrunner::runner INFO Running command: "/usr/bin/firefox" "--marionette" "-foreground" "-no-remote" "-profile" "/tmp/rust_mozprofilepo5d6I"
console.error: SearchCache: "_readCacheFile: Error reading cache file:" (new Error("", "(unknown module)"))
JavaScript error: resource://gre/modules/TelemetryUtils.jsm, line 161: TypeError: date is undefined
1603023589362 Marionette INFO Listening on port 43645
1603023589397 Marionette WARN TLS certificate errors will be ignored for this session
1603023612480 Marionette INFO Stopped listening on port 43645
###!!! [Child][RunMessage] Error: Channel closing: too late to send/recv, messages will be lost
1603024033125 geckodriver INFO Listening on 127.0.0.1:53495
1603024033130 mozrunner::runner INFO Running command: "/usr/bin/firefox" "--marionette" "-foreground" "-no-remote" "-profile" "/tmp/rust_mozprofileWE1u1X"
console.error: SearchCache: "_readCacheFile: Error reading cache file:" (new Error("", "(unknown module)"))
JavaScript error: resource://gre/modules/TelemetryUtils.jsm, line 161: TypeError: date is undefined
1603024035875 Marionette INFO Listening on port 43455
1603024035943 Marionette WARN TLS certificate errors will be ignored for this session
1603024064994 Marionette INFO Stopped listening on port 43455
1603024485630 geckodriver INFO Listening on 127.0.0.1:36085
1603024485636 mozrunner::runner INFO Running command: "/usr/bin/firefox" "--marionette" "-foreground" "-no-remote" "-profile" "/tmp/rust_mozprofilegZjNdu"
console.error: SearchCache: "_readCacheFile: Error reading cache file:" (new Error("", "(unknown module)"))
JavaScript error: resource://gre/modules/TelemetryUtils.jsm, line 161: TypeError: date is undefined
1603024488158 Marionette INFO Listening on port 39039
1603024488245 Marionette WARN TLS certificate errors will be ignored for this session
1603024509952 Marionette INFO Stopped listening on port 39039
1603024930442 geckodriver INFO Listening on 127.0.0.1:49763
1603024930447 mozrunner::runner INFO Running command: "/usr/bin/firefox" "--marionette" "-foreground" "-no-remote" "-profile" "/tmp/rust_mozprofileVl39pI"
console.error: SearchCache: "_readCacheFile: Error reading cache file:" (new Error("", "(unknown module)"))
JavaScript error: resource://gre/modules/TelemetryUtils.jsm, line 161: TypeError: date is undefined
1603024932908 Marionette INFO Listening on port 41339
1603024932963 Marionette WARN TLS certificate errors will be ignored for this session
1603024948888 Marionette INFO Stopped listening on port 41339
1603025369412 geckodriver INFO Listening on 127.0.0.1:40647
1603025369419 mozrunner::runner INFO Running command: "/usr/bin/firefox" "--marionette" "-foreground" "-no-remote" "-profile" "/tmp/rust_mozprofile6FUkCz"
console.error: SearchCache: "_readCacheFile: Error reading cache file:" (new Error("", "(unknown module)"))
JavaScript error: resource://gre/modules/TelemetryUtils.jsm, line 161: TypeError: date is undefined
1603025371975 Marionette INFO Listening on port 36027
1603025372028 Marionette WARN TLS certificate errors will be ignored for this session
1603025391964 Marionette INFO Stopped listening on port 36027
1603025812467 geckodriver INFO Listening on 127.0.0.1:34547
1603025812473 mozrunner::runner INFO Running command: "/usr/bin/firefox" "--marionette" "-foreground" "-no-remote" "-profile" "/tmp/rust_mozprofileVzb3Zl"
console.error: SearchCache: "_readCacheFile: Error reading cache file:" (new Error("", "(unknown module)"))
JavaScript error: resource://gre/modules/TelemetryUtils.jsm, line 161: TypeError: date is undefined
1603025814934 Marionette INFO Listening on port 39071
1603025814997 Marionette WARN TLS certificate errors will be ignored for this session
1603025829700 Marionette INFO Stopped listening on port 39071
1603026250235 geckodriver INFO Listening on 127.0.0.1:39869
1603026250241 mozrunner::runner INFO Running command: "/usr/bin/firefox" "--marionette" "-foreground" "-no-remote" "-profile" "/tmp/rust_mozprofileIocu7T"
console.error: SearchCache: "_readCacheFile: Error reading cache file:" (new Error("", "(unknown module)"))
JavaScript error: resource://gre/modules/TelemetryUtils.jsm, line 161: TypeError: date is undefined
1603026252620 Marionette INFO Listening on port 45887
1603026252655 Marionette WARN TLS certificate errors will be ignored for this session
1603026272352 Marionette INFO Stopped listening on port 45887
1603026692861 geckodriver INFO Listening on 127.0.0.1:47781
1603026692868 mozrunner::runner INFO Running command: "/usr/bin/firefox" "--marionette" "-foreground" "-no-remote" "-profile" "/tmp/rust_mozprofile4PwHxm"
console.error: SearchCache: "_readCacheFile: Error reading cache file:" (new Error("", "(unknown module)"))
JavaScript error: resource://gre/modules/TelemetryUtils.jsm, line 161: TypeError: date is undefined
1603026695581 Marionette INFO Listening on port 44319
1603026695678 Marionette WARN TLS certificate errors will be ignored for this session
1603026716198 Marionette INFO Stopped listening on port 44319
1603027136718 geckodriver INFO Listening on 127.0.0.1:57209
1603027136724 mozrunner::runner INFO Running command: "/usr/bin/firefox" "--marionette" "-foreground" "-no-remote" "-profile" "/tmp/rust_mozprofileYRyW9l"
console.error: SearchCache: "_readCacheFile: Error reading cache file:" (new Error("", "(unknown module)"))
JavaScript error: resource://gre/modules/TelemetryUtils.jsm, line 161: TypeError: date is undefined
1603027139101 Marionette INFO Listening on port 34539
1603027139137 Marionette WARN TLS certificate errors will be ignored for this session
1603027152993 Marionette INFO Stopped listening on port 34539
1603027573490 geckodriver INFO Listening on 127.0.0.1:43797
1603027573495 mozrunner::runner INFO Running command: "/usr/bin/firefox" "--marionette" "-foreground" "-no-remote" "-profile" "/tmp/rust_mozprofilevLpwz4"
console.error: SearchCache: "_readCacheFile: Error reading cache file:" (new Error("", "(unknown module)"))
JavaScript error: resource://gre/modules/TelemetryUtils.jsm, line 161: TypeError: date is undefined
1603027575884 Marionette INFO Listening on port 35953
1603027575915 Marionette WARN TLS certificate errors will be ignored for this session
1603027592867 Marionette INFO Stopped listening on port 35953
1603028013405 geckodriver INFO Listening on 127.0.0.1:47151
1603028013411 mozrunner::runner INFO Running command: "/usr/bin/firefox" "--marionette" "-foreground" "-no-remote" "-profile" "/tmp/rust_mozprofileBku18B"
console.error: SearchCache: "_readCacheFile: Error reading cache file:" (new Error("", "(unknown module)"))
JavaScript error: resource://gre/modules/TelemetryUtils.jsm, line 161: TypeError: date is undefined
1603028016100 Marionette INFO Listening on port 43349
1603028016126 Marionette WARN TLS certificate errors will be ignored for this session
1603028041023 Marionette INFO Stopped listening on port 43349
###!!! [Child][RunMessage] Error: Channel closing: too late to send/recv, messages will be lost
1603028461524 geckodriver INFO Listening on 127.0.0.1:47491
1603028461530 mozrunner::runner INFO Running command: "/usr/bin/firefox" "--marionette" "-foreground" "-no-remote" "-profile" "/tmp/rust_mozprofilehlkiZo"
console.error: SearchCache: "_readCacheFile: Error reading cache file:" (new Error("", "(unknown module)"))
JavaScript error: resource://gre/modules/TelemetryUtils.jsm, line 161: TypeError: date is undefined
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", 351))
1603028464596 Marionette INFO Listening on port 42277
1603028464643 Marionette WARN TLS certificate errors will be ignored for this session
1603028535704 geckodriver INFO Listening on 127.0.0.1:53581
1603028535709 mozrunner::runner INFO Running command: "/usr/bin/firefox" "--marionette" "-foreground" "-no-remote" "-profile" "/tmp/rust_mozprofileniYkey"
console.error: SearchCache: "_readCacheFile: Error reading cache file:" (new Error("", "(unknown module)"))
JavaScript error: resource://gre/modules/TelemetryUtils.jsm, line 161: TypeError: date is undefined
1603028539238 Marionette INFO Listening on port 38545
1603028539323 Marionette WARN TLS certificate errors will be ignored for this session
1603028567579 Marionette INFO Stopped listening on port 38545
1603028988217 geckodriver INFO Listening on 127.0.0.1:34341
1603028988223 mozrunner::runner INFO Running command: "/usr/bin/firefox" "--marionette" "-foreground" "-no-remote" "-profile" "/tmp/rust_mozprofileusxFkp"
console.error: SearchCache: "_readCacheFile: Error reading cache file:" (new Error("", "(unknown module)"))
JavaScript error: resource://gre/modules/TelemetryUtils.jsm, line 161: TypeError: date is undefined
1603028991716 Marionette INFO Listening on port 40971
1603028991743 Marionette WARN TLS certificate errors will be ignored for this session
1603029007599 Marionette INFO Stopped listening on port 40971
1603029287129 Marionette INFO Stopped listening on port 42277
1603029291708 Marionette INFO Stopped listening on port 41881
1603029428233 geckodriver INFO Listening on 127.0.0.1:41525
1603029428239 mozrunner::runner INFO Running command: "/usr/bin/firefox" "--marionette" "-foreground" "-no-remote" "-profile" "/tmp/rust_mozprofileEGcbVg"
console.error: SearchCache: "_readCacheFile: Error reading cache file:" (new Error("", "(unknown module)"))
JavaScript error: resource://gre/modules/TelemetryUtils.jsm, line 161: TypeError: date is undefined
1603029431912 Marionette INFO Listening on port 40389
1603029431951 Marionette WARN TLS certificate errors will be ignored for this session
1603029450341 Marionette INFO Stopped listening on port 40389
1603029871081 geckodriver INFO Listening on 127.0.0.1:37921
1603029871087 mozrunner::runner INFO Running command: "/usr/bin/firefox" "--marionette" "-foreground" "-no-remote" "-profile" "/tmp/rust_mozprofileoC6R51"
console.error: SearchCache: "_readCacheFile: Error reading cache file:" (new Error("", "(unknown module)"))
JavaScript error: resource://gre/modules/TelemetryUtils.jsm, line 161: TypeError: date is undefined
1603029874682 Marionette INFO Listening on port 38501
1603029874715 Marionette WARN TLS certificate errors will be ignored for this session
1603029894212 Marionette INFO Stopped listening on port 38501
1603030314990 geckodriver INFO Listening on 127.0.0.1:35383
1603030315999 mozrunner::runner INFO Running command: "/usr/bin/firefox" "--marionette" "-foreground" "-no-remote" "-profile" "/tmp/rust_mozprofilesugzah"
console.error: SearchCache: "_readCacheFile: Error reading cache file:" (new Error("", "(unknown module)"))
JavaScript error: resource://gre/modules/TelemetryUtils.jsm, line 161: TypeError: date is undefined
1603030319738 Marionette INFO Listening on port 42037
1603030319824 Marionette WARN TLS certificate errors will be ignored for this session
1603030336955 Marionette INFO Stopped listening on port 42037
###!!! [Child][RunMessage] Error: Channel closing: too late to send/recv, messages will be lost
1603030757708 geckodriver INFO Listening on 127.0.0.1:37845
1603030757714 mozrunner::runner INFO Running command: "/usr/bin/firefox" "--marionette" "-foreground" "-no-remote" "-profile" "/tmp/rust_mozprofileZ4pP9r"
console.error: SearchCache: "_readCacheFile: Error reading cache file:" (new Error("", "(unknown module)"))
JavaScript error: resource://gre/modules/TelemetryUtils.jsm, line 161: TypeError: date is undefined
1603030760991 Marionette INFO Listening on port 44319
1603030761026 Marionette WARN TLS certificate errors will be ignored for this session
1603030778728 Marionette INFO Stopped listening on port 44319
1603031199453 geckodriver INFO Listening on 127.0.0.1:55037
1603031199469 mozrunner::runner INFO Running command: "/usr/bin/firefox" "--marionette" "-foreground" "-no-remote" "-profile" "/tmp/rust_mozprofiletG2w2m"
console.error: SearchCache: "_readCacheFile: Error reading cache file:" (new Error("", "(unknown module)"))
JavaScript error: resource://gre/modules/TelemetryUtils.jsm, line 161: TypeError: date is undefined
1603031203135 Marionette INFO Listening on port 35721
1603031203183 Marionette WARN TLS certificate errors will be ignored for this session
1603031219973 Marionette INFO Stopped listening on port 35721
1603031640720 geckodriver INFO Listening on 127.0.0.1:45937
1603031640730 mozrunner::runner INFO Running command: "/usr/bin/firefox" "--marionette" "-foreground" "-no-remote" "-profile" "/tmp/rust_mozprofileW5UeNn"
console.error: SearchCache: "_readCacheFile: Error reading cache file:" (new Error("", "(unknown module)"))
JavaScript error: resource://gre/modules/TelemetryUtils.jsm, line 161: TypeError: date is undefined
1603031643929 Marionette INFO Listening on port 42631
1603031643944 Marionette WARN TLS certificate errors will be ignored for this session
1603031660563 Marionette INFO Stopped listening on port 42631
1603032081285 geckodriver INFO Listening on 127.0.0.1:37733
1603032081291 mozrunner::runner INFO Running command: "/usr/bin/firefox" "--marionette" "-foreground" "-no-remote" "-profile" "/tmp/rust_mozprofilexZMFU6"
console.error: SearchCache: "_readCacheFile: Error reading cache file:" (new Error("", "(unknown module)"))
JavaScript error: resource://gre/modules/TelemetryUtils.jsm, line 161: TypeError: date is undefined
1603032084525 Marionette INFO Listening on port 42637
1603032084602 Marionette WARN TLS certificate errors will be ignored for this session
1603032105144 Marionette INFO Stopped listening on port 42637
1603032525719 geckodriver INFO Listening on 127.0.0.1:41635
1603032525725 mozrunner::runner INFO Running command: "/usr/bin/firefox" "--marionette" "-foreground" "-no-remote" "-profile" "/tmp/rust_mozprofileXmmmrt"
console.error: SearchCache: "_readCacheFile: Error reading cache file:" (new Error("", "(unknown module)"))
JavaScript error: resource://gre/modules/TelemetryUtils.jsm, line 161: TypeError: date is undefined
1603032529220 Marionette INFO Listening on port 36767
1603032529255 Marionette WARN TLS certificate errors will be ignored for this session
1603032547504 Marionette INFO Stopped listening on port 36767
1603032968109 geckodriver INFO Listening on 127.0.0.1:58989
1603032968114 mozrunner::runner INFO Running command: "/usr/bin/firefox" "--marionette" "-foreground" "-no-remote" "-profile" "/tmp/rust_mozprofileVKpYtV"
console.error: SearchCache: "_readCacheFile: Error reading cache file:" (new Error("", "(unknown module)"))
JavaScript error: resource://gre/modules/TelemetryUtils.jsm, line 161: TypeError: date is undefined
1603032971332 Marionette INFO Listening on port 40959
1603032971427 Marionette WARN TLS certificate errors will be ignored for this session
1603032988490 Marionette INFO Stopped listening on port 40959
1603033409072 geckodriver INFO Listening on 127.0.0.1:38861
1603033409077 mozrunner::runner INFO Running command: "/usr/bin/firefox" "--marionette" "-foreground" "-no-remote" "-profile" "/tmp/rust_mozprofilePCln28"
console.error: SearchCache: "_readCacheFile: Error reading cache file:" (new Error("", "(unknown module)"))
JavaScript error: resource://gre/modules/TelemetryUtils.jsm, line 161: TypeError: date is undefined
1603033412304 Marionette INFO Listening on port 41085
1603033412389 Marionette WARN TLS certificate errors will be ignored for this session