-
Notifications
You must be signed in to change notification settings - Fork 3
/
Copy pathgeckodriver.log
1078 lines (851 loc) · 98.5 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
1586694514336 mozrunner::runner INFO Running command: "C:\\Program Files\\Mozilla Firefox\\firefox.exe" "-marionette" "-foreground" "-no-remote" "-profile" "C:\\Users\\MUKUND~1\\AppData\\Local\\Temp\\rust_mozprofilet4iCGb"
1586694515326 [email protected] WARN Loading extension '[email protected]': Reading manifest: Invalid extension permission: networkStatus
1586694517351 [email protected] WARN Loading extension '[email protected]': Reading manifest: Invalid extension permission: mozillaAddons
1586694517351 [email protected] WARN Loading extension '[email protected]': Reading manifest: Invalid extension permission: telemetry
1586694517351 [email protected] WARN Loading extension '[email protected]': Reading manifest: Invalid extension permission: resource://pdf.js/
1586694517351 [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.
1586694521794 Marionette INFO Listening on port 2864
1586694522155 Marionette WARN TLS certificate errors will be ignored for this session
1586694531422 Marionette INFO Stopped listening on port 2864
###!!! [Child][RunMessage] Error: Channel closing: too late to send/recv, messages will be lost
###!!! [Child][MessageChannel::SendAndWait] Error: Channel error: cannot send/recv
1586694622237 mozrunner::runner INFO Running command: "C:\\Program Files\\Mozilla Firefox\\firefox.exe" "-marionette" "-foreground" "-no-remote" "-profile" "C:\\Users\\MUKUND~1\\AppData\\Local\\Temp\\rust_mozprofile8AAxAX"
1586694622806 [email protected] WARN Loading extension '[email protected]': Reading manifest: Invalid extension permission: networkStatus
1586694624800 [email protected] WARN Loading extension '[email protected]': Reading manifest: Invalid extension permission: mozillaAddons
1586694624800 [email protected] WARN Loading extension '[email protected]': Reading manifest: Invalid extension permission: telemetry
1586694624800 [email protected] WARN Loading extension '[email protected]': Reading manifest: Invalid extension permission: resource://pdf.js/
1586694624801 [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.
1586694627504 Marionette INFO Listening on port 2962
1586694627954 Marionette WARN TLS certificate errors will be ignored for this session
JavaScript error: resource://activity-stream/lib/ActivityStreamPrefs.jsm, line 27: NS_ERROR_ILLEGAL_VALUE: Component returned failure code: 0x80070057 (NS_ERROR_ILLEGAL_VALUE) [nsIPrefBranch.removeObserver]
JavaScript error: resource://gre/modules/Sqlite.jsm, line 921: Error: Connection is not open.
1586694634338 Marionette INFO Stopped listening on port 2962
###!!! [Child][RunMessage] Error: Channel closing: too late to send/recv, messages will be lost
###!!! [Child][MessageChannel] Error: (msgtype=0xB80015,name=PWindowGlobal::Msg_Destroy) Channel closing: too late to send/recv, messages will be lost
###!!! [Child][MessageChannel::SendAndWait] Error: Channel error: cannot send/recv
1586694764371 mozrunner::runner INFO Running command: "C:\\Program Files\\Mozilla Firefox\\firefox.exe" "-marionette" "-foreground" "-no-remote" "-profile" "C:\\Users\\MUKUND~1\\AppData\\Local\\Temp\\rust_mozprofilepPASND"
1586694764998 [email protected] WARN Loading extension '[email protected]': Reading manifest: Invalid extension permission: networkStatus
1586694766935 [email protected] WARN Loading extension '[email protected]': Reading manifest: Invalid extension permission: mozillaAddons
1586694766936 [email protected] WARN Loading extension '[email protected]': Reading manifest: Invalid extension permission: telemetry
1586694766936 [email protected] WARN Loading extension '[email protected]': Reading manifest: Invalid extension permission: resource://pdf.js/
1586694766936 [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.
1586694769586 Marionette INFO Listening on port 3048
1586694769591 Marionette WARN TLS certificate errors will be ignored for this session
1586694780992 Marionette INFO Stopped listening on port 3048
###!!! [Child][RunMessage] Error: Channel closing: too late to send/recv, messages will be lost
###!!! [Child][MessageChannel::SendAndWait] Error: Channel error: cannot send/recv
1586694793113 mozrunner::runner INFO Running command: "C:\\Program Files\\Mozilla Firefox\\firefox.exe" "-marionette" "-foreground" "-no-remote" "-profile" "C:\\Users\\MUKUND~1\\AppData\\Local\\Temp\\rust_mozprofileJJtWbr"
1586694793846 [email protected] WARN Loading extension '[email protected]': Reading manifest: Invalid extension permission: networkStatus
1586694796005 [email protected] WARN Loading extension '[email protected]': Reading manifest: Invalid extension permission: mozillaAddons
1586694796005 [email protected] WARN Loading extension '[email protected]': Reading manifest: Invalid extension permission: telemetry
1586694796005 [email protected] WARN Loading extension '[email protected]': Reading manifest: Invalid extension permission: resource://pdf.js/
1586694796005 [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.
console.error: "Could not write session state file " (new Error("_initWorker called too early! Please read the session file from disk first.", "resource:///modules/sessionstore/SessionFile.jsm", 375)) "_initWorker/<@resource:///modules/sessionstore/SessionFile.jsm:375:15\n_initWorker@resource:///modules/sessionstore/SessionFile.jsm:368:12\n_postToWorker@resource:///modules/sessionstore/SessionFile.jsm:410:16\nwrite@resource:///modules/sessionstore/SessionFile.jsm:448:24\nwrite@resource:///modules/sessionstore/SessionFile.jsm:75:32\n_writeState@resource:///modules/sessionstore/SessionSaver.jsm:360:24\n_saveState@resource:///modules/sessionstore/SessionSaver.jsm:294:17\n_saveStateAsync@resource:///modules/sessionstore/SessionSaver.jsm:344:10\nsaveStateAsyncWhenIdle@resource:///modules/sessionstore/SessionSaver.jsm:191:14\ncallback@resource://gre/modules/Timer.jsm:127:16\n"
JavaScript error: , line 0: uncaught exception: 2147500036
###!!! [Child][RunMessage] Error: Channel closing: too late to send/recv, messages will be lost
###!!! [Child][MessageChannel::SendAndWait] Error: Channel error: cannot send/recv
1586694820774 mozrunner::runner INFO Running command: "C:\\Program Files\\Mozilla Firefox\\firefox.exe" "-marionette" "-foreground" "-no-remote" "-profile" "C:\\Users\\MUKUND~1\\AppData\\Local\\Temp\\rust_mozprofileoPQGBz"
1586694821439 [email protected] WARN Loading extension '[email protected]': Reading manifest: Invalid extension permission: networkStatus
1586694823372 [email protected] WARN Loading extension '[email protected]': Reading manifest: Invalid extension permission: mozillaAddons
1586694823372 [email protected] WARN Loading extension '[email protected]': Reading manifest: Invalid extension permission: telemetry
1586694823372 [email protected] WARN Loading extension '[email protected]': Reading manifest: Invalid extension permission: resource://pdf.js/
1586694823372 [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.
1586694826014 Marionette INFO Listening on port 3127
1586694826488 Marionette WARN TLS certificate errors will be ignored for this session
1586694853054 Marionette INFO Stopped listening on port 3127
###!!! [Child][RunMessage] Error: Channel closing: too late to send/recv, messages will be lost
###!!! [Child][MessageChannel::SendAndWait] Error: Channel error: cannot send/recv
1586696820191 mozrunner::runner INFO Running command: "C:\\Program Files\\Mozilla Firefox\\firefox.exe" "-marionette" "-foreground" "-no-remote" "-profile" "C:\\Users\\MUKUND~1\\AppData\\Local\\Temp\\rust_mozprofile8KswTN"
1586696820867 [email protected] WARN Loading extension '[email protected]': Reading manifest: Invalid extension permission: networkStatus
1586696823163 [email protected] WARN Loading extension '[email protected]': Reading manifest: Invalid extension permission: mozillaAddons
1586696823163 [email protected] WARN Loading extension '[email protected]': Reading manifest: Invalid extension permission: telemetry
1586696823163 [email protected] WARN Loading extension '[email protected]': Reading manifest: Invalid extension permission: resource://pdf.js/
1586696823163 [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.
1586696826447 Marionette INFO Listening on port 3951
1586696826505 Marionette WARN TLS certificate errors will be ignored for this session
1586696829346 Marionette INFO Stopped listening on port 3951
###!!! [Child][RunMessage] Error: Channel closing: too late to send/recv, messages will be lost
###!!! [Child][MessageChannel::SendAndWait] Error: Channel error: cannot send/recv
1586696898826 mozrunner::runner INFO Running command: "C:\\Program Files\\Mozilla Firefox\\firefox.exe" "-marionette" "-foreground" "-no-remote" "-profile" "C:\\Users\\MUKUND~1\\AppData\\Local\\Temp\\rust_mozprofileBX15r4"
1586696899512 [email protected] WARN Loading extension '[email protected]': Reading manifest: Invalid extension permission: networkStatus
1586696901482 [email protected] WARN Loading extension '[email protected]': Reading manifest: Invalid extension permission: mozillaAddons
1586696901482 [email protected] WARN Loading extension '[email protected]': Reading manifest: Invalid extension permission: telemetry
1586696901483 [email protected] WARN Loading extension '[email protected]': Reading manifest: Invalid extension permission: resource://pdf.js/
1586696901483 [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.
1586696903540 Marionette INFO Listening on port 4016
1586696904042 Marionette WARN TLS certificate errors will be ignored for this session
1586696906948 Marionette INFO Stopped listening on port 4016
JavaScript error: resource://services-settings/RemoteSettingsClient.jsm, line 110: Error: Unknown callback
###!!! [Parent][DispatchAsyncMessage] Error: PBackgroundIDBDatabase::Msg_PBackgroundIDBTransactionConstructor Value error: message was deserialized, but contained an illegal value
###!!! [Parent][DispatchAsyncMessage] Error: PBackgroundIDBFactory::Msg_PBackgroundIDBFactoryRequestConstructor Value error: message was deserialized, but contained an illegal value
console.error: (new Error("SessionFile is closed", "resource:///modules/sessionstore/SessionFile.jsm", 433))
###!!! [Child][RunMessage] Error: Channel closing: too late to send/recv, messages will be lost
###!!! [Child][MessageChannel::SendAndWait] Error: Channel error: cannot send/recv
1586696955113 mozrunner::runner INFO Running command: "C:\\Program Files\\Mozilla Firefox\\firefox.exe" "-marionette" "-foreground" "-no-remote" "-profile" "C:\\Users\\MUKUND~1\\AppData\\Local\\Temp\\rust_mozprofile70srRN"
1586696955755 [email protected] WARN Loading extension '[email protected]': Reading manifest: Invalid extension permission: networkStatus
1586696957733 [email protected] WARN Loading extension '[email protected]': Reading manifest: Invalid extension permission: mozillaAddons
1586696957733 [email protected] WARN Loading extension '[email protected]': Reading manifest: Invalid extension permission: telemetry
1586696957733 [email protected] WARN Loading extension '[email protected]': Reading manifest: Invalid extension permission: resource://pdf.js/
1586696957733 [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.
1586696960471 Marionette INFO Listening on port 4072
1586696960832 Marionette WARN TLS certificate errors will be ignored for this session
1586696963524 Marionette INFO Stopped listening on port 4072
JavaScript error: resource://services-settings/RemoteSettingsClient.jsm, line 110: Error: Unknown callback
###!!! [Parent][DispatchAsyncMessage] Error: PBackgroundIDBFactory::Msg_PBackgroundIDBFactoryRequestConstructor Value error: message was deserialized, but contained an illegal value
###!!! [Child][RunMessage] Error: Channel closing: too late to send/recv, messages will be lost
###!!! [Child][MessageChannel::SendAndWait] Error: Channel error: cannot send/recv
1586696993093 mozrunner::runner INFO Running command: "C:\\Program Files\\Mozilla Firefox\\firefox.exe" "-marionette" "-foreground" "-no-remote" "-profile" "C:\\Users\\MUKUND~1\\AppData\\Local\\Temp\\rust_mozprofileZGE4rS"
1586696993703 [email protected] WARN Loading extension '[email protected]': Reading manifest: Invalid extension permission: networkStatus
1586696995656 [email protected] WARN Loading extension '[email protected]': Reading manifest: Invalid extension permission: mozillaAddons
1586696995657 [email protected] WARN Loading extension '[email protected]': Reading manifest: Invalid extension permission: telemetry
1586696995657 [email protected] WARN Loading extension '[email protected]': Reading manifest: Invalid extension permission: resource://pdf.js/
1586696995657 [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.
1586696998900 Marionette INFO Listening on port 4119
1586696999307 Marionette WARN TLS certificate errors will be ignored for this session
1586697002334 Marionette INFO Stopped listening on port 4119
1586697004899 addons.xpi WARN Addon with ID [email protected] already installed, older version will be disabled
1586697004900 addons.xpi-utils WARN Error: XPI database modified after shutdown began(resource://gre/modules/addons/XPIDatabase.jsm:1545:17) JS Stack trace: [email protected]:1545:17
[email protected]:2348:10
[email protected]:2275:12
[email protected]:4320:27
[email protected]:2074:13
1586697004900 addons.xpi-utils WARN Error: XPI database modified after shutdown began(resource://gre/modules/addons/XPIDatabase.jsm:1545:17) JS Stack trace: [email protected]:1545:17
[email protected]:2278:10
[email protected]:4320:27
[email protected]:2074:13
1586697004919 addons.xpi WARN Addon with ID [email protected] already installed, older version will be disabled
1586697004919 addons.xpi-utils WARN Error: XPI database modified after shutdown began(resource://gre/modules/addons/XPIDatabase.jsm:1545:17) JS Stack trace: [email protected]:1545:17
[email protected]:2348:10
[email protected]:2275:12
[email protected]:4320:27
[email protected]:2074:13
1586697004919 addons.xpi-utils WARN Error: XPI database modified after shutdown began(resource://gre/modules/addons/XPIDatabase.jsm:1545:17) JS Stack trace: [email protected]:1545:17
[email protected]:2278:10
[email protected]:4320:27
[email protected]:2074:13
1586697004933 addons.xpi WARN Addon with ID [email protected] already installed, older version will be disabled
1586697004933 addons.xpi-utils WARN Error: XPI database modified after shutdown began(resource://gre/modules/addons/XPIDatabase.jsm:1545:17) JS Stack trace: [email protected]:1545:17
[email protected]:2348:10
[email protected]:2275:12
[email protected]:4320:27
[email protected]:2074:13
1586697004934 addons.xpi-utils WARN Error: XPI database modified after shutdown began(resource://gre/modules/addons/XPIDatabase.jsm:1545:17) JS Stack trace: [email protected]:1545:17
[email protected]:2278:10
[email protected]:4320:27
[email protected]:2074:13
1586697004950 addons.xpi WARN Addon with ID [email protected] already installed, older version will be disabled
1586697004950 addons.xpi-utils WARN Error: XPI database modified after shutdown began(resource://gre/modules/addons/XPIDatabase.jsm:1545:17) JS Stack trace: [email protected]:1545:17
[email protected]:2348:10
[email protected]:2275:12
[email protected]:4320:27
[email protected]:2074:13
1586697004951 addons.xpi-utils WARN Error: XPI database modified after shutdown began(resource://gre/modules/addons/XPIDatabase.jsm:1545:17) JS Stack trace: [email protected]:1545:17
[email protected]:2278:10
[email protected]:4320:27
[email protected]:2074:13
1586697004985 addons.xpi WARN Addon with ID [email protected] already installed, older version will be disabled
1586697004985 addons.xpi-utils WARN Error: XPI database modified after shutdown began(resource://gre/modules/addons/XPIDatabase.jsm:1545:17) JS Stack trace: [email protected]:1545:17
[email protected]:2348:10
[email protected]:2275:12
[email protected]:4320:27
[email protected]:2074:13
1586697004985 addons.xpi-utils WARN Error: XPI database modified after shutdown began(resource://gre/modules/addons/XPIDatabase.jsm:1545:17) JS Stack trace: [email protected]:1545:17
[email protected]:2278:10
[email protected]:4320:27
[email protected]:2074:13
1586697005000 addons.xpi WARN Addon with ID [email protected] already installed, older version will be disabled
1586697005001 addons.xpi-utils WARN Error: XPI database modified after shutdown began(resource://gre/modules/addons/XPIDatabase.jsm:1545:17) JS Stack trace: [email protected]:1545:17
[email protected]:2348:10
[email protected]:2275:12
[email protected]:4320:27
[email protected]:2074:13
1586697005001 addons.xpi-utils WARN Error: XPI database modified after shutdown began(resource://gre/modules/addons/XPIDatabase.jsm:1545:17) JS Stack trace: [email protected]:1545:17
[email protected]:2278:10
[email protected]:4320:27
[email protected]:2074:13
###!!! [Child][RunMessage] Error: Channel closing: too late to send/recv, messages will be lost
###!!! [Child][MessageChannel::SendAndWait] Error: Channel error: cannot send/recv
1586697065272 mozrunner::runner INFO Running command: "C:\\Program Files\\Mozilla Firefox\\firefox.exe" "-marionette" "-foreground" "-no-remote" "-profile" "C:\\Users\\MUKUND~1\\AppData\\Local\\Temp\\rust_mozprofileAy3bKW"
1586697065914 [email protected] WARN Loading extension '[email protected]': Reading manifest: Invalid extension permission: networkStatus
1586697067928 [email protected] WARN Loading extension '[email protected]': Reading manifest: Invalid extension permission: mozillaAddons
1586697067928 [email protected] WARN Loading extension '[email protected]': Reading manifest: Invalid extension permission: telemetry
1586697067928 [email protected] WARN Loading extension '[email protected]': Reading manifest: Invalid extension permission: resource://pdf.js/
1586697067928 [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.
1586697070641 Marionette INFO Listening on port 4181
1586697070990 Marionette WARN TLS certificate errors will be ignored for this session
1586697073104 Marionette INFO Stopped listening on port 4181
JavaScript error: resource://services-settings/RemoteSettingsClient.jsm, line 110: Error: Unknown callback
1586697075238 addons.xpi WARN Addon with ID [email protected] already installed, older version will be disabled
1586697075238 addons.xpi-utils WARN Error: XPI database modified after shutdown began(resource://gre/modules/addons/XPIDatabase.jsm:1545:17) JS Stack trace: [email protected]:1545:17
[email protected]:2348:10
[email protected]:2275:12
[email protected]:4320:27
[email protected]:2074:13
1586697075239 addons.xpi-utils WARN Error: XPI database modified after shutdown began(resource://gre/modules/addons/XPIDatabase.jsm:1545:17) JS Stack trace: [email protected]:1545:17
[email protected]:2278:10
[email protected]:4320:27
[email protected]:2074:13
1586697075263 addons.xpi WARN Addon with ID [email protected] already installed, older version will be disabled
1586697075263 addons.xpi-utils WARN Error: XPI database modified after shutdown began(resource://gre/modules/addons/XPIDatabase.jsm:1545:17) JS Stack trace: [email protected]:1545:17
[email protected]:2348:10
[email protected]:2275:12
[email protected]:4320:27
[email protected]:2074:13
1586697075263 addons.xpi-utils WARN Error: XPI database modified after shutdown began(resource://gre/modules/addons/XPIDatabase.jsm:1545:17) JS Stack trace: [email protected]:1545:17
[email protected]:2278:10
[email protected]:4320:27
[email protected]:2074:13
1586697075283 addons.xpi WARN Addon with ID [email protected] already installed, older version will be disabled
1586697075283 addons.xpi-utils WARN Error: XPI database modified after shutdown began(resource://gre/modules/addons/XPIDatabase.jsm:1545:17) JS Stack trace: [email protected]:1545:17
[email protected]:2348:10
[email protected]:2275:12
[email protected]:4320:27
[email protected]:2074:13
1586697075284 addons.xpi-utils WARN Error: XPI database modified after shutdown began(resource://gre/modules/addons/XPIDatabase.jsm:1545:17) JS Stack trace: [email protected]:1545:17
[email protected]:2278:10
[email protected]:4320:27
[email protected]:2074:13
1586697075301 addons.xpi WARN Addon with ID [email protected] already installed, older version will be disabled
1586697075302 addons.xpi-utils WARN Error: XPI database modified after shutdown began(resource://gre/modules/addons/XPIDatabase.jsm:1545:17) JS Stack trace: [email protected]:1545:17
[email protected]:2348:10
[email protected]:2275:12
[email protected]:4320:27
[email protected]:2074:13
1586697075302 addons.xpi-utils WARN Error: XPI database modified after shutdown began(resource://gre/modules/addons/XPIDatabase.jsm:1545:17) JS Stack trace: [email protected]:1545:17
[email protected]:2278:10
[email protected]:4320:27
[email protected]:2074:13
1586697075334 addons.xpi WARN Addon with ID [email protected] already installed, older version will be disabled
1586697075335 addons.xpi-utils WARN Error: XPI database modified after shutdown began(resource://gre/modules/addons/XPIDatabase.jsm:1545:17) JS Stack trace: [email protected]:1545:17
[email protected]:2348:10
[email protected]:2275:12
[email protected]:4320:27
[email protected]:2074:13
1586697075335 addons.xpi-utils WARN Error: XPI database modified after shutdown began(resource://gre/modules/addons/XPIDatabase.jsm:1545:17) JS Stack trace: [email protected]:1545:17
[email protected]:2278:10
[email protected]:4320:27
[email protected]:2074:13
1586697075349 addons.xpi WARN Addon with ID [email protected] already installed, older version will be disabled
1586697075349 addons.xpi-utils WARN Error: XPI database modified after shutdown began(resource://gre/modules/addons/XPIDatabase.jsm:1545:17) JS Stack trace: [email protected]:1545:17
[email protected]:2348:10
[email protected]:2275:12
[email protected]:4320:27
[email protected]:2074:13
1586697075350 addons.xpi-utils WARN Error: XPI database modified after shutdown began(resource://gre/modules/addons/XPIDatabase.jsm:1545:17) JS Stack trace: [email protected]:1545:17
[email protected]:2278:10
[email protected]:4320:27
[email protected]:2074:13
###!!! [Child][RunMessage] Error: Channel closing: too late to send/recv, messages will be lost
###!!! [Child][MessageChannel::SendAndWait] Error: Channel error: cannot send/recv
1586697123686 mozrunner::runner INFO Running command: "C:\\Program Files\\Mozilla Firefox\\firefox.exe" "-marionette" "-foreground" "-no-remote" "-profile" "C:\\Users\\MUKUND~1\\AppData\\Local\\Temp\\rust_mozprofileuo7gsZ"
1586697124245 [email protected] WARN Loading extension '[email protected]': Reading manifest: Invalid extension permission: networkStatus
1586697125972 [email protected] WARN Loading extension '[email protected]': Reading manifest: Invalid extension permission: mozillaAddons
1586697125972 [email protected] WARN Loading extension '[email protected]': Reading manifest: Invalid extension permission: telemetry
1586697125973 [email protected] WARN Loading extension '[email protected]': Reading manifest: Invalid extension permission: resource://pdf.js/
1586697125973 [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.
1586697128126 Marionette INFO Listening on port 4248
1586697128401 Marionette WARN TLS certificate errors will be ignored for this session
1586697130456 Marionette INFO Stopped listening on port 4248
JavaScript error: resource://services-settings/RemoteSettingsClient.jsm, line 110: Error: Unknown callback
console.error: (new Error("SessionFile is closed", "resource:///modules/sessionstore/SessionFile.jsm", 433))
###!!! [Child][RunMessage] Error: Channel closing: too late to send/recv, messages will be lost
###!!! [Child][MessageChannel::SendAndWait] Error: Channel error: cannot send/recv
1586697653892 mozrunner::runner INFO Running command: "C:\\Program Files\\Mozilla Firefox\\firefox.exe" "-marionette" "-foreground" "-no-remote" "-profile" "C:\\Users\\MUKUND~1\\AppData\\Local\\Temp\\rust_mozprofilelzaw4O"
1586697654465 [email protected] WARN Loading extension '[email protected]': Reading manifest: Invalid extension permission: networkStatus
1586697656495 [email protected] WARN Loading extension '[email protected]': Reading manifest: Invalid extension permission: mozillaAddons
1586697656495 [email protected] WARN Loading extension '[email protected]': Reading manifest: Invalid extension permission: telemetry
1586697656495 [email protected] WARN Loading extension '[email protected]': Reading manifest: Invalid extension permission: resource://pdf.js/
1586697656495 [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.
1586697659174 Marionette INFO Listening on port 4521
1586697659609 Marionette WARN TLS certificate errors will be ignored for this session
1586697662746 Marionette INFO Stopped listening on port 4521
###!!! [Child][RunMessage] Error: Channel closing: too late to send/recv, messages will be lost
1586697666974 addons.xpi WARN Addon with ID [email protected] already installed, older version will be disabled
1586697666975 addons.xpi-utils WARN Error: XPI database modified after shutdown began(resource://gre/modules/addons/XPIDatabase.jsm:1545:17) JS Stack trace: [email protected]:1545:17
[email protected]:2348:10
[email protected]:2275:12
[email protected]:4320:27
[email protected]:2074:13
1586697666976 addons.xpi-utils WARN Error: XPI database modified after shutdown began(resource://gre/modules/addons/XPIDatabase.jsm:1545:17) JS Stack trace: [email protected]:1545:17
[email protected]:2278:10
[email protected]:4320:27
[email protected]:2074:13
1586697667000 addons.xpi WARN Addon with ID [email protected] already installed, older version will be disabled
1586697667001 addons.xpi-utils WARN Error: XPI database modified after shutdown began(resource://gre/modules/addons/XPIDatabase.jsm:1545:17) JS Stack trace: [email protected]:1545:17
[email protected]:2348:10
[email protected]:2275:12
[email protected]:4320:27
[email protected]:2074:13
1586697667001 addons.xpi-utils WARN Error: XPI database modified after shutdown began(resource://gre/modules/addons/XPIDatabase.jsm:1545:17) JS Stack trace: [email protected]:1545:17
[email protected]:2278:10
[email protected]:4320:27
[email protected]:2074:13
1586697667016 addons.xpi WARN Addon with ID [email protected] already installed, older version will be disabled
1586697667016 addons.xpi-utils WARN Error: XPI database modified after shutdown began(resource://gre/modules/addons/XPIDatabase.jsm:1545:17) JS Stack trace: [email protected]:1545:17
[email protected]:2348:10
[email protected]:2275:12
[email protected]:4320:27
[email protected]:2074:13
1586697667017 addons.xpi-utils WARN Error: XPI database modified after shutdown began(resource://gre/modules/addons/XPIDatabase.jsm:1545:17) JS Stack trace: [email protected]:1545:17
[email protected]:2278:10
[email protected]:4320:27
[email protected]:2074:13
1586697667033 addons.xpi WARN Addon with ID [email protected] already installed, older version will be disabled
1586697667033 addons.xpi-utils WARN Error: XPI database modified after shutdown began(resource://gre/modules/addons/XPIDatabase.jsm:1545:17) JS Stack trace: [email protected]:1545:17
[email protected]:2348:10
[email protected]:2275:12
[email protected]:4320:27
[email protected]:2074:13
1586697667033 addons.xpi-utils WARN Error: XPI database modified after shutdown began(resource://gre/modules/addons/XPIDatabase.jsm:1545:17) JS Stack trace: [email protected]:1545:17
[email protected]:2278:10
[email protected]:4320:27
[email protected]:2074:13
1586697667066 addons.xpi WARN Addon with ID [email protected] already installed, older version will be disabled
1586697667067 addons.xpi-utils WARN Error: XPI database modified after shutdown began(resource://gre/modules/addons/XPIDatabase.jsm:1545:17) JS Stack trace: [email protected]:1545:17
[email protected]:2348:10
[email protected]:2275:12
[email protected]:4320:27
[email protected]:2074:13
1586697667067 addons.xpi-utils WARN Error: XPI database modified after shutdown began(resource://gre/modules/addons/XPIDatabase.jsm:1545:17) JS Stack trace: [email protected]:1545:17
[email protected]:2278:10
[email protected]:4320:27
[email protected]:2074:13
1586697667084 addons.xpi WARN Addon with ID [email protected] already installed, older version will be disabled
1586697667084 addons.xpi-utils WARN Error: XPI database modified after shutdown began(resource://gre/modules/addons/XPIDatabase.jsm:1545:17) JS Stack trace: [email protected]:1545:17
[email protected]:2348:10
[email protected]:2275:12
[email protected]:4320:27
[email protected]:2074:13
1586697667084 addons.xpi-utils WARN Error: XPI database modified after shutdown began(resource://gre/modules/addons/XPIDatabase.jsm:1545:17) JS Stack trace: [email protected]:1545:17
[email protected]:2278:10
[email protected]:4320:27
[email protected]:2074:13
JavaScript error: resource://gre/modules/NewTabUtils.jsm, line 669: NS_ERROR_UNEXPECTED: Component returned failure code: 0x8000ffff (NS_ERROR_UNEXPECTED) [nsINavHistoryService.asyncExecuteLegacyQuery]
###!!! [Child][RunMessage] Error: Channel closing: too late to send/recv, messages will be lost
###!!! [Child][MessageChannel::SendAndWait] Error: Channel error: cannot send/recv
1586697702490 mozrunner::runner INFO Running command: "C:\\Program Files\\Mozilla Firefox\\firefox.exe" "-marionette" "-foreground" "-no-remote" "-profile" "C:\\Users\\MUKUND~1\\AppData\\Local\\Temp\\rust_mozprofilejtm5p0"
1586697703244 [email protected] WARN Loading extension '[email protected]': Reading manifest: Invalid extension permission: networkStatus
1586697705297 [email protected] WARN Loading extension '[email protected]': Reading manifest: Invalid extension permission: mozillaAddons
1586697705297 [email protected] WARN Loading extension '[email protected]': Reading manifest: Invalid extension permission: telemetry
1586697705297 [email protected] WARN Loading extension '[email protected]': Reading manifest: Invalid extension permission: resource://pdf.js/
1586697705297 [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.
1586697708079 Marionette INFO Listening on port 4569
1586697708209 Marionette WARN TLS certificate errors will be ignored for this session
1586697749640 Marionette INFO Stopped listening on port 4569
###!!! [Child][RunMessage] Error: Channel closing: too late to send/recv, messages will be lost
###!!! [Child][MessageChannel::SendAndWait] Error: Channel error: cannot send/recv
1586697774407 mozrunner::runner INFO Running command: "C:\\Program Files\\Mozilla Firefox\\firefox.exe" "-marionette" "-foreground" "-no-remote" "-profile" "C:\\Users\\MUKUND~1\\AppData\\Local\\Temp\\rust_mozprofilemhqrpW"
1586697775106 [email protected] WARN Loading extension '[email protected]': Reading manifest: Invalid extension permission: networkStatus
1586697776919 [email protected] WARN Loading extension '[email protected]': Reading manifest: Invalid extension permission: mozillaAddons
1586697776919 [email protected] WARN Loading extension '[email protected]': Reading manifest: Invalid extension permission: telemetry
1586697776919 [email protected] WARN Loading extension '[email protected]': Reading manifest: Invalid extension permission: resource://pdf.js/
1586697776919 [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.
1586697778849 Marionette INFO Listening on port 4636
1586697779185 Marionette WARN TLS certificate errors will be ignored for this session
JavaScript error: , line 0: AbortError: A request was aborted, for example through a call to IDBTransaction.abort.
1586697879036 Marionette INFO Stopped listening on port 4636
###!!! [Child][RunMessage] Error: Channel closing: too late to send/recv, messages will be lost
###!!! [Child][MessageChannel::SendAndWait] Error: Channel error: cannot send/recv
1586697897712 mozrunner::runner INFO Running command: "C:\\Program Files\\Mozilla Firefox\\firefox.exe" "-marionette" "-foreground" "-no-remote" "-profile" "C:\\Users\\MUKUND~1\\AppData\\Local\\Temp\\rust_mozprofilew6etd6"
1586697898412 [email protected] WARN Loading extension '[email protected]': Reading manifest: Invalid extension permission: networkStatus
1586697900536 [email protected] WARN Loading extension '[email protected]': Reading manifest: Invalid extension permission: mozillaAddons
1586697900536 [email protected] WARN Loading extension '[email protected]': Reading manifest: Invalid extension permission: telemetry
1586697900536 [email protected] WARN Loading extension '[email protected]': Reading manifest: Invalid extension permission: resource://pdf.js/
1586697900536 [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.
1586697903271 Marionette INFO Listening on port 4716
1586697903433 Marionette WARN TLS certificate errors will be ignored for this session
JavaScript error: resource://gre/modules/UrlClassifierListManager.jsm, line 691: TypeError: this.tablesData[table] is undefined
1586697921057 Marionette INFO Stopped listening on port 4716
###!!! [Child][RunMessage] Error: Channel closing: too late to send/recv, messages will be lost
###!!! [Child][MessageChannel::SendAndWait] Error: Channel error: cannot send/recv
1586698341513 mozrunner::runner INFO Running command: "C:\\Program Files\\Mozilla Firefox\\firefox.exe" "-marionette" "-foreground" "-no-remote" "-profile" "C:\\Users\\MUKUND~1\\AppData\\Local\\Temp\\rust_mozprofileQdPf40"
1586698342117 [email protected] WARN Loading extension '[email protected]': Reading manifest: Invalid extension permission: networkStatus
1586698343956 [email protected] WARN Loading extension '[email protected]': Reading manifest: Invalid extension permission: mozillaAddons
1586698343956 [email protected] WARN Loading extension '[email protected]': Reading manifest: Invalid extension permission: telemetry
1586698343956 [email protected] WARN Loading extension '[email protected]': Reading manifest: Invalid extension permission: resource://pdf.js/
1586698343956 [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.
1586698347078 Marionette INFO Listening on port 4939
1586698347227 Marionette WARN TLS certificate errors will be ignored for this session
JavaScript error: resource://gre/modules/UrlClassifierListManager.jsm, line 691: TypeError: this.tablesData[table] is undefined
1586698364802 Marionette INFO Stopped listening on port 4939
###!!! [Child][RunMessage] Error: Channel closing: too late to send/recv, messages will be lost
###!!! [Child][MessageChannel::SendAndWait] Error: Channel error: cannot send/recv
1586698433096 mozrunner::runner INFO Running command: "C:\\Program Files\\Mozilla Firefox\\firefox.exe" "-marionette" "-foreground" "-no-remote" "-profile" "C:\\Users\\MUKUND~1\\AppData\\Local\\Temp\\rust_mozprofileLLhHX2"
1586698433802 [email protected] WARN Loading extension '[email protected]': Reading manifest: Invalid extension permission: networkStatus
1586698435678 [email protected] WARN Loading extension '[email protected]': Reading manifest: Invalid extension permission: mozillaAddons
1586698435678 [email protected] WARN Loading extension '[email protected]': Reading manifest: Invalid extension permission: telemetry
1586698435678 [email protected] WARN Loading extension '[email protected]': Reading manifest: Invalid extension permission: resource://pdf.js/
1586698435678 [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.
1586698438643 Marionette INFO Listening on port 5019
1586698438818 Marionette WARN TLS certificate errors will be ignored for this session
1586698504783 Marionette INFO Stopped listening on port 5019
###!!! [Child][RunMessage] Error: Channel closing: too late to send/recv, messages will be lost
###!!! [Child][MessageChannel::SendAndWait] Error: Channel error: cannot send/recv
[email protected] WARN Loading extension '[email protected]': Reading manifest: Invalid extension permission: networkStatus
1586698474901 [email protected] WARN Loading extension '[email protected]': Reading manifest: Invalid extension permission: mozillaAddons
1586698474901 [email protected] WARN Loading extension '[email protected]': Reading manifest: Invalid extension permission: telemetry
1586698474901 [email protected] WARN Loading extension '[email protected]': Reading manifest: Invalid extension permission: resource://pdf.js/
1586698474901 [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.
1586698479150 Marionette INFO Listening on port 5079
1586698479382 Marionette WARN TLS certificate errors will be ignored for this session
1586698501542 Marionette INFO Stopped listening on port 5079
###!!! [Child][RunMessage] Error: Channel closing: too late to send/recv, messages will be lost
###!!! [Child][MessageChannel::SendAndWait] Error: Channel error: cannot send/recv
1586698517018 mozrunner::runner INFO Running command: "C:\\Program Files\\Mozilla Firefox\\firefox.exe" "-marionette" "-foreground" "-no-remote" "-profile" "C:\\Users\\MUKUND~1\\AppData\\Local\\Temp\\rust_mozprofileArFOgy"
1586698517757 [email protected] WARN Loading extension '[email protected]': Reading manifest: Invalid extension permission: networkStatus
1586698519534 [email protected] WARN Loading extension '[email protected]': Reading manifest: Invalid extension permission: mozillaAddons
1586698519534 [email protected] WARN Loading extension '[email protected]': Reading manifest: Invalid extension permission: telemetry
1586698519534 [email protected] WARN Loading extension '[email protected]': Reading manifest: Invalid extension permission: resource://pdf.js/
1586698519534 [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.
1586698522388 Marionette INFO Listening on port 5143
1586698522733 Marionette WARN TLS certificate errors will be ignored for this session
1586698554674 Marionette INFO Stopped listening on port 5143
###!!! [Child][RunMessage] Error: Channel closing: too late to send/recv, messages will be lost
###!!! [Child][MessageChannel::SendAndWait] Error: Channel error: cannot send/recv
1586698574701 mozrunner::runner INFO Running command: "C:\\Program Files\\Mozilla Firefox\\firefox.exe" "-marionette" "-foreground" "-no-remote" "-profile" "C:\\Users\\MUKUND~1\\AppData\\Local\\Temp\\rust_mozprofiled8IxiF"
1586698575297 [email protected] WARN Loading extension '[email protected]': Reading manifest: Invalid extension permission: networkStatus
1586698577224 [email protected] WARN Loading extension '[email protected]': Reading manifest: Invalid extension permission: mozillaAddons
1586698577224 [email protected] WARN Loading extension '[email protected]': Reading manifest: Invalid extension permission: telemetry
1586698577224 [email protected] WARN Loading extension '[email protected]': Reading manifest: Invalid extension permission: resource://pdf.js/
1586698577224 [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.
1586698580318 Marionette INFO Listening on port 5200
1586698580427 Marionette WARN TLS certificate errors will be ignored for this session
1586698597069 Marionette INFO Stopped listening on port 5200
###!!! [Child][RunMessage] Error: Channel closing: too late to send/recv, messages will be lost
###!!! [Child][MessageChannel::SendAndWait] Error: Channel error: cannot send/recv
1586698797647 mozrunner::runner INFO Running command: "C:\\Program Files\\Mozilla Firefox\\firefox.exe" "-marionette" "-foreground" "-no-remote" "-profile" "C:\\Users\\MUKUND~1\\AppData\\Local\\Temp\\rust_mozprofilez2PWw7"
1586698798243 [email protected] WARN Loading extension '[email protected]': Reading manifest: Invalid extension permission: networkStatus
1586698799938 [email protected] WARN Loading extension '[email protected]': Reading manifest: Invalid extension permission: mozillaAddons
1586698799939 [email protected] WARN Loading extension '[email protected]': Reading manifest: Invalid extension permission: telemetry
1586698799939 [email protected] WARN Loading extension '[email protected]': Reading manifest: Invalid extension permission: resource://pdf.js/
1586698799939 [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.
1586698802455 Marionette INFO Listening on port 5307
1586698802870 Marionette WARN TLS certificate errors will be ignored for this session
JavaScript error: resource://gre/modules/UrlClassifierListManager.jsm, line 691: TypeError: this.tablesData[table] is undefined
1586698819120 Marionette INFO Stopped listening on port 5307
###!!! [Child][RunMessage] Error: Channel closing: too late to send/recv, messages will be lost
###!!! [Child][MessageChannel::SendAndWait] Error: Channel error: cannot send/recv
1586698845822 mozrunner::runner INFO Running command: "C:\\Program Files\\Mozilla Firefox\\firefox.exe" "-marionette" "-foreground" "-no-remote" "-profile" "C:\\Users\\MUKUND~1\\AppData\\Local\\Temp\\rust_mozprofilefaKgON"
1586698846456 [email protected] WARN Loading extension '[email protected]': Reading manifest: Invalid extension permission: networkStatus
1586698848229 [email protected] WARN Loading extension '[email protected]': Reading manifest: Invalid extension permission: mozillaAddons
1586698848229 [email protected] WARN Loading extension '[email protected]': Reading manifest: Invalid extension permission: telemetry
1586698848229 [email protected] WARN Loading extension '[email protected]': Reading manifest: Invalid extension permission: resource://pdf.js/
1586698848229 [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.
1586698851121 Marionette INFO Listening on port 5371
1586698851545 Marionette WARN TLS certificate errors will be ignored for this session
1586699153154 Marionette INFO Stopped listening on port 5371
###!!! [Child][RunMessage] Error: Channel closing: too late to send/recv, messages will be lost
###!!! [Child][MessageChannel::SendAndWait] Error: Channel error: cannot send/recv
[email protected] WARN Loading extension '[email protected]': Reading manifest: Invalid extension permission: networkStatus
1586698867366 [email protected] WARN Loading extension '[email protected]': Reading manifest: Invalid extension permission: mozillaAddons
1586698867366 [email protected] WARN Loading extension '[email protected]': Reading manifest: Invalid extension permission: telemetry
1586698867366 [email protected] WARN Loading extension '[email protected]': Reading manifest: Invalid extension permission: resource://pdf.js/
1586698867367 [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.
1586698870182 Marionette INFO Listening on port 5417
1586698870286 Marionette WARN TLS certificate errors will be ignored for this session
1586704918626 Marionette INFO Stopped listening on port 5417
###!!! [Child][RunMessage] Error: Channel closing: too late to send/recv, messages will be lost
###!!! [Child][MessageChannel::SendAndWait] Error: Channel error: cannot send/recv
[email protected] WARN Loading extension '[email protected]': Reading manifest: Invalid extension permission: networkStatus
1586698939427 [email protected] WARN Loading extension '[email protected]': Reading manifest: Invalid extension permission: mozillaAddons
1586698939427 [email protected] WARN Loading extension '[email protected]': Reading manifest: Invalid extension permission: telemetry
1586698939427 [email protected] WARN Loading extension '[email protected]': Reading manifest: Invalid extension permission: resource://pdf.js/
1586698939427 [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.
1586698942656 Marionette INFO Listening on port 5501
1586698942942 Marionette WARN TLS certificate errors will be ignored for this session
1586704915913 Marionette INFO Stopped listening on port 5501
###!!! [Child][MessageChannel::SendAndWait] Error: Channel error: cannot send/recv
file" "C:\\Users\\MUKUND~1\\AppData\\Local\\Temp\\rust_mozprofileS9JFRL"
1586699155917 [email protected] WARN Loading extension '[email protected]': Reading manifest: Invalid extension permission: networkStatus
1586699157876 [email protected] WARN Loading extension '[email protected]': Reading manifest: Invalid extension permission: mozillaAddons
1586699157876 [email protected] WARN Loading extension '[email protected]': Reading manifest: Invalid extension permission: telemetry
1586699157877 [email protected] WARN Loading extension '[email protected]': Reading manifest: Invalid extension permission: resource://pdf.js/
1586699157877 [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.
1586699161550 Marionette INFO Listening on port 5644
1586699161718 Marionette WARN TLS certificate errors will be ignored for this session
[Parent 14752, Gecko_IOThread] WARNING: file Z:/task_1585933993/build/src/ipc/chromium/src/base/process_util_win.cc, line 166
1586704913720 Marionette INFO Stopped listening on port 5644
###!!! [Child][MessageChannel::SendAndWait] Error: Channel error: cannot send/recv
org WARN Loading extension '[email protected]': Reading manifest: Invalid extension permission: networkStatus
1586699241769 [email protected] WARN Loading extension '[email protected]': Reading manifest: Invalid extension permission: mozillaAddons
1586699241769 [email protected] WARN Loading extension '[email protected]': Reading manifest: Invalid extension permission: telemetry
1586699241769 [email protected] WARN Loading extension '[email protected]': Reading manifest: Invalid extension permission: resource://pdf.js/
1586699241769 [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.
1586699246042 Marionette INFO Listening on port 5721
1586699246511 Marionette WARN TLS certificate errors will be ignored for this session
[Parent 13764, Gecko_IOThread] WARNING: file Z:/task_1585933993/build/src/ipc/chromium/src/base/process_util_win.cc, line 166
1586704909839 Marionette INFO Stopped listening on port 5721
###!!! [Child][RunMessage] Error: Channel closing: too late to send/recv, messages will be lost
###!!! [Child][MessageChannel::SendAndWait] Error: Channel error: cannot send/recv
networkStatus
1586699275178 [email protected] WARN Loading extension '[email protected]': Reading manifest: Invalid extension permission: mozillaAddons
1586699275178 [email protected] WARN Loading extension '[email protected]': Reading manifest: Invalid extension permission: telemetry
1586699275178 [email protected] WARN Loading extension '[email protected]': Reading manifest: Invalid extension permission: resource://pdf.js/
1586699275178 [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.
1586699278110 Marionette INFO Listening on port 5774
1586699278609 Marionette WARN TLS certificate errors will be ignored for this session
1586699286241 Marionette INFO Stopped listening on port 5774
###!!! [Child][RunMessage] Error: Channel closing: too late to send/recv, messages will be lost
###!!! [Child][MessageChannel::SendAndWait] Error: Channel error: cannot send/recv
1586699377220 mozrunner::runner INFO Running command: "C:\\Program Files\\Mozilla Firefox\\firefox.exe" "-marionette" "-foreground" "-no-remote" "-profile" "C:\\Users\\MUKUND~1\\AppData\\Local\\Temp\\rust_mozprofileTr1Yw3"
1586699378188 [email protected] WARN Loading extension '[email protected]': Reading manifest: Invalid extension permission: networkStatus
1586699380667 [email protected] WARN Loading extension '[email protected]': Reading manifest: Invalid extension permission: mozillaAddons
1586699380667 [email protected] WARN Loading extension '[email protected]': Reading manifest: Invalid extension permission: telemetry
1586699380668 [email protected] WARN Loading extension '[email protected]': Reading manifest: Invalid extension permission: resource://pdf.js/
1586699380668 [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.
1586699385321 Marionette INFO Listening on port 5856
1586699385541 Marionette WARN TLS certificate errors will be ignored for this session
[Parent 16220, Gecko_IOThread] WARNING: file Z:/task_1585933993/build/src/ipc/chromium/src/base/process_util_win.cc, line 166
JavaScript error: resource://gre/modules/IndexedDB.jsm, line 370: UnknownError: IDBDatabase.transaction: Can't start IndexedDB transaction during shutdown
1586705698206 Marionette INFO Stopped listening on port 5856
###!!! [Child][MessageChannel::SendAndWait] Error: Channel error: cannot send/recv
[email protected] WARN Loading extension '[email protected]': Reading manifest: Invalid extension permission: mozillaAddons
1586699421751 [email protected] WARN Loading extension '[email protected]': Reading manifest: Invalid extension permission: telemetry
1586699421751 [email protected] WARN Loading extension '[email protected]': Reading manifest: Invalid extension permission: resource://pdf.js/
1586699421751 [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.
1586699425961 Marionette INFO Listening on port 5906
1586699426322 Marionette WARN TLS certificate errors will be ignored for this session
1586699432449 Marionette INFO Stopped listening on port 5906
###!!! [Child][RunMessage] Error: Channel closing: too late to send/recv, messages will be lost
###!!! [Child][MessageChannel::SendAndWait] Error: Channel error: cannot send/recv
1586699577764 mozrunner::runner INFO Running command: "C:\\Program Files\\Mozilla Firefox\\firefox.exe" "-marionette" "-foreground" "-no-remote" "-profile" "C:\\Users\\MUKUND~1\\AppData\\Local\\Temp\\rust_mozprofile7CHxYp"
1586699578391 [email protected] WARN Loading extension '[email protected]': Reading manifest: Invalid extension permission: networkStatus
1586699580345 [email protected] WARN Loading extension '[email protected]': Reading manifest: Invalid extension permission: mozillaAddons
1586699580345 [email protected] WARN Loading extension '[email protected]': Reading manifest: Invalid extension permission: telemetry
1586699580345 [email protected] WARN Loading extension '[email protected]': Reading manifest: Invalid extension permission: resource://pdf.js/
1586699580345 [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.
1586699583865 Marionette INFO Listening on port 6005
1586699583994 Marionette WARN TLS certificate errors will be ignored for this session
1586699589540 Marionette INFO Stopped listening on port 6005
###!!! [Child][RunMessage] Error: Channel closing: too late to send/recv, messages will be lost
###!!! [Child][MessageChannel::SendAndWait] Error: Channel error: cannot send/recv
1586699595730 mozrunner::runner INFO Running command: "C:\\Program Files\\Mozilla Firefox\\firefox.exe" "-marionette" "-foreground" "-no-remote" "-profile" "C:\\Users\\MUKUND~1\\AppData\\Local\\Temp\\rust_mozprofileGD5t4j"
1586699596573 [email protected] WARN Loading extension '[email protected]': Reading manifest: Invalid extension permission: networkStatus
1586699598325 [email protected] WARN Loading extension '[email protected]': Reading manifest: Invalid extension permission: mozillaAddons
1586699598325 [email protected] WARN Loading extension '[email protected]': Reading manifest: Invalid extension permission: telemetry
1586699598325 [email protected] WARN Loading extension '[email protected]': Reading manifest: Invalid extension permission: resource://pdf.js/
1586699598325 [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.
1586699602747 Marionette INFO Listening on port 6045
1586699603066 Marionette WARN TLS certificate errors will be ignored for this session
1586699609473 Marionette INFO Stopped listening on port 6045
###!!! [Child][RunMessage] Error: Channel closing: too late to send/recv, messages will be lost
###!!! [Child][MessageChannel::SendAndWait] Error: Channel error: cannot send/recv
1586705789546 mozrunner::runner INFO Running command: "C:\\Program Files\\Mozilla Firefox\\firefox.exe" "-marionette" "-foreground" "-no-remote" "-profile" "C:\\Users\\MUKUND~1\\AppData\\Local\\Temp\\rust_mozprofile02yt5o"
1586705790137 [email protected] WARN Loading extension '[email protected]': Reading manifest: Invalid extension permission: networkStatus
1586705791922 [email protected] WARN Loading extension '[email protected]': Reading manifest: Invalid extension permission: mozillaAddons
1586705791922 [email protected] WARN Loading extension '[email protected]': Reading manifest: Invalid extension permission: telemetry
1586705791922 [email protected] WARN Loading extension '[email protected]': Reading manifest: Invalid extension permission: resource://pdf.js/
1586705791922 [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.
1586705794288 Marionette INFO Listening on port 10284
1586705794763 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.
1586705797363 Marionette INFO Stopped listening on port 10284
###!!! [Child][RunMessage] Error: Channel closing: too late to send/recv, messages will be lost
###!!! [Child][MessageChannel::SendAndWait] Error: Channel error: cannot send/recv
1586705904000 mozrunner::runner INFO Running command: "C:\\Program Files\\Mozilla Firefox\\firefox.exe" "-marionette" "-foreground" "-no-remote" "-profile" "C:\\Users\\MUKUND~1\\AppData\\Local\\Temp\\rust_mozprofileZreyYA"
1586705904562 [email protected] WARN Loading extension '[email protected]': Reading manifest: Invalid extension permission: networkStatus
1586705906251 [email protected] WARN Loading extension '[email protected]': Reading manifest: Invalid extension permission: mozillaAddons
1586705906251 [email protected] WARN Loading extension '[email protected]': Reading manifest: Invalid extension permission: telemetry
1586705906251 [email protected] WARN Loading extension '[email protected]': Reading manifest: Invalid extension permission: resource://pdf.js/
1586705906251 [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.
1586705908707 Marionette INFO Listening on port 10356
1586705908712 Marionette WARN TLS certificate errors will be ignored for this session
1586705914745 Marionette INFO Stopped listening on port 10356
###!!! [Child][RunMessage] Error: Channel closing: too late to send/recv, messages will be lost
###!!! [Child][MessageChannel::SendAndWait] Error: Channel error: cannot send/recv
1586726623161 mozrunner::runner INFO Running command: "C:\\Program Files\\Mozilla Firefox\\firefox.exe" "-marionette" "-foreground" "-no-remote" "-profile" "C:\\Users\\MUKUND~1\\AppData\\Local\\Temp\\rust_mozprofileOLuUpm"
1586726623816 [email protected] WARN Loading extension '[email protected]': Reading manifest: Invalid extension permission: networkStatus
1586726625533 [email protected] WARN Loading extension '[email protected]': Reading manifest: Invalid extension permission: mozillaAddons
1586726625533 [email protected] WARN Loading extension '[email protected]': Reading manifest: Invalid extension permission: telemetry
1586726625533 [email protected] WARN Loading extension '[email protected]': Reading manifest: Invalid extension permission: resource://pdf.js/
1586726625533 [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.
1586726628776 Marionette INFO Listening on port 8432
1586726628881 Marionette WARN TLS certificate errors will be ignored for this session
1586726634197 Marionette INFO Stopped listening on port 8432
###!!! [Child][RunMessage] Error: Channel closing: too late to send/recv, messages will be lost
###!!! [Child][MessageChannel::SendAndWait] Error: Channel error: cannot send/recv
1586726666322 mozrunner::runner INFO Running command: "C:\\Program Files\\Mozilla Firefox\\firefox.exe" "-marionette" "-foreground" "-no-remote" "-profile" "C:\\Users\\MUKUND~1\\AppData\\Local\\Temp\\rust_mozprofileNMzaN7"
1586726667084 [email protected] WARN Loading extension '[email protected]': Reading manifest: Invalid extension permission: networkStatus
1586726669094 [email protected] WARN Loading extension '[email protected]': Reading manifest: Invalid extension permission: mozillaAddons
1586726669095 [email protected] WARN Loading extension '[email protected]': Reading manifest: Invalid extension permission: telemetry
1586726669095 [email protected] WARN Loading extension '[email protected]': Reading manifest: Invalid extension permission: resource://pdf.js/
1586726669095 [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.
1586726672294 Marionette INFO Listening on port 8488
1586726672539 Marionette WARN TLS certificate errors will be ignored for this session
1586726677129 Marionette INFO Stopped listening on port 8488
###!!! [Child][RunMessage] Error: Channel closing: too late to send/recv, messages will be lost
###!!! [Child][MessageChannel::SendAndWait] Error: Channel error: cannot send/recv
1586726803919 mozrunner::runner INFO Running command: "C:\\Program Files\\Mozilla Firefox\\firefox.exe" "-marionette" "-foreground" "-no-remote" "-profile" "C:\\Users\\MUKUND~1\\AppData\\Local\\Temp\\rust_mozprofileo5JQaF"
1586726804664 [email protected] WARN Loading extension '[email protected]': Reading manifest: Invalid extension permission: networkStatus
1586726806402 [email protected] WARN Loading extension '[email protected]': Reading manifest: Invalid extension permission: mozillaAddons
1586726806402 [email protected] WARN Loading extension '[email protected]': Reading manifest: Invalid extension permission: telemetry
1586726806402 [email protected] WARN Loading extension '[email protected]': Reading manifest: Invalid extension permission: resource://pdf.js/
1586726806403 [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.
1586726809500 Marionette INFO Listening on port 8626
1586726809634 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.
1586726812014 Marionette INFO Stopped listening on port 8626
###!!! [Child][RunMessage] Error: Channel closing: too late to send/recv, messages will be lost
###!!! [Child][MessageChannel::SendAndWait] Error: Channel error: cannot send/recv
1586727014610 mozrunner::runner INFO Running command: "C:\\Program Files\\Mozilla Firefox\\firefox.exe" "-marionette" "-foreground" "-no-remote" "-profile" "C:\\Users\\MUKUND~1\\AppData\\Local\\Temp\\rust_mozprofileBWH2Oy"
1586727015351 [email protected] WARN Loading extension '[email protected]': Reading manifest: Invalid extension permission: networkStatus
1586727017207 [email protected] WARN Loading extension '[email protected]': Reading manifest: Invalid extension permission: mozillaAddons
1586727017207 [email protected] WARN Loading extension '[email protected]': Reading manifest: Invalid extension permission: telemetry
1586727017207 [email protected] WARN Loading extension '[email protected]': Reading manifest: Invalid extension permission: resource://pdf.js/
1586727017207 [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.
1586727019924 Marionette INFO Listening on port 8747
1586727020325 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.
1586727022616 Marionette INFO Stopped listening on port 8747
###!!! [Child][RunMessage] Error: Channel closing: too late to send/recv, messages will be lost
###!!! [Child][MessageChannel::SendAndWait] Error: Channel error: cannot send/recv
1586727224686 mozrunner::runner INFO Running command: "C:\\Program Files\\Mozilla Firefox\\firefox.exe" "-marionette" "-foreground" "-no-remote" "-profile" "C:\\Users\\MUKUND~1\\AppData\\Local\\Temp\\rust_mozprofileOdgLXi"
1586727225744 [email protected] WARN Loading extension '[email protected]': Reading manifest: Invalid extension permission: networkStatus
1586727227651 [email protected] WARN Loading extension '[email protected]': Reading manifest: Invalid extension permission: mozillaAddons
1586727227652 [email protected] WARN Loading extension '[email protected]': Reading manifest: Invalid extension permission: telemetry
1586727227652 [email protected] WARN Loading extension '[email protected]': Reading manifest: Invalid extension permission: resource://pdf.js/
1586727227652 [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.
1586727230297 Marionette INFO Listening on port 8872
JavaScript error: resource://activity-stream/lib/ActivityStreamPrefs.jsm, line 27: NS_ERROR_ILLEGAL_VALUE: Component returned failure code: 0x80070057 (NS_ERROR_ILLEGAL_VALUE) [nsIPrefBranch.removeObserver]
JavaScript error: resource://gre/modules/Sqlite.jsm, line 921: Error: Connection is not open.
JavaSc
###!!! [Parent][DispatchAsyncMessage] Error: PBackgroundIDBFactory::Msg_PBackgroundIDBFactoryRequestConstructor Value error: message was deserialized, but contained an illegal value
ript error: , line 0: AbortError: A request was aborted, for example through a call to IDBTransaction.abort.
console.error: (new Error("SessionFile is closed", "resource:///modules/sessionstore/SessionFile.jsm", 433))
1586727265144 Marionette INFO Stopped listening on port 8872
###!!! [Child][RunMessage] Error: Channel closing: too late to send/recv, messages will be lost
###!!! [Child][MessageChannel] Error: (msgtype=0xB80015,name=PWindowGlobal::Msg_Destroy) Channel closing: too late to send/recv, messages will be lost
###!!! [Child][MessageChannel::SendAndWait] Error: Channel error: cannot send/recv
[email protected] WARN Loading extension '[email protected]': Reading manifest: Invalid extension permission: mozillaAddons
1586727254169 [email protected] WARN Loading extension '[email protected]': Reading manifest: Invalid extension permission: telemetry
1586727254169 [email protected] WARN Loading extension '[email protected]': Reading manifest: Invalid extension permission: resource://pdf.js/
1586727254169 [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.
1586727257562 Marionette INFO Listening on port 8908
1586727257751 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.
1586727260089 Marionette INFO Stopped listening on port 8908
###!!! [Child][RunMessage] Error: Channel closing: too late to send/recv, messages will be lost
###!!! [Child][MessageChannel::SendAndWait] Error: Channel error: cannot send/recv
1586727416497 mozrunner::runner INFO Running command: "C:\\Program Files\\Mozilla Firefox\\firefox.exe" "-marionette" "-foreground" "-no-remote" "-profile" "C:\\Users\\MUKUND~1\\AppData\\Local\\Temp\\rust_mozprofileQdT6rj"
1586727417124 [email protected] WARN Loading extension '[email protected]': Reading manifest: Invalid extension permission: networkStatus
1586727419265 [email protected] WARN Loading extension '[email protected]': Reading manifest: Invalid extension permission: mozillaAddons
1586727419265 [email protected] WARN Loading extension '[email protected]': Reading manifest: Invalid extension permission: telemetry
1586727419265 [email protected] WARN Loading extension '[email protected]': Reading manifest: Invalid extension permission: resource://pdf.js/
1586727419265 [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.
1586727422047 Marionette INFO Listening on port 9010
1586727422209 Marionette WARN TLS certificate errors will be ignored for this session
1586727427113 Marionette INFO Stopped listening on port 9010
###!!! [Child][RunMessage] Error: Channel closing: too late to send/recv, messages will be lost
###!!! [Child][MessageChannel::SendAndWait] Error: Channel error: cannot send/recv
1586727568414 mozrunner::runner INFO Running command: "C:\\Program Files\\Mozilla Firefox\\firefox.exe" "-marionette" "-foreground" "-no-remote" "-profile" "C:\\Users\\MUKUND~1\\AppData\\Local\\Temp\\rust_mozprofile2ZZnlb"
1586727569212 [email protected] WARN Loading extension '[email protected]': Reading manifest: Invalid extension permission: networkStatus
1586727570962 [email protected] WARN Loading extension '[email protected]': Reading manifest: Invalid extension permission: mozillaAddons
1586727570962 [email protected] WARN Loading extension '[email protected]': Reading manifest: Invalid extension permission: telemetry
1586727570962 [email protected] WARN Loading extension '[email protected]': Reading manifest: Invalid extension permission: resource://pdf.js/
1586727570963 [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.
1586727573799 Marionette INFO Listening on port 9118
1586727574129 Marionette WARN TLS certificate errors will be ignored for this session
1586727588110 Marionette INFO Stopped listening on port 9118
###!!! [Child][RunMessage] Error: Channel closing: too late to send/recv, messages will be lost
###!!! [Child][MessageChannel::SendAndWait] Error: Channel error: cannot send/recv
1586727668443 mozrunner::runner INFO Running command: "C:\\Program Files\\Mozilla Firefox\\firefox.exe" "-marionette" "-foreground" "-no-remote" "-profile" "C:\\Users\\MUKUND~1\\AppData\\Local\\Temp\\rust_mozprofilerJc1OT"
1586727669301 [email protected] WARN Loading extension '[email protected]': Reading manifest: Invalid extension permission: networkStatus
1586727671281 [email protected] WARN Loading extension '[email protected]': Reading manifest: Invalid extension permission: mozillaAddons
1586727671281 [email protected] WARN Loading extension '[email protected]': Reading manifest: Invalid extension permission: telemetry
1586727671281 [email protected] WARN Loading extension '[email protected]': Reading manifest: Invalid extension permission: resource://pdf.js/
1586727671281 [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.
1586727673344 Marionette INFO Listening on port 9220
1586727673659 Marionette WARN TLS certificate errors will be ignored for this session
JavaScript warning: https://rawgit.com/schmich/instascan-builds/master/instascan.min.js, line 18: asm.js type error: double is not a subtype of int
1586727683146 Marionette INFO Stopped listening on port 9220
###!!! [Child][RunMessage] Error: Channel closing: too late to send/recv, messages will be lost
###!!! [Child][MessageChannel::SendAndWait] Error: Channel error: cannot send/recv
1586729348917 mozrunner::runner INFO Running command: "C:\\Program Files\\Mozilla Firefox\\firefox.exe" "-marionette" "-foreground" "-no-remote" "-profile" "C:\\Users\\MUKUND~1\\AppData\\Local\\Temp\\rust_mozprofiledfZ5wI"
1586729349493 [email protected] WARN Loading extension '[email protected]': Reading manifest: Invalid extension permission: networkStatus
1586729351354 [email protected] WARN Loading extension '[email protected]': Reading manifest: Invalid extension permission: mozillaAddons
1586729351354 [email protected] WARN Loading extension '[email protected]': Reading manifest: Invalid extension permission: telemetry
1586729351354 [email protected] WARN Loading extension '[email protected]': Reading manifest: Invalid extension permission: resource://pdf.js/
1586729351354 [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.
1586729353908 Marionette INFO Listening on port 10232
1586729354135 Marionette WARN TLS certificate errors will be ignored for this session
1586729359796 Marionette INFO Stopped listening on port 10232
###!!! [Child][RunMessage] Error: Channel closing: too late to send/recv, messages will be lost
###!!! [Child][MessageChannel::SendAndWait] Error: Channel error: cannot send/recv
1586733010707 mozrunner::runner INFO Running command: "C:\\Program Files\\Mozilla Firefox\\firefox.exe" "-marionette" "-foreground" "-no-remote" "-profile" "C:\\Users\\MUKUND~1\\AppData\\Local\\Temp\\rust_mozprofilePn4MYL"
1586733011222 [email protected] WARN Loading extension '[email protected]': Reading manifest: Invalid extension permission: networkStatus
1586733012675 [email protected] WARN Loading extension '[email protected]': Reading manifest: Invalid extension permission: mozillaAddons
1586733012676 [email protected] WARN Loading extension '[email protected]': Reading manifest: Invalid extension permission: telemetry
1586733012676 [email protected] WARN Loading extension '[email protected]': Reading manifest: Invalid extension permission: resource://pdf.js/
1586733012676 [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.
1586733014703 Marionette INFO Listening on port 12458
1586733014819 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.
1586733016968 Marionette INFO Stopped listening on port 12458
###!!! [Child][RunMessage] Error: Channel closing: too late to send/recv, messages will be lost
###!!! [Child][MessageChannel::SendAndWait] Error: Channel error: cannot send/recv
1586753544391 mozrunner::runner INFO Running command: "C:\\Program Files\\Mozilla Firefox\\firefox.exe" "-marionette" "-foreground" "-no-remote" "-profile" "C:\\Users\\MUKUND~1\\AppData\\Local\\Temp\\rust_mozprofilelOb0W4"
1586753545276 [email protected] WARN Loading extension '[email protected]': Reading manifest: Invalid extension permission: networkStatus
1586753547671 [email protected] WARN Loading extension '[email protected]': Reading manifest: Invalid extension permission: mozillaAddons
1586753547671 [email protected] WARN Loading extension '[email protected]': Reading manifest: Invalid extension permission: telemetry
1586753547672 [email protected] WARN Loading extension '[email protected]': Reading manifest: Invalid extension permission: resource://pdf.js/
1586753547672 [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.
###!!! [Child][RunMessage] Error: Channel closing: too late to send/recv, messages will be lost
###!!! [Child][MessageChannel::SendAndWait] Error: Channel error: cannot send/recv
1586754581346 mozrunner::runner INFO Running command: "C:\\Program Files\\Mozilla Firefox\\firefox.exe" "-marionette" "-foreground" "-no-remote" "-profile" "C:\\Users\\MUKUND~1\\AppData\\Local\\Temp\\rust_mozprofile3g9Hxc"
1586754581895 [email protected] WARN Loading extension '[email protected]': Reading manifest: Invalid extension permission: networkStatus
1586754583852 [email protected] WARN Loading extension '[email protected]': Reading manifest: Invalid extension permission: mozillaAddons
1586754583853 [email protected] WARN Loading extension '[email protected]': Reading manifest: Invalid extension permission: telemetry
1586754583853 [email protected] WARN Loading extension '[email protected]': Reading manifest: Invalid extension permission: resource://pdf.js/
1586754583853 [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.
1586754586476 Marionette INFO Listening on port 1604
1586754586760 Marionette WARN TLS certificate errors will be ignored for this session
1586754595661 Marionette INFO Stopped listening on port 1604
###!!! [Child][RunMessage] Error: Channel closing: too late to send/recv, messages will be lost
###!!! [Child][MessageChannel::SendAndWait] Error: Channel error: cannot send/recv
1586754671359 mozrunner::runner INFO Running command: "C:\\Program Files\\Mozilla Firefox\\firefox.exe" "-marionette" "-foreground" "-no-remote" "-profile" "C:\\Users\\MUKUND~1\\AppData\\Local\\Temp\\rust_mozprofileaxsGxt"
1586754671890 [email protected] WARN Loading extension '[email protected]': Reading manifest: Invalid extension permission: networkStatus
1586754673540 [email protected] WARN Loading extension '[email protected]': Reading manifest: Invalid extension permission: mozillaAddons
1586754673540 [email protected] WARN Loading extension '[email protected]': Reading manifest: Invalid extension permission: telemetry
1586754673540 [email protected] WARN Loading extension '[email protected]': Reading manifest: Invalid extension permission: resource://pdf.js/
1586754673540 [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.
1586754676043 Marionette INFO Listening on port 1679
1586754676152 Marionette WARN TLS certificate errors will be ignored for this session
1586754679204 Marionette INFO Stopped listening on port 1679
###!!! [Child][RunMessage] Error: Channel closing: too late to send/recv, messages will be lost
###!!! [Child][MessageChannel::SendAndWait] Error: Channel error: cannot send/recv
1586754889781 mozrunner::runner INFO Running command: "C:\\Program Files\\Mozilla Firefox\\firefox.exe" "-marionette" "-foreground" "-no-remote" "-profile" "C:\\Users\\MUKUND~1\\AppData\\Local\\Temp\\rust_mozprofileDURwme"
1586754890334 [email protected] WARN Loading extension '[email protected]': Reading manifest: Invalid extension permission: networkStatus
1586754891923 [email protected] WARN Loading extension '[email protected]': Reading manifest: Invalid extension permission: mozillaAddons
1586754891923 [email protected] WARN Loading extension '[email protected]': Reading manifest: Invalid extension permission: telemetry
1586754891923 [email protected] WARN Loading extension '[email protected]': Reading manifest: Invalid extension permission: resource://pdf.js/
1586754891923 [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.
1586754894304 Marionette INFO Listening on port 1789
1586754894544 Marionette WARN TLS certificate errors will be ignored for this session
JavaScript warning: https://rawgit.com/schmich/instascan-builds/master/instascan.min.js, line 18: asm.js type error: double is not a subtype of int
1586754901528 Marionette INFO Stopped listening on port 1789
###!!! [Child][RunMessage] Error: Channel closing: too late to send/recv, messages will be lost
###!!! [Child][MessageChannel::SendAndWait] Error: Channel error: cannot send/recv
1586754921073 mozrunner::runner INFO Running command: "C:\\Program Files\\Mozilla Firefox\\firefox.exe" "-marionette" "-foreground" "-no-remote" "-profile" "C:\\Users\\MUKUND~1\\AppData\\Local\\Temp\\rust_mozprofile6SGlUr"
1586754921577 [email protected] WARN Loading extension '[email protected]': Reading manifest: Invalid extension permission: networkStatus
1586754923442 [email protected] WARN Loading extension '[email protected]': Reading manifest: Invalid extension permission: mozillaAddons
1586754923442 [email protected] WARN Loading extension '[email protected]': Reading manifest: Invalid extension permission: telemetry
1586754923442 [email protected] WARN Loading extension '[email protected]': Reading manifest: Invalid extension permission: resource://pdf.js/
1586754923443 [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.
1586754926267 Marionette INFO Listening on port 1840
1586754926374 Marionette WARN TLS certificate errors will be ignored for this session
1586754931202 Marionette INFO Stopped listening on port 1840
###!!! [Child][RunMessage] Error: Channel closing: too late to send/recv, messages will be lost
###!!! [Child][MessageChannel::SendAndWait] Error: Channel error: cannot send/recv
1586756026290 mozrunner::runner INFO Running command: "C:\\Program Files\\Mozilla Firefox\\firefox.exe" "-marionette" "-foreground" "-no-remote" "-profile" "C:\\Users\\MUKUND~1\\AppData\\Local\\Temp\\rust_mozprofilesRkHHm"
1586756026937 [email protected] WARN Loading extension '[email protected]': Reading manifest: Invalid extension permission: networkStatus
1586756028820 [email protected] WARN Loading extension '[email protected]': Reading manifest: Invalid extension permission: mozillaAddons
1586756028821 [email protected] WARN Loading extension '[email protected]': Reading manifest: Invalid extension permission: telemetry
1586756028821 [email protected] WARN Loading extension '[email protected]': Reading manifest: Invalid extension permission: resource://pdf.js/
1586756028821 [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.
1586756032015 Marionette INFO Listening on port 2368
1586756032507 Marionette WARN TLS certificate errors will be ignored for this session
1586756037003 Marionette INFO Stopped listening on port 2368