-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathgeckodriver.log
7905 lines (6792 loc) · 704 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
1616030537869 geckodriver INFO Listening on 127.0.0.1:52790
1616030540925 mozrunner::runner INFO Running command: "C:\\Program Files\\Mozilla Firefox\\firefox.exe" "--marionette" "-foreground" "-no-remote" "-profile" "C:\\Users\\Chris\\AppData\\Local\\Temp\\rust_mozprofilewYFSyx"
console.warn: SearchSettings: "get: No settings file exists, new profile?" (new Error("", "(unknown module)"))
1616030543455 Marionette INFO Listening on port 52798
1616030543656 Marionette WARN TLS certificate errors will be ignored for this session
1616030560523 Marionette INFO Stopped listening on port 52798
###!!! [Child][RunMessage] Error: Channel closing: too late to send/recv, messages will be lost
1616030568956 geckodriver INFO Listening on 127.0.0.1:52868
1616030571961 mozrunner::runner INFO Running command: "C:\\Program Files\\Mozilla Firefox\\firefox.exe" "--marionette" "-foreground" "-no-remote" "-profile" "C:\\Users\\Chris\\AppData\\Local\\Temp\\rust_mozprofile5TRU7Q"
console.warn: SearchSettings: "get: No settings file exists, new profile?" (new Error("", "(unknown module)"))
1616030574335 Marionette INFO Listening on port 52876
1616030574654 Marionette WARN TLS certificate errors will be ignored for this session
1616030622590 Marionette INFO Stopped listening on port 52876
###!!! [Child][RunMessage] Error: Channel closing: too late to send/recv, messages will be lost
1616030637538 geckodriver INFO Listening on 127.0.0.1:52953
1616030640545 mozrunner::runner INFO Running command: "C:\\Program Files\\Mozilla Firefox\\firefox.exe" "--marionette" "-foreground" "-no-remote" "-profile" "C:\\Users\\Chris\\AppData\\Local\\Temp\\rust_mozprofileUcCh9d"
console.warn: SearchSettings: "get: No settings file exists, new profile?" (new Error("", "(unknown module)"))
1616030642868 Marionette INFO Listening on port 52961
1616030643217 Marionette WARN TLS certificate errors will be ignored for this session
1616030645476 Marionette INFO Stopped listening on port 52961
###!!! [Child][RunMessage] Error: Channel closing: too late to send/recv, messages will be lost
1616030652663 geckodriver INFO Listening on 127.0.0.1:53017
1616030655710 mozrunner::runner INFO Running command: "C:\\Program Files\\Mozilla Firefox\\firefox.exe" "--marionette" "-foreground" "-no-remote" "-profile" "C:\\Users\\Chris\\AppData\\Local\\Temp\\rust_mozprofilexyLuKn"
console.warn: SearchSettings: "get: No settings file exists, new profile?" (new Error("", "(unknown module)"))
1616030657951 Marionette INFO Listening on port 53025
1616030658354 Marionette WARN TLS certificate errors will be ignored for this session
1616030672339 Marionette INFO Stopped listening on port 53025
###!!! [Child][RunMessage] Error: Channel closing: too late to send/recv, messages will be lost
1616030735197 geckodriver INFO Listening on 127.0.0.1:53115
1616030738255 mozrunner::runner INFO Running command: "C:\\Program Files\\Mozilla Firefox\\firefox.exe" "--marionette" " - incognito" "-foreground" "-no-remote" "-profile" "C:\\Users\\Chris\\AppData\\Local\\Temp\\rust_mozprofile5NN2xI"
console.warn: SearchSettings: "get: No settings file exists, new profile?" (new Error("", "(unknown module)"))
1616030740590 Marionette INFO Listening on port 53123
1616030740921 Marionette WARN TLS certificate errors will be ignored for this session
JavaScript error: resource://activity-stream/lib/ASRouter.jsm, line 988: NS_ERROR_ILLEGAL_VALUE: Component returned failure code: 0x80070057 (NS_ERROR_ILLEGAL_VALUE) [nsIObserverService.removeObserver]
JavaScript error: resource:///modules/UrlbarProviderSearchTips.jsm, line 382: TypeError: window is null
1616030741932 Marionette INFO Stopped listening on port 53123
1616030749968 geckodriver INFO Listening on 127.0.0.1:53172
1616030753015 mozrunner::runner INFO Running command: "C:\\Program Files\\Mozilla Firefox\\firefox.exe" "--marionette" " - incognito" "-foreground" "-no-remote" "-profile" "C:\\Users\\Chris\\AppData\\Local\\Temp\\rust_mozprofilet4c63D"
console.warn: SearchSettings: "get: No settings file exists, new profile?" (new Error("", "(unknown module)"))
1616030755643 Marionette INFO Listening on port 53180
1616030755689 Marionette WARN TLS certificate errors will be ignored for this session
1616030761375 Marionette INFO Stopped listening on port 53180
###!!! [Child][RunMessage] Error: Channel closing: too late to send/recv, messages will be lost
1616030918966 geckodriver INFO Listening on 127.0.0.1:53296
1616030922017 mozrunner::runner INFO Running command: "C:\\Program Files\\Mozilla Firefox\\firefox.exe" "--marionette" "-foreground" "-no-remote" "-profile" "C:\\Users\\Chris\\AppData\\Local\\Temp\\rust_mozprofilels3uL9"
console.warn: SearchSettings: "get: No settings file exists, new profile?" (new Error("", "(unknown module)"))
1616030924283 Marionette INFO Listening on port 53304
1616030924698 Marionette WARN TLS certificate errors will be ignored for this session
1616030980093 Marionette INFO Stopped listening on port 53304
###!!! [Child][RunMessage] Error: Channel closing: too late to send/recv, messages will be lost
1616031001463 geckodriver INFO Listening on 127.0.0.1:53396
1616031004484 mozrunner::runner INFO Running command: "C:\\Program Files\\Mozilla Firefox\\firefox.exe" "--marionette" "-foreground" "-no-remote" "-profile" "C:\\Users\\Chris\\AppData\\Local\\Temp\\rust_mozprofileostAtS"
console.warn: SearchSettings: "get: No settings file exists, new profile?" (new Error("", "(unknown module)"))
1616031006912 Marionette INFO Listening on port 53404
1616031007162 Marionette WARN TLS certificate errors will be ignored for this session
1616032582802 Marionette INFO Stopped listening on port 53404
###!!! [Child][RunMessage] Error: Channel closing: too late to send/recv, messages will be lost
"--marionette" "-private" "-foreground" "-no-remote" "-profile" "C:\\Users\\Chris\\AppData\\Local\\Temp\\rust_mozprofileyOGrAr"
console.warn: SearchSettings: "get: No settings file exists, new profile?" (new Error("", "(unknown module)"))
JavaScript error: resource://gre/modules/XULStore.jsm, line 66: Error: Can't find profile directory.
1616031021305 Marionette INFO Listening on port 53470
1616031021536 Marionette WARN TLS certificate errors will be ignored for this session
1616031072330 Marionette INFO Stopped listening on port 53470
###!!! [Child][RunMessage] Error: Channel closing: too late to send/recv, messages will be lost
1616032091235 geckodriver INFO Listening on 127.0.0.1:53727
1616032094273 mozrunner::runner INFO Running command: "C:\\Program Files\\Mozilla Firefox\\firefox.exe" "--marionette" "-foreground" "-no-remote" "-profile" "C:\\Users\\Chris\\AppData\\Local\\Temp\\rust_mozprofileiSMGh8"
console.warn: SearchSettings: "get: No settings file exists, new profile?" (new Error("", "(unknown module)"))
1616032096614 Marionette INFO Listening on port 53735
1616032096953 Marionette WARN TLS certificate errors will be ignored for this session
1616032123490 Marionette INFO Stopped listening on port 53735
###!!! [Child][RunMessage] Error: Channel closing: too late to send/recv, messages will be lost
"--marionette" "-private" "-foreground" "-no-remote" "-profile" "C:\\Users\\Chris\\AppData\\Local\\Temp\\rust_mozprofilegGmxy1"
console.warn: SearchSettings: "get: No settings file exists, new profile?" (new Error("", "(unknown module)"))
JavaScript error: resource://gre/modules/XULStore.jsm, line 66: Error: Can't find profile directory.
1616032102268 Marionette INFO Listening on port 53800
1616032102654 Marionette WARN TLS certificate errors will be ignored for this session
1616032118359 Marionette INFO Stopped listening on port 53800
###!!! [Child][RunMessage] Error: Channel closing: too late to send/recv, messages will be lost
1616032202176 geckodriver INFO Listening on 127.0.0.1:53887
1616032205236 mozrunner::runner INFO Running command: "C:\\Program Files\\Mozilla Firefox\\firefox.exe" "--marionette" "-foreground" "-no-remote" "-profile" "C:\\Users\\Chris\\AppData\\Local\\Temp\\rust_mozprofilerNBgjS"
console.warn: SearchSettings: "get: No settings file exists, new profile?" (new Error("", "(unknown module)"))
1616032207622 Marionette INFO Listening on port 53895
1616032207942 Marionette WARN TLS certificate errors will be ignored for this session
1616032209785 Marionette INFO Stopped listening on port 53891616032210994 mozrunner::runner INFO Running command: "C:\\Program Files\\Mozilla Firefox\\firefox.exe" "--marionette" "-private" "-foreground" "-no-remote" "-profile" "C:\\Users\\Chris\\AppData\\Local\\Temp\\rust_mozprofilex0rDMB"
console.warn: SearchSettings: "get: No settings file exists, new profile?" (new Error("", "(unknown module)"))
JavaScript error: resource://gre/modules/XULStore.jsm, line 66: Error: Can't find profile directory.
1616032213459 Marionette INFO Listening on port 53945
1616032213662 Marionette WARN TLS certificate errors will be ignored for this session
JavaScript error: resource://activity-stream/lib/ASRouter.jsm, line 988: NS_ERROR_ILLEGAL_VALUE: Component returned failure code: 0x80070057 (NS_ERROR_ILLEGAL_VALUE) [nsIObserverService.removeObserver]
console.warn: services.settings: main/partitioning-exempt-urls sync interrupted by shutdown
1616032214374 Marionette INFO Stopped listening on port 53945
###!!! [Child][RunMessage] Error: Channel closing: too late to send/recv, messages will be lost
1616032220737 geckodriver INFO Listening on 127.0.0.1:53991
1616032223781 mozrunner::runner INFO Running command: "C:\\Program Files\\Mozilla Firefox\\firefox.exe" "--marionette" "-foreground" "-no-remote" "-profile" "C:\\Users\\Chris\\AppData\\Local\\Temp\\rust_mozprofilekmpZoE"
console.warn: SearchSettings: "get: No settings file exists, new profile?" (new Error("", "(unknown module)"))
1616032226038 Marionette INFO Listening on port 53999
1616032226459 Marionette WARN TLS certificate errors will be ignored for this session
JavaScript error: resource://gre/modules/Prompter.jsm, line 1185: NS_ERROR_NOT_AVAILABLE: prompt aborted by user
1616032243043 Marionette INFO Stopped listening on port 53999
###!!! [Child][RunMessage] Error: Channel closing: too late to send/recv, messages will be lost
rofileNOriSM"
console.warn: SearchSettings: "get: No settings file exists, new profile?" (new Error("", "(unknown module)"))
JavaScript error: resource://gre/modules/XULStore.jsm, line 66: Error: Can't find profile directory.
1616032231820 Marionette INFO Listening on port 54056
1616032232172 Marionette WARN TLS certificate errors will be ignored for this session
1616032241178 Marionette INFO Stopped listening on port 54056
###!!! [Child][RunMessage] Error: Channel closing: too late to send/recv, messages will be lost
1616032276179 geckodriver INFO Listening on 127.0.0.1:54133
1616032279212 mozrunner::runner INFO Running command: "C:\\Program Files\\Mozilla Firefox\\firefox.exe" "--marionette" "-foreground" "-no-remote" "-profile" "C:\\Users\\Chris\\AppData\\Local\\Temp\\rust_mozprofilecQoQE3"
console.warn: SearchSettings: "get: No settings file exists, new profile?" (new Error("", "(unknown module)"))
1616032281601 Marionette INFO Listening on port 54141
1616032281888 Marionette WARN TLS certificate errors will be ignored for this session
JavaScript error: resource://gre/modules/Prompter.jsm, line 1185: NS_ERROR_NOT_AVAILABLE: prompt aborted by user
1616032295459 Marionette INFO Stopped listening on port 54141
###!!! [Child][RunMessage] Error: Channel closing: too late to send/recv, messages will be lost
rofileR8EPUh"
console.warn: SearchSettings: "get: No settings file exists, new profile?" (new Error("", "(unknown module)"))
JavaScript error: resource://gre/modules/XULStore.jsm, line 66: Error: Can't find profile directory.
1616032287217 Marionette INFO Listening on port 54195
1616032287610 Marionette WARN TLS certificate errors will be ignored for this session
1616032300532 Marionette INFO Stopped listening on port 54195
###!!! [Child][RunMessage] Error: Channel closing: too late to send/recv, messages will be lost
1616032492342 geckodriver INFO Listening on 127.0.0.1:54275
1616032495386 mozrunner::runner INFO Running command: "C:\\Program Files\\Mozilla Firefox\\firefox.exe" "--marionette" "-foreground" "-no-remote" "-profile" "C:\\Users\\Chris\\AppData\\Local\\Temp\\rust_mozprofile99i66e"
console.warn: SearchSettings: "get: No settings file exists, new profile?" (new Error("", "(unknown module)"))
1616032497943 Marionette INFO Listening on port 54283
1616032498039 Marionette WARN TLS certificate errors will be ignored for this session
1616032513464 Marionette INFO Stopped listening on port 54283
###!!! [Child][RunMessage] Error: Channel closing: too late to send/recv, messages will be lost
"--marionette" "-private" "-foreground" "-no-remote" "-profile" "C:\\Users\\Chris\\AppData\\Local\\Temp\\rust_mozprofileG9ZMKV"
console.warn: SearchSettings: "get: No settings file exists, new profile?" (new Error("", "(unknown module)"))
JavaScript error: resource://gre/modules/XULStore.jsm, line 66: Error: Can't find profile directory.
1616032503403 Marionette INFO Listening on port 54338
1616032503765 Marionette WARN TLS certificate errors will be ignored for this session
1616032514850 Marionette INFO Stopped listening on port 54338
###!!! [Child][RunMessage] Error: Channel closing: too late to send/recv, messages will be lost
1616032567872 geckodriver INFO Listening on 127.0.0.1:54399
1616032570909 mozrunner::runner INFO Running command: "C:\\Program Files\\Mozilla Firefox\\firefox.exe" "--marionette" "-foreground" "-no-remote" "-profile" "C:\\Users\\Chris\\AppData\\Local\\Temp\\rust_mozprofile18jhF7"
console.warn: SearchSettings: "get: No settings file exists, new profile?" (new Error("", "(unknown module)"))
1616032573221 Marionette INFO Listening on port 54407
1616032573587 Marionette WARN TLS certificate errors will be ignored for this session
1616032588158 Marionette INFO Stopped listening on port 54407
###!!! [Child][RunMessage] Error: Channel closing: too late to send/recv, messages will be lost
1616098260053 geckodriver INFO Listening on 127.0.0.1:54724
1616098263113 mozrunner::runner INFO Running command: "C:\\Program Files\\Mozilla Firefox\\firefox.exe" "--marionette" "-private" "-foreground" "-no-remote" "-profile" "C:\\Users\\Chris\\AppData\\Local\\Temp\\rust_mozprofilef7Nhwp"
console.warn: SearchSettings: "get: No settings file exists, new profile?" (new Error("", "(unknown module)"))
JavaScript error: resource://gre/modules/XULStore.jsm, line 66: Error: Can't find profile directory.
1616098266701 Marionette INFO Listening on port 54732
1616098266820 Marionette WARN TLS certificate errors will be ignored for this session
1616098272198 Marionette INFO Stopped listening on port 54732
###!!! [Child][RunMessage] Error: Channel closing: too late to send/recv, messages will be lost
1616098995003 geckodriver INFO Listening on 127.0.0.1:54880
1616098998053 mozrunner::runner INFO Running command: "C:\\Program Files\\Mozilla Firefox\\firefox.exe" "--marionette" "-private" "-foreground" "-no-remote" "-profile" "C:\\Users\\Chris\\AppData\\Local\\Temp\\rust_mozprofileHEI5Yq"
console.warn: SearchSettings: "get: No settings file exists, new profile?" (new Error("", "(unknown module)"))
JavaScript error: resource://gre/modules/XULStore.jsm, line 66: Error: Can't find profile directory.
1616099001784 Marionette INFO Listening on port 54888
1616099002288 Marionette WARN TLS certificate errors will be ignored for this session
JavaScript error: , line 0: NotFoundError: No such JSWindowActor 'MarionetteEvents'
JavaScript error: , line 0: NotFoundError: No such JSWindowActor 'MarionetteEvents'
JavaScript error: , line 0: uncaught exception: undefined
1616099043818 Marionette INFO Stopped listening on port 54881616099045773 mozrunner::runner INFO Running command: "C:\\Program Files\\Mozilla Firefox\\firefox.exe" "--marionette" "-private" "-foreground" "-no-remote" "-profile" "C:\\Users\\Chris\\AppData\\Local\\Temp\\rust_mozprofiley3I2AH"
console.warn: SearchSettings: "get: No settings file exists, new profile?" (new Error("", "(unknown module)"))
JavaScript error: resource://gre/modules/XULStore.jsm, line 66: Error: Can't find profile directory.
1616099049271 Marionette INFO Listening on port 55007
1616099049599 Marionette WARN TLS certificate errors will be ignored for this session
1616099053921 Marionette WARN Ignoring event 'DOMContentLoaded' because document has an invalid readyState of 'complete'.
JavaScript error: https://widget.freshworks.com/widgetBase/widget.js, line 1: Error: Loading chunk 1 failed.
(error: https://widget.freshworks.com/widgetBase/1.8bd0d39ed40ee0109589.widget.js)
JavaScript error: https://widget.freshworks.com/widgetBase/widget.js, line 1: Error: Loading chunk 0 failed.
(error: https://widget.freshworks.com/widgetBase/0.96c1c69b8724e56254b8.widget.js)
1616099055079 Marionette WARN Ignoring event 'pageshow' because document has an invalid readyState of 'uninitialized'.
JavaScript error: , line 0: uncaught exception: undefined
JavaScript warning: https://quantcast.mgr.consensu.org/tcfv2/cmp2.js?referer=www.pro-football-reference.com, line 1: Script terminated by timeout at:
n.r@https://quantcast.mgr.consensu.org/tcfv2/cmp2.js?referer=www.pro-football-reference.com:1:321
@https://quantcast.mgr.consensu.org/tcfv2/cmp2.js?referer=www.pro-football-reference.com:1:119120
n@https://quantcast.mgr.consensu.org/tcfv2/cmp2.js?referer=www.pro-football-reference.com:1:110
@https://quantcast.mgr.consensu.org/tcfv2/cmp2.js?referer=www.pro-football-reference.com:1:119065
n@https://quantcast.mgr.consensu.org/tcfv2/cmp2.js?referer=www.pro-football-reference.com:1:110
@https://quantcast.mgr.consensu.org/tcfv2/cmp2.js?referer=www.pro-football-reference.com:1:905
@https://quantcast.mgr.consensu.org/tcfv2/cmp2.js?referer=www.pro-football-reference.com:1:916
1616099077476 Marionette INFO Stopped listening on port 55007
###!!! [Child][RunMessage] Error: Channel closing: too late to send/recv, messages will be lost
1616099108544 geckodriver INFO Listening on 127.0.0.1:55133
1616099111585 mozrunner::runner INFO Running command: "C:\\Program Files\\Mozilla Firefox\\firefox.exe" "--marionette" "-private" "-foreground" "-no-remote" "-profile" "C:\\Users\\Chris\\AppData\\Local\\Temp\\rust_mozprofileyqditR"
console.warn: SearchSettings: "get: No settings file exists, new profile?" (new Error("", "(unknown module)"))
JavaScript error: resource://gre/modules/XULStore.jsm, line 66: Error: Can't find profile directory.
1616099115005 Marionette INFO Listening on port 55141
1616099115329 Marionette WARN TLS certificate errors will be ignored for this session
JavaScript error: https://widget.freshworks.com/widgetBase/widget.js, line 1: Error: Loading chunk 8 failed.
(error: https://widget.freshworks.com/widgetBase/8.391e72735dac0c934b81.widget.js)
JavaScript error: https://widget.freshworks.com/widgetBase/widget.js, line 1: Error: Loading chunk 16 failed.
(error: https://widget.freshworks.com/widgetBase/16.7514a03efa63da04b832.widget.js)
1616099120954 Marionette WARN Ignoring event 'pageshow' because document has an invalid readyState of 'uninitialized'.
JavaScript error: , line 0: uncaught exception: undefined
1616099481487 Marionette INFO Stopped listening on port 55141
6099356803 mozrunner::runner INFO Running command: "C:\\Program Files\\Mozilla Firefox\\firefox.exe" "--marionette" "-private" "-foreground" "-no-remote" "-profile" "C:\\Users\\Chris\\AppData\\Local\\Temp\\rust_mozprofileyVSpOk"
console.warn: SearchSettings: "get: No settings file exists, new profile?" (new Error("", "(unknown module)"))
JavaScript error: resource://gre/modules/XULStore.jsm, line 66: Error: Can't find profile directory.
1616099360368 Marionette INFO Listening on port 55293
1616099360485 Marionette WARN TLS certificate errors will be ignored for this session
1616099364250 Marionette WARN Ignoring event 'pageshow' because document has an invalid readyState of 'uninitialized'.
JavaScript error: , line 0: uncaught exception: undefined
1616099386615 Marionette INFO Stopped listening on port 55293
###!!! [Child][RunMessage] Error: Channel closing: too late to send/recv, messages will be lost
"--marionette" "-private" "-foreground" "-no-remote" "-profile" "C:\\Users\\Chris\\AppData\\Local\\Temp\\rust_mozprofilej5uUmv"
console.warn: SearchSettings: "get: No settings file exists, new profile?" (new Error("", "(unknown module)"))
JavaScript error: resource://gre/modules/XULStore.jsm, line 66: Error: Can't find profile directory.
1616099387902 Marionette INFO Listening on port 55406
1616099388392 Marionette WARN TLS certificate errors will be ignored for this session
1616099391650 Marionette WARN Ignoring event 'DOMContentLoaded' because document has an invalid readyState of 'complete'.
JavaScript error: https://widget.freshworks.com/widgetBase/widget.js, line 1: Error: Loading chunk 8 failed.
(error: https://widget.freshworks.com/widgetBase/8.391e72735dac0c934b81.widget.js)
JavaScript error: https://widget.freshworks.com/widgetBase/widget.js, line 1: Error: Loading chunk 10 failed.
(error: https://widget.freshworks.com/widgetBase/10.2e5460d4c197a23f9b8f.widget.js)
JavaScript error: , line 0: uncaught exception: undefined
1616099484247 Marionette INFO Stopped listening on port 55406
1616099663884 geckodriver INFO Listening on 127.0.0.1:55569
1616099666942 mozrunner::runner INFO Running command: "C:\\Program Files\\Mozilla Firefox\\firefox.exe" "--marionette" "-private" "-foreground" "-no-remote" "-profile" "C:\\Users\\Chris\\AppData\\Local\\Temp\\rust_mozprofileD19ioK"
console.warn: SearchSettings: "get: No settings file exists, new profile?" (new Error("", "(unknown module)"))
JavaScript error: resource://gre/modules/XULStore.jsm, line 66: Error: Can't find profile directory.
1616099670921 Marionette INFO Listening on port 55577
1616099671170 Marionette WARN TLS certificate errors will be ignored for this session
JavaScript error: , line 0: NotFoundError: No such JSWindowActor 'MarionetteEvents'
JavaScript error: , line 0: NotFoundError: No such JSWindowActor 'MarionetteEvents'
JavaScript error: , line 0: uncaught exception: undefined
1616099705434 Marionette INFO Stopped listening on port 55577
###!!! [Child][RunMessage] Error: Channel closing: too late to send/recv, messages will be lost
"--marionette" "-private" "-foreground" "-no-remote" "-profile" "C:\\Users\\Chris\\AppData\\Local\\Temp\\rust_mozprofiledLIUxv"
console.warn: SearchSettings: "get: No settings file exists, new profile?" (new Error("", "(unknown module)"))
JavaScript error: resource://gre/modules/XULStore.jsm, line 66: Error: Can't find profile directory.
1616099705243 Marionette INFO Listening on port 55692
1616099705413 Marionette WARN TLS certificate errors will be ignored for this session
JavaScript error: , line 0: NotFoundError: No such JSWindowActor 'MarionetteEvents'
JavaScript error: , line 0: uncaught exception: undefined
1616099723307 Marionette INFO Stopped listening on port 55692
###!!! [Child][RunMessage] Error: Channel closing: too late to send/recv, messages will be lost
"--marionette" "-private" "-foreground" "-no-remote" "-profile" "C:\\Users\\Chris\\AppData\\Local\\Temp\\rust_mozprofilecUCpLw"
console.warn: SearchSettings: "get: No settings file exists, new profile?" (new Error("", "(unknown module)"))
JavaScript error: resource://gre/modules/XULStore.jsm, line 66: Error: Can't find profile directory.
1616099725629 Marionette INFO Listening on port 55808
1616099725893 Marionette WARN TLS certificate errors will be ignored for this session
JavaScript error: https://widget.freshworks.com/widgetBase/widget.js, line 1: Error: Loading chunk 1 failed.
(error: https://widget.freshworks.com/widgetBase/1.8bd0d39ed40ee0109589.widget.js)
JavaScript error: https://widget.freshworks.com/widgetBase/widget.js, line 1: Error: Loading chunk 16 failed.
(error: https://widget.freshworks.com/widgetBase/16.7514a03efa63da04b832.widget.js)
1616099729676 Marionette WARN Ignoring event 'pageshow' because document has an invalid readyState of 'uninitialized'.
JavaScript error: , line 0: uncaught exception: undefined
1616099739299 Marionette INFO Stopped listening on port 55808
###!!! [Child][RunMessage] Error: Channel closing: too late to send/recv, messages will be lost
1616099938783 geckodriver INFO Listening on 127.0.0.1:55931
1616099941842 mozrunner::runner INFO Running command: "C:\\Program Files\\Mozilla Firefox\\firefox.exe" "--marionette" "-private" "-foreground" "-no-remote" "-profile" "C:\\Users\\Chris\\AppData\\Local\\Temp\\rust_mozprofileqXltq5"
console.warn: SearchSettings: "get: No settings file exists, new profile?" (new Error("", "(unknown module)"))
JavaScript error: resource://gre/modules/XULStore.jsm, line 66: Error: Can't find profile directory.
1616099945768 Marionette INFO Listening on port 55939
1616099946070 Marionette WARN TLS certificate errors will be ignored for this session
1616099950328 Marionette WARN Ignoring event 'pageshow' because document has an invalid readyState of 'uninitialized'.
JavaScript error: , line 0: NotFoundError: No such JSWindowActor 'MarionetteEvents'
JavaScript error: , line 0: uncaught exception: undefined
1616099959448 Marionette INFO Stopped listening on port 55939
###!!! [Child][RunMessage] Error: Channel closing: too late to send/recv, messages will be lost
1616099968431 geckodriver INFO Listening on 127.0.0.1:56044
1616099971482 mozrunner::runner INFO Running command: "C:\\Program Files\\Mozilla Firefox\\firefox.exe" "--marionette" "-private" "-foreground" "-no-remote" "-profile" "C:\\Users\\Chris\\AppData\\Local\\Temp\\rust_mozprofileFuhg7Z"
console.warn: SearchSettings: "get: No settings file exists, new profile?" (new Error("", "(unknown module)"))
JavaScript error: resource://gre/modules/XULStore.jsm, line 66: Error: Can't find profile directory.
1616099975050 Marionette INFO Listening on port 56054
1616099975239 Marionette WARN TLS certificate errors will be ignored for this session
JavaScript error: , line 0: uncaught exception: undefined
1616100025248 Marionette INFO Stopped listening on port 56054
###!!! [Child][RunMessage] Error: Channel closing: too late to send/recv, messages will be lost
"--marionette" "-private" "-foreground" "-no-remote" "-profile" "C:\\Users\\Chris\\AppData\\Local\\Temp\\rust_mozprofilen9ffC0"
console.warn: SearchSettings: "get: No settings file exists, new profile?" (new Error("", "(unknown module)"))
JavaScript error: resource://gre/modules/XULStore.jsm, line 66: Error: Can't find profile directory.
1616100026045 Marionette INFO Listening on port 56167
1616100026325 Marionette WARN TLS certificate errors will be ignored for this session
JavaScript error: , line 0: uncaught exception: undefined
1616100288661 Marionette INFO Stopped listening on port 56167
###!!! [Child][RunMessage] Error: Channel closing: too late to send/recv, messages will be lost
"--marionette" "-private" "-foreground" "-no-remote" "-profile" "C:\\Users\\Chris\\AppData\\Local\\Temp\\rust_mozprofile8KdrLj"
console.warn: SearchSettings: "get: No settings file exists, new profile?" (new Error("", "(unknown module)"))
JavaScript error: resource://gre/modules/XULStore.jsm, line 66: Error: Can't find profile directory.
1616100290930 Marionette INFO Listening on port 56373
1616100291262 Marionette WARN TLS certificate errors will be ignored for this session
JavaScript error: https://a.pub.network/pro-football-reference/pubfig.min.js, line 1: SyntaxError: JSON.parse: unexpected end of data at line 1 column 1 of the JSON data
JavaScript error: , line 0: uncaught exception: undefined
1616100305268 Marionette INFO Stopped listening on port 56373
###!!! [Child][RunMessage] Error: Channel closing: too late to send/recv, messages will be lost
1616100516890 geckodriver INFO Listening on 127.0.0.1:56495
1616100519949 mozrunner::runner INFO Running command: "C:\\Program Files\\Mozilla Firefox\\firefox.exe" "--marionette" "-private" "-foreground" "-no-remote" "-profile" "C:\\Users\\Chris\\AppData\\Local\\Temp\\rust_mozprofile831Vqm"
console.warn: SearchSettings: "get: No settings file exists, new profile?" (new Error("", "(unknown module)"))
JavaScript error: resource://gre/modules/XULStore.jsm, line 66: Error: Can't find profile directory.
1616100523565 Marionette INFO Listening on port 56503
1616100523742 Marionette WARN TLS certificate errors will be ignored for this session
1616100526768 Marionette WARN Ignoring event 'pageshow' because document has an invalid readyState of 'uninitialized'.
JavaScript error: , line 0: uncaught exception: undefined
1616100602578 Marionette INFO Stopped listening on port 56503
###!!! [Child][RunMessage] Error: Channel closing: too late to send/recv, messages will be lost
ile" "C:\\Users\\Chris\\AppData\\Local\\Temp\\rust_mozprofilePhQYzu"
console.warn: SearchSettings: "get: No settings file exists, new profile?" (new Error("", "(unknown module)"))
JavaScript error: resource://gre/modules/XULStore.jsm, line 66: Error: Can't find profile directory.
1616100534046 Marionette INFO Listening on port 56609
1616100534140 Marionette WARN TLS certificate errors will be ignored for this session
1616100597941 Marionette INFO Stopped listening on port 56609
###!!! [Child][RunMessage] Error: Channel closing: too late to send/recv, messages will be lost
1616100733847 geckodriver INFO Listening on 127.0.0.1:56688
1616100736872 mozrunner::runner INFO Running command: "C:\\Program Files\\Mozilla Firefox\\firefox.exe" "--marionette" "-private" "-foreground" "-no-remote" "-profile" "C:\\Users\\Chris\\AppData\\Local\\Temp\\rust_mozprofileeJJwcy"
console.warn: SearchSettings: "get: No settings file exists, new profile?" (new Error("", "(unknown module)"))
JavaScript error: resource://gre/modules/XULStore.jsm, line 66: Error: Can't find profile directory.
1616100740575 Marionette INFO Listening on port 56696
1616100741101 Marionette WARN TLS certificate errors will be ignored for this session
JavaScript error: , line 0: uncaught exception: undefined
1616101727094 Marionette INFO Stopped listening on port 56696
###!!! [Child][RunMessage] Error: Channel closing: too late to send/recv, messages will be lost
"--marionette" "-private" "-foreground" "-no-remote" "-profile" "C:\\Users\\Chris\\AppData\\Local\\Temp\\rust_mozprofile4NBc1M"
console.warn: SearchSettings: "get: No settings file exists, new profile?" (new Error("", "(unknown module)"))
JavaScript error: resource://gre/modules/XULStore.jsm, line 66: Error: Can't find profile directory.
1616100874095 Marionette INFO Listening on port 56832
1616100874427 Marionette WARN TLS certificate errors will be ignored for this session
JavaScript error: , line 0: NotFoundError: No such JSWindowActor 'MarionetteEvents'
JavaScript error: , line 0: uncaught exception: undefined
1616100926995 Marionette INFO Stopped listening on port 56832
###!!! [Child][RunMessage] Error: Channel closing: too late to send/recv, messages will be lost
1616101039928 geckodriver INFO Listening on 127.0.0.1:56964
1616101042985 mozrunner::runner INFO Running command: "C:\\Program Files\\Mozilla Firefox\\firefox.exe" "--marionette" "-private" "-foreground" "-no-remote" "-profile" "C:\\Users\\Chris\\AppData\\Local\\Temp\\rust_mozprofiler9Huoh"
console.warn: SearchSettings: "get: No settings file exists, new profile?" (new Error("", "(unknown module)"))
JavaScript error: resource://gre/modules/XULStore.jsm, line 66: Error: Can't find profile directory.
1616101046745 Marionette INFO Listening on port 56972
1616101047220 Marionette WARN TLS certificate errors will be ignored for this session
1616101051817 Marionette WARN Ignoring event 'pageshow' because document has an invalid readyState of 'uninitialized'.
JavaScript error: , line 0: uncaught exception: undefined
1616101086910 Marionette INFO Stopped listening on port 56971616101087828 mozrunner::runner INFO Running command: "C:\\Program Files\\Mozilla Firefox\\firefox.exe" "--marionette" "-private" "-foreground" "-no-remote" "-profile" "C:\\Users\\Chris\\AppData\\Local\\Temp\\rust_mozprofileSMHQAt"
console.warn: SearchSettings: "get: No settings file exists, new profile?" (new Error("", "(unknown module)"))
JavaScript error: resource://gre/modules/XULStore.jsm, line 66: Error: Can't find profile directory.
1616101091281 Marionette INFO Listening on port 57088
1616101091553 Marionette WARN TLS certificate errors will be ignored for this session
JavaScript error: , line 0: uncaught exception: undefined
1616101727873 Marionette INFO Stopped listening on port 57088
###!!! [Child][RunMessage] Error: Channel closing: too late to send/recv, messages will be lost
"--marionette" "-private" "-foreground" "-no-remote" "-profile" "C:\\Users\\Chris\\AppData\\Local\\Temp\\rust_mozprofileTrsirD"
console.warn: SearchSettings: "get: No settings file exists, new profile?" (new Error("", "(unknown module)"))
JavaScript error: resource://gre/modules/XULStore.jsm, line 66: Error: Can't find profile directory.
1616101308074 Marionette INFO Listening on port 57277
1616101308469 Marionette WARN TLS certificate errors will be ignored for this session
1616101312200 Marionette WARN Ignoring event 'pageshow' because document has an invalid readyState of 'uninitialized'.
JavaScript error: , line 0: uncaught exception: undefined
1616101370309 Marionette INFO Stopped listening on port 57277
###!!! [Child][RunMessage] Error: Channel closing: too late to send/recv, messages will be lost
1616101456597 geckodriver INFO Listening on 127.0.0.1:57404
1616101459658 mozrunner::runner INFO Running command: "C:\\Program Files\\Mozilla Firefox\\firefox.exe" "--marionette" "-private" "-foreground" "-no-remote" "-profile" "C:\\Users\\Chris\\AppData\\Local\\Temp\\rust_mozprofilegpK0iB"
console.warn: SearchSettings: "get: No settings file exists, new profile?" (new Error("", "(unknown module)"))
JavaScript error: resource://gre/modules/XULStore.jsm, line 66: Error: Can't find profile directory.
1616101463199 Marionette INFO Listening on port 57412
1616101463372 Marionette WARN TLS certificate errors will be ignored for this session
1616101482579 Marionette INFO Stopped listening on port 57411616101483875 mozrunner::runner INFO Running command: "C:\\Program Files\\Mozilla Firefox\\firefox.exe" "--marionette" "-private" "-foreground" "-no-remote" "-profile" "C:\\Users\\Chris\\AppData\\Local\\Temp\\rust_mozprofileguXJyo"
console.warn: SearchSettings: "get: No settings file exists, new profile?" (new Error("", "(unknown module)"))
JavaScript error: resource://gre/modules/XULStore.jsm, line 66: Error: Can't find profile directory.
1616101487288 Marionette INFO Listening on port 57540
1616101487587 Marionette WARN TLS certificate errors will be ignored for this session
1616101490628 Marionette WARN Ignoring event 'DOMContentLoaded' because document has an invalid readyState of 'complete'.
JavaScript error: https://widget.freshworks.com/widgetBase/widget.js, line 1: Error: Loading chunk 10 failed.
(error: https://widget.freshworks.com/widgetBase/10.2e5460d4c197a23f9b8f.widget.js)
JavaScript error: https://widget.freshworks.com/widgetBase/widget.js, line 1: Error: Loading chunk 8 failed.
(error: https://widget.freshworks.com/widgetBase/8.391e72735dac0c934b81.widget.js)
1616101491463 Marionette WARN Ignoring event 'pageshow' because document has an invalid readyState of 'uninitialized'.
JavaScript error: , line 0: uncaught exception: undefined
1616101513708 Marionette INFO Stopped listening on port 57540
###!!! [Child][RunMessage] Error: Channel closing: too late to send/recv, messages will be lost
1616101723047 geckodriver INFO Listening on 127.0.0.1:57691
1616101726138 mozrunner::runner INFO Running command: "C:\\Program Files\\Mozilla Firefox\\firefox.exe" "--marionette" "-private" "-foreground" "-no-remote" "-profile" "C:\\Users\\Chris\\AppData\\Local\\Temp\\rust_mozprofileZWowML"
console.warn: SearchSettings: "get: No settings file exists, new profile?" (new Error("", "(unknown module)"))
JavaScript error: resource://gre/modules/XULStore.jsm, line 66: Error: Can't find profile directory.
1616101730024 Marionette INFO Listening on port 57699
1616101730376 Marionette WARN TLS certificate errors will be ignored for this session
JavaScript error: , line 0: uncaught exception: undefined
1616101807381 Marionette INFO Stopped listening on port 57699
###!!! [Child][RunMessage] Error: Channel closing: too late to send/recv, messages will be lost
"--marionette" "-private" "-foreground" "-no-remote" "-profile" "C:\\Users\\Chris\\AppData\\Local\\Temp\\rust_mozprofile6QPu8u"
console.warn: SearchSettings: "get: No settings file exists, new profile?" (new Error("", "(unknown module)"))
JavaScript error: resource://gre/modules/XULStore.jsm, line 66: Error: Can't find profile directory.
1616101809583 Marionette INFO Listening on port 57815
1616101810056 Marionette WARN TLS certificate errors will be ignored for this session
1616101814066 Marionette WARN Ignoring event 'pageshow' because document has an invalid readyState of 'uninitialized'.
JavaScript error: , line 0: uncaught exception: undefined
1616101839923 Marionette INFO Stopped listening on port 57815
###!!! [Child][RunMessage] Error: Channel closing: too late to send/recv, messages will be lost
"--marionette" "-private" "-foreground" "-no-remote" "-profile" "C:\\Users\\Chris\\AppData\\Local\\Temp\\rust_mozprofiles753ao"
console.warn: SearchSettings: "get: No settings file exists, new profile?" (new Error("", "(unknown module)"))
JavaScript error: resource://gre/modules/XULStore.jsm, line 66: Error: Can't find profile directory.
1616101839874 Marionette INFO Listening on port 57930
1616101839959 Marionette WARN TLS certificate errors will be ignored for this session
1616101842649 Marionette WARN Ignoring event 'DOMContentLoaded' because document has an invalid readyState of 'complete'.
JavaScript error: https://widget.freshworks.com/widgetBase/widget.js, line 1: Error: Loading chunk 0 failed.
(error: https://widget.freshworks.com/widgetBase/0.96c1c69b8724e56254b8.widget.js)
JavaScript error: https://widget.freshworks.com/widgetBase/widget.js, line 1: Error: Loading chunk 0 failed.
(error: https://widget.freshworks.com/widgetBase/0.96c1c69b8724e56254b8.widget.js)
JavaScript error: , line 0: uncaught exception: undefined
1616101857176 Marionette INFO Stopped listening on port 57930
###!!! [Child][RunMessage] Error: Channel closing: too late to send/recv, messages will be lost
1616101974935 geckodriver INFO Listening on 127.0.0.1:58079
1616101977986 mozrunner::runner INFO Running command: "C:\\Program Files\\Mozilla Firefox\\firefox.exe" "--marionette" "-private" "-foreground" "-no-remote" "-profile" "C:\\Users\\Chris\\AppData\\Local\\Temp\\rust_mozprofilePwu3jM"
console.warn: SearchSettings: "get: No settings file exists, new profile?" (new Error("", "(unknown module)"))
JavaScript error: resource://gre/modules/XULStore.jsm, line 66: Error: Can't find profile directory.
1616101980602 Marionette INFO Listening on port 58087
1616101980763 Marionette WARN TLS certificate errors will be ignored for this session
1616101984395 Marionette WARN Ignoring event 'pageshow' because document has an invalid readyState of 'uninitialized'.
JavaScript error: , line 0: uncaught exception: undefined
1616102026792 Marionette INFO Stopped listening on port 58087
###!!! [Child][RunMessage] Error: Channel closing: too late to send/recv, messages will be lost
"--marionette" "-private" "-foreground" "-no-remote" "-profile" "C:\\Users\\Chris\\AppData\\Local\\Temp\\rust_mozprofileGfrWRo"
console.warn: SearchSettings: "get: No settings file exists, new profile?" (new Error("", "(unknown module)"))
JavaScript error: resource://gre/modules/XULStore.jsm, line 66: Error: Can't find profile directory.
1616102026268 Marionette INFO Listening on port 58208
1616102026610 Marionette WARN TLS certificate errors will be ignored for this session
1616102030477 Marionette WARN Ignoring event 'pageshow' because document has an invalid readyState of 'uninitialized'.
JavaScript error: , line 0: uncaught exception: undefined
1616102069405 Marionette INFO Stopped listening on port 58208
###!!! [Child][RunMessage] Error: Channel closing: too late to send/recv, messages will be lost
1616102290647 geckodriver INFO Listening on 127.0.0.1:58415
1616102293677 mozrunner::runner INFO Running command: "C:\\Program Files\\Mozilla Firefox\\firefox.exe" "--marionette" "-private" "-foreground" "-no-remote" "-profile" "C:\\Users\\Chris\\AppData\\Local\\Temp\\rust_mozprofileCR6pNJ"
console.warn: SearchSettings: "get: No settings file exists, new profile?" (new Error("", "(unknown module)"))
JavaScript error: resource://gre/modules/XULStore.jsm, line 66: Error: Can't find profile directory.
1616102297336 Marionette INFO Listening on port 58423
1616102297397 Marionette WARN TLS certificate errors will be ignored for this session
JavaScript error: https://widget.freshworks.com/widgetBase/widget.js, line 1: Error: Loading chunk 10 failed.
(error: https://widget.freshworks.com/widgetBase/10.2e5460d4c197a23f9b8f.widget.js)
JavaScript error: https://widget.freshworks.com/widgetBase/widget.js, line 1: Error: Loading chunk 1 failed.
(error: https://widget.freshworks.com/widgetBase/1.8bd0d39ed40ee0109589.widget.js)
1616102303101 Marionette WARN Ignoring event 'pageshow' because document has an invalid readyState of 'uninitialized'.
JavaScript error: , line 0: uncaught exception: undefined
1616102343345 Marionette INFO Stopped listening on port 58423
###!!! [Child][RunMessage] Error: Channel closing: too late to send/recv, messages will be lost
1616102374098 geckodriver INFO Listening on 127.0.0.1:58550
1616102377166 mozrunner::runner INFO Running command: "C:\\Program Files\\Mozilla Firefox\\firefox.exe" "--marionette" "-private" "-foreground" "-no-remote" "-profile" "C:\\Users\\Chris\\AppData\\Local\\Temp\\rust_mozprofilex8F5ac"
console.warn: SearchSettings: "get: No settings file exists, new profile?" (new Error("", "(unknown module)"))
JavaScript error: resource://gre/modules/XULStore.jsm, line 66: Error: Can't find profile directory.
1616102380543 Marionette INFO Listening on port 58558
1616102380895 Marionette WARN TLS certificate errors will be ignored for this session
JavaScript error: , line 0: uncaught exception: undefined
1616102414808 Marionette INFO Stopped listening on port 58558
###!!! [Child][RunMessage] Error: Channel closing: too late to send/recv, messages will be lost
1616102563985 geckodriver INFO Listening on 127.0.0.1:58694
1616102567035 mozrunner::runner INFO Running command: "C:\\Program Files\\Mozilla Firefox\\firefox.exe" "--marionette" "-private" "-foreground" "-no-remote" "-profile" "C:\\Users\\Chris\\AppData\\Local\\Temp\\rust_mozprofilesCj2vy"
console.warn: SearchSettings: "get: No settings file exists, new profile?" (new Error("", "(unknown module)"))
JavaScript error: resource://gre/modules/XULStore.jsm, line 66: Error: Can't find profile directory.
1616102570656 Marionette INFO Listening on port 58702
1616102570772 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.
SourceActor threw an exception: [Exception... "Component returned failure code: 0x80470002 (NS_BASE_STREAM_CLOSED) [nsIInputStream.available]" nsresult: "0x80470002 (NS_BASE_STREAM_CLOSED)" location: "JS frame :: resource://devtools/shared/DevToolsUtils.js :: onResponse :: line 567" data: no]
Stack: onResponse@resource://devtools/shared/DevToolsUtils.js:567:34
onStopRequest@resource://gre/modules/NetUtil.jsm:128:18
Line: 567, column: 0
console.error: ({})
JavaScript error: resource://devtools/shared/DevToolsUtils.js, line 567: NS_BASE_STREAM_CLOSED: Component returned failure code: 0x80470002 (NS_BASE_STREAM_CLOSED) [nsIInputStream.available]
SourceActor threw an exception: [Exception... "Component returned failure code: 0x80470002 (NS_BASE_STREAM_CLOSED) [nsIInputStream.available]" nsresult: "0x80470002 (NS_BASE_STREAM_CLOSED)" location: "JS frame :: resource://devtools/shared/DevToolsUtils.js :: onResponse :: line 567" data: no]
Stack: onResponse@resource://devtools/shared/DevToolsUtils.js:567:34
onStopRequest@resource://gre/modules/NetUtil.jsm:128:18
Line: 567, column: 0
console.error: ({})
JavaScript error: resource://devtools/shared/DevToolsUtils.js, line 567: NS_BASE_STREAM_CLOSED: Component returned failure code: 0x80470002 (NS_BASE_STREAM_CLOSED) [nsIInputStream.available]
SourceActor threw an exception: [Exception... "Component returned failure code: 0x80470002 (NS_BASE_STREAM_CLOSED) [nsIInputStream.available]" nsresult: "0x80470002 (NS_BASE_STREAM_CLOSED)" location: "JS frame :: resource://devtools/shared/DevToolsUtils.js :: onResponse :: line 567" data: no]
Stack: onResponse@resource://devtools/shared/DevToolsUtils.js:567:34
onStopRequest@resource://gre/modules/NetUtil.jsm:128:18
Line: 567, column: 0
console.error: ({})
JavaScript error: resource://devtools/shared/DevToolsUtils.js, line 567: NS_BASE_STREAM_CLOSED: Component returned failure code: 0x80470002 (NS_BASE_STREAM_CLOSED) [nsIInputStream.available]
SourceActor threw an exception: [Exception... "Component returned failure code: 0x80470002 (NS_BASE_STREAM_CLOSED) [nsIInputStream.available]" nsresult: "0x80470002 (NS_BASE_STREAM_CLOSED)" location: "JS frame :: resource://devtools/shared/DevToolsUtils.js :: onResponse :: line 567" data: no]
Stack: onResponse@resource://devtools/shared/DevToolsUtils.js:567:34
onStopRequest@resource://gre/modules/NetUtil.jsm:128:18
Line: 567, column: 0
console.error: ({})
JavaScript error: resource://devtools/shared/DevToolsUtils.js, line 567: NS_BASE_STREAM_CLOSED: Component returned failure code: 0x80470002 (NS_BASE_STREAM_CLOSED) [nsIInputStream.available]
SourceActor threw an exception: [Exception... "Component returned failure code: 0x80470002 (NS_BASE_STREAM_CLOSED) [nsIInputStream.available]" nsresult: "0x80470002 (NS_BASE_STREAM_CLOSED)" location: "JS frame :: resource://devtools/shared/DevToolsUtils.js :: onResponse :: line 567" data: no]
Stack: onResponse@resource://devtools/shared/DevToolsUtils.js:567:34
onStopRequest@resource://gre/modules/NetUtil.jsm:128:18
Line: 567, column: 0
console.error: ({})
JavaScript error: resource://devtools/shared/DevToolsUtils.js, line 567: NS_BASE_STREAM_CLOSED: Component returned failure code: 0x80470002 (NS_BASE_STREAM_CLOSED) [nsIInputStream.available]
###!!! [Parent][MessageChannel] Error: (msgtype=0x1F0011,name=PBackgroundStorage::Msg_Observe) Channel error: cannot send/recv
###!!! [Parent][MessageChannel] Error: (msgtype=0x1F0011,name=PBackgroundStorage::Msg_Observe) Channel error: cannot send/recv
###!!! [Child][RunMessage] Error: Channel closing: too late to send/recv, messages will be lost
###!!! [Child][RunMessage] Error: Channel closing: too late to send/recv, messages will be lost
###!!! [Child][RunMessage] Error: Chan1616102717275 Marionette INFO Listening on port 59175
1616102717801 Marionette WARN TLS certificate errors will be ignored for this session
1616102721898 Marionette WARN Ignoring event 'pageshow' because document has an invalid readyState of 'uninitialized'.
JavaScript error: , line 0: uncaught exception: undefined
1616102732045 Marionette INFO Stopped listening on port 59175
###!!! [Child][RunMessage] Error: Channel closing: too late to send/recv, messages will be lost
1616102738981 geckodriver INFO Listening on 127.0.0.1:59290
1616102742049 mozrunner::runner INFO Running command: "C:\\Program Files\\Mozilla Firefox\\firefox.exe" "--marionette" "-private" "-foreground" "-no-remote" "-profile" "C:\\Users\\Chris\\AppData\\Local\\Temp\\rust_mozprofileJpihPS"
console.warn: SearchSettings: "get: No settings file exists, new profile?" (new Error("", "(unknown module)"))
JavaScript error: resource://gre/modules/XULStore.jsm, line 66: Error: Can't find profile directory.
1616102745499 Marionette INFO Listening on port 59298
1616102745741 Marionette WARN TLS certificate errors will be ignored for this session
1616102756385 Marionette INFO Stopped listening on port 59298
1616102837251 geckodriver INFO Listening on 127.0.0.1:59570
1616102840295 mozrunner::runner INFO Running command: "C:\\Program Files\\Mozilla Firefox\\firefox.exe" "--marionette" "-private" "-foreground" "-no-remote" "-profile" "C:\\Users\\Chris\\AppData\\Local\\Temp\\rust_mozprofileRzCcoD"
console.warn: SearchSettings: "get: No settings file exists, new profile?" (new Error("", "(unknown module)"))
JavaScript error: resource://gre/modules/XULStore.jsm, line 66: Error: Can't find profile directory.
1616102843752 Marionette INFO Listening on port 59578
1616102843997 Marionette WARN TLS certificate errors will be ignored for this session
JavaScript error: https://widget.freshworks.com/widgetBase/widget.js, line 1: Error: Loading chunk 8 failed.
(error: https://widget.freshworks.com/widgetBase/8.391e72735dac0c934b81.widget.js)
JavaScript error: https://widget.freshworks.com/widgetBase/widget.js, line 1: Error: Loading chunk 10 failed.
(error: https://widget.freshworks.com/widgetBase/10.2e5460d4c197a23f9b8f.widget.js)
JavaScript error: resource://gre/modules/XULStore.jsm, line 66: Error: Can't find profile directory.
1616102872462 Marionette INFO Stopped listening on port 59571616102872750 mozrunner::runner INFO Running command: "C:\\Program Files\\Mozilla Firefox\\firefox.exe" "--marionette" "-private" "-foreground" "-no-remote" "-profile" "C:\\Users\\Chris\\AppData\\Local\\Temp\\rust_mozprofileyoYZ6l"
console.warn: SearchSettings: "get: No settings file exists, new profile?" (new Error("", "(unknown module)"))
JavaScript error: resource://gre/modules/XULStore.jsm, line 66: Error: Can't find profile directory.
1616102875964 Marionette INFO Listening on port 59998
1616102876425 Marionette WARN TLS certificate errors will be ignored for this session
1616102880617 Marionette WARN Ignoring event 'pageshow' because document has an invalid readyState of 'uninitialized'.
JavaScript error: , line 0: uncaught exception: undefined
1616102887602 Marionette INFO Stopped listening on port 59991616102889381 mozrunner::runner INFO Running command: "C:\\Program Files\\Mozilla Firefox\\firefox.exe" "--marionette" "-private" "-foreground" "-no-remote" "-profile" "C:\\Users\\Chris\\AppData\\Local\\Temp\\rust_mozprofileqbszaG"
console.warn: SearchSettings: "get: No settings file exists, new profile?" (new Error("", "(unknown module)"))
JavaScript error: resource://gre/modules/XULStore.jsm, line 66: Error: Can't find profile directory.
1616102893163 Marionette INFO Listening on port 60116
1616102893582 Marionette WARN TLS certificate errors will be ignored for this session
1616102897405 Marionette WARN Ignoring event 'pageshow' because document has an invalid readyState of 'uninitialized'.
JavaScript error: , line 0: uncaught exception: undefined
1616102933836 Marionette INFO Stopped listening on port 60116
###!!! [Child][RunMessage] Error: Channel closing: too late to send/recv, messages will be lost
"--marionette" "-private" "-foreground" "-no-remote" "-profile" "C:\\Users\\Chris\\AppData\\Local\\Temp\\rust_mozprofileLCJAVp"
console.warn: SearchSettings: "get: No settings file exists, new profile?" (new Error("", "(unknown module)"))
JavaScript error: resource://gre/modules/XULStore.jsm, line 66: Error: Can't find profile directory.
1616102937214 Marionette INFO Listening on port 60238
1616102937348 Marionette WARN TLS certificate errors will be ignored for this session
1616102940721 Marionette WARN Ignoring event 'DOMContentLoaded' because document has an invalid readyState of 'complete'.
JavaScript error: https://widget.freshworks.com/widgetBase/widget.js, line 1: Error: Loading chunk 0 failed.
(error: https://widget.freshworks.com/widgetBase/0.96c1c69b8724e56254b8.widget.js)
JavaScript error: https://widget.freshworks.com/widgetBase/widget.js, line 1: Error: Loading chunk 0 failed.
(error: https://widget.freshworks.com/widgetBase/0.96c1c69b8724e56254b8.widget.js)
1616102941634 Marionette WARN Ignoring event 'pageshow' because document has an invalid readyState of 'uninitialized'.
JavaScript error: , line 0: NotFoundError: No such JSWindowActor 'MarionetteEvents'
JavaScript error: , line 0: uncaught exception: undefined
1616102952045 Marionette INFO Stopped listening on port 60231616102953602 mozrunner::runner INFO Running command: "C:\\Program Files\\Mozilla Firefox\\firefox.exe" "--marionette" "-private" "-foreground" "-no-remote" "-profile" "C:\\Users\\Chris\\AppData\\Local\\Temp\\rust_mozprofileXh6ZvY"
console.warn: SearchSettings: "get: No settings file exists, new profile?" (new Error("", "(unknown module)"))
JavaScript error: resource://gre/modules/XULStore.jsm, line 66: Error: Can't find profile directory.
1616102957020 Marionette INFO Listening on port 60354
1616102957306 Marionette WARN TLS certificate errors will be ignored for this session
1616102961932 Marionette WARN Ignoring event 'pageshow' because document has an invalid readyState of 'uninitialized'.
JavaScript error: , line 0: uncaught exception: undefined
1616102973718 Marionette INFO Stopped listening on port 60354
###!!! [Child][RunMessage] Error: Channel closing: too late to send/recv, messages will be lost
1616102989952 geckodriver INFO Listening on 127.0.0.1:60463
1616102992997 mozrunner::runner INFO Running command: "C:\\Program Files\\Mozilla Firefox\\firefox.exe" "--marionette" "-private" "-foreground" "-no-remote" "-profile" "C:\\Users\\Chris\\AppData\\Local\\Temp\\rust_mozprofileEhcXPz"
console.warn: SearchSettings: "get: No settings file exists, new profile?" (new Error("", "(unknown module)"))
JavaScript error: resource://gre/modules/XULStore.jsm, line 66: Error: Can't find profile directory.
1616102996661 Marionette INFO Listening on port 60473
1616102996709 Marionette WARN TLS certificate errors will be ignored for this session
1616103001819 Marionette WARN Ignoring event 'pageshow' because document has an invalid readyState of 'uninitialized'.
JavaScript error: , line 0: uncaught exception: undefined
1616103122413 Marionette INFO Stopped listening on port 60473
###!!! [Child][RunMessage] Error: Channel closing: too late to send/recv, messages will be lost
"--marionette" "-private" "-foreground" "-no-remote" "-profile" "C:\\Users\\Chris\\AppData\\Local\\Temp\\rust_mozprofileRAPrXT"
console.warn: SearchSettings: "get: No settings file exists, new profile?" (new Error("", "(unknown module)"))
JavaScript error: resource://gre/modules/XULStore.jsm, line 66: Error: Can't find profile directory.
1616103072069 Marionette INFO Listening on port 60598
1616103072480 Marionette WARN TLS certificate errors will be ignored for this session
1616103076838 Marionette WARN Ignoring event 'pageshow' because document has an invalid readyState of 'uninitialized'.
JavaScript error: https://a.pub.network/pro-football-reference/pubfig.min.js, line 1: SyntaxError: JSON.parse: unexpected end of data at line 1 column 1 of the JSON data
JavaScript error: https://a.pub.network/pro-football-reference/pubfig.min.js, line 1: SyntaxError: JSON.parse: unexpected end of data at line 1 column 1 of the JSON data
1616103079718 Marionette WARN Ignoring event 'DOMContentLoaded' because document has an invalid readyState of 'complete'.
JavaScript error: https://a.pub.network/pro-football-reference/pubfig.min.js, line 1: SyntaxError: JSON.parse: unexpected end of data at line 1 column 1 of the JSON data
1616103080380 Marionette WARN Ignoring event 'DOMContentLoaded' because document has an invalid readyState of 'complete'.
JavaScript error: https://a.pub.network/pro-football-reference/pubfig.min.js, line 1: SyntaxError: JSON.parse: unexpected end of data at line 1 column 1 of the JSON data
JavaScript error: https://a.pub.network/pro-football-reference/pubfig.min.js, line 1: SyntaxError: JSON.parse: unexpected end of data at line 1 column 1 of the JSON data
JavaScript error: https://a.pub.network/pro-football-reference/pubfig.min.js, line 1: SyntaxError: JSON.parse: unexpected end of data at line 1 column 1 of the JSON data
JavaScript error: https://a.pub.network/pro-football-reference/pubfig.min.js, line 1: SyntaxError: JSON.parse: unexpected end of data at line 1 column 1 of the JSON data
JavaScript error: https://a.pub.network/pro-football-reference/pubfig.min.js, line 1: SyntaxError: JSON.parse: unexpected end of data at line 1 column 1 of the JSON data
1616103083958 Marionette WARN Ignoring event 'DOMContentLoaded' because document has an invalid readyState of 'complete'.
JavaScript error: https://a.pub.network/pro-football-reference/pubfig.min.js, line 1: SyntaxError: JSON.parse: unexpected end of data at line 1 column 1 of the JSON data
JavaScript error: https://a.pub.network/pro-football-reference/pubfig.min.js, line 1: SyntaxError: JSON.parse: unexpected end of data at line 1 column 1 of the JSON data
JavaScript error: https://a.pub.network/pro-football-reference/pubfig.min.js, line 1: SyntaxError: JSON.parse: unexpected end of data at line 1 column 1 of the JSON data
1616103086134 Marionette WARN Ignoring event 'DOMContentLoaded' because document has an invalid readyState of 'complete'.
JavaScript error: https://a.pub.network/pro-football-reference/pubfig.min.js, line 1: SyntaxError: JSON.parse: unexpected end of data at line 1 column 1 of the JSON data
JavaScript error: https://a.pub.network/pro-football-reference/pubfig.min.js, line 1: SyntaxError: JSON.parse: unexpected end of data at line 1 column 1 of the JSON data
JavaScript error: https://a.pub.network/pro-football-reference/pubfig.min.js, line 1: SyntaxError: JSON.parse: unexpected end of data at line 1 column 1 of the JSON data
JavaScript error: https://a.pub.network/pro-football-reference/pubfig.min.js, line 1: SyntaxError: JSON.parse: unexpected end of data at line 1 column 1 of the JSON data
JavaScript error: https://a.pub.network/pro-football-reference/pubfig.min.js, line 1: SyntaxError: JSON.parse: unexpected end of data at line 1 column 1 of the JSON data
JavaScript error: https://a.pub.network/pro-football-reference/pubfig.min.js, line 1: SyntaxError: JSON.parse: unexpected end of data at line 1 column 1 of the JSON data
1616103090421 Marionette WARN Ignoring event 'DOMContentLoaded' because document has an invalid readyState of 'complete'.
JavaScript error: https://a.pub.network/pro-football-reference/pubfig.min.js, line 1: SyntaxError: JSON.parse: unexpected end of data at line 1 column 1 of the JSON data
JavaScript error: https://a.pub.network/pro-football-reference/pubfig.min.js, line 1: SyntaxError: JSON.parse: unexpected end of data at line 1 column 1 of the JSON data
1616103092438 Marionette WARN Ignoring event 'DOMContentLoaded' because document has an invalid readyState of 'complete'.
JavaScript error: https://a.pub.network/pro-football-reference/pubfig.min.js, line 1: SyntaxError: JSON.parse: unexpected end of data at line 1 column 1 of the JSON data
JavaScript error: https://a.pub.network/pro-football-reference/pubfig.min.js, line 1: SyntaxError: JSON.parse: unexpected end of data at line 1 column 1 of the JSON data
JavaScript error: https://a.pub.network/pro-football-reference/pubfig.min.js, line 1: SyntaxError: JSON.parse: unexpected end of data at line 1 column 1 of the JSON data
JavaScript error: https://a.pub.network/pro-football-reference/pubfig.min.js, line 1: SyntaxError: JSON.parse: unexpected end of data at line 1 column 1 of the JSON data
JavaScript error: https://a.pub.network/pro-football-reference/pubfig.min.js, line 1: SyntaxError: JSON.parse: unexpected end of data at line 1 column 1 of the JSON data
JavaScript error: https://widget.freshworks.com/widgetBase/widget.js, line 38: TypeError: e is undefined
JavaScript error: https://a.pub.network/pro-football-reference/pubfig.min.js, line 1: SyntaxError: JSON.parse: unexpected end of data at line 1 column 1 of the JSON data
JavaScript error: https://widget.freshworks.com/widgetBase/widget.js, line 38: TypeError: e is undefined
JavaScript error: https://a.pub.network/pro-football-reference/pubfig.min.js, line 1: SyntaxError: JSON.parse: unexpected end of data at line 1 column 1 of the JSON data
JavaScript error: https://a.pub.network/pro-football-reference/pubfig.min.js, line 1: SyntaxError: JSON.parse: unexpected end of data at line 1 column 1 of the JSON data
JavaScript error: https://a.pub.network/pro-football-reference/pubfig.min.js, line 1: SyntaxError: JSON.parse: unexpected end of data at line 1 column 1 of the JSON data
JavaScript error: https://a.pub.network/pro-football-reference/pubfig.min.js, line 1: SyntaxError: JSON.parse: unexpected end of data at line 1 column 1 of the JSON data
1616103101305 Marionette WARN Ignoring event 'DOMContentLoaded' because document has an invalid readyState of 'complete'.
JavaScript error: https://a.pub.network/pro-football-reference/pubfig.min.js, line 1: SyntaxError: JSON.parse: unexpected end of data at line 1 column 1 of the JSON data
JavaScript error: , line 0: uncaught exception: undefined
1616103104595 Marionette INFO Stopped listening on port 60598
###!!! [Child][RunMessage] Error: Channel closing: too late to send/recv, messages will be lost
1616103114148 geckodriver INFO Listening on 127.0.0.1:60743
1616103117193 mozrunner::runner INFO Running command: "C:\\Program Files\\Mozilla Firefox\\firefox.exe" "--marionette" "-private" "-foreground" "-no-remote" "-profile" "C:\\Users\\Chris\\AppData\\Local\\Temp\\rust_mozprofileaAhDWX"
console.warn: SearchSettings: "get: No settings file exists, new profile?" (new Error("", "(unknown module)"))
JavaScript error: resource://gre/modules/XULStore.jsm, line 66: Error: Can't find profile directory.
1616103120712 Marionette INFO Listening on port 60751
1616103120904 Marionette WARN TLS certificate errors will be ignored for this session
1616103122706 geckodriver INFO Listening on 127.0.0.1:60814
1616103125739 mozrunner::runner INFO Running command: "C:\\Program Files\\Mozilla Firefox\\firefox.exe" "--marionette" "-private" "-foreground" "-no-remote" "-profile" "C:\\Users\\Chris\\AppData\\Local\\Temp\\rust_mozprofileLsHrjH"
console.warn: SearchSettings: "get: No settings file exists, new profile?" (new Error("", "(unknown module)"))
JavaScript error: resource://gre/modules/XULStore.jsm, line 66: Error: Can't find profile directory.
1616103128333 Marionette INFO Listening on port 60822
1616103128392 Marionette WARN TLS certificate errors will be ignored for this session
1616103130923 Marionette INFO Stopped listening on port 60822
###!!! [Child][RunMessage] Error: Channel closing: too late to send/recv, messages will be lost
1616103170762 geckodriver INFO Listening on 127.0.0.1:60899
1616103173824 mozrunner::runner INFO Running command: "C:\\Program Files\\Mozilla Firefox\\firefox.exe" "--marionette" "-private" "-foreground" "-no-remote" "-profile" "C:\\Users\\Chris\\AppData\\Local\\Temp\\rust_mozprofileuwgCeC"
console.warn: SearchSettings: "get: No settings file exists, new profile?" (new Error("", "(unknown module)"))
JavaScript error: resource://gre/modules/XULStore.jsm, line 66: Error: Can't find profile directory.
1616103177366 Marionette INFO Listening on port 60907
1616103177523 Marionette WARN TLS certificate errors will be ignored for this session
JavaScript error: https://a.pub.network/pro-football-reference/pubfig.min.js, line 1: SyntaxError: JSON.parse: unexpected end of data at line 1 column 1 of the JSON data
JavaScript error: https://a.pub.network/pro-football-reference/pubfig.min.js, line 1: SyntaxError: JSON.parse: unexpected end of data at line 1 column 1 of the JSON data
JavaScript error: https://a.pub.network/pro-football-reference/pubfig.min.js, line 1: SyntaxError: JSON.parse: unexpected end of data at line 1 column 1 of the JSON data
JavaScript error: https://a.pub.network/pro-football-reference/pubfig.min.js, line 1: SyntaxError: JSON.parse: unexpected end of data at line 1 column 1 of the JSON data
JavaScript error: https://a.pub.network/pro-football-reference/pubfig.min.js, line 1: SyntaxError: JSON.parse: unexpected end of data at line 1 column 1 of the JSON data
JavaScript error: https://a.pub.network/pro-football-reference/pubfig.min.js, line 1: SyntaxError: JSON.parse: unexpected end of data at line 1 column 1 of the JSON data
JavaScript error: https://a.pub.network/pro-football-reference/pubfig.min.js, line 1: SyntaxError: JSON.parse: unexpected end of data at line 1 column 1 of the JSON data
JavaScript error: https://a.pub.network/pro-football-reference/pubfig.min.js, line 1: SyntaxError: JSON.parse: unexpected end of data at line 1 column 1 of the JSON data
1616103198040 Marionette WARN Ignoring event 'DOMContentLoaded' because document has an invalid readyState of 'complete'.
1616103198041 Marionette WARN Ignoring event 'DOMContentLoaded' because document has an invalid readyState of 'complete'.
JavaScript error: https://a.pub.network/pro-football-reference/pubfig.min.js, line 1: SyntaxError: JSON.parse: unexpected end of data at line 1 column 1 of the JSON data
1616103198742 Marionette WARN Ignoring event 'DOMContentLoaded' because document has an invalid readyState of 'complete'.
JavaScript error: https://a.pub.network/pro-football-reference/pubfig.min.js, line 1: SyntaxError: JSON.parse: unexpected end of data at line 1 column 1 of the JSON data
JavaScript error: resource:///modules/FaviconLoader.jsm, line 596: InvalidStateError: JSWindowActorChild.sendAsyncMessage: JSWindowActorChild cannot send at the moment
JavaScript error: resource:///modules/FaviconLoader.jsm, line 596: InvalidStateError: JSWindowActorChild.sendAsyncMessage: JSWindowActorChild cannot send at the moment
JavaScript error: https://secure.quantserve.com/quant.js, line 2: NS_ERROR_UNEXPECTED:
1616103199615 Marionette INFO Stopped listening on port 60907
###!!! [Child][RunMessage] Error: Channel closing: too late to send/recv, messages will be lost
1616196825930 geckodriver INFO Listening on 127.0.0.1:62761
1616196828975 mozrunner::runner INFO Running command: "C:\\Program Files\\Mozilla Firefox\\firefox.exe" "--marionette" "-private" "-foreground" "-no-remote" "-profile" "C:\\Users\\Chris\\AppData\\Local\\Temp\\rust_mozprofileJMlBXu"
console.warn: SearchSettings: "get: No settings file exists, new profile?" (new Error("", "(unknown module)"))
JavaScript error: resource://gre/modules/XULStore.jsm, line 66: Error: Can't find profile directory.
1616196831739 Marionette INFO Listening on port 62769
1616196832159 Marionette WARN TLS certificate errors will be ignored for this session
1616196835371 Marionette WARN Ignoring event 'pageshow' because document has an invalid readyState of 'uninitialized'.
1616196836882 Marionette WARN Ignoring event 'DOMContentLoaded' because document has an invalid readyState of 'complete'.
JavaScript error: https://a.pub.network/pro-football-reference/pubfig.min.js, line 1: SyntaxError: JSON.parse: unexpected end of data at line 1 column 1 of the JSON data
JavaScript error: https://a.pub.network/pro-football-reference/pubfig.min.js, line 1: SyntaxError: JSON.parse: unexpected end of data at line 1 column 1 of the JSON data
1616196837897 Marionette WARN Ignoring event 'DOMContentLoaded' because document has an invalid readyState of 'complete'.
JavaScript error: https://a.pub.network/pro-football-reference/pubfig.min.js, line 1: SyntaxError: JSON.parse: unexpected end of data at line 1 column 1 of the JSON data
JavaScript error: https://a.pub.network/pro-football-reference/pubfig.min.js, line 1: SyntaxError: JSON.parse: unexpected end of data at line 1 column 1 of the JSON data
1616196838899 Marionette WARN Ignoring event 'DOMContentLoaded' because document has an invalid readyState of 'complete'.
JavaScript error: https://a.pub.network/pro-football-reference/pubfig.min.js, line 1: SyntaxError: JSON.parse: unexpected end of data at line 1 column 1 of the JSON data
JavaScript error: https://a.pub.network/pro-football-reference/pubfig.min.js, line 1: SyntaxError: JSON.parse: unexpected end of data at line 1 column 1 of the JSON data
JavaScript error: https://a.pub.network/pro-football-reference/pubfig.min.js, line 1: SyntaxError: JSON.parse: unexpected end of data at line 1 column 1 of the JSON data
1616196840327 Marionette WARN Ignoring event 'DOMContentLoaded' because document has an invalid readyState of 'complete'.
JavaScript error: https://a.pub.network/pro-football-reference/pubfig.min.js, line 1: SyntaxError: JSON.parse: unexpected end of data at line 1 column 1 of the JSON data
JavaScript error: https://a.pub.network/pro-football-reference/pubfig.min.js, line 1: SyntaxError: JSON.parse: unexpected end of data at line 1 column 1 of the JSON data
JavaScript error: https://a.pub.network/pro-football-reference/pubfig.min.js, line 1: SyntaxError: JSON.parse: unexpected end of data at line 1 column 1 of the JSON data
JavaScript error: https://a.pub.network/pro-football-reference/pubfig.min.js, line 1: SyntaxError: JSON.parse: unexpected end of data at line 1 column 1 of the JSON data
JavaScript error: https://a.pub.network/pro-football-reference/pubfig.min.js, line 1: SyntaxError: JSON.parse: unexpected end of data at line 1 column 1 of the JSON data
JavaScript error: resource:///modules/FaviconLoader.jsm, line 596: InvalidStateError: JSWindowActorChild.sendAsyncMessage: JSWindowActorChild cannot send at the moment
JavaScript error: resource:///modules/FaviconLoader.jsm, line 596: InvalidStateError: JSWindowActorChild.sendAsyncMessage: JSWindowActorChild cannot send at the moment
1616196843017 Marionette INFO Stopped listening on port 62769
###!!! [Child][RunMessage] Error: Channel closing: too late to send/recv, messages will be lost
1616197016958 geckodriver INFO Listening on 127.0.0.1:62885
1616197020022 mozrunner::runner INFO Running command: "C:\\Program Files\\Mozilla Firefox\\firefox.exe" "--marionette" "-private" "-foreground" "-no-remote" "-profile" "C:\\Users\\Chris\\AppData\\Local\\Temp\\rust_mozprofilefeYLOp"
console.warn: SearchSettings: "get: No settings file exists, new profile?" (new Error("", "(unknown module)"))
JavaScript error: resource://gre/modules/XULStore.jsm, line 66: Error: Can't find profile directory.
1616197022872 Marionette INFO Listening on port 62893
1616197023221 Marionette WARN TLS certificate errors will be ignored for this session
1616197026687 Marionette WARN Ignoring event 'pageshow' because document has an invalid readyState of 'uninitialized'.
JavaScript error: , line 0: uncaught exception: undefined
1616197031493 Marionette WARN Ignoring event 'DOMContentLoaded' because document has an invalid readyState of 'complete'.
JavaScript error: https://widget.freshworks.com/widgetBase/widget.js, line 1: Error: Loading chunk 0 failed.
(error: https://widget.freshworks.com/widgetBase/0.96c1c69b8724e56254b8.widget.js)
JavaScript error: https://widget.freshworks.com/widgetBase/widget.js, line 1: Error: Loading chunk 0 failed.
(error: https://widget.freshworks.com/widgetBase/0.96c1c69b8724e56254b8.widget.js)
1616197198255 geckodriver INFO Listening on 127.0.0.1:63004
1616197201294 mozrunner::runner INFO Running command: "C:\\Program Files\\Mozilla Firefox\\firefox.exe" "--marionette" "-private" "-foreground" "-no-remote" "-profile" "C:\\Users\\Chris\\AppData\\Local\\Temp\\rust_mozprofileBga3Kn"
console.warn: SearchSettings: "get: No settings file exists, new profile?" (new Error("", "(unknown module)"))
JavaScript error: resource://gre/modules/XULStore.jsm, line 66: Error: Can't find profile directory.
1616197203962 Marionette INFO Listening on port 63012
1616197204474 Marionette WARN TLS certificate errors will be ignored for this session
1616197208520 Marionette WARN Ignoring event 'pageshow' because document has an invalid readyState of 'uninitialized'.
1616197209630 Marionette WARN Ignoring event 'DOMContentLoaded' because document has an invalid readyState of 'complete'.
JavaScript error: https://widget.freshworks.com/widgetBase/widget.js, line 1: Error: Loading chunk 0 failed.
(error: https://widget.freshworks.com/widgetBase/0.96c1c69b8724e56254b8.widget.js)
JavaScript error: https://widget.freshworks.com/widgetBase/widget.js, line 1: Error: Loading chunk 0 failed.
(error: https://widget.freshworks.com/widgetBase/0.96c1c69b8724e56254b8.widget.js)
1616197210728 Marionette WARN Ignoring event 'DOMContentLoaded' because document has an invalid readyState of 'complete'.
JavaScript error: https://widget.freshworks.com/widgetBase/widget.js, line 1: Error: Loading chunk 0 failed.
(error: https://widget.freshworks.com/widgetBase/0.96c1c69b8724e56254b8.widget.js)
JavaScript error: https://widget.freshworks.com/widgetBase/widget.js, line 1: Error: Loading chunk 0 failed.
(error: https://widget.freshworks.com/widgetBase/0.96c1c69b8724e56254b8.widget.js)
JavaScript error: https://a.pub.network/pro-football-reference/pubfig.min.js, line 1: SyntaxError: JSON.parse: unexpected end of data at line 1 column 1 of the JSON data
1616197256921 geckodriver INFO Listening on 127.0.0.1:63118
1616197259999 mozrunner::runner INFO Running command: "C:\\Program Files\\Mozilla Firefox\\firefox.exe" "--marionette" "-private" "-foreground" "-no-remote" "-profile" "C:\\Users\\Chris\\AppData\\Local\\Temp\\rust_mozprofile0mykFH"
console.warn: SearchSettings: "get: No settings file exists, new profile?" (new Error("", "(unknown module)"))
JavaScript error: resource://gre/modules/XULStore.jsm, line 66: Error: Can't find profile directory.
1616197262691 Marionette INFO Listening on port 63126
1616197263168 Marionette WARN TLS certificate errors will be ignored for this session
1616197266750 Marionette WARN Ignoring event 'pageshow' because document has an invalid readyState of 'uninitialized'.
JavaScript error: , line 0: NotFoundError: No such JSWindowActor 'MarionetteEvents'
JavaScript error: , line 0: uncaught exception: undefined
1616197279069 Marionette INFO Stopped listening on port 63126
###!!! [Child][RunMessage] Error: Channel closing: too late to send/recv, messages will be lost
1616197432989 geckodriver INFO Listening on 127.0.0.1:63257
1616197436071 mozrunner::runner INFO Running command: "C:\\Program Files\\Mozilla Firefox\\firefox.exe" "--marionette" "-private" "-foreground" "-no-remote" "-profile" "C:\\Users\\Chris\\AppData\\Local\\Temp\\rust_mozprofileKaShnJ"
console.warn: SearchSettings: "get: No settings file exists, new profile?" (new Error("", "(unknown module)"))
JavaScript error: resource://gre/modules/XULStore.jsm, line 66: Error: Can't find profile directory.
1616197438665 Marionette INFO Listening on port 63265
1616197438738 Marionette WARN TLS certificate errors will be ignored for this session
1616197441445 Marionette WARN Ignoring event 'DOMContentLoaded' because document has an invalid readyState of 'complete'.
JavaScript error: https://widget.freshworks.com/widgetBase/widget.js, line 1: Error: Loading chunk 1 failed.
(error: https://widget.freshworks.com/widgetBase/1.8bd0d39ed40ee0109589.widget.js)
JavaScript error: https://widget.freshworks.com/widgetBase/widget.js, line 1: Error: Loading chunk 10 failed.
(error: https://widget.freshworks.com/widgetBase/10.2e5460d4c197a23f9b8f.widget.js)
1616197443120 Marionette WARN Ignoring event 'pageshow' because document has an invalid readyState of 'uninitialized'.
JavaScript error: https://a.pub.network/pro-football-reference/pubfig.min.js, line 1: SyntaxError: JSON.parse: unexpected end of data at line 1 column 1 of the JSON data
JavaScript error: https://a.pub.network/pro-football-reference/pubfig.min.js, line 1: SyntaxError: JSON.parse: unexpected end of data at line 1 column 1 of the JSON data
1616197449917 Marionette INFO Stopped listening on port 63265
###!!! [Child][RunMessage] Error: Channel closing: too late to send/recv, messages will be lost
1616197540209 geckodriver INFO Listening on 127.0.0.1:63388
1616197543275 mozrunner::runner INFO Running command: "C:\\Program Files\\Mozilla Firefox\\firefox.exe" "--marionette" "-private" "-foreground" "-no-remote" "-profile" "C:\\Users\\Chris\\AppData\\Local\\Temp\\rust_mozprofileGpBIO0"
console.warn: SearchSettings: "get: No settings file exists, new profile?" (new Error("", "(unknown module)"))
JavaScript error: resource://gre/modules/XULStore.jsm, line 66: Error: Can't find profile directory.
1616197545925 Marionette INFO Listening on port 63396
1616197545980 Marionette WARN TLS certificate errors will be ignored for this session
1616197549887 Marionette WARN Ignoring event 'pageshow' because document has an invalid readyState of 'uninitialized'.
JavaScript error: , line 0: uncaught exception: undefined
JavaScript error: , line 0: uncaught exception: undefined
JavaScript error: resource:///actors/ContentMetaChild.jsm, line 179: InvalidStateError: JSWindowActorChild.sendAsyncMessage: JSWindowActorChild cannot send at the moment
1616198650805 geckodriver INFO Listening on 127.0.0.1:63708
1616198653892 mozrunner::runner INFO Running command: "C:\\Program Files\\Mozilla Firefox\\firefox.exe" "--marionette" "-private" "-foreground" "-no-remote" "-profile" "C:\\Users\\Chris\\AppData\\Local\\Temp\\rust_mozprofilen9lRRp"
console.warn: SearchSettings: "get: No settings file exists, new profile?" (new Error("", "(unknown module)"))
JavaScript error: resource://gre/modules/XULStore.jsm, line 66: Error: Can't find profile directory.
1616198656322 Marionette INFO Listening on port 63716
1616198656569 Marionette WARN TLS certificate errors will be ignored for this session
1616198661539 Marionette WARN Ignoring event 'pageshow' because document has an invalid readyState of 'uninitialized'.
JavaScript error: , line 0: uncaught exception: undefined
JavaScript error: , line 0: uncaught exception: undefined
1616198683582 Marionette INFO Stopped listening on port 63716
###!!! [Child][RunMessage] Error: Channel closing: too late to send/recv, messages will be lost
"--marionette" "-private" "-foreground" "-no-remote" "-profile" "C:\\Users\\Chris\\AppData\\Local\\Temp\\rust_mozprofileTWO9EM"
console.warn: SearchSettings: "get: No settings file exists, new profile?" (new Error("", "(unknown module)"))
JavaScript error: resource://gre/modules/XULStore.jsm, line 66: Error: Can't find profile directory.
1616198681447 Marionette INFO Listening on port 63839
1616198681845 Marionette WARN TLS certificate errors will be ignored for this session
1616198685656 Marionette WARN Ignoring event 'pageshow' because document has an invalid readyState of 'uninitialized'.
JavaScript error: , line 0: uncaught exception: undefined
1616198774082 Marionette INFO Stopped listening on port 63839
###!!! [Child][RunMessage] Error: Channel closing: too late to send/recv, messages will be lost
"--marionette" "-private" "-foreground" "-no-remote" "-profile" "C:\\Users\\Chris\\AppData\\Local\\Temp\\rust_mozprofilefvUVzG"
console.warn: SearchSettings: "get: No settings file exists, new profile?" (new Error("", "(unknown module)"))
JavaScript error: resource://gre/modules/XULStore.jsm, line 66: Error: Can't find profile directory.
1616198774232 Marionette INFO Listening on port 63975
1616198774320 Marionette WARN TLS certificate errors will be ignored for this session
1616198778993 Marionette WARN Ignoring event 'pageshow' because document has an invalid readyState of 'uninitialized'.
1616198792305 Marionette INFO Stopped listening on port 63975
###!!! [Child][RunMessage] Error: Channel closing: too late to send/recv, messages will be lost
1616198865934 geckodriver INFO Listening on 127.0.0.1:64096
1616198868992 mozrunner::runner INFO Running command: "C:\\Program Files\\Mozilla Firefox\\firefox.exe" "--marionette" "-private" "-foreground" "-no-remote" "-profile" "C:\\Users\\Chris\\AppData\\Local\\Temp\\rust_mozprofileoRHVtV"
console.warn: SearchSettings: "get: No settings file exists, new profile?" (new Error("", "(unknown module)"))
JavaScript error: resource://gre/modules/XULStore.jsm, line 66: Error: Can't find profile directory.
1616198871529 Marionette INFO Listening on port 64104
1616198871656 Marionette WARN TLS certificate errors will be ignored for this session
JavaScript error: resource:///actors/ContentMetaChild.jsm, line 179: InvalidStateError: JSWindowActorChild.sendAsyncMessage: JSWindowActorChild cannot send at the moment
1616198875420 Marionette WARN Ignoring event 'pageshow' because document has an invalid readyState of 'uninitialized'.
JavaScript error: , line 0: uncaught exception: undefined
JavaScript error: , line 0: uncaught exception: undefined
1616199346872 geckodriver INFO Listening on 127.0.0.1:64238
1616199349940 mozrunner::runner INFO Running command: "C:\\Program Files\\Mozilla Firefox\\firefox.exe" "--marionette" "-private" "-foreground" "-no-remote" "-profile" "C:\\Users\\Chris\\AppData\\Local\\Temp\\rust_mozprofileer4EbK"
console.warn: SearchSettings: "get: No settings file exists, new profile?" (new Error("", "(unknown module)"))
JavaScript error: resource://gre/modules/XULStore.jsm, line 66: Error: Can't find profile directory.
1616199352350 Marionette INFO Listening on port 64246
1616199352640 Marionette WARN TLS certificate errors will be ignored for this session
1616199356791 Marionette WARN Ignoring event 'pageshow' because document has an invalid readyState of 'uninitialized'.
JavaScript error: , line 0: uncaught exception: undefined
JavaScript error: , line 0: uncaught exception: undefined
1616199387184 Marionette INFO Stopped listening on port 64246
###!!! [Child][RunMessage] Error: Channel closing: too late to send/recv, messages will be lost
"--marionette" "-private" "-foreground" "-no-remote" "-profile" "C:\\Users\\Chris\\AppData\\Local\\Temp\\rust_mozprofileplQpq4"
console.warn: SearchSettings: "get: No settings file exists, new profile?" (new Error("", "(unknown module)"))
JavaScript error: resource://gre/modules/XULStore.jsm, line 66: Error: Can't find profile directory.
1616199389661 Marionette INFO Listening on port 64359
1616199389701 Marionette WARN TLS certificate errors will be ignored for this session
1616199401881 Marionette WARN TimedPromise timed out after 500 ms: stacktrace:
TimedPromise/<@chrome://marionette/content/sync.js:231:19
TimedPromise@chrome://marionette/content/sync.js:216:10
interaction.flushEventLoop@chrome://marionette/content/interaction.js:433:10
webdriverClickElement@chrome://marionette/content/interaction.js:179:31
1616199469546 Marionette INFO Stopped listening on port 64359
###!!! [Child][RunMessage] Error: Channel closing: too late to send/recv, messages will be lost
1616199605741 geckodriver INFO Listening on 127.0.0.1:64536
1616199608761 mozrunner::runner INFO Running command: "C:\\Program Files\\Mozilla Firefox\\firefox.exe" "--marionette" "-private" "-foreground" "-no-remote" "-profile" "C:\\Users\\Chris\\AppData\\Local\\Temp\\rust_mozprofile2ptwza"
console.warn: SearchSettings: "get: No settings file exists, new profile?" (new Error("", "(unknown module)"))
JavaScript error: resource://gre/modules/XULStore.jsm, line 66: Error: Can't find profile directory.
1616199611305 Marionette INFO Listening on port 64544
1616199611432 Marionette WARN TLS certificate errors will be ignored for this session
1616199614553 Marionette WARN Ignoring event 'pageshow' because document has an invalid readyState of 'uninitialized'.
JavaScript error: , line 0: uncaught exception: undefined
JavaScript error: , line 0: uncaught exception: undefined
JavaScript error: , line 0: uncaught exception: undefined
1616199620236 Marionette WARN TimedPromise timed out after 500 ms: stacktrace:
TimedPromise/<@chrome://marionette/content/sync.js:231:19
TimedPromise@chrome://marionette/content/sync.js:216:10
interaction.flushEventLoop@chrome://marionette/content/interaction.js:433:10
webdriverClickElement@chrome://marionette/content/interaction.js:179:31
JavaScript error: , line 0: uncaught exception: undefined
JavaScript error: , line 0: uncaught exception: undefined
1616199627096 Marionette WARN TimedPromise timed out after 500 ms: stacktrace:
TimedPromise/<@chrome://marionette/content/sync.js:231:19
TimedPromise@chrome://marionette/content/sync.js:216:10
interaction.flushEventLoop@chrome://marionette/content/interaction.js:433:10
webdriverClickElement@chrome://marionette/content/interaction.js:179:31
JavaScript error: , line 0: uncaught exception: undefined
1616199629988 Marionette WARN TimedPromise timed out after 500 ms: stacktrace:
TimedPromise/<@chrome://marionette/content/sync.js:231:19
TimedPromise@chrome://marionette/content/sync.js:216:10
interaction.flushEventLoop@chrome://marionette/content/interaction.js:433:10
webdriverClickElement@chrome://marionette/content/interaction.js:179:31
JavaScript error: , line 0: uncaught exception: undefined
JavaScript error: , line 0: uncaught exception: undefined
1616199635366 Marionette WARN TimedPromise timed out after 500 ms: stacktrace:
TimedPromise/<@chrome://marionette/content/sync.js:231:19
TimedPromise@chrome://marionette/content/sync.js:216:10
interaction.flushEventLoop@chrome://marionette/content/interaction.js:433:10
webdriverClickElement@chrome://marionette/content/interaction.js:179:31
JavaScript error: , line 0: uncaught exception: undefined
JavaScript error: , line 0: uncaught exception: undefined
1616199641060 Marionette WARN TimedPromise timed out after 500 ms: stacktrace:
TimedPromise/<@chrome://marionette/content/sync.js:231:19
TimedPromise@chrome://marionette/content/sync.js:216:10
interaction.flushEventLoop@chrome://marionette/content/interaction.js:433:10
webdriverClickElement@chrome://marionette/content/interaction.js:179:31
JavaScript error: , line 0: uncaught exception: undefined
JavaScript error: , line 0: uncaught exception: undefined
JavaScript error: , line 0: uncaught exception: undefined
1616199649356 Marionette WARN TimedPromise timed out after 500 ms: stacktrace:
TimedPromise/<@chrome://marionette/content/sync.js:231:19
TimedPromise@chrome://marionette/content/sync.js:216:10
interaction.flushEventLoop@chrome://marionette/content/interaction.js:433:10
webdriverClickElement@chrome://marionette/content/interaction.js:179:31
JavaScript error: , line 0: uncaught exception: undefined
JavaScript error: , line 0: uncaught exception: undefined
JavaScript error: , line 0: uncaught exception: undefined
1616199657243 Marionette WARN TimedPromise timed out after 500 ms: stacktrace:
TimedPromise/<@chrome://marionette/content/sync.js:231:19
TimedPromise@chrome://marionette/content/sync.js:216:10
interaction.flushEventLoop@chrome://marionette/content/interaction.js:433:10
webdriverClickElement@chrome://marionette/content/interaction.js:179:31
JavaScript error: , line 0: uncaught exception: undefined
JavaScript error: , line 0: uncaught exception: undefined
JavaScript error: , line 0: uncaught exception: undefined
JavaScript error: , line 0: uncaught exception: undefined
JavaScript error: , line 0: uncaught exception: undefined
JavaScript error: , line 0: uncaught exception: undefined
1616199672356 Marionette WARN TimedPromise timed out after 500 ms: stacktrace:
TimedPromise/<@chrome://marionette/content/sync.js:231:19
TimedPromise@chrome://marionette/content/sync.js:216:10
interaction.flushEventLoop@chrome://marionette/content/interaction.js:433:10
webdriverClickElement@chrome://marionette/content/interaction.js:179:31
JavaScript error: , line 0: uncaught exception: undefined
JavaScript error: , line 0: uncaught exception: undefined
1616199677771 Marionette WARN TimedPromise timed out after 500 ms: stacktrace:
TimedPromise/<@chrome://marionette/content/sync.js:231:19
TimedPromise@chrome://marionette/content/sync.js:216:10
interaction.flushEventLoop@chrome://marionette/content/interaction.js:433:10
webdriverClickElement@chrome://marionette/content/interaction.js:179:31
JavaScript error: , line 0: uncaught exception: undefined
JavaScript error: , line 0: uncaught exception: undefined
JavaScript error: , line 0: uncaught exception: undefined
JavaScript error: , line 0: uncaught exception: undefined
JavaScript error: , line 0: uncaught exception: undefined
JavaScript error: , line 0: uncaught exception: undefined