-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathgeckodriver.log
5616 lines (5554 loc) · 702 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
1579154336168 mozrunner::runner INFO Running command: "C:\\Program Files\\Mozilla Firefox\\firefox.exe" "-marionette" "-headless" "-foreground" "-no-remote" "-profile" "C:\\Users\\MIDAV\\AppData\\Local\\Temp\\rust_mozprofile.0cLm5voRNAoH"
*** You are running in headless mode.
1579154336924 [email protected] WARN Loading extension '[email protected]': Reading manifest: Invalid extension permission: networkStatus
1579154337179 [email protected] WARN Loading extension '[email protected]': Reading manifest: Invalid extension permission: mozillaAddons
1579154337179 [email protected] WARN Loading extension '[email protected]': Reading manifest: Invalid extension permission: telemetry
1579154337180 [email protected] WARN Loading extension '[email protected]': Reading manifest: Invalid extension permission: resource://pdf.js/
1579154337180 [email protected] WARN Loading extension '[email protected]': Reading manifest: Invalid extension permission: about:reader*
JavaScript error: resource://gre/modules/XULStore.jsm, line 66: Error: Can't find profile directory.
1579154340619 Marionette INFO Listening on port 15270
1579154341078 Marionette WARN TLS certificate errors will be ignored for this session
1579154355917 Marionette INFO Stopped listening on port 15270
1579195121053 mozrunner::runner INFO Running command: "C:\\Program Files\\Mozilla Firefox\\firefox.exe" "-marionette" "-headless" "-foreground" "-no-remote" "-profile" "C:\\Users\\MIDAV\\AppData\\Local\\Temp\\rust_mozprofile.jsN3mt7Jtivb"
*** You are running in headless mode.
1579195121785 [email protected] WARN Loading extension '[email protected]': Reading manifest: Invalid extension permission: networkStatus
1579195121877 [email protected] WARN Loading extension '[email protected]': Reading manifest: Invalid extension permission: mozillaAddons
1579195121877 [email protected] WARN Loading extension '[email protected]': Reading manifest: Invalid extension permission: telemetry
1579195121877 [email protected] WARN Loading extension '[email protected]': Reading manifest: Invalid extension permission: resource://pdf.js/
1579195121877 [email protected] WARN Loading extension '[email protected]': Reading manifest: Invalid extension permission: about:reader*
JavaScript error: resource://gre/modules/XULStore.jsm, line 66: Error: Can't find profile directory.
1579195123609 Marionette INFO Listening on port 15714
1579195123745 Marionette WARN TLS certificate errors will be ignored for this session
1579195135951 Marionette INFO Stopped listening on port 15714
1579196068600 mozrunner::runner INFO Running command: "C:\\Program Files\\Mozilla Firefox\\firefox.exe" "-marionette" "-headless" "-foreground" "-no-remote" "-profile" "C:\\Users\\MIDAV\\AppData\\Local\\Temp\\rust_mozprofile.vNZIsWamlLVN"
*** You are running in headless mode.
1579196069401 [email protected] WARN Loading extension '[email protected]': Reading manifest: Invalid extension permission: networkStatus
1579196069520 [email protected] WARN Loading extension '[email protected]': Reading manifest: Invalid extension permission: mozillaAddons
1579196069520 [email protected] WARN Loading extension '[email protected]': Reading manifest: Invalid extension permission: telemetry
1579196069520 [email protected] WARN Loading extension '[email protected]': Reading manifest: Invalid extension permission: resource://pdf.js/
1579196069520 [email protected] WARN Loading extension '[email protected]': Reading manifest: Invalid extension permission: about:reader*
JavaScript error: resource://gre/modules/XULStore.jsm, line 66: Error: Can't find profile directory.
1579196071352 Marionette INFO Listening on port 16267
1579196071744 Marionette WARN TLS certificate errors will be ignored for this session
1579196130581 mozrunner::runner INFO Running command: "C:\\Program Files\\Mozilla Firefox\\firefox.exe" "-marionette" "-headless" "-foreground" "-no-remote" "-profile" "C:\\Users\\MIDAV\\AppData\\Local\\Temp\\rust_mozprofile.BGm5IYYfqpaZ"
*** You are running in headless mode.
1579196131122 [email protected] WARN Loading extension '[email protected]': Reading manifest: Invalid extension permission: networkStatus
1579196131248 [email protected] WARN Loading extension '[email protected]': Reading manifest: Invalid extension permission: mozillaAddons
1579196131248 [email protected] WARN Loading extension '[email protected]': Reading manifest: Invalid extension permission: telemetry
1579196131248 [email protected] WARN Loading extension '[email protected]': Reading manifest: Invalid extension permission: resource://pdf.js/
1579196131248 [email protected] WARN Loading extension '[email protected]': Reading manifest: Invalid extension permission: about:reader*
JavaScript error: resource://gre/modules/XULStore.jsm, line 66: Error: Can't find profile directory.
1579196133142 Marionette INFO Listening on port 16421
1579196133207 Marionette WARN TLS certificate errors will be ignored for this session
1579196145208 Marionette INFO Stopped listening on port 16421
1579196253662 mozrunner::runner INFO Running command: "C:\\Program Files\\Mozilla Firefox\\firefox.exe" "-marionette" "-headless" "-foreground" "-no-remote" "-profile" "C:\\Users\\MIDAV\\AppData\\Local\\Temp\\rust_mozprofile.YkIxSin38R2X"
*** You are running in headless mode.
1579196254051 [email protected] WARN Loading extension '[email protected]': Reading manifest: Invalid extension permission: networkStatus
1579196254140 [email protected] WARN Loading extension '[email protected]': Reading manifest: Invalid extension permission: mozillaAddons
1579196254140 [email protected] WARN Loading extension '[email protected]': Reading manifest: Invalid extension permission: telemetry
1579196254140 [email protected] WARN Loading extension '[email protected]': Reading manifest: Invalid extension permission: resource://pdf.js/
1579196254140 [email protected] WARN Loading extension '[email protected]': Reading manifest: Invalid extension permission: about:reader*
JavaScript error: resource://gre/modules/XULStore.jsm, line 66: Error: Can't find profile directory.
1579196255782 Marionette INFO Listening on port 16618
1579196255833 Marionette WARN TLS certificate errors will be ignored for this session
1579196268063 Marionette INFO Stopped listening on port 16618
1579196481815 mozrunner::runner INFO Running command: "C:\\Program Files\\Mozilla Firefox\\firefox.exe" "-marionette" "-headless" "-foreground" "-no-remote" "-profile" "C:\\Users\\MIDAV\\AppData\\Local\\Temp\\rust_mozprofile.pOJopqgKWRLj"
*** You are running in headless mode.
1579196482176 [email protected] WARN Loading extension '[email protected]': Reading manifest: Invalid extension permission: networkStatus
1579196482260 [email protected] WARN Loading extension '[email protected]': Reading manifest: Invalid extension permission: mozillaAddons
1579196482260 [email protected] WARN Loading extension '[email protected]': Reading manifest: Invalid extension permission: telemetry
1579196482260 [email protected] WARN Loading extension '[email protected]': Reading manifest: Invalid extension permission: resource://pdf.js/
1579196482260 [email protected] WARN Loading extension '[email protected]': Reading manifest: Invalid extension permission: about:reader*
JavaScript error: resource://gre/modules/XULStore.jsm, line 66: Error: Can't find profile directory.
1579196483733 Marionette INFO Listening on port 16807
1579196483867 Marionette WARN TLS certificate errors will be ignored for this session
1579196514631 mozrunner::runner INFO Running command: "C:\\Program Files\\Mozilla Firefox\\firefox.exe" "-marionette" "-headless" "-foreground" "-no-remote" "-profile" "C:\\Users\\MIDAV\\AppData\\Local\\Temp\\rust_mozprofile.t92olcRU9GSO"
*** You are running in headless mode.
1579196515056 [email protected] WARN Loading extension '[email protected]': Reading manifest: Invalid extension permission: networkStatus
1579196515154 [email protected] WARN Loading extension '[email protected]': Reading manifest: Invalid extension permission: mozillaAddons
1579196515154 [email protected] WARN Loading extension '[email protected]': Reading manifest: Invalid extension permission: telemetry
1579196515154 [email protected] WARN Loading extension '[email protected]': Reading manifest: Invalid extension permission: resource://pdf.js/
1579196515154 [email protected] WARN Loading extension '[email protected]': Reading manifest: Invalid extension permission: about:reader*
JavaScript error: resource://gre/modules/XULStore.jsm, line 66: Error: Can't find profile directory.
1579196516713 Marionette INFO Listening on port 16923
1579196516771 Marionette WARN TLS certificate errors will be ignored for this session
1579196528434 Marionette INFO Stopped listening on port 16923
1579196563610 mozrunner::runner INFO Running command: "C:\\Program Files\\Mozilla Firefox\\firefox.exe" "-marionette" "-headless" "-foreground" "-no-remote" "-profile" "C:\\Users\\MIDAV\\AppData\\Local\\Temp\\rust_mozprofile.TOlLbruInDQD"
*** You are running in headless mode.
1579196563953 [email protected] WARN Loading extension '[email protected]': Reading manifest: Invalid extension permission: networkStatus
1579196564046 [email protected] WARN Loading extension '[email protected]': Reading manifest: Invalid extension permission: mozillaAddons
1579196564046 [email protected] WARN Loading extension '[email protected]': Reading manifest: Invalid extension permission: telemetry
1579196564046 [email protected] WARN Loading extension '[email protected]': Reading manifest: Invalid extension permission: resource://pdf.js/
1579196564046 [email protected] WARN Loading extension '[email protected]': Reading manifest: Invalid extension permission: about:reader*
JavaScript error: resource://gre/modules/XULStore.jsm, line 66: Error: Can't find profile directory.
1579196565497 Marionette INFO Listening on port 17032
1579196565649 Marionette WARN TLS certificate errors will be ignored for this session
1579196577705 Marionette INFO Stopped listening on port 17032
1579196659875 mozrunner::runner INFO Running command: "C:\\Program Files\\Mozilla Firefox\\firefox.exe" "-marionette" "-headless" "-foreground" "-no-remote" "-profile" "C:\\Users\\MIDAV\\AppData\\Local\\Temp\\rust_mozprofile.sDCLFrvECNVa"
*** You are running in headless mode.
1579196660253 [email protected] WARN Loading extension '[email protected]': Reading manifest: Invalid extension permission: networkStatus
1579196660340 [email protected] WARN Loading extension '[email protected]': Reading manifest: Invalid extension permission: mozillaAddons
1579196660340 [email protected] WARN Loading extension '[email protected]': Reading manifest: Invalid extension permission: telemetry
1579196660340 [email protected] WARN Loading extension '[email protected]': Reading manifest: Invalid extension permission: resource://pdf.js/
1579196660340 [email protected] WARN Loading extension '[email protected]': Reading manifest: Invalid extension permission: about:reader*
JavaScript error: resource://gre/modules/XULStore.jsm, line 66: Error: Can't find profile directory.
1579196661935 Marionette INFO Listening on port 17221
1579196662026 Marionette WARN TLS certificate errors will be ignored for this session
1579196673756 Marionette INFO Stopped listening on port 17221
1579196751946 mozrunner::runner INFO Running command: "C:\\Program Files\\Mozilla Firefox\\firefox.exe" "-marionette" "-headless" "-foreground" "-no-remote" "-profile" "C:\\Users\\MIDAV\\AppData\\Local\\Temp\\rust_mozprofile.luFTnwqNXMdr"
*** You are running in headless mode.
1579196752289 [email protected] WARN Loading extension '[email protected]': Reading manifest: Invalid extension permission: networkStatus
1579196752375 [email protected] WARN Loading extension '[email protected]': Reading manifest: Invalid extension permission: mozillaAddons
1579196752375 [email protected] WARN Loading extension '[email protected]': Reading manifest: Invalid extension permission: telemetry
1579196752375 [email protected] WARN Loading extension '[email protected]': Reading manifest: Invalid extension permission: resource://pdf.js/
1579196752376 [email protected] WARN Loading extension '[email protected]': Reading manifest: Invalid extension permission: about:reader*
JavaScript error: resource://gre/modules/XULStore.jsm, line 66: Error: Can't find profile directory.
1579196753867 Marionette INFO Listening on port 17361
1579196753977 Marionette WARN TLS certificate errors will be ignored for this session
1579196766490 Marionette INFO Stopped listening on port 17361
1579196787317 mozrunner::runner INFO Running command: "C:\\Program Files\\Mozilla Firefox\\firefox.exe" "-marionette" "-headless" "-foreground" "-no-remote" "-profile" "C:\\Users\\MIDAV\\AppData\\Local\\Temp\\rust_mozprofile.6bpkzKThOIxS"
*** You are running in headless mode.
1579196787703 [email protected] WARN Loading extension '[email protected]': Reading manifest: Invalid extension permission: networkStatus
1579196787788 [email protected] WARN Loading extension '[email protected]': Reading manifest: Invalid extension permission: mozillaAddons
1579196787788 [email protected] WARN Loading extension '[email protected]': Reading manifest: Invalid extension permission: telemetry
1579196787789 [email protected] WARN Loading extension '[email protected]': Reading manifest: Invalid extension permission: resource://pdf.js/
1579196787789 [email protected] WARN Loading extension '[email protected]': Reading manifest: Invalid extension permission: about:reader*
JavaScript error: resource://gre/modules/XULStore.jsm, line 66: Error: Can't find profile directory.
1579196789407 Marionette INFO Listening on port 17494
1579196789469 Marionette WARN TLS certificate errors will be ignored for this session
1579196801452 Marionette INFO Stopped listening on port 17494
1579196868736 mozrunner::runner INFO Running command: "C:\\Program Files\\Mozilla Firefox\\firefox.exe" "-marionette" "-headless" "-foreground" "-no-remote" "-profile" "C:\\Users\\MIDAV\\AppData\\Local\\Temp\\rust_mozprofile.zxMOyb3y5gq7"
*** You are running in headless mode.
1579196869158 [email protected] WARN Loading extension '[email protected]': Reading manifest: Invalid extension permission: networkStatus
1579196869247 [email protected] WARN Loading extension '[email protected]': Reading manifest: Invalid extension permission: mozillaAddons
1579196869247 [email protected] WARN Loading extension '[email protected]': Reading manifest: Invalid extension permission: telemetry
1579196869247 [email protected] WARN Loading extension '[email protected]': Reading manifest: Invalid extension permission: resource://pdf.js/
1579196869247 [email protected] WARN Loading extension '[email protected]': Reading manifest: Invalid extension permission: about:reader*
JavaScript error: resource://gre/modules/XULStore.jsm, line 66: Error: Can't find profile directory.
1579196870728 Marionette INFO Listening on port 17661
1579196870778 Marionette WARN TLS certificate errors will be ignored for this session
1579196882608 Marionette INFO Stopped listening on port 17661
1579197180407 mozrunner::runner INFO Running command: "C:\\Program Files\\Mozilla Firefox\\firefox.exe" "-marionette" "-headless" "-foreground" "-no-remote" "-profile" "C:\\Users\\MIDAV\\AppData\\Local\\Temp\\rust_mozprofile.a0ouBFhanrzd"
*** You are running in headless mode.
1579197180757 [email protected] WARN Loading extension '[email protected]': Reading manifest: Invalid extension permission: networkStatus
1579197180842 [email protected] WARN Loading extension '[email protected]': Reading manifest: Invalid extension permission: mozillaAddons
1579197180842 [email protected] WARN Loading extension '[email protected]': Reading manifest: Invalid extension permission: telemetry
1579197180842 [email protected] WARN Loading extension '[email protected]': Reading manifest: Invalid extension permission: resource://pdf.js/
1579197180843 [email protected] WARN Loading extension '[email protected]': Reading manifest: Invalid extension permission: about:reader*
JavaScript error: resource://gre/modules/XULStore.jsm, line 66: Error: Can't find profile directory.
1579197182634 Marionette INFO Listening on port 17954
1579197183033 Marionette WARN TLS certificate errors will be ignored for this session
1579197195819 Marionette INFO Stopped listening on port 17954
1579197311172 mozrunner::runner INFO Running command: "C:\\Program Files\\Mozilla Firefox\\firefox.exe" "-marionette" "-headless" "-foreground" "-no-remote" "-profile" "C:\\Users\\MIDAV\\AppData\\Local\\Temp\\rust_mozprofile.3sYrir1d190c"
*** You are running in headless mode.
1579197311540 [email protected] WARN Loading extension '[email protected]': Reading manifest: Invalid extension permission: networkStatus
1579197311625 [email protected] WARN Loading extension '[email protected]': Reading manifest: Invalid extension permission: mozillaAddons
1579197311625 [email protected] WARN Loading extension '[email protected]': Reading manifest: Invalid extension permission: telemetry
1579197311625 [email protected] WARN Loading extension '[email protected]': Reading manifest: Invalid extension permission: resource://pdf.js/
1579197311625 [email protected] WARN Loading extension '[email protected]': Reading manifest: Invalid extension permission: about:reader*
JavaScript error: resource://gre/modules/XULStore.jsm, line 66: Error: Can't find profile directory.
1579197313419 Marionette INFO Listening on port 18167
1579197313826 Marionette WARN TLS certificate errors will be ignored for this session
1579197325544 Marionette INFO Stopped listening on port 18167
1579197349667 mozrunner::runner INFO Running command: "C:\\Program Files\\Mozilla Firefox\\firefox.exe" "-marionette" "-headless" "-foreground" "-no-remote" "-profile" "C:\\Users\\MIDAV\\AppData\\Local\\Temp\\rust_mozprofile.qzBbnkdYR1yQ"
*** You are running in headless mode.
1579197350034 [email protected] WARN Loading extension '[email protected]': Reading manifest: Invalid extension permission: networkStatus
1579197350118 [email protected] WARN Loading extension '[email protected]': Reading manifest: Invalid extension permission: mozillaAddons
1579197350119 [email protected] WARN Loading extension '[email protected]': Reading manifest: Invalid extension permission: telemetry
1579197350119 [email protected] WARN Loading extension '[email protected]': Reading manifest: Invalid extension permission: resource://pdf.js/
1579197350119 [email protected] WARN Loading extension '[email protected]': Reading manifest: Invalid extension permission: about:reader*
JavaScript error: resource://gre/modules/XULStore.jsm, line 66: Error: Can't find profile directory.
1579197351623 Marionette INFO Listening on port 18262
1579197351717 Marionette WARN TLS certificate errors will be ignored for this session
1579197363312 Marionette INFO Stopped listening on port 18262
1579197480775 mozrunner::runner INFO Running command: "C:\\Program Files\\Mozilla Firefox\\firefox.exe" "-marionette" "-headless" "-foreground" "-no-remote" "-profile" "C:\\Users\\MIDAV\\AppData\\Local\\Temp\\rust_mozprofile.lZZuEfCEiU1U"
*** You are running in headless mode.
1579197481150 [email protected] WARN Loading extension '[email protected]': Reading manifest: Invalid extension permission: networkStatus
1579197481233 [email protected] WARN Loading extension '[email protected]': Reading manifest: Invalid extension permission: mozillaAddons
1579197481233 [email protected] WARN Loading extension '[email protected]': Reading manifest: Invalid extension permission: telemetry
1579197481233 [email protected] WARN Loading extension '[email protected]': Reading manifest: Invalid extension permission: resource://pdf.js/
1579197481233 [email protected] WARN Loading extension '[email protected]': Reading manifest: Invalid extension permission: about:reader*
JavaScript error: resource://gre/modules/XULStore.jsm, line 66: Error: Can't find profile directory.
1579197482732 Marionette INFO Listening on port 18461
1579197482832 Marionette WARN TLS certificate errors will be ignored for this session
1579197494594 Marionette INFO Stopped listening on port 18461
1579197531875 mozrunner::runner INFO Running command: "C:\\Program Files\\Mozilla Firefox\\firefox.exe" "-marionette" "-headless" "-foreground" "-no-remote" "-profile" "C:\\Users\\MIDAV\\AppData\\Local\\Temp\\rust_mozprofile.gBLCZOsv6L0o"
*** You are running in headless mode.
1579197532250 [email protected] WARN Loading extension '[email protected]': Reading manifest: Invalid extension permission: networkStatus
1579197532336 [email protected] WARN Loading extension '[email protected]': Reading manifest: Invalid extension permission: mozillaAddons
1579197532337 [email protected] WARN Loading extension '[email protected]': Reading manifest: Invalid extension permission: telemetry
1579197532337 [email protected] WARN Loading extension '[email protected]': Reading manifest: Invalid extension permission: resource://pdf.js/
1579197532337 [email protected] WARN Loading extension '[email protected]': Reading manifest: Invalid extension permission: about:reader*
JavaScript error: resource://gre/modules/XULStore.jsm, line 66: Error: Can't find profile directory.
1579197533752 Marionette INFO Listening on port 18557
1579197533921 Marionette WARN TLS certificate errors will be ignored for this session
1579197565669 Marionette INFO Stopped listening on port 18557
1579197635112 mozrunner::runner INFO Running command: "C:\\Program Files\\Mozilla Firefox\\firefox.exe" "-marionette" "-headless" "-foreground" "-no-remote" "-profile" "C:\\Users\\MIDAV\\AppData\\Local\\Temp\\rust_mozprofile.d0L8TfraPXnj"
*** You are running in headless mode.
1579197635465 [email protected] WARN Loading extension '[email protected]': Reading manifest: Invalid extension permission: networkStatus
1579197635551 [email protected] WARN Loading extension '[email protected]': Reading manifest: Invalid extension permission: mozillaAddons
1579197635551 [email protected] WARN Loading extension '[email protected]': Reading manifest: Invalid extension permission: telemetry
1579197635551 [email protected] WARN Loading extension '[email protected]': Reading manifest: Invalid extension permission: resource://pdf.js/
1579197635551 [email protected] WARN Loading extension '[email protected]': Reading manifest: Invalid extension permission: about:reader*
JavaScript error: resource://gre/modules/XULStore.jsm, line 66: Error: Can't find profile directory.
1579197637116 Marionette INFO Listening on port 18712
1579197637138 Marionette WARN TLS certificate errors will be ignored for this session
1579197648800 Marionette INFO Stopped listening on port 18712
1579197681838 mozrunner::runner INFO Running command: "C:\\Program Files\\Mozilla Firefox\\firefox.exe" "-marionette" "-headless" "-foreground" "-no-remote" "-profile" "C:\\Users\\MIDAV\\AppData\\Local\\Temp\\rust_mozprofile.6vXPkFZKG5ZI"
*** You are running in headless mode.
1579197682203 [email protected] WARN Loading extension '[email protected]': Reading manifest: Invalid extension permission: networkStatus
1579197682287 [email protected] WARN Loading extension '[email protected]': Reading manifest: Invalid extension permission: mozillaAddons
1579197682287 [email protected] WARN Loading extension '[email protected]': Reading manifest: Invalid extension permission: telemetry
1579197682287 [email protected] WARN Loading extension '[email protected]': Reading manifest: Invalid extension permission: resource://pdf.js/
1579197682287 [email protected] WARN Loading extension '[email protected]': Reading manifest: Invalid extension permission: about:reader*
JavaScript error: resource://gre/modules/XULStore.jsm, line 66: Error: Can't find profile directory.
1579197683694 Marionette INFO Listening on port 18873
1579197683917 Marionette WARN TLS certificate errors will be ignored for this session
1579197695619 Marionette INFO Stopped listening on port 18873
1579197755151 mozrunner::runner INFO Running command: "C:\\Program Files\\Mozilla Firefox\\firefox.exe" "-marionette" "-headless" "-foreground" "-no-remote" "-profile" "C:\\Users\\MIDAV\\AppData\\Local\\Temp\\rust_mozprofile.B53YXAXA0dXS"
*** You are running in headless mode.
1579197755579 [email protected] WARN Loading extension '[email protected]': Reading manifest: Invalid extension permission: networkStatus
1579197755665 [email protected] WARN Loading extension '[email protected]': Reading manifest: Invalid extension permission: mozillaAddons
1579197755666 [email protected] WARN Loading extension '[email protected]': Reading manifest: Invalid extension permission: telemetry
1579197755666 [email protected] WARN Loading extension '[email protected]': Reading manifest: Invalid extension permission: resource://pdf.js/
1579197755666 [email protected] WARN Loading extension '[email protected]': Reading manifest: Invalid extension permission: about:reader*
JavaScript error: resource://gre/modules/XULStore.jsm, line 66: Error: Can't find profile directory.
1579197757040 Marionette INFO Listening on port 19018
1579197757226 Marionette WARN TLS certificate errors will be ignored for this session
1579197804159 mozrunner::runner INFO Running command: "C:\\Program Files\\Mozilla Firefox\\firefox.exe" "-marionette" "-headless" "-foreground" "-no-remote" "-profile" "C:\\Users\\MIDAV\\AppData\\Local\\Temp\\rust_mozprofile.5GLPy9EMMk1Z"
*** You are running in headless mode.
1579197804533 [email protected] WARN Loading extension '[email protected]': Reading manifest: Invalid extension permission: networkStatus
1579197804623 [email protected] WARN Loading extension '[email protected]': Reading manifest: Invalid extension permission: mozillaAddons
1579197804623 [email protected] WARN Loading extension '[email protected]': Reading manifest: Invalid extension permission: telemetry
1579197804623 [email protected] WARN Loading extension '[email protected]': Reading manifest: Invalid extension permission: resource://pdf.js/
1579197804623 [email protected] WARN Loading extension '[email protected]': Reading manifest: Invalid extension permission: about:reader*
JavaScript error: resource://gre/modules/XULStore.jsm, line 66: Error: Can't find profile directory.
1579197806245 Marionette INFO Listening on port 19111
1579197806297 Marionette WARN TLS certificate errors will be ignored for this session
1579197818467 Marionette INFO Stopped listening on port 19111
1579197874782 mozrunner::runner INFO Running command: "C:\\Program Files\\Mozilla Firefox\\firefox.exe" "-marionette" "-headless" "-foreground" "-no-remote" "-profile" "C:\\Users\\MIDAV\\AppData\\Local\\Temp\\rust_mozprofile.KfzGQQLvxVf2"
*** You are running in headless mode.
1579197875147 [email protected] WARN Loading extension '[email protected]': Reading manifest: Invalid extension permission: networkStatus
1579197875237 [email protected] WARN Loading extension '[email protected]': Reading manifest: Invalid extension permission: mozillaAddons
1579197875237 [email protected] WARN Loading extension '[email protected]': Reading manifest: Invalid extension permission: telemetry
1579197875237 [email protected] WARN Loading extension '[email protected]': Reading manifest: Invalid extension permission: resource://pdf.js/
1579197875237 [email protected] WARN Loading extension '[email protected]': Reading manifest: Invalid extension permission: about:reader*
JavaScript error: resource://gre/modules/XULStore.jsm, line 66: Error: Can't find profile directory.
1579197876899 Marionette INFO Listening on port 19233
1579197876922 Marionette WARN TLS certificate errors will be ignored for this session
1579197896497 Marionette INFO Stopped listening on port 19233
1579197914002 mozrunner::runner INFO Running command: "C:\\Program Files\\Mozilla Firefox\\firefox.exe" "-marionette" "-headless" "-foreground" "-no-remote" "-profile" "C:\\Users\\MIDAV\\AppData\\Local\\Temp\\rust_mozprofile.uNZBpHSS0jx2"
*** You are running in headless mode.
1579197914368 [email protected] WARN Loading extension '[email protected]': Reading manifest: Invalid extension permission: networkStatus
1579197914459 [email protected] WARN Loading extension '[email protected]': Reading manifest: Invalid extension permission: mozillaAddons
1579197914459 [email protected] WARN Loading extension '[email protected]': Reading manifest: Invalid extension permission: telemetry
1579197914459 [email protected] WARN Loading extension '[email protected]': Reading manifest: Invalid extension permission: resource://pdf.js/
1579197914459 [email protected] WARN Loading extension '[email protected]': Reading manifest: Invalid extension permission: about:reader*
JavaScript error: resource://gre/modules/XULStore.jsm, line 66: Error: Can't find profile directory.
1579197916060 Marionette INFO Listening on port 19329
1579197916129 Marionette WARN TLS certificate errors will be ignored for this session
1579197931009 Marionette INFO Stopped listening on port 19329
1579198026042 mozrunner::runner INFO Running command: "C:\\Program Files\\Mozilla Firefox\\firefox.exe" "-marionette" "-headless" "-foreground" "-no-remote" "-profile" "C:\\Users\\MIDAV\\AppData\\Local\\Temp\\rust_mozprofile.kXsJNFvDpTrA"
*** You are running in headless mode.
1579198026437 [email protected] WARN Loading extension '[email protected]': Reading manifest: Invalid extension permission: networkStatus
1579198026535 [email protected] WARN Loading extension '[email protected]': Reading manifest: Invalid extension permission: mozillaAddons
1579198026535 [email protected] WARN Loading extension '[email protected]': Reading manifest: Invalid extension permission: telemetry
1579198026535 [email protected] WARN Loading extension '[email protected]': Reading manifest: Invalid extension permission: resource://pdf.js/
1579198026535 [email protected] WARN Loading extension '[email protected]': Reading manifest: Invalid extension permission: about:reader*
JavaScript error: resource://gre/modules/XULStore.jsm, line 66: Error: Can't find profile directory.
1579198028153 Marionette INFO Listening on port 19481
1579198028177 Marionette WARN TLS certificate errors will be ignored for this session
1579198042185 Marionette INFO Stopped listening on port 19481
1579198090593 mozrunner::runner INFO Running command: "C:\\Program Files\\Mozilla Firefox\\firefox.exe" "-marionette" "-headless" "-foreground" "-no-remote" "-profile" "C:\\Users\\MIDAV\\AppData\\Local\\Temp\\rust_mozprofile.HVDTERAmRsba"
*** You are running in headless mode.
1579198090953 [email protected] WARN Loading extension '[email protected]': Reading manifest: Invalid extension permission: networkStatus
1579198091040 [email protected] WARN Loading extension '[email protected]': Reading manifest: Invalid extension permission: mozillaAddons
1579198091040 [email protected] WARN Loading extension '[email protected]': Reading manifest: Invalid extension permission: telemetry
1579198091040 [email protected] WARN Loading extension '[email protected]': Reading manifest: Invalid extension permission: resource://pdf.js/
1579198091040 [email protected] WARN Loading extension '[email protected]': Reading manifest: Invalid extension permission: about:reader*
JavaScript error: resource://gre/modules/XULStore.jsm, line 66: Error: Can't find profile directory.
1579198092483 Marionette INFO Listening on port 19585
1579198092630 Marionette WARN TLS certificate errors will be ignored for this session
1579198106414 Marionette INFO Stopped listening on port 19585
1579198149482 mozrunner::runner INFO Running command: "C:\\Program Files\\Mozilla Firefox\\firefox.exe" "-marionette" "-headless" "-foreground" "-no-remote" "-profile" "C:\\Users\\MIDAV\\AppData\\Local\\Temp\\rust_mozprofile.QFl1e0cxKVlo"
*** You are running in headless mode.
1579198149857 [email protected] WARN Loading extension '[email protected]': Reading manifest: Invalid extension permission: networkStatus
1579198149944 [email protected] WARN Loading extension '[email protected]': Reading manifest: Invalid extension permission: mozillaAddons
1579198149944 [email protected] WARN Loading extension '[email protected]': Reading manifest: Invalid extension permission: telemetry
1579198149944 [email protected] WARN Loading extension '[email protected]': Reading manifest: Invalid extension permission: resource://pdf.js/
1579198149944 [email protected] WARN Loading extension '[email protected]': Reading manifest: Invalid extension permission: about:reader*
JavaScript error: resource://gre/modules/XULStore.jsm, line 66: Error: Can't find profile directory.
1579198151585 Marionette INFO Listening on port 19733
1579198151619 Marionette WARN TLS certificate errors will be ignored for this session
1579198180195 mozrunner::runner INFO Running command: "C:\\Program Files\\Mozilla Firefox\\firefox.exe" "-marionette" "-headless" "-foreground" "-no-remote" "-profile" "C:\\Users\\MIDAV\\AppData\\Local\\Temp\\rust_mozprofile.2uaJBG1ugZAZ"
*** You are running in headless mode.
1579198180627 [email protected] WARN Loading extension '[email protected]': Reading manifest: Invalid extension permission: networkStatus
1579198180718 [email protected] WARN Loading extension '[email protected]': Reading manifest: Invalid extension permission: mozillaAddons
1579198180718 [email protected] WARN Loading extension '[email protected]': Reading manifest: Invalid extension permission: telemetry
1579198180718 [email protected] WARN Loading extension '[email protected]': Reading manifest: Invalid extension permission: resource://pdf.js/
1579198180718 [email protected] WARN Loading extension '[email protected]': Reading manifest: Invalid extension permission: about:reader*
JavaScript error: resource://gre/modules/XULStore.jsm, line 66: Error: Can't find profile directory.
1579198182443 Marionette INFO Listening on port 19826
1579198182824 Marionette WARN TLS certificate errors will be ignored for this session
1579198195379 Marionette INFO Stopped listening on port 19826
1579198270349 mozrunner::runner INFO Running command: "C:\\Program Files\\Mozilla Firefox\\firefox.exe" "-marionette" "-headless" "-foreground" "-no-remote" "-profile" "C:\\Users\\MIDAV\\AppData\\Local\\Temp\\rust_mozprofile.t9IuTjkhrMuh"
*** You are running in headless mode.
1579198270788 [email protected] WARN Loading extension '[email protected]': Reading manifest: Invalid extension permission: networkStatus
1579198270884 [email protected] WARN Loading extension '[email protected]': Reading manifest: Invalid extension permission: mozillaAddons
1579198270884 [email protected] WARN Loading extension '[email protected]': Reading manifest: Invalid extension permission: telemetry
1579198270884 [email protected] WARN Loading extension '[email protected]': Reading manifest: Invalid extension permission: resource://pdf.js/
1579198270885 [email protected] WARN Loading extension '[email protected]': Reading manifest: Invalid extension permission: about:reader*
JavaScript error: resource://gre/modules/XULStore.jsm, line 66: Error: Can't find profile directory.
1579198272591 Marionette INFO Listening on port 19991
1579198272985 Marionette WARN TLS certificate errors will be ignored for this session
1579198285516 Marionette INFO Stopped listening on port 19991
1579198584741 mozrunner::runner INFO Running command: "C:\\Program Files\\Mozilla Firefox\\firefox.exe" "-marionette" "-headless" "-foreground" "-no-remote" "-profile" "C:\\Users\\MIDAV\\AppData\\Local\\Temp\\rust_mozprofile.whiKtYII4HBt"
*** You are running in headless mode.
1579198585168 [email protected] WARN Loading extension '[email protected]': Reading manifest: Invalid extension permission: networkStatus
1579198585264 [email protected] WARN Loading extension '[email protected]': Reading manifest: Invalid extension permission: mozillaAddons
1579198585264 [email protected] WARN Loading extension '[email protected]': Reading manifest: Invalid extension permission: telemetry
1579198585264 [email protected] WARN Loading extension '[email protected]': Reading manifest: Invalid extension permission: resource://pdf.js/
1579198585265 [email protected] WARN Loading extension '[email protected]': Reading manifest: Invalid extension permission: about:reader*
JavaScript error: resource://gre/modules/XULStore.jsm, line 66: Error: Can't find profile directory.
1579198586991 Marionette INFO Listening on port 20234
1579198587436 Marionette WARN TLS certificate errors will be ignored for this session
1579198644329 mozrunner::runner INFO Running command: "C:\\Program Files\\Mozilla Firefox\\firefox.exe" "-marionette" "-headless" "-foreground" "-no-remote" "-profile" "C:\\Users\\MIDAV\\AppData\\Local\\Temp\\rust_mozprofile.PgzRpU4VrWrJ"
*** You are running in headless mode.
1579198644766 [email protected] WARN Loading extension '[email protected]': Reading manifest: Invalid extension permission: networkStatus
1579198644870 [email protected] WARN Loading extension '[email protected]': Reading manifest: Invalid extension permission: mozillaAddons
1579198644870 [email protected] WARN Loading extension '[email protected]': Reading manifest: Invalid extension permission: telemetry
1579198644870 [email protected] WARN Loading extension '[email protected]': Reading manifest: Invalid extension permission: resource://pdf.js/
1579198644870 [email protected] WARN Loading extension '[email protected]': Reading manifest: Invalid extension permission: about:reader*
JavaScript error: resource://gre/modules/XULStore.jsm, line 66: Error: Can't find profile directory.
1579198646722 Marionette INFO Listening on port 20336
1579198647047 Marionette WARN TLS certificate errors will be ignored for this session
1579198660919 Marionette INFO Stopped listening on port 20336
1579198709155 mozrunner::runner INFO Running command: "C:\\Program Files\\Mozilla Firefox\\firefox.exe" "-marionette" "-headless" "-foreground" "-no-remote" "-profile" "C:\\Users\\MIDAV\\AppData\\Local\\Temp\\rust_mozprofile.SQ8HmI6Ybgwq"
*** You are running in headless mode.
1579198709579 [email protected] WARN Loading extension '[email protected]': Reading manifest: Invalid extension permission: networkStatus
1579198709678 [email protected] WARN Loading extension '[email protected]': Reading manifest: Invalid extension permission: mozillaAddons
1579198709678 [email protected] WARN Loading extension '[email protected]': Reading manifest: Invalid extension permission: telemetry
1579198709678 [email protected] WARN Loading extension '[email protected]': Reading manifest: Invalid extension permission: resource://pdf.js/
1579198709678 [email protected] WARN Loading extension '[email protected]': Reading manifest: Invalid extension permission: about:reader*
JavaScript error: resource://gre/modules/XULStore.jsm, line 66: Error: Can't find profile directory.
1579198711549 Marionette INFO Listening on port 20450
1579198711857 Marionette WARN TLS certificate errors will be ignored for this session
1579198724124 Marionette INFO Stopped listening on port 20450
1579198848118 mozrunner::runner INFO Running command: "C:\\Program Files\\Mozilla Firefox\\firefox.exe" "-marionette" "-headless" "-foreground" "-no-remote" "-profile" "C:\\Users\\MIDAV\\AppData\\Local\\Temp\\rust_mozprofile.qV5b54PweOxH"
*** You are running in headless mode.
1579198848578 [email protected] WARN Loading extension '[email protected]': Reading manifest: Invalid extension permission: networkStatus
1579198848679 [email protected] WARN Loading extension '[email protected]': Reading manifest: Invalid extension permission: mozillaAddons
1579198848679 [email protected] WARN Loading extension '[email protected]': Reading manifest: Invalid extension permission: telemetry
1579198848679 [email protected] WARN Loading extension '[email protected]': Reading manifest: Invalid extension permission: resource://pdf.js/
1579198848680 [email protected] WARN Loading extension '[email protected]': Reading manifest: Invalid extension permission: about:reader*
JavaScript error: resource://gre/modules/XULStore.jsm, line 66: Error: Can't find profile directory.
1579198850426 Marionette INFO Listening on port 20595
1579198850792 Marionette WARN TLS certificate errors will be ignored for this session
1579198863710 Marionette INFO Stopped listening on port 20595
1579198897220 mozrunner::runner INFO Running command: "C:\\Program Files\\Mozilla Firefox\\firefox.exe" "-marionette" "-headless" "-foreground" "-no-remote" "-profile" "C:\\Users\\MIDAV\\AppData\\Local\\Temp\\rust_mozprofile.HaYtCPQGWvsT"
*** You are running in headless mode.
1579198897684 [email protected] WARN Loading extension '[email protected]': Reading manifest: Invalid extension permission: networkStatus
1579198897782 [email protected] WARN Loading extension '[email protected]': Reading manifest: Invalid extension permission: mozillaAddons
1579198897782 [email protected] WARN Loading extension '[email protected]': Reading manifest: Invalid extension permission: telemetry
1579198897783 [email protected] WARN Loading extension '[email protected]': Reading manifest: Invalid extension permission: resource://pdf.js/
1579198897783 [email protected] WARN Loading extension '[email protected]': Reading manifest: Invalid extension permission: about:reader*
JavaScript error: resource://gre/modules/XULStore.jsm, line 66: Error: Can't find profile directory.
1579198899512 Marionette INFO Listening on port 20702
1579198899904 Marionette WARN TLS certificate errors will be ignored for this session
1579198937096 mozrunner::runner INFO Running command: "C:\\Program Files\\Mozilla Firefox\\firefox.exe" "-marionette" "-headless" "-foreground" "-no-remote" "-profile" "C:\\Users\\MIDAV\\AppData\\Local\\Temp\\rust_mozprofile.N3wAf42bzqW1"
*** You are running in headless mode.
1579198937540 [email protected] WARN Loading extension '[email protected]': Reading manifest: Invalid extension permission: networkStatus
1579198937651 [email protected] WARN Loading extension '[email protected]': Reading manifest: Invalid extension permission: mozillaAddons
1579198937652 [email protected] WARN Loading extension '[email protected]': Reading manifest: Invalid extension permission: telemetry
1579198937652 [email protected] WARN Loading extension '[email protected]': Reading manifest: Invalid extension permission: resource://pdf.js/
1579198937652 [email protected] WARN Loading extension '[email protected]': Reading manifest: Invalid extension permission: about:reader*
JavaScript error: resource://gre/modules/XULStore.jsm, line 66: Error: Can't find profile directory.
1579198939436 Marionette INFO Listening on port 20812
1579198939789 Marionette WARN TLS certificate errors will be ignored for this session
1579199025326 mozrunner::runner INFO Running command: "C:\\Program Files\\Mozilla Firefox\\firefox.exe" "-marionette" "-headless" "-foreground" "-no-remote" "-profile" "C:\\Users\\MIDAV\\AppData\\Local\\Temp\\rust_mozprofile.8mKs1utbEaRL"
*** You are running in headless mode.
1579199025864 [email protected] WARN Loading extension '[email protected]': Reading manifest: Invalid extension permission: networkStatus
1579199025976 [email protected] WARN Loading extension '[email protected]': Reading manifest: Invalid extension permission: mozillaAddons
1579199025976 [email protected] WARN Loading extension '[email protected]': Reading manifest: Invalid extension permission: telemetry
1579199025976 [email protected] WARN Loading extension '[email protected]': Reading manifest: Invalid extension permission: resource://pdf.js/
1579199025977 [email protected] WARN Loading extension '[email protected]': Reading manifest: Invalid extension permission: about:reader*
JavaScript error: resource://gre/modules/XULStore.jsm, line 66: Error: Can't find profile directory.
1579199028018 Marionette INFO Listening on port 1041
1579199028484 Marionette WARN TLS certificate errors will be ignored for this session
1579199150443 mozrunner::runner INFO Running command: "C:\\Program Files\\Mozilla Firefox\\firefox.exe" "-marionette" "-headless" "-foreground" "-no-remote" "-profile" "C:\\Users\\MIDAV\\AppData\\Local\\Temp\\rust_mozprofile.6Tc9lGKrFSpY"
*** You are running in headless mode.
1579199150942 [email protected] WARN Loading extension '[email protected]': Reading manifest: Invalid extension permission: networkStatus
1579199151044 [email protected] WARN Loading extension '[email protected]': Reading manifest: Invalid extension permission: mozillaAddons
1579199151044 [email protected] WARN Loading extension '[email protected]': Reading manifest: Invalid extension permission: telemetry
1579199151044 [email protected] WARN Loading extension '[email protected]': Reading manifest: Invalid extension permission: resource://pdf.js/
1579199151044 [email protected] WARN Loading extension '[email protected]': Reading manifest: Invalid extension permission: about:reader*
JavaScript error: resource://gre/modules/XULStore.jsm, line 66: Error: Can't find profile directory.
1579199152945 Marionette INFO Listening on port 1212
1579199153153 Marionette WARN TLS certificate errors will be ignored for this session
1579199165321 Marionette INFO Stopped listening on port 1212
1579199195704 mozrunner::runner INFO Running command: "C:\\Program Files\\Mozilla Firefox\\firefox.exe" "-marionette" "-headless" "-foreground" "-no-remote" "-profile" "C:\\Users\\MIDAV\\AppData\\Local\\Temp\\rust_mozprofile.Sc7cxaVdqtTE"
*** You are running in headless mode.
1579199196133 [email protected] WARN Loading extension '[email protected]': Reading manifest: Invalid extension permission: networkStatus
1579199196235 [email protected] WARN Loading extension '[email protected]': Reading manifest: Invalid extension permission: mozillaAddons
1579199196236 [email protected] WARN Loading extension '[email protected]': Reading manifest: Invalid extension permission: telemetry
1579199196236 [email protected] WARN Loading extension '[email protected]': Reading manifest: Invalid extension permission: resource://pdf.js/
1579199196236 [email protected] WARN Loading extension '[email protected]': Reading manifest: Invalid extension permission: about:reader*
JavaScript error: resource://gre/modules/XULStore.jsm, line 66: Error: Can't find profile directory.
1579199198103 Marionette INFO Listening on port 1328
1579199198394 Marionette WARN TLS certificate errors will be ignored for this session
1579199210719 Marionette INFO Stopped listening on port 1328
1579219735721 mozrunner::runner INFO Running command: "C:\\Program Files\\Mozilla Firefox\\firefox.exe" "-marionette" "-headless" "-foreground" "-no-remote" "-profile" "C:\\Users\\MIDAV\\AppData\\Local\\Temp\\rust_mozprofile.vRkXyPrJuWiL"
*** You are running in headless mode.
1579219736088 [email protected] WARN Loading extension '[email protected]': Reading manifest: Invalid extension permission: networkStatus
1579219736202 [email protected] WARN Loading extension '[email protected]': Reading manifest: Invalid extension permission: mozillaAddons
1579219736202 [email protected] WARN Loading extension '[email protected]': Reading manifest: Invalid extension permission: telemetry
1579219736202 [email protected] WARN Loading extension '[email protected]': Reading manifest: Invalid extension permission: resource://pdf.js/
1579219736202 [email protected] WARN Loading extension '[email protected]': Reading manifest: Invalid extension permission: about:reader*
JavaScript error: resource://gre/modules/XULStore.jsm, line 66: Error: Can't find profile directory.
1579219737867 Marionette INFO Listening on port 1319
1579219737899 Marionette WARN TLS certificate errors will be ignored for this session
1579219749684 Marionette INFO Stopped listening on port 1319
1579222522409 mozrunner::runner INFO Running command: "C:\\Program Files\\Mozilla Firefox\\firefox.exe" "-marionette" "-headless" "-foreground" "-no-remote" "-profile" "C:\\Users\\MIDAV\\AppData\\Local\\Temp\\rust_mozprofile.RBnxmLfTO6L1"
*** You are running in headless mode.
1579222522875 [email protected] WARN Loading extension '[email protected]': Reading manifest: Invalid extension permission: networkStatus
1579222522964 [email protected] WARN Loading extension '[email protected]': Reading manifest: Invalid extension permission: mozillaAddons
1579222522964 [email protected] WARN Loading extension '[email protected]': Reading manifest: Invalid extension permission: telemetry
1579222522964 [email protected] WARN Loading extension '[email protected]': Reading manifest: Invalid extension permission: resource://pdf.js/
1579222522964 [email protected] WARN Loading extension '[email protected]': Reading manifest: Invalid extension permission: about:reader*
JavaScript error: resource://gre/modules/XULStore.jsm, line 66: Error: Can't find profile directory.
1579222524789 Marionette INFO Listening on port 1904
1579222525101 Marionette WARN TLS certificate errors will be ignored for this session
1579222538298 Marionette INFO Stopped listening on port 1904
1579556892375 mozrunner::runner INFO Running command: "C:\\Program Files\\Mozilla Firefox\\firefox.exe" "-marionette" "-headless" "-foreground" "-no-remote" "-profile" "C:\\Users\\MIDAV\\AppData\\Local\\Temp\\rust_mozprofile.5wcWRtVRrrLL"
*** You are running in headless mode.
1579556892775 [email protected] WARN Loading extension '[email protected]': Reading manifest: Invalid extension permission: networkStatus
1579556892884 [email protected] WARN Loading extension '[email protected]': Reading manifest: Invalid extension permission: mozillaAddons
1579556892884 [email protected] WARN Loading extension '[email protected]': Reading manifest: Invalid extension permission: telemetry
1579556892885 [email protected] WARN Loading extension '[email protected]': Reading manifest: Invalid extension permission: resource://pdf.js/
1579556892885 [email protected] WARN Loading extension '[email protected]': Reading manifest: Invalid extension permission: about:reader*
JavaScript error: resource://gre/modules/XULStore.jsm, line 66: Error: Can't find profile directory.
1579556894392 Marionette INFO Listening on port 5123
1579556894443 Marionette WARN TLS certificate errors will be ignored for this session
1579556906628 Marionette INFO Stopped listening on port 5123
1579733726124 mozrunner::runner INFO Running command: "C:\\Program Files\\Mozilla Firefox\\firefox.exe" "-marionette" "-headless" "-foreground" "-no-remote" "-profile" "C:\\Users\\MIDAV\\AppData\\Local\\Temp\\rust_mozprofile.ibIZvw62ynUS"
*** You are running in headless mode.
1579733870968 mozrunner::runner INFO Running command: "C:\\Program Files\\Mozilla Firefox\\firefox.exe" "-marionette" "-headless" "-foreground" "-no-remote" "-profile" "C:\\Users\\MIDAV\\AppData\\Local\\Temp\\rust_mozprofile.nHIFeE9XmuFo"
*** You are running in headless mode.
1579733871343 [email protected] WARN Loading extension '[email protected]': Reading manifest: Invalid extension permission: networkStatus
1579733871428 [email protected] WARN Loading extension '[email protected]': Reading manifest: Invalid extension permission: mozillaAddons
1579733871428 [email protected] WARN Loading extension '[email protected]': Reading manifest: Invalid extension permission: telemetry
1579733871428 [email protected] WARN Loading extension '[email protected]': Reading manifest: Invalid extension permission: resource://pdf.js/
1579733871428 [email protected] WARN Loading extension '[email protected]': Reading manifest: Invalid extension permission: about:reader*
JavaScript error: resource://gre/modules/XULStore.jsm, line 66: Error: Can't find profile directory.
1579733872966 Marionette INFO Listening on port 1952
1579733873017 Marionette WARN TLS certificate errors will be ignored for this session
1579733885264 Marionette INFO Stopped listening on port 1952
1579734167564 mozrunner::runner INFO Running command: "C:\\Program Files\\Mozilla Firefox\\firefox.exe" "-marionette" "-headless" "-foreground" "-no-remote" "-profile" "C:\\Users\\MIDAV\\AppData\\Local\\Temp\\rust_mozprofile.aVngRpWHmEKr"
*** You are running in headless mode.
1579734167927 [email protected] WARN Loading extension '[email protected]': Reading manifest: Invalid extension permission: networkStatus
1579734168013 [email protected] WARN Loading extension '[email protected]': Reading manifest: Invalid extension permission: mozillaAddons
1579734168013 [email protected] WARN Loading extension '[email protected]': Reading manifest: Invalid extension permission: telemetry
1579734168013 [email protected] WARN Loading extension '[email protected]': Reading manifest: Invalid extension permission: resource://pdf.js/
1579734168013 [email protected] WARN Loading extension '[email protected]': Reading manifest: Invalid extension permission: about:reader*
JavaScript error: resource://gre/modules/XULStore.jsm, line 66: Error: Can't find profile directory.
1579734169557 Marionette INFO Listening on port 2050
1579734169628 Marionette WARN TLS certificate errors will be ignored for this session
1579734181338 Marionette INFO Stopped listening on port 2050
1579734861008 mozrunner::runner INFO Running command: "C:\\Program Files\\Mozilla Firefox\\firefox.exe" "-marionette" "-headless" "-foreground" "-no-remote" "-profile" "C:\\Users\\MIDAV\\AppData\\Local\\Temp\\rust_mozprofile.aQfm1hj2PaEX"
*** You are running in headless mode.
1579734861361 [email protected] WARN Loading extension '[email protected]': Reading manifest: Invalid extension permission: networkStatus
1579734861446 [email protected] WARN Loading extension '[email protected]': Reading manifest: Invalid extension permission: mozillaAddons
1579734861446 [email protected] WARN Loading extension '[email protected]': Reading manifest: Invalid extension permission: telemetry
1579734861446 [email protected] WARN Loading extension '[email protected]': Reading manifest: Invalid extension permission: resource://pdf.js/
1579734861446 [email protected] WARN Loading extension '[email protected]': Reading manifest: Invalid extension permission: about:reader*
JavaScript error: resource://gre/modules/XULStore.jsm, line 66: Error: Can't find profile directory.
1579734862863 Marionette INFO Listening on port 2203
1579734863075 Marionette WARN TLS certificate errors will be ignored for this session
1579734874720 Marionette INFO Stopped listening on port 2203
1579734885275 mozrunner::runner INFO Running command: "C:\\Program Files\\Mozilla Firefox\\firefox.exe" "-marionette" "-headless" "-foreground" "-no-remote" "-profile" "C:\\Users\\MIDAV\\AppData\\Local\\Temp\\rust_mozprofile.v5MRY7X19mzw"
*** You are running in headless mode.
1579734885625 [email protected] WARN Loading extension '[email protected]': Reading manifest: Invalid extension permission: networkStatus
1579734885710 [email protected] WARN Loading extension '[email protected]': Reading manifest: Invalid extension permission: mozillaAddons
1579734885711 [email protected] WARN Loading extension '[email protected]': Reading manifest: Invalid extension permission: telemetry
1579734885711 [email protected] WARN Loading extension '[email protected]': Reading manifest: Invalid extension permission: resource://pdf.js/
1579734885711 [email protected] WARN Loading extension '[email protected]': Reading manifest: Invalid extension permission: about:reader*
JavaScript error: resource://gre/modules/XULStore.jsm, line 66: Error: Can't find profile directory.
1579734887203 Marionette INFO Listening on port 2283
1579734887366 Marionette WARN TLS certificate errors will be ignored for this session
1579734899226 Marionette INFO Stopped listening on port 2283
1579793991144 mozrunner::runner INFO Running command: "C:\\Program Files\\Mozilla Firefox\\firefox.exe" "-marionette" "-headless" "-foreground" "-no-remote" "-profile" "C:\\Users\\MIDAV\\AppData\\Local\\Temp\\rust_mozprofile.Aftz87f3pOhK"
*** You are running in headless mode.
1579793992541 [email protected] WARN Loading extension '[email protected]': Reading manifest: Invalid extension permission: networkStatus
1579793992666 [email protected] WARN Loading extension '[email protected]': Reading manifest: Invalid extension permission: mozillaAddons
1579793992666 [email protected] WARN Loading extension '[email protected]': Reading manifest: Invalid extension permission: telemetry
1579793992666 [email protected] WARN Loading extension '[email protected]': Reading manifest: Invalid extension permission: resource://pdf.js/
1579793992666 [email protected] WARN Loading extension '[email protected]': Reading manifest: Invalid extension permission: about:reader*
JavaScript error: resource://gre/modules/XULStore.jsm, line 66: Error: Can't find profile directory.
1579793995344 Marionette INFO Listening on port 13520
1579793995371 Marionette WARN TLS certificate errors will be ignored for this session
1579794008324 Marionette INFO Stopped listening on port 13520
1579794215653 mozrunner::runner INFO Running command: "C:\\Program Files\\Mozilla Firefox\\firefox.exe" "-marionette" "-headless" "-foreground" "-no-remote" "-profile" "C:\\Users\\MIDAV\\AppData\\Local\\Temp\\rust_mozprofile.IYrllpBLsJ9Q"
*** You are running in headless mode.
1579794216173 [email protected] WARN Loading extension '[email protected]': Reading manifest: Invalid extension permission: networkStatus
1579794216273 [email protected] WARN Loading extension '[email protected]': Reading manifest: Invalid extension permission: mozillaAddons
1579794216274 [email protected] WARN Loading extension '[email protected]': Reading manifest: Invalid extension permission: telemetry
1579794216274 [email protected] WARN Loading extension '[email protected]': Reading manifest: Invalid extension permission: resource://pdf.js/
1579794216274 [email protected] WARN Loading extension '[email protected]': Reading manifest: Invalid extension permission: about:reader*
JavaScript error: resource://gre/modules/XULStore.jsm, line 66: Error: Can't find profile directory.
1579794217981 Marionette INFO Listening on port 13601
1579794218348 Marionette WARN TLS certificate errors will be ignored for this session
1579794230804 Marionette INFO Stopped listening on port 13601
1579794293193 mozrunner::runner INFO Running command: "C:\\Program Files\\Mozilla Firefox\\firefox.exe" "-marionette" "-headless" "-foreground" "-no-remote" "-profile" "C:\\Users\\MIDAV\\AppData\\Local\\Temp\\rust_mozprofile.tFgXfn0lk27n"
*** You are running in headless mode.
1579794293678 [email protected] WARN Loading extension '[email protected]': Reading manifest: Invalid extension permission: networkStatus
1579794293763 [email protected] WARN Loading extension '[email protected]': Reading manifest: Invalid extension permission: mozillaAddons
1579794293763 [email protected] WARN Loading extension '[email protected]': Reading manifest: Invalid extension permission: telemetry
1579794293763 [email protected] WARN Loading extension '[email protected]': Reading manifest: Invalid extension permission: resource://pdf.js/
1579794293763 [email protected] WARN Loading extension '[email protected]': Reading manifest: Invalid extension permission: about:reader*
JavaScript error: resource://gre/modules/XULStore.jsm, line 66: Error: Can't find profile directory.
1579794295575 Marionette INFO Listening on port 13682
1579794295894 Marionette WARN TLS certificate errors will be ignored for this session
1579794308619 Marionette INFO Stopped listening on port 13682
1579795434605 mozrunner::runner INFO Running command: "C:\\Program Files\\Mozilla Firefox\\firefox.exe" "-marionette" "-headless" "-foreground" "-no-remote" "-profile" "C:\\Users\\MIDAV\\AppData\\Local\\Temp\\rust_mozprofile.kJw5e1O1uDjv"
*** You are running in headless mode.
1579795435168 [email protected] WARN Loading extension '[email protected]': Reading manifest: Invalid extension permission: networkStatus
1579795435255 [email protected] WARN Loading extension '[email protected]': Reading manifest: Invalid extension permission: mozillaAddons
1579795435255 [email protected] WARN Loading extension '[email protected]': Reading manifest: Invalid extension permission: telemetry
1579795435255 [email protected] WARN Loading extension '[email protected]': Reading manifest: Invalid extension permission: resource://pdf.js/
1579795435255 [email protected] WARN Loading extension '[email protected]': Reading manifest: Invalid extension permission: about:reader*
JavaScript error: resource://gre/modules/XULStore.jsm, line 66: Error: Can't find profile directory.
1579795436836 Marionette INFO Listening on port 13844
1579795437333 Marionette WARN TLS certificate errors will be ignored for this session
1579795449845 Marionette INFO Stopped listening on port 13844
1579795694270 mozrunner::runner INFO Running command: "C:\\Program Files\\Mozilla Firefox\\firefox.exe" "-marionette" "-headless" "-foreground" "-no-remote" "-profile" "C:\\Users\\MIDAV\\AppData\\Local\\Temp\\rust_mozprofile.UZOLYgC5yEds"
*** You are running in headless mode.
1579795694799 [email protected] WARN Loading extension '[email protected]': Reading manifest: Invalid extension permission: networkStatus
1579795694886 [email protected] WARN Loading extension '[email protected]': Reading manifest: Invalid extension permission: mozillaAddons
1579795694886 [email protected] WARN Loading extension '[email protected]': Reading manifest: Invalid extension permission: telemetry
1579795694887 [email protected] WARN Loading extension '[email protected]': Reading manifest: Invalid extension permission: resource://pdf.js/
1579795694887 [email protected] WARN Loading extension '[email protected]': Reading manifest: Invalid extension permission: about:reader*
JavaScript error: resource://gre/modules/XULStore.jsm, line 66: Error: Can't find profile directory.
1579795696982 Marionette INFO Listening on port 13927
1579795697491 Marionette WARN TLS certificate errors will be ignored for this session
1579795710216 Marionette INFO Stopped listening on port 13927
1579795820636 mozrunner::runner INFO Running command: "C:\\Program Files\\Mozilla Firefox\\firefox.exe" "-marionette" "-headless" "-foreground" "-no-remote" "-profile" "C:\\Users\\MIDAV\\AppData\\Local\\Temp\\rust_mozprofile.ove0eBk5Ub8G"
*** You are running in headless mode.
1579795821152 [email protected] WARN Loading extension '[email protected]': Reading manifest: Invalid extension permission: networkStatus
1579795821246 [email protected] WARN Loading extension '[email protected]': Reading manifest: Invalid extension permission: mozillaAddons
1579795821246 [email protected] WARN Loading extension '[email protected]': Reading manifest: Invalid extension permission: telemetry
1579795821246 [email protected] WARN Loading extension '[email protected]': Reading manifest: Invalid extension permission: resource://pdf.js/
1579795821246 [email protected] WARN Loading extension '[email protected]': Reading manifest: Invalid extension permission: about:reader*
JavaScript error: resource://gre/modules/XULStore.jsm, line 66: Error: Can't find profile directory.
1579795822841 Marionette INFO Listening on port 14010
1579795823337 Marionette WARN TLS certificate errors will be ignored for this session
1579795835239 Marionette INFO Stopped listening on port 14010
1579795969922 mozrunner::runner INFO Running command: "C:\\Program Files\\Mozilla Firefox\\firefox.exe" "-marionette" "-headless" "-foreground" "-no-remote" "-profile" "C:\\Users\\MIDAV\\AppData\\Local\\Temp\\rust_mozprofile.hVYnj6T1Mt9i"
*** You are running in headless mode.
1579795970454 [email protected] WARN Loading extension '[email protected]': Reading manifest: Invalid extension permission: networkStatus
1579795970542 [email protected] WARN Loading extension '[email protected]': Reading manifest: Invalid extension permission: mozillaAddons
1579795970542 [email protected] WARN Loading extension '[email protected]': Reading manifest: Invalid extension permission: telemetry
1579795970542 [email protected] WARN Loading extension '[email protected]': Reading manifest: Invalid extension permission: resource://pdf.js/
1579795970542 [email protected] WARN Loading extension '[email protected]': Reading manifest: Invalid extension permission: about:reader*
JavaScript error: resource://gre/modules/XULStore.jsm, line 66: Error: Can't find profile directory.
1579795972026 Marionette INFO Listening on port 14090
1579795972127 Marionette WARN TLS certificate errors will be ignored for this session
1579795984451 Marionette INFO Stopped listening on port 14090
1579796030866 mozrunner::runner INFO Running command: "C:\\Program Files\\Mozilla Firefox\\firefox.exe" "-marionette" "-headless" "-foreground" "-no-remote" "-profile" "C:\\Users\\MIDAV\\AppData\\Local\\Temp\\rust_mozprofile.WWf6p8fGgBhZ"
*** You are running in headless mode.
1579796031350 [email protected] WARN Loading extension '[email protected]': Reading manifest: Invalid extension permission: networkStatus
1579796031467 [email protected] WARN Loading extension '[email protected]': Reading manifest: Invalid extension permission: mozillaAddons
1579796031467 [email protected] WARN Loading extension '[email protected]': Reading manifest: Invalid extension permission: telemetry
1579796031467 [email protected] WARN Loading extension '[email protected]': Reading manifest: Invalid extension permission: resource://pdf.js/
1579796031468 [email protected] WARN Loading extension '[email protected]': Reading manifest: Invalid extension permission: about:reader*
JavaScript error: resource://gre/modules/XULStore.jsm, line 66: Error: Can't find profile directory.
1579796033075 Marionette INFO Listening on port 14168
1579796033553 Marionette WARN TLS certificate errors will be ignored for this session
1579796045098 Marionette INFO Stopped listening on port 14168
1579796090613 mozrunner::runner INFO Running command: "C:\\Program Files\\Mozilla Firefox\\firefox.exe" "-marionette" "-headless" "-foreground" "-no-remote" "-profile" "C:\\Users\\MIDAV\\AppData\\Local\\Temp\\rust_mozprofile.EqDO8XIgc8XK"
*** You are running in headless mode.
1579796091163 [email protected] WARN Loading extension '[email protected]': Reading manifest: Invalid extension permission: networkStatus
1579796091250 [email protected] WARN Loading extension '[email protected]': Reading manifest: Invalid extension permission: mozillaAddons
1579796091250 [email protected] WARN Loading extension '[email protected]': Reading manifest: Invalid extension permission: telemetry
1579796091250 [email protected] WARN Loading extension '[email protected]': Reading manifest: Invalid extension permission: resource://pdf.js/
1579796091250 [email protected] WARN Loading extension '[email protected]': Reading manifest: Invalid extension permission: about:reader*
JavaScript error: resource://gre/modules/XULStore.jsm, line 66: Error: Can't find profile directory.
1579796093006 Marionette INFO Listening on port 14247
1579796093326 Marionette WARN TLS certificate errors will be ignored for this session
JavaScript error: resource:///modules/BrowserUsageTelemetry.jsm, line 303: TypeError: this._timeouts.remove is not a function
s" "-foreground" "-no-remote" "-profile" "C:\\Users\\MIDAV\\AppData\\Local\\Temp\\rust_mozprofile.wrjAqengXSYO"
*** You are running in headless mode.
1579796202570 [email protected] WARN Loading extension '[email protected]': Reading manifest: Invalid extension permission: networkStatus
1579796202656 [email protected] WARN Loading extension '[email protected]': Reading manifest: Invalid extension permission: mozillaAddons
1579796202656 [email protected] WARN Loading extension '[email protected]': Reading manifest: Invalid extension permission: telemetry
1579796202656 [email protected] WARN Loading extension '[email protected]': Reading manifest: Invalid extension permission: resource://pdf.js/
1579796202656 [email protected] WARN Loading extension '[email protected]': Reading manifest: Invalid extension permission: about:reader*
JavaScript error: resource://gre/modules/XULStore.jsm, line 66: Error: Can't find profile directory.
1579796204322 Marionette INFO Listening on port 14365
1579796204756 Marionette WARN TLS certificate errors will be ignored for this session
JavaScript error: resource:///modules/BrowserUsageTelemetry.jsm, line 303: TypeError: this._timeouts.remove is not a function
Exiting due to channel error.
Exiting due to channel error.
pData\\Local\\Temp\\rust_mozprofile.OS4Ub7eyzqcq"
*** You are running in headless mode.
1579796371438 [email protected] WARN Loading extension '[email protected]': Reading manifest: Invalid extension permission: networkStatus
1579796371544 [email protected] WARN Loading extension '[email protected]': Reading manifest: Invalid extension permission: mozillaAddons
1579796371544 [email protected] WARN Loading extension '[email protected]': Reading manifest: Invalid extension permission: telemetry
1579796371544 [email protected] WARN Loading extension '[email protected]': Reading manifest: Invalid extension permission: resource://pdf.js/
1579796371544 [email protected] WARN Loading extension '[email protected]': Reading manifest: Invalid extension permission: about:reader*
JavaScript error: resource://gre/modules/XULStore.jsm, line 66: Error: Can't find profile directory.
1579796373067 Marionette INFO Listening on port 14474
1579796373561 Marionette WARN TLS certificate errors will be ignored for this session
JavaScript error: resource:///modules/BrowserUsageTelemetry.jsm, line 303: TypeError: this._timeouts.remove is not a function
s" "-foreground" "-no-remote" "-profile" "C:\\Users\\MIDAV\\AppData\\Local\\Temp\\rust_mozprofile.KxNHdoLzpfiv"
*** You are running in headless mode.
1579796583536 [email protected] WARN Loading extension '[email protected]': Reading manifest: Invalid extension permission: networkStatus
1579796583652 [email protected] WARN Loading extension '[email protected]': Reading manifest: Invalid extension permission: mozillaAddons
1579796583652 [email protected] WARN Loading extension '[email protected]': Reading manifest: Invalid extension permission: telemetry
1579796583652 [email protected] WARN Loading extension '[email protected]': Reading manifest: Invalid extension permission: resource://pdf.js/
1579796583652 [email protected] WARN Loading extension '[email protected]': Reading manifest: Invalid extension permission: about:reader*
JavaScript error: resource://gre/modules/XULStore.jsm, line 66: Error: Can't find profile directory.
1579796585451 Marionette INFO Listening on port 14608
1579796585700 Marionette WARN TLS certificate errors will be ignored for this session
JavaScript error: resource:///modules/BrowserUsageTelemetry.jsm, line 303: TypeError: this._timeouts.remove is not a function
Exiting due to channel error.
Exiting due to channel error.
pData\\Local\\Temp\\rust_mozprofile.Jr9eZxoRTm91"
*** You are running in headless mode.
1579796709605 [email protected] WARN Loading extension '[email protected]': Reading manifest: Invalid extension permission: networkStatus
1579796709699 [email protected] WARN Loading extension '[email protected]': Reading manifest: Invalid extension permission: mozillaAddons
1579796709699 [email protected] WARN Loading extension '[email protected]': Reading manifest: Invalid extension permission: telemetry
1579796709699 [email protected] WARN Loading extension '[email protected]': Reading manifest: Invalid extension permission: resource://pdf.js/
1579796709699 [email protected] WARN Loading extension '[email protected]': Reading manifest: Invalid extension permission: about:reader*
JavaScript error: resource://gre/modules/XULStore.jsm, line 66: Error: Can't find profile directory.
1579796711319 Marionette INFO Listening on port 14721
1579796711737 Marionette WARN TLS certificate errors will be ignored for this session
1579796723458 Marionette INFO Stopped listening on port 14721
1579796911993 mozrunner::runner INFO Running command: "C:\\Program Files\\Mozilla Firefox\\firefox.exe" "-marionette" "-headless" "-foreground" "-no-remote" "-profile" "C:\\Users\\MIDAV\\AppData\\Local\\Temp\\rust_mozprofile.HlRJDx5mxJiA"
*** You are running in headless mode.
1579796912479 [email protected] WARN Loading extension '[email protected]': Reading manifest: Invalid extension permission: networkStatus
1579796912586 [email protected] WARN Loading extension '[email protected]': Reading manifest: Invalid extension permission: mozillaAddons
1579796912586 [email protected] WARN Loading extension '[email protected]': Reading manifest: Invalid extension permission: telemetry
1579796912586 [email protected] WARN Loading extension '[email protected]': Reading manifest: Invalid extension permission: resource://pdf.js/
1579796912586 [email protected] WARN Loading extension '[email protected]': Reading manifest: Invalid extension permission: about:reader*
JavaScript error: resource://gre/modules/XULStore.jsm, line 66: Error: Can't find profile directory.
1579796914953 Marionette INFO Listening on port 14861
1579796915162 Marionette WARN TLS certificate errors will be ignored for this session
1579796927461 Marionette INFO Stopped listening on port 14861
1579797029362 mozrunner::runner INFO Running command: "C:\\Program Files\\Mozilla Firefox\\firefox.exe" "-marionette" "-headless" "-foreground" "-no-remote" "-profile" "C:\\Users\\MIDAV\\AppData\\Local\\Temp\\rust_mozprofile.rv5HRAz3rv5Z"
*** You are running in headless mode.
1579797029933 [email protected] WARN Loading extension '[email protected]': Reading manifest: Invalid extension permission: networkStatus
1579797030022 [email protected] WARN Loading extension '[email protected]': Reading manifest: Invalid extension permission: mozillaAddons
1579797030022 [email protected] WARN Loading extension '[email protected]': Reading manifest: Invalid extension permission: telemetry
1579797030022 [email protected] WARN Loading extension '[email protected]': Reading manifest: Invalid extension permission: resource://pdf.js/
1579797030022 [email protected] WARN Loading extension '[email protected]': Reading manifest: Invalid extension permission: about:reader*
JavaScript error: resource://gre/modules/XULStore.jsm, line 66: Error: Can't find profile directory.
1579797031628 Marionette INFO Listening on port 14973
1579797032072 Marionette WARN TLS certificate errors will be ignored for this session
1579797044553 Marionette INFO Stopped listening on port 14973
1579797126630 mozrunner::runner INFO Running command: "C:\\Program Files\\Mozilla Firefox\\firefox.exe" "-marionette" "-headless" "-foreground" "-no-remote" "-profile" "C:\\Users\\MIDAV\\AppData\\Local\\Temp\\rust_mozprofile.h6d3cJOTaIDc"
*** You are running in headless mode.
1579797127134 [email protected] WARN Loading extension '[email protected]': Reading manifest: Invalid extension permission: networkStatus
1579797127242 [email protected] WARN Loading extension '[email protected]': Reading manifest: Invalid extension permission: mozillaAddons
1579797127242 [email protected] WARN Loading extension '[email protected]': Reading manifest: Invalid extension permission: telemetry
1579797127242 [email protected] WARN Loading extension '[email protected]': Reading manifest: Invalid extension permission: resource://pdf.js/
1579797127242 [email protected] WARN Loading extension '[email protected]': Reading manifest: Invalid extension permission: about:reader*
JavaScript error: resource://gre/modules/XULStore.jsm, line 66: Error: Can't find profile directory.
1579797128686 Marionette INFO Listening on port 15078
1579797128706 Marionette WARN TLS certificate errors will be ignored for this session
1579797145486 Marionette INFO Stopped listening on port 15078
1579797204466 mozrunner::runner INFO Running command: "C:\\Program Files\\Mozilla Firefox\\firefox.exe" "-marionette" "-headless" "-foreground" "-no-remote" "-profile" "C:\\Users\\MIDAV\\AppData\\Local\\Temp\\rust_mozprofile.0utUhhRODZe3"
*** You are running in headless mode.
1579797204973 [email protected] WARN Loading extension '[email protected]': Reading manifest: Invalid extension permission: networkStatus
1579797205111 [email protected] WARN Loading extension '[email protected]': Reading manifest: Invalid extension permission: mozillaAddons
1579797205111 [email protected] WARN Loading extension '[email protected]': Reading manifest: Invalid extension permission: telemetry
1579797205111 [email protected] WARN Loading extension '[email protected]': Reading manifest: Invalid extension permission: resource://pdf.js/
1579797205112 [email protected] WARN Loading extension '[email protected]': Reading manifest: Invalid extension permission: about:reader*
JavaScript error: resource://gre/modules/XULStore.jsm, line 66: Error: Can't find profile directory.
1579797206999 Marionette INFO Listening on port 15176
1579797207170 Marionette WARN TLS certificate errors will be ignored for this session
1579797219207 Marionette INFO Stopped listening on port 15176
1579797500579 mozrunner::runner INFO Running command: "C:\\Program Files\\Mozilla Firefox\\firefox.exe" "-marionette" "-headless" "-foreground" "-no-remote" "-profile" "C:\\Users\\MIDAV\\AppData\\Local\\Temp\\rust_mozprofile.pB97VBuW4z2v"
*** You are running in headless mode.
1579797501149 [email protected] WARN Loading extension '[email protected]': Reading manifest: Invalid extension permission: networkStatus
1579797501238 [email protected] WARN Loading extension '[email protected]': Reading manifest: Invalid extension permission: mozillaAddons
1579797501238 [email protected] WARN Loading extension '[email protected]': Reading manifest: Invalid extension permission: telemetry
1579797501238 [email protected] WARN Loading extension '[email protected]': Reading manifest: Invalid extension permission: resource://pdf.js/
1579797501238 [email protected] WARN Loading extension '[email protected]': Reading manifest: Invalid extension permission: about:reader*
JavaScript error: resource://gre/modules/XULStore.jsm, line 66: Error: Can't find profile directory.
1579797502868 Marionette INFO Listening on port 15341
1579797503287 Marionette WARN TLS certificate errors will be ignored for this session
1579797515672 Marionette INFO Stopped listening on port 15341
1579797541309 mozrunner::runner INFO Running command: "C:\\Program Files\\Mozilla Firefox\\firefox.exe" "-marionette" "-headless" "-foreground" "-no-remote" "-profile" "C:\\Users\\MIDAV\\AppData\\Local\\Temp\\rust_mozprofile.zqhUpwKVY5QV"
*** You are running in headless mode.
1579797541849 [email protected] WARN Loading extension '[email protected]': Reading manifest: Invalid extension permission: networkStatus
1579797541950 [email protected] WARN Loading extension '[email protected]': Reading manifest: Invalid extension permission: mozillaAddons
1579797541950 [email protected] WARN Loading extension '[email protected]': Reading manifest: Invalid extension permission: telemetry
1579797541950 [email protected] WARN Loading extension '[email protected]': Reading manifest: Invalid extension permission: resource://pdf.js/
1579797541950 [email protected] WARN Loading extension '[email protected]': Reading manifest: Invalid extension permission: about:reader*
JavaScript error: resource://gre/modules/XULStore.jsm, line 66: Error: Can't find profile directory.
1579797543693 Marionette INFO Listening on port 15435
1579797544014 Marionette WARN TLS certificate errors will be ignored for this session
1579797556419 Marionette INFO Stopped listening on port 15435
1579798045765 mozrunner::runner INFO Running command: "C:\\Program Files\\Mozilla Firefox\\firefox.exe" "-marionette" "-headless" "-foreground" "-no-remote" "-profile" "C:\\Users\\MIDAV\\AppData\\Local\\Temp\\rust_mozprofile.9wfnBhObZHn7"
*** You are running in headless mode.
1579798046406 [email protected] WARN Loading extension '[email protected]': Reading manifest: Invalid extension permission: networkStatus
1579798046493 [email protected] WARN Loading extension '[email protected]': Reading manifest: Invalid extension permission: mozillaAddons
1579798046493 [email protected] WARN Loading extension '[email protected]': Reading manifest: Invalid extension permission: telemetry
1579798046493 [email protected] WARN Loading extension '[email protected]': Reading manifest: Invalid extension permission: resource://pdf.js/
1579798046494 [email protected] WARN Loading extension '[email protected]': Reading manifest: Invalid extension permission: about:reader*
JavaScript error: resource://gre/modules/XULStore.jsm, line 66: Error: Can't find profile directory.
1579798048144 Marionette INFO Listening on port 15706
1579798048471 Marionette WARN TLS certificate errors will be ignored for this session
1579798061054 Marionette INFO Stopped listening on port 15706
1579798107492 mozrunner::runner INFO Running command: "C:\\Program Files\\Mozilla Firefox\\firefox.exe" "-marionette" "-headless" "-foreground" "-no-remote" "-profile" "C:\\Users\\MIDAV\\AppData\\Local\\Temp\\rust_mozprofile.IQvOZGIEn98H"
*** You are running in headless mode.
1579798108054 [email protected] WARN Loading extension '[email protected]': Reading manifest: Invalid extension permission: networkStatus
1579798108147 [email protected] WARN Loading extension '[email protected]': Reading manifest: Invalid extension permission: mozillaAddons
1579798108147 [email protected] WARN Loading extension '[email protected]': Reading manifest: Invalid extension permission: telemetry
1579798108147 [email protected] WARN Loading extension '[email protected]': Reading manifest: Invalid extension permission: resource://pdf.js/
1579798108147 [email protected] WARN Loading extension '[email protected]': Reading manifest: Invalid extension permission: about:reader*
JavaScript error: resource://gre/modules/XULStore.jsm, line 66: Error: Can't find profile directory.
1579798110016 Marionette INFO Listening on port 15806
1579798110170 Marionette WARN TLS certificate errors will be ignored for this session
JavaScript error: https://coinsquare.com/trade/assets/trade-71c48c290116bf598ad4.js, line 92: TypeError: d.l.getActiveQuote(...) is undefined
1579798121814 Marionette INFO Stopped listening on port 15806
1579798314939 mozrunner::runner INFO Running command: "C:\\Program Files\\Mozilla Firefox\\firefox.exe" "-marionette" "-headless" "-foreground" "-no-remote" "-profile" "C:\\Users\\MIDAV\\AppData\\Local\\Temp\\rust_mozprofile.dTAU4wGobHlt"
*** You are running in headless mode.
1579798315532 [email protected] WARN Loading extension '[email protected]': Reading manifest: Invalid extension permission: networkStatus
1579798315647 [email protected] WARN Loading extension '[email protected]': Reading manifest: Invalid extension permission: mozillaAddons
1579798315647 [email protected] WARN Loading extension '[email protected]': Reading manifest: Invalid extension permission: telemetry
1579798315647 [email protected] WARN Loading extension '[email protected]': Reading manifest: Invalid extension permission: resource://pdf.js/
1579798315647 [email protected] WARN Loading extension '[email protected]': Reading manifest: Invalid extension permission: about:reader*
JavaScript error: resource://gre/modules/XULStore.jsm, line 66: Error: Can't find profile directory.
1579798317515 Marionette INFO Listening on port 16015
1579798317623 Marionette WARN TLS certificate errors will be ignored for this session
1579798390460 mozrunner::runner INFO Running command: "C:\\Program Files\\Mozilla Firefox\\firefox.exe" "-marionette" "-headless" "-foreground" "-no-remote" "-profile" "C:\\Users\\MIDAV\\AppData\\Local\\Temp\\rust_mozprofile.mnK0DhTY0Ub2"
*** You are running in headless mode.
1579798391022 [email protected] WARN Loading extension '[email protected]': Reading manifest: Invalid extension permission: networkStatus
1579798391116 [email protected] WARN Loading extension '[email protected]': Reading manifest: Invalid extension permission: mozillaAddons
1579798391116 [email protected] WARN Loading extension '[email protected]': Reading manifest: Invalid extension permission: telemetry
1579798391116 [email protected] WARN Loading extension '[email protected]': Reading manifest: Invalid extension permission: resource://pdf.js/
1579798391116 [email protected] WARN Loading extension '[email protected]': Reading manifest: Invalid extension permission: about:reader*
JavaScript error: resource://gre/modules/XULStore.jsm, line 66: Error: Can't find profile directory.
1579798392730 Marionette INFO Listening on port 16079
1579798393164 Marionette WARN TLS certificate errors will be ignored for this session
JavaScript error: resource://gre/modules/XULStore.jsm, line 66: Error: Can't find profile directory.
1579799109845 mozrunner::runner INFO Running command: "C:\\Program Files\\Mozilla Firefox\\firefox.exe" "-marionette" "-headless" "-foreground" "-no-remote" "-profile" "C:\\Users\\MIDAV\\AppData\\Local\\Temp\\rust_mozprofile.ULYoItaKleVG"
*** You are running in headless mode.
1579799110457 [email protected] WARN Loading extension '[email protected]': Reading manifest: Invalid extension permission: networkStatus
1579799110575 [email protected] WARN Loading extension '[email protected]': Reading manifest: Invalid extension permission: mozillaAddons
1579799110575 [email protected] WARN Loading extension '[email protected]': Reading manifest: Invalid extension permission: telemetry
1579799110575 [email protected] WARN Loading extension '[email protected]': Reading manifest: Invalid extension permission: resource://pdf.js/
1579799110575 [email protected] WARN Loading extension '[email protected]': Reading manifest: Invalid extension permission: about:reader*
JavaScript error: resource://gre/modules/XULStore.jsm, line 66: Error: Can't find profile directory.
1579799112178 Marionette INFO Listening on port 16358
1579799112533 Marionette WARN TLS certificate errors will be ignored for this session
1579799125738 Marionette INFO Stopped listening on port 16358
1579811607145 mozrunner::runner INFO Running command: "C:\\Program Files\\Mozilla Firefox\\firefox.exe" "-marionette" "-headless" "-foreground" "-no-remote" "-profile" "C:\\Users\\MIDAV\\AppData\\Local\\Temp\\rust_mozprofile.Wv59SxftIcv0"
*** You are running in headless mode.
1579811607965 [email protected] WARN Loading extension '[email protected]': Reading manifest: Invalid extension permission: networkStatus
1579811608057 [email protected] WARN Loading extension '[email protected]': Reading manifest: Invalid extension permission: mozillaAddons
1579811608057 [email protected] WARN Loading extension '[email protected]': Reading manifest: Invalid extension permission: telemetry
1579811608058 [email protected] WARN Loading extension '[email protected]': Reading manifest: Invalid extension permission: resource://pdf.js/
1579811608058 [email protected] WARN Loading extension '[email protected]': Reading manifest: Invalid extension permission: about:reader*
JavaScript error: resource://gre/modules/XULStore.jsm, line 66: Error: Can't find profile directory.
1579811609827 Marionette INFO Listening on port 17005
1579811609864 Marionette WARN TLS certificate errors will be ignored for this session
1579811622139 Marionette INFO Stopped listening on port 17005
1579829615217 mozrunner::runner INFO Running command: "C:\\Program Files\\Mozilla Firefox\\firefox.exe" "-marionette" "-headless" "-foreground" "-no-remote" "-profile" "C:\\Users\\MIDAV\\AppData\\Local\\Temp\\rust_mozprofile.nPM69qT5eVvF"
*** You are running in headless mode.
1579829615906 [email protected] WARN Loading extension '[email protected]': Reading manifest: Invalid extension permission: networkStatus
1579829616144 [email protected] WARN Loading extension '[email protected]': Reading manifest: Invalid extension permission: mozillaAddons
1579829616144 [email protected] WARN Loading extension '[email protected]': Reading manifest: Invalid extension permission: telemetry
1579829616144 [email protected] WARN Loading extension '[email protected]': Reading manifest: Invalid extension permission: resource://pdf.js/
1579829616144 [email protected] WARN Loading extension '[email protected]': Reading manifest: Invalid extension permission: about:reader*
JavaScript error: resource://gre/modules/XULStore.jsm, line 66: Error: Can't find profile directory.
1579829618080 Marionette INFO Listening on port 19618
1579829618414 Marionette WARN TLS certificate errors will be ignored for this session
1579829631331 Marionette INFO Stopped listening on port 19618
1579830498015 mozrunner::runner INFO Running command: "C:\\Program Files\\Mozilla Firefox\\firefox.exe" "-marionette" "-headless" "-foreground" "-no-remote" "-profile" "C:\\Users\\MIDAV\\AppData\\Local\\Temp\\rust_mozprofile.GzdVQc9TFajS"
*** You are running in headless mode.
1579830498681 [email protected] WARN Loading extension '[email protected]': Reading manifest: Invalid extension permission: networkStatus
1579830498839 [email protected] WARN Loading extension '[email protected]': Reading manifest: Invalid extension permission: mozillaAddons
1579830498839 [email protected] WARN Loading extension '[email protected]': Reading manifest: Invalid extension permission: telemetry
1579830498839 [email protected] WARN Loading extension '[email protected]': Reading manifest: Invalid extension permission: resource://pdf.js/
1579830498840 [email protected] WARN Loading extension '[email protected]': Reading manifest: Invalid extension permission: about:reader*
JavaScript error: resource://gre/modules/XULStore.jsm, line 66: Error: Can't find profile directory.
1579830501172 Marionette INFO Listening on port 19827
1579830501237 Marionette WARN TLS certificate errors will be ignored for this session
1579830513883 Marionette INFO Stopped listening on port 19827
1579888668903 mozrunner::runner INFO Running command: "C:\\Program Files\\Mozilla Firefox\\firefox.exe" "-marionette" "-headless" "-foreground" "-no-remote" "-profile" "C:\\Users\\MIDAV\\AppData\\Local\\Temp\\rust_mozprofile.fTASdoz90w1P"
*** You are running in headless mode.
1579888670561 [email protected] WARN Loading extension '[email protected]': Reading manifest: Invalid extension permission: networkStatus
1579888670706 [email protected] WARN Loading extension '[email protected]': Reading manifest: Invalid extension permission: mozillaAddons
1579888670706 [email protected] WARN Loading extension '[email protected]': Reading manifest: Invalid extension permission: telemetry
1579888670706 [email protected] WARN Loading extension '[email protected]': Reading manifest: Invalid extension permission: resource://pdf.js/
1579888670707 [email protected] WARN Loading extension '[email protected]': Reading manifest: Invalid extension permission: about:reader*
JavaScript error: resource://gre/modules/XULStore.jsm, line 66: Error: Can't find profile directory.
1579888672500 Marionette INFO Listening on port 23555
1579888672733 Marionette WARN TLS certificate errors will be ignored for this session
1579888685535 Marionette INFO Stopped listening on port 23555
1579888796995 mozrunner::runner INFO Running command: "C:\\Program Files\\Mozilla Firefox\\firefox.exe" "-marionette" "-headless" "-foreground" "-no-remote" "-profile" "C:\\Users\\MIDAV\\AppData\\Local\\Temp\\rust_mozprofile.TGGGh54H4wXd"
*** You are running in headless mode.
1579888797897 [email protected] WARN Loading extension '[email protected]': Reading manifest: Invalid extension permission: networkStatus
1579888798134 [email protected] WARN Loading extension '[email protected]': Reading manifest: Invalid extension permission: mozillaAddons
1579888798134 [email protected] WARN Loading extension '[email protected]': Reading manifest: Invalid extension permission: telemetry
1579888798134 [email protected] WARN Loading extension '[email protected]': Reading manifest: Invalid extension permission: resource://pdf.js/
1579888798134 [email protected] WARN Loading extension '[email protected]': Reading manifest: Invalid extension permission: about:reader*
JavaScript error: resource://gre/modules/XULStore.jsm, line 66: Error: Can't find profile directory.
1579888800390 Marionette INFO Listening on port 23661
1579888800699 Marionette WARN TLS certificate errors will be ignored for this session
1579888813084 Marionette INFO Stopped listening on port 23661
1579888844959 mozrunner::runner INFO Running command: "C:\\Program Files\\Mozilla Firefox\\firefox.exe" "-marionette" "-headless" "-foreground" "-no-remote" "-profile" "C:\\Users\\MIDAV\\AppData\\Local\\Temp\\rust_mozprofile.dE0DEjLfOgT9"
*** You are running in headless mode.
1579888846294 [email protected] WARN Loading extension '[email protected]': Reading manifest: Invalid extension permission: networkStatus
1579888846489 [email protected] WARN Loading extension '[email protected]': Reading manifest: Invalid extension permission: mozillaAddons
1579888846489 [email protected] WARN Loading extension '[email protected]': Reading manifest: Invalid extension permission: telemetry
1579888846489 [email protected] WARN Loading extension '[email protected]': Reading manifest: Invalid extension permission: resource://pdf.js/
1579888846490 [email protected] WARN Loading extension '[email protected]': Reading manifest: Invalid extension permission: about:reader*
JavaScript error: resource://gre/modules/XULStore.jsm, line 66: Error: Can't find profile directory.
1579888848328 Marionette INFO Listening on port 23747
1579888848735 Marionette WARN TLS certificate errors will be ignored for this session
1579888861206 Marionette INFO Stopped listening on port 23747
1579888892815 mozrunner::runner INFO Running command: "C:\\Program Files\\Mozilla Firefox\\firefox.exe" "-marionette" "-headless" "-foreground" "-no-remote" "-profile" "C:\\Users\\MIDAV\\AppData\\Local\\Temp\\rust_mozprofile.JyFiuRNHvKg1"
*** You are running in headless mode.
1579888894320 [email protected] WARN Loading extension '[email protected]': Reading manifest: Invalid extension permission: networkStatus
1579888894536 [email protected] WARN Loading extension '[email protected]': Reading manifest: Invalid extension permission: mozillaAddons
1579888894536 [email protected] WARN Loading extension '[email protected]': Reading manifest: Invalid extension permission: telemetry
1579888894537 [email protected] WARN Loading extension '[email protected]': Reading manifest: Invalid extension permission: resource://pdf.js/
1579888894537 [email protected] WARN Loading extension '[email protected]': Reading manifest: Invalid extension permission: about:reader*
JavaScript error: resource://gre/modules/XULStore.jsm, line 66: Error: Can't find profile directory.
1579888896270 Marionette INFO Listening on port 23833
1579888896553 Marionette WARN TLS certificate errors will be ignored for this session
1579888909394 Marionette INFO Stopped listening on port 23833
###!!! [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
1579888940102 mozrunner::runner INFO Running command: "C:\\Program Files\\Mozilla Firefox\\firefox.exe" "-marionette" "-headless" "-foreground" "-no-remote" "-profile" "C:\\Users\\MIDAV\\AppData\\Local\\Temp\\rust_mozprofile.BDtURUT3IysA"
*** You are running in headless mode.
1579888941245 [email protected] WARN Loading extension '[email protected]': Reading manifest: Invalid extension permission: networkStatus
1579888941492 [email protected] WARN Loading extension '[email protected]': Reading manifest: Invalid extension permission: mozillaAddons
1579888941493 [email protected] WARN Loading extension '[email protected]': Reading manifest: Invalid extension permission: telemetry
1579888941493 [email protected] WARN Loading extension '[email protected]': Reading manifest: Invalid extension permission: resource://pdf.js/
1579888941493 [email protected] WARN Loading extension '[email protected]': Reading manifest: Invalid extension permission: about:reader*
JavaScript error: resource://gre/modules/XULStore.jsm, line 66: Error: Can't find profile directory.
1579888943523 Marionette INFO Listening on port 23923
1579888943871 Marionette WARN TLS certificate errors will be ignored for this session
1579888956335 Marionette INFO Stopped listening on port 23923
1579888987487 mozrunner::runner INFO Running command: "C:\\Program Files\\Mozilla Firefox\\firefox.exe" "-marionette" "-headless" "-foreground" "-no-remote" "-profile" "C:\\Users\\MIDAV\\AppData\\Local\\Temp\\rust_mozprofile.zUdkjJ6rPY7N"
*** You are running in headless mode.
1579888988452 [email protected] WARN Loading extension '[email protected]': Reading manifest: Invalid extension permission: networkStatus
1579888988690 [email protected] WARN Loading extension '[email protected]': Reading manifest: Invalid extension permission: mozillaAddons
1579888988690 [email protected] WARN Loading extension '[email protected]': Reading manifest: Invalid extension permission: telemetry
1579888988690 [email protected] WARN Loading extension '[email protected]': Reading manifest: Invalid extension permission: resource://pdf.js/
1579888988690 [email protected] WARN Loading extension '[email protected]': Reading manifest: Invalid extension permission: about:reader*
JavaScript error: resource://gre/modules/XULStore.jsm, line 66: Error: Can't find profile directory.
1579888991060 Marionette INFO Listening on port 24004
1579888991180 Marionette WARN TLS certificate errors will be ignored for this session
1579889004049 Marionette INFO Stopped listening on port 24004
1579889035634 mozrunner::runner INFO Running command: "C:\\Program Files\\Mozilla Firefox\\firefox.exe" "-marionette" "-headless" "-foreground" "-no-remote" "-profile" "C:\\Users\\MIDAV\\AppData\\Local\\Temp\\rust_mozprofile.QvUyfQrvXuHO"
*** You are running in headless mode.
1579889036977 [email protected] WARN Loading extension '[email protected]': Reading manifest: Invalid extension permission: networkStatus
1579889037180 [email protected] WARN Loading extension '[email protected]': Reading manifest: Invalid extension permission: mozillaAddons
1579889037181 [email protected] WARN Loading extension '[email protected]': Reading manifest: Invalid extension permission: telemetry
1579889037181 [email protected] WARN Loading extension '[email protected]': Reading manifest: Invalid extension permission: resource://pdf.js/
1579889037181 [email protected] WARN Loading extension '[email protected]': Reading manifest: Invalid extension permission: about:reader*
JavaScript error: resource://gre/modules/XULStore.jsm, line 66: Error: Can't find profile directory.
1579889039480 Marionette INFO Listening on port 24090
1579889039862 Marionette WARN TLS certificate errors will be ignored for this session
1579889052142 Marionette INFO Stopped listening on port 24090
1579889083064 mozrunner::runner INFO Running command: "C:\\Program Files\\Mozilla Firefox\\firefox.exe" "-marionette" "-headless" "-foreground" "-no-remote" "-profile" "C:\\Users\\MIDAV\\AppData\\Local\\Temp\\rust_mozprofile.aG5iWQzHNXYB"
*** You are running in headless mode.
1579889084786 [email protected] WARN Loading extension '[email protected]': Reading manifest: Invalid extension permission: networkStatus
1579889084885 [email protected] WARN Loading extension '[email protected]': Reading manifest: Invalid extension permission: mozillaAddons
1579889084885 [email protected] WARN Loading extension '[email protected]': Reading manifest: Invalid extension permission: telemetry
1579889084886 [email protected] WARN Loading extension '[email protected]': Reading manifest: Invalid extension permission: resource://pdf.js/
1579889084886 [email protected] WARN Loading extension '[email protected]': Reading manifest: Invalid extension permission: about:reader*
JavaScript error: resource://gre/modules/XULStore.jsm, line 66: Error: Can't find profile directory.
1579889086601 Marionette INFO Listening on port 24176
1579889086791 Marionette WARN TLS certificate errors will be ignored for this session
1579889099688 Marionette INFO Stopped listening on port 24176
1579899549541 mozrunner::runner INFO Running command: "C:\\Program Files\\Mozilla Firefox\\firefox.exe" "-marionette" "-headless" "-foreground" "-no-remote" "-profile" "C:\\Users\\MIDAV\\AppData\\Local\\Temp\\rust_mozprofile.bsBGTwWsoALe"
*** You are running in headless mode.
1579899550903 [email protected] WARN Loading extension '[email protected]': Reading manifest: Invalid extension permission: networkStatus
1579899551144 [email protected] WARN Loading extension '[email protected]': Reading manifest: Invalid extension permission: mozillaAddons
1579899551144 [email protected] WARN Loading extension '[email protected]': Reading manifest: Invalid extension permission: telemetry
1579899551144 [email protected] WARN Loading extension '[email protected]': Reading manifest: Invalid extension permission: resource://pdf.js/
1579899551144 [email protected] WARN Loading extension '[email protected]': Reading manifest: Invalid extension permission: about:reader*
JavaScript error: resource://gre/modules/XULStore.jsm, line 66: Error: Can't find profile directory.
1579899553539 Marionette INFO Listening on port 26641
1579899553710 Marionette WARN TLS certificate errors will be ignored for this session
1579899565628 Marionette INFO Stopped listening on port 26641
1579899637801 mozrunner::runner INFO Running command: "C:\\Program Files\\Mozilla Firefox\\firefox.exe" "-marionette" "-headless" "-foreground" "-no-remote" "-profile" "C:\\Users\\MIDAV\\AppData\\Local\\Temp\\rust_mozprofile.AlqjIVcG7MOd"
*** You are running in headless mode.
1579899638934 [email protected] WARN Loading extension '[email protected]': Reading manifest: Invalid extension permission: networkStatus
1579899639171 [email protected] WARN Loading extension '[email protected]': Reading manifest: Invalid extension permission: mozillaAddons
1579899639171 [email protected] WARN Loading extension '[email protected]': Reading manifest: Invalid extension permission: telemetry
1579899639171 [email protected] WARN Loading extension '[email protected]': Reading manifest: Invalid extension permission: resource://pdf.js/
1579899639171 [email protected] WARN Loading extension '[email protected]': Reading manifest: Invalid extension permission: about:reader*
JavaScript error: resource://gre/modules/XULStore.jsm, line 66: Error: Can't find profile directory.
1579899641353 Marionette INFO Listening on port 26775
1579899641495 Marionette WARN TLS certificate errors will be ignored for this session
1579899653321 Marionette INFO Stopped listening on port 26775
1579899808592 mozrunner::runner INFO Running command: "C:\\Program Files\\Mozilla Firefox\\firefox.exe" "-marionette" "-headless" "-foreground" "-no-remote" "-profile" "C:\\Users\\MIDAV\\AppData\\Local\\Temp\\rust_mozprofile.Blu9W42o1b5f"
*** You are running in headless mode.
1579899809807 [email protected] WARN Loading extension '[email protected]': Reading manifest: Invalid extension permission: networkStatus
1579899810005 [email protected] WARN Loading extension '[email protected]': Reading manifest: Invalid extension permission: mozillaAddons
1579899810005 [email protected] WARN Loading extension '[email protected]': Reading manifest: Invalid extension permission: telemetry
1579899810005 [email protected] WARN Loading extension '[email protected]': Reading manifest: Invalid extension permission: resource://pdf.js/
1579899810005 [email protected] WARN Loading extension '[email protected]': Reading manifest: Invalid extension permission: about:reader*
JavaScript error: resource://gre/modules/XULStore.jsm, line 66: Error: Can't find profile directory.
1579899812293 Marionette INFO Listening on port 26952
1579899812774 Marionette WARN TLS certificate errors will be ignored for this session
1579899824756 Marionette INFO Stopped listening on port 26952
1579899829182 mozrunner::runner INFO Running command: "C:\\Program Files\\Mozilla Firefox\\firefox.exe" "-marionette" "-headless" "-foreground" "-no-remote" "-profile" "C:\\Users\\MIDAV\\AppData\\Local\\Temp\\rust_mozprofile.3Ayb3PYLxfzT"
*** You are running in headless mode.
1579899830774 [email protected] WARN Loading extension '[email protected]': Reading manifest: Invalid extension permission: networkStatus
1579899831023 [email protected] WARN Loading extension '[email protected]': Reading manifest: Invalid extension permission: mozillaAddons
1579899831023 [email protected] WARN Loading extension '[email protected]': Reading manifest: Invalid extension permission: telemetry
1579899831023 [email protected] WARN Loading extension '[email protected]': Reading manifest: Invalid extension permission: resource://pdf.js/
1579899831023 [email protected] WARN Loading extension '[email protected]': Reading manifest: Invalid extension permission: about:reader*
JavaScript error: resource://gre/modules/XULStore.jsm, line 66: Error: Can't find profile directory.
1579899832797 Marionette INFO Listening on port 27042
1579899832858 Marionette WARN TLS certificate errors will be ignored for this session
1579899844853 Marionette INFO Stopped listening on port 27042
1579899849195 mozrunner::runner INFO Running command: "C:\\Program Files\\Mozilla Firefox\\firefox.exe" "-marionette" "-headless" "-foreground" "-no-remote" "-profile" "C:\\Users\\MIDAV\\AppData\\Local\\Temp\\rust_mozprofile.pxRaiiji8QY3"
*** You are running in headless mode.
1579899850224 [email protected] WARN Loading extension '[email protected]': Reading manifest: Invalid extension permission: networkStatus
1579899850446 [email protected] WARN Loading extension '[email protected]': Reading manifest: Invalid extension permission: mozillaAddons
1579899850446 [email protected] WARN Loading extension '[email protected]': Reading manifest: Invalid extension permission: telemetry
1579899850446 [email protected] WARN Loading extension '[email protected]': Reading manifest: Invalid extension permission: resource://pdf.js/
1579899850447 [email protected] WARN Loading extension '[email protected]': Reading manifest: Invalid extension permission: about:reader*
JavaScript error: resource://gre/modules/XULStore.jsm, line 66: Error: Can't find profile directory.
1579899852727 Marionette INFO Listening on port 27124
1579899852856 Marionette WARN TLS certificate errors will be ignored for this session
1579899864765 Marionette INFO Stopped listening on port 27124
1579899869221 mozrunner::runner INFO Running command: "C:\\Program Files\\Mozilla Firefox\\firefox.exe" "-marionette" "-headless" "-foreground" "-no-remote" "-profile" "C:\\Users\\MIDAV\\AppData\\Local\\Temp\\rust_mozprofile.48GEDii8eSqV"
*** You are running in headless mode.
1579899870996 [email protected] WARN Loading extension '[email protected]': Reading manifest: Invalid extension permission: networkStatus
1579899871343 [email protected] WARN Loading extension '[email protected]': Reading manifest: Invalid extension permission: mozillaAddons
1579899871343 [email protected] WARN Loading extension '[email protected]': Reading manifest: Invalid extension permission: telemetry
1579899871344 [email protected] WARN Loading extension '[email protected]': Reading manifest: Invalid extension permission: resource://pdf.js/
1579899871344 [email protected] WARN Loading extension '[email protected]': Reading manifest: Invalid extension permission: about:reader*
JavaScript error: resource://gre/modules/XULStore.jsm, line 66: Error: Can't find profile directory.
1579899873468 Marionette INFO Listening on port 27210
1579899873972 Marionette WARN TLS certificate errors will be ignored for this session
Exiting due to channel error.
Exiting due to channel error.
gram Files\\Mozilla Firefox\\firefox.exe" "-marionette" "-headless" "-foreground" "-no-remote" "-profile" "C:\\Users\\MIDAV\\AppData\\Local\\Temp\\rust_mozprofile.uWKWGPDJJ8Dz"
*** You are running in headless mode.
1579900572415 [email protected] WARN Loading extension '[email protected]': Reading manifest: Invalid extension permission: networkStatus
1579900572730 [email protected] WARN Loading extension '[email protected]': Reading manifest: Invalid extension permission: mozillaAddons
1579900572730 [email protected] WARN Loading extension '[email protected]': Reading manifest: Invalid extension permission: telemetry
1579900572730 [email protected] WARN Loading extension '[email protected]': Reading manifest: Invalid extension permission: resource://pdf.js/
1579900572730 [email protected] WARN Loading extension '[email protected]': Reading manifest: Invalid extension permission: about:reader*
JavaScript error: resource://gre/modules/XULStore.jsm, line 66: Error: Can't find profile directory.
1579900574982 Marionette INFO Listening on port 1104
1579900575022 Marionette WARN TLS certificate errors will be ignored for this session
1579900587026 Marionette INFO Stopped listening on port 1104
1579900591548 mozrunner::runner INFO Running command: "C:\\Program Files\\Mozilla Firefox\\firefox.exe" "-marionette" "-headless" "-foreground" "-no-remote" "-profile" "C:\\Users\\MIDAV\\AppData\\Local\\Temp\\rust_mozprofile.Vd7wQ27zXuys"
*** You are running in headless mode.
1579900592766 [email protected] WARN Loading extension '[email protected]': Reading manifest: Invalid extension permission: networkStatus
1579900592953 [email protected] WARN Loading extension '[email protected]': Reading manifest: Invalid extension permission: mozillaAddons
1579900592953 [email protected] WARN Loading extension '[email protected]': Reading manifest: Invalid extension permission: telemetry
1579900592953 [email protected] WARN Loading extension '[email protected]': Reading manifest: Invalid extension permission: resource://pdf.js/
1579900592953 [email protected] WARN Loading extension '[email protected]': Reading manifest: Invalid extension permission: about:reader*
JavaScript error: resource://gre/modules/XULStore.jsm, line 66: Error: Can't find profile directory.
1579900595211 Marionette INFO Listening on port 1195
1579900595239 Marionette WARN TLS certificate errors will be ignored for this session
1579900607341 Marionette INFO Stopped listening on port 1195
1579900636875 mozrunner::runner INFO Running command: "C:\\Program Files\\Mozilla Firefox\\firefox.exe" "-marionette" "-headless" "-foreground" "-no-remote" "-profile" "C:\\Users\\MIDAV\\AppData\\Local\\Temp\\rust_mozprofile.rS2RjS2YJdv8"
*** You are running in headless mode.
1579900637843 [email protected] WARN Loading extension '[email protected]': Reading manifest: Invalid extension permission: networkStatus
1579900638066 [email protected] WARN Loading extension '[email protected]': Reading manifest: Invalid extension permission: mozillaAddons
1579900638066 [email protected] WARN Loading extension '[email protected]': Reading manifest: Invalid extension permission: telemetry
1579900638067 [email protected] WARN Loading extension '[email protected]': Reading manifest: Invalid extension permission: resource://pdf.js/
1579900638067 [email protected] WARN Loading extension '[email protected]': Reading manifest: Invalid extension permission: about:reader*
JavaScript error: resource://gre/modules/XULStore.jsm, line 66: Error: Can't find profile directory.
1579900640498 Marionette INFO Listening on port 1295
1579900640537 Marionette WARN TLS certificate errors will be ignored for this session
1579900652438 Marionette INFO Stopped listening on port 1295
1579900656845 mozrunner::runner INFO Running command: "C:\\Program Files\\Mozilla Firefox\\firefox.exe" "-marionette" "-headless" "-foreground" "-no-remote" "-profile" "C:\\Users\\MIDAV\\AppData\\Local\\Temp\\rust_mozprofile.L8hJ1jov3HyK"
*** You are running in headless mode.
1579900657890 [email protected] WARN Loading extension '[email protected]': Reading manifest: Invalid extension permission: networkStatus
1579900658132 [email protected] WARN Loading extension '[email protected]': Reading manifest: Invalid extension permission: mozillaAddons
1579900658132 [email protected] WARN Loading extension '[email protected]': Reading manifest: Invalid extension permission: telemetry
1579900658132 [email protected] WARN Loading extension '[email protected]': Reading manifest: Invalid extension permission: resource://pdf.js/
1579900658132 [email protected] WARN Loading extension '[email protected]': Reading manifest: Invalid extension permission: about:reader*
JavaScript error: resource://gre/modules/XULStore.jsm, line 66: Error: Can't find profile directory.
1579900660840 Marionette INFO Listening on port 1381
1579900661010 Marionette WARN TLS certificate errors will be ignored for this session
1579900672859 Marionette INFO Stopped listening on port 1381
1579900702169 mozrunner::runner INFO Running command: "C:\\Program Files\\Mozilla Firefox\\firefox.exe" "-marionette" "-headless" "-foreground" "-no-remote" "-profile" "C:\\Users\\MIDAV\\AppData\\Local\\Temp\\rust_mozprofile.Y5l0G7yWlDOM"
*** You are running in headless mode.
1579900703010 [email protected] WARN Loading extension '[email protected]': Reading manifest: Invalid extension permission: networkStatus
1579900703280 [email protected] WARN Loading extension '[email protected]': Reading manifest: Invalid extension permission: mozillaAddons
1579900703280 [email protected] WARN Loading extension '[email protected]': Reading manifest: Invalid extension permission: telemetry
1579900703280 [email protected] WARN Loading extension '[email protected]': Reading manifest: Invalid extension permission: resource://pdf.js/
1579900703280 [email protected] WARN Loading extension '[email protected]': Reading manifest: Invalid extension permission: about:reader*
JavaScript error: resource://gre/modules/XULStore.jsm, line 66: Error: Can't find profile directory.
1579900705825 Marionette INFO Listening on port 1488
1579900705846 Marionette WARN TLS certificate errors will be ignored for this session
1579900717816 Marionette INFO Stopped listening on port 1488
1579900722290 mozrunner::runner INFO Running command: "C:\\Program Files\\Mozilla Firefox\\firefox.exe" "-marionette" "-headless" "-foreground" "-no-remote" "-profile" "C:\\Users\\MIDAV\\AppData\\Local\\Temp\\rust_mozprofile.m3lFpztTFdTd"
*** You are running in headless mode.
1579900723465 [email protected] WARN Loading extension '[email protected]': Reading manifest: Invalid extension permission: networkStatus
1579900723767 [email protected] WARN Loading extension '[email protected]': Reading manifest: Invalid extension permission: mozillaAddons
1579900723767 [email protected] WARN Loading extension '[email protected]': Reading manifest: Invalid extension permission: telemetry