-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathgeckodriver.log
2165 lines (1821 loc) · 175 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
1617201744943 geckodriver INFO Listening on 127.0.0.1:55546
1617201748046 mozrunner::runner INFO Running command: "C:\\Program Files\\Mozilla Firefox\\firefox.exe" "--marionette" "-foreground" "-no-remote" "-profile" "C:\\Users\\conso\\AppData\\Local\\Temp\\rust_mozprofile0Mx7Vo"
console.warn: SearchSettings: "get: No settings file exists, new profile?" (new Error("", "(unknown module)"))
1617201750450 Marionette INFO Listening on port 55554
1617201750697 Marionette WARN TLS certificate errors will be ignored for this session
1617201755711 Marionette INFO Stopped listening on port 55554
1617201915110 geckodriver INFO Listening on 127.0.0.1:55671
1617201918184 mozrunner::runner INFO Running command: "C:\\Program Files\\Mozilla Firefox\\firefox.exe" "--marionette" "-foreground" "-no-remote" "-profile" "C:\\Users\\conso\\AppData\\Local\\Temp\\rust_mozprofileGG2mp3"
console.warn: SearchSettings: "get: No settings file exists, new profile?" (new Error("", "(unknown module)"))
1617201920633 Marionette INFO Listening on port 55679
1617201920868 Marionette WARN TLS certificate errors will be ignored for this session
1617202102746 Marionette INFO Stopped listening on port 55679
###!!! [Child][RunMessage] Error: Channel closing: too late to send/recv, messages will be lost
"--marionette" "-foreground" "-no-remote" "-profile" "C:\\Users\\conso\\AppData\\Local\\Temp\\rust_mozprofileCye78u"
console.warn: SearchSettings: "get: No settings file exists, new profile?" (new Error("", "(unknown module)"))
1617201959667 Marionette INFO Listening on port 55834
1617201960098 Marionette WARN TLS certificate errors will be ignored for this session
1617202103195 Marionette INFO Stopped listening on port 55834
###!!! [Child][RunMessage] Error: Channel closing: too late to send/recv, messages will be lost
"--marionette" "-foreground" "-no-remote" "-profile" "C:\\Users\\conso\\AppData\\Local\\Temp\\rust_mozprofileqNPCL8"
console.warn: SearchSettings: "get: No settings file exists, new profile?" (new Error("", "(unknown module)"))
1617202072004 Marionette INFO Listening on port 56038
1617202072347 Marionette WARN TLS certificate errors will be ignored for this session
1617202103869 Marionette INFO Stopped listening on port 56038
###!!! [Child][RunMessage] Error: Channel closing: too late to send/recv, messages will be lost
"--marionette" "-foreground" "-no-remote" "-profile" "C:\\Users\\conso\\AppData\\Local\\Temp\\rust_mozprofileR4S9cV"
console.warn: SearchSettings: "get: No settings file exists, new profile?" (new Error("", "(unknown module)"))
1617202104882 Marionette INFO Listening on port 56187
1617202104941 Marionette WARN TLS certificate errors will be ignored for this session
1617202139271 Marionette INFO Stopped listening on port 56187
###!!! [Child][RunMessage] Error: Channel closing: too late to send/recv, messages will be lost
1617202237548 geckodriver INFO Listening on 127.0.0.1:56340
1617202240607 mozrunner::runner INFO Running command: "C:\\Program Files\\Mozilla Firefox\\firefox.exe" "--marionette" "-foreground" "-no-remote" "-profile" "C:\\Users\\conso\\AppData\\Local\\Temp\\rust_mozprofile9xvDBu"
console.warn: SearchSettings: "get: No settings file exists, new profile?" (new Error("", "(unknown module)"))
1617202243176 Marionette INFO Listening on port 56348
1617202243279 Marionette WARN TLS certificate errors will be ignored for this session
1617202362539 Marionette INFO Stopped listening on port 56348
###!!! [Child][RunMessage] Error: Channel closing: too late to send/recv, messages will be lost
"--marionette" "-foreground" "-no-remote" "-profile" "C:\\Users\\conso\\AppData\\Local\\Temp\\rust_mozprofileWr7xVj"
console.warn: SearchSettings: "get: No settings file exists, new profile?" (new Error("", "(unknown module)"))
1617202324850 Marionette INFO Listening on port 56461
1617202325220 Marionette WARN TLS certificate errors will be ignored for this session
1617202363255 Marionette INFO Stopped listening on port 56461
###!!! [Child][RunMessage] Error: Channel closing: too late to send/recv, messages will be lost
1617202364936 geckodriver INFO Listening on 127.0.0.1:56602
1617202368021 mozrunner::runner INFO Running command: "C:\\Program Files\\Mozilla Firefox\\firefox.exe" "--marionette" "-foreground" "-no-remote" "-profile" "C:\\Users\\conso\\AppData\\Local\\Temp\\rust_mozprofileSFJEVL"
console.warn: SearchSettings: "get: No settings file exists, new profile?" (new Error("", "(unknown module)"))
1617202370310 Marionette INFO Listening on port 56611
1617202370703 Marionette WARN TLS certificate errors will be ignored for this session
1617202522537 Marionette INFO Stopped listening on port 56611
7202405274 mozrunner::runner INFO Running command: "C:\\Program Files\\Mozilla Firefox\\firefox.exe" "--marionette" "-foreground" "-no-remote" "-profile" "C:\\Users\\conso\\AppData\\Local\\Temp\\rust_mozprofileRlNQW6"
console.warn: SearchSettings: "get: No settings file exists, new profile?" (new Error("", "(unknown module)"))
1617202407443 Marionette INFO Listening on port 56759
1617202407472 Marionette WARN TLS certificate errors will be ignored for this session
1617202523129 Marionette INFO Stopped listening on port 56759
###!!! [Child][RunMessage] Error: Channel closing: too late to send/recv, messages will be lost
"--marionette" "-foreground" "-no-remote" "-profile" "C:\\Users\\conso\\AppData\\Local\\Temp\\rust_mozprofilevREUAQ"
console.warn: SearchSettings: "get: No settings file exists, new profile?" (new Error("", "(unknown module)"))
1617202458015 Marionette INFO Listening on port 56916
1617202458121 Marionette WARN TLS certificate errors will be ignored for this session
1617202655553 Marionette INFO Stopped listening on port 56916
###!!! [Child][RunMessage] Error: Channel closing: too late to send/recv, messages will be lost
"--marionette" "-foreground" "-no-remote" "-profile" "C:\\Users\\conso\\AppData\\Local\\Temp\\rust_mozprofileMDHxji"
console.warn: SearchSettings: "get: No settings file exists, new profile?" (new Error("", "(unknown module)"))
1617202657663 Marionette INFO Listening on port 57125
1617202657950 Marionette WARN TLS certificate errors will be ignored for this session
console.log: WebExtensions: reset-default-search: No addons in our list are installed.
Handler function threw an exception: TypeError: topFrame.browsingContext is null
Stack: matchRequest@resource://devtools/server/actors/network-monitor/network-observer.js:130:9
_onRequestHeader@resource://devtools/server/actors/network-monitor/network-observer.js:959:10
NetworkObserver.prototype.observeActivity<@resource://devtools/server/actors/network-monitor/network-observer.js:710:12
exports.makeInfallible/<@resource://devtools/shared/ThreadSafeDevToolsUtils.js:103:22
Line: 130, column: 9
console.error: (new TypeError("topFrame.browsingContext is null", "resource://devtools/server/actors/network-monitor/network-observer.js", 130))
Handler function threw an exception: TypeError: topFrame.browsingContext is null
Stack: matchRequest@resource://devtools/server/actors/network-monitor/network-observer.js:130:9
_onRequestHeader@resource://devtools/server/actors/network-monitor/network-observer.js:959:10
NetworkObserver.prototype.observeActivity<@resource://devtools/server/actors/network-monitor/network-observer.js:710:12
exports.makeInfallible/<@resource://devtools/shared/ThreadSafeDevToolsUtils.js:103:22
Line: 130, column: 9
console.error: (new TypeError("topFrame.browsingContext is null", "resource://devtools/server/actors/network-monitor/network-observer.js", 130))
Handler function _httpResponseExaminer threw an exception: TypeError: topFrame.browsingContext is null
Stack: matchRequest@resource://devtools/server/actors/network-monitor/network-observer.js:130:9
_httpResponseExaminer@resource://devtools/server/actors/network-monitor/network-observer.js:456:10
exports.makeInfallible/<@resource://devtools/shared/ThreadSafeDevToolsUtils.js:103:22
Line: 130, column: 9
console.error: (new TypeError("topFrame.browsingContext is null", "resource://devtools/server/actors/network-monitor/network-observer.js", 130))
Handler function _httpResponseExaminer threw an exception: TypeError: topFrame.browsingContext is null
Stack: matchRequest@resource://devtools/server/actors/network-monitor/network-observer.js:130:9
_httpResponseExaminer@resource://devtools/server/actors/network-monitor/network-observer.js:456:10
exports.makeInfallible/<@resource://devtools/shared/ThreadSafeDevToolsUtils.js:103:22
Line: 130, column: 9
console.error: (new TypeError("topFrame.browsingContext is null", "resource://devtools/server/actors/network-monitor/network-observer.js", 130))
1617203541767 Marionette INFO Stopped listening on port 57125
1617203564823 geckodriver INFO Listening on 127.0.0.1:57736
1617203567901 mozrunner::runner INFO Running command: "C:\\Program Files\\Mozilla Firefox\\firefox.exe" "--marionette" "-foreground" "-no-remote" "-profile" "C:\\Users\\conso\\AppData\\Local\\Temp\\rust_mozprofileeaABLJ"
console.warn: SearchSettings: "get: No settings file exists, new profile?" (new Error("", "(unknown module)"))
1617203570142 Marionette INFO Listening on port 57744
1617203570562 Marionette WARN TLS certificate errors will be ignored for this session
1617203739544 Marionette INFO Stopped listening on port 57741617203740230 mozrunner::runner INFO Running command: "C:\\Program Files\\Mozilla Firefox\\firefox.exe" "--marionette" "-foreground" "-no-remote" "-profile" "C:\\Users\\conso\\AppData\\Local\\Temp\\rust_mozprofilenh3Ay9"
console.warn: SearchSettings: "get: No settings file exists, new profile?" (new Error("", "(unknown module)"))
1617203742726 Marionette INFO Listening on port 57943
1617203742880 Marionette WARN TLS certificate errors will be ignored for this session
1617203816706 Marionette INFO Stopped listening on port 57943
1617203851394 geckodriver INFO Listening on 127.0.0.1:58108
1617203854449 mozrunner::runner INFO Running command: "C:\\Program Files\\Mozilla Firefox\\firefox.exe" "--marionette" "-foreground" "-no-remote" "-profile" "C:\\Users\\conso\\AppData\\Local\\Temp\\rust_mozprofileWdDe6a"
console.warn: SearchSettings: "get: No settings file exists, new profile?" (new Error("", "(unknown module)"))
1617203856718 Marionette INFO Listening on port 58117
1617203857165 Marionette WARN TLS certificate errors will be ignored for this session
1617204128518 Marionette INFO Stopped listening on port 58117
###!!! [Child][RunMessage] Error: Channel closing: too late to send/recv, messages will be lost
"--marionette" "-foreground" "-no-remote" "-profile" "C:\\Users\\conso\\AppData\\Local\\Temp\\rust_mozprofileOS0F7f"
console.warn: SearchSettings: "get: No settings file exists, new profile?" (new Error("", "(unknown module)"))
1617204099812 Marionette INFO Listening on port 58304
1617204100008 Marionette WARN TLS certificate errors will be ignored for this session
1617204129416 Marionette INFO Stopped listening on port 58304
###!!! [Child][RunMessage] Error: Channel closing: too late to send/recv, messages will be lost
1617204131157 geckodriver INFO Listening on 127.0.0.1:58442
1617204134248 mozrunner::runner INFO Running command: "C:\\Program Files\\Mozilla Firefox\\firefox.exe" "--marionette" "-foreground" "-no-remote" "-profile" "C:\\Users\\conso\\AppData\\Local\\Temp\\rust_mozprofile5kWuSW"
console.warn: SearchSettings: "get: No settings file exists, new profile?" (new Error("", "(unknown module)"))
1617204136671 Marionette INFO Listening on port 58450
1617204136916 Marionette WARN TLS certificate errors will be ignored for this session
1617204338740 Marionette INFO Stopped listening on port 58450
1617204341191 geckodriver INFO Listening on 127.0.0.1:58638
1617204344273 mozrunner::runner INFO Running command: "C:\\Program Files\\Mozilla Firefox\\firefox.exe" "--marionette" "-foreground" "-no-remote" "-profile" "C:\\Users\\conso\\AppData\\Local\\Temp\\rust_mozprofileRk7ADx"
console.warn: SearchSettings: "get: No settings file exists, new profile?" (new Error("", "(unknown module)"))
1617204346415 Marionette INFO Listening on port 58646
1617204346476 Marionette WARN TLS certificate errors will be ignored for this session
1617204588937 Marionette INFO Stopped listening on port 58646
###!!! [Child][RunMessage] Error: Channel closing: too late to send/recv, messages will be lost
"--marionette" "-foreground" "-no-remote" "-profile" "C:\\Users\\conso\\AppData\\Local\\Temp\\rust_mozprofiletvIboC"
console.warn: SearchSettings: "get: No settings file exists, new profile?" (new Error("", "(unknown module)"))
1617204560787 Marionette INFO Listening on port 58849
1617204560968 Marionette WARN TLS certificate errors will be ignored for this session
1617204590158 Marionette INFO Stopped listening on port 58849
###!!! [Child][RunMessage] Error: Channel closing: too late to send/recv, messages will be lost
1617204769533 geckodriver INFO Listening on 127.0.0.1:59024
1617204772615 mozrunner::runner INFO Running command: "C:\\Program Files\\Mozilla Firefox\\firefox.exe" "--marionette" "-foreground" "-no-remote" "-profile" "C:\\Users\\conso\\AppData\\Local\\Temp\\rust_mozprofilexQCZrh"
console.warn: SearchSettings: "get: No settings file exists, new profile?" (new Error("", "(unknown module)"))
1617204774760 Marionette INFO Listening on port 59032
1617204774815 Marionette WARN TLS certificate errors will be ignored for this session
1617205257558 Marionette INFO Stopped listening on port 59032
###!!! [Child][RunMessage] Error: Channel closing: too late to send/recv, messages will be lost
"--marionette" "-foreground" "-no-remote" "-profile" "C:\\Users\\conso\\AppData\\Local\\Temp\\rust_mozprofiley6rcHL"
console.warn: SearchSettings: "get: No settings file exists, new profile?" (new Error("", "(unknown module)"))
1617204863841 Marionette INFO Listening on port 59193
1617204863911 Marionette WARN TLS certificate errors will be ignored for this session
1617205258079 Marionette INFO Stopped listening on port 59193
###!!! [Child][RunMessage] Error: Channel closing: too late to send/recv, messages will be lost
"--marionette" "-foreground" "-no-remote" "-profile" "C:\\Users\\conso\\AppData\\Local\\Temp\\rust_mozprofileHZ7AqI"
console.warn: SearchSettings: "get: No settings file exists, new profile?" (new Error("", "(unknown module)"))
1617204921555 Marionette INFO Listening on port 59356
1617204921920 Marionette WARN TLS certificate errors will be ignored for this session
1617205258615 Marionette INFO Stopped listening on port 59356
###!!! [Child][RunMessage] Error: Channel closing: too late to send/recv, messages will be lost
"--marionette" "-foreground" "-no-remote" "-profile" "C:\\Users\\conso\\AppData\\Local\\Temp\\rust_mozprofileCN2hJw"
console.warn: SearchSettings: "get: No settings file exists, new profile?" (new Error("", "(unknown module)"))
1617205002451 Marionette INFO Listening on port 59513
1617205002669 Marionette WARN TLS certificate errors will be ignored for this session
1617205259060 Marionette INFO Stopped listening on port 59513
###!!! [Child][RunMessage] Error: Channel closing: too late to send/recv, messages will be lost
"--marionette" "-foreground" "-no-remote" "-profile" "C:\\Users\\conso\\AppData\\Local\\Temp\\rust_mozprofiledcYVyE"
console.warn: SearchSettings: "get: No settings file exists, new profile?" (new Error("", "(unknown module)"))
1617205076478 Marionette INFO Listening on port 59693
1617205076922 Marionette WARN TLS certificate errors will be ignored for this session
1617205259497 Marionette INFO Stopped listening on port 59693
###!!! [Child][RunMessage] Error: Channel closing: too late to send/recv, messages will be lost
"--marionette" "-foreground" "-no-remote" "-profile" "C:\\Users\\conso\\AppData\\Local\\Temp\\rust_mozprofileEqXVcr"
console.warn: SearchSettings: "get: No settings file exists, new profile?" (new Error("", "(unknown module)"))
1617205156808 Marionette INFO Listening on port 59860
1617205156894 Marionette WARN TLS certificate errors will be ignored for this session
1617205259927 Marionette INFO Stopped listening on port 59860
###!!! [Child][RunMessage] Error: Channel closing: too late to send/recv, messages will be lost
"--marionette" "-foreground" "-no-remote" "-profile" "C:\\Users\\conso\\AppData\\Local\\Temp\\rust_mozprofileXg02ZK"
console.warn: SearchSettings: "get: No settings file exists, new profile?" (new Error("", "(unknown module)"))
1617205204367 Marionette INFO Listening on port 60014
1617205204802 Marionette WARN TLS certificate errors will be ignored for this session
1617205261968 Marionette INFO Stopped listening on port 60014
###!!! [Child][RunMessage] Error: Channel closing: too late to send/recv, messages will be lost
1617205264794 geckodriver INFO Listening on 127.0.0.1:60172
1617205267889 mozrunner::runner INFO Running command: "C:\\Program Files\\Mozilla Firefox\\firefox.exe" "--marionette" "-foreground" "-no-remote" "-profile" "C:\\Users\\conso\\AppData\\Local\\Temp\\rust_mozprofilewFjBxr"
console.warn: SearchSettings: "get: No settings file exists, new profile?" (new Error("", "(unknown module)"))
1617205270252 Marionette INFO Listening on port 60180
1617205270571 Marionette WARN TLS certificate errors will be ignored for this session
1617205289650 Marionette INFO Stopped listening on port 60180
###!!! [Child][RunMessage] Error: Channel closing: too late to send/recv, messages will be lost
1617205340692 geckodriver INFO Listening on 127.0.0.1:60322
1617205343770 mozrunner::runner INFO Running command: "C:\\Program Files\\Mozilla Firefox\\firefox.exe" "--marionette" "-foreground" "-no-remote" "-profile" "C:\\Users\\conso\\AppData\\Local\\Temp\\rust_mozprofile6F8kw6"
console.warn: SearchSettings: "get: No settings file exists, new profile?" (new Error("", "(unknown module)"))
1617205346127 Marionette INFO Listening on port 60330
[Parent 17292, IPC I/O Parent] WARNING: file /builds/worker/checkouts/gecko/ipc/chromium/src/base/process_util_win.cc:167
1617205346458 Marionette WARN TLS certificate errors will be ignored for this session
1617205615217 Marionette INFO Stopped listening on port 60330
7205524016 mozrunner::runner INFO Running command: "C:\\Program Files\\Mozilla Firefox\\firefox.exe" "--marionette" "-foreground" "-no-remote" "-profile" "C:\\Users\\conso\\AppData\\Local\\Temp\\rust_mozprofile74kv8F"
console.warn: SearchSettings: "get: No settings file exists, new profile?" (new Error("", "(unknown module)"))
1617205526450 Marionette INFO Listening on port 60513
1617205526683 Marionette WARN TLS certificate errors will be ignored for this session
1617205615797 Marionette INFO Stopped listening on port 60513
1617205637594 geckodriver INFO Listening on 127.0.0.1:60609
1617205640688 mozrunner::runner INFO Running command: "C:\\Program Files\\Mozilla Firefox\\firefox.exe" "--marionette" "-foreground" "-no-remote" "-profile" "C:\\Users\\conso\\AppData\\Local\\Temp\\rust_mozprofileu0b3v1"
console.warn: SearchSettings: "get: No settings file exists, new profile?" (new Error("", "(unknown module)"))
1617205642871 Marionette INFO Listening on port 60617
1617205642897 Marionette WARN TLS certificate errors will be ignored for this session
1617206051239 Marionette INFO Stopped listening on port 60617
7205680547 mozrunner::runner INFO Running command: "C:\\Program Files\\Mozilla Firefox\\firefox.exe" "--marionette" "-foreground" "-no-remote" "-profile" "C:\\Users\\conso\\AppData\\Local\\Temp\\rust_mozprofile76iTtM"
console.warn: SearchSettings: "get: No settings file exists, new profile?" (new Error("", "(unknown module)"))
1617205682706 Marionette INFO Listening on port 60709
1617205683241 Marionette WARN TLS certificate errors will be ignored for this session
1617206051767 Marionette INFO Stopped listening on port 60709
###!!! [Child][RunMessage] Error: Channel closing: too late to send/recv, messages will be lost
"--marionette" "-foreground" "-no-remote" "-profile" "C:\\Users\\conso\\AppData\\Local\\Temp\\rust_mozprofilef4kvPy"
console.warn: SearchSettings: "get: No settings file exists, new profile?" (new Error("", "(unknown module)"))
1617205754117 Marionette INFO Listening on port 60808
1617205754369 Marionette WARN TLS certificate errors will be ignored for this session
1617206052282 Marionette INFO Stopped listening on port 60808
###!!! [Child][RunMessage] Error: Channel closing: too late to send/recv, messages will be lost
"--marionette" "-foreground" "-no-remote" "-profile" "C:\\Users\\conso\\AppData\\Local\\Temp\\rust_mozprofileUSJOoa"
console.warn: SearchSettings: "get: No settings file exists, new profile?" (new Error("", "(unknown module)"))
1617205834218 Marionette INFO Listening on port 60907
1617205834275 Marionette WARN TLS certificate errors will be ignored for this session
1617206052786 Marionette INFO Stopped listening on port 60907
###!!! [Child][RunMessage] Error: Channel closing: too late to send/recv, messages will be lost
"--marionette" "-foreground" "-no-remote" "-profile" "C:\\Users\\conso\\AppData\\Local\\Temp\\rust_mozprofileQDFf8H"
console.warn: SearchSettings: "get: No settings file exists, new profile?" (new Error("", "(unknown module)"))
1617205925377 Marionette INFO Listening on port 61067
1617205925731 Marionette WARN TLS certificate errors will be ignored for this session
1617206055688 Marionette INFO Stopped listening on port 61067
###!!! [Child][RunMessage] Error: Channel closing: too late to send/recv, messages will be lost
1617206086547 geckodriver INFO Listening on 127.0.0.1:61328
1617206089615 mozrunner::runner INFO Running command: "C:\\Program Files\\Mozilla Firefox\\firefox.exe" "--marionette" "-foreground" "-no-remote" "-profile" "C:\\Users\\conso\\AppData\\Local\\Temp\\rust_mozprofilegOnGId"
console.warn: SearchSettings: "get: No settings file exists, new profile?" (new Error("", "(unknown module)"))
1617206091914 Marionette INFO Listening on port 61336
1617206092294 Marionette WARN TLS certificate errors will be ignored for this session
1617206522167 Marionette INFO Stopped listening on port 61336
###!!! [Child][RunMessage] Error: Channel closing: too late to send/recv, messages will be lost
"--marionette" "-foreground" "-no-remote" "-profile" "C:\\Users\\conso\\AppData\\Local\\Temp\\rust_mozprofileGztbBb"
console.warn: SearchSettings: "get: No settings file exists, new profile?" (new Error("", "(unknown module)"))
1617206136081 Marionette INFO Listening on port 61433
1617206136111 Marionette WARN TLS certificate errors will be ignored for this session
1617206522841 Marionette INFO Stopped listening on port 61433
7206179102 mozrunner::runner INFO Running command: "C:\\Program Files\\Mozilla Firefox\\firefox.exe" "--marionette" "-foreground" "-no-remote" "-profile" "C:\\Users\\conso\\AppData\\Local\\Temp\\rust_mozprofilefywoTg"
console.warn: SearchSettings: "get: No settings file exists, new profile?" (new Error("", "(unknown module)"))
1617206181340 Marionette INFO Listening on port 61529
1617206181814 Marionette WARN TLS certificate errors will be ignored for this session
1617206199266 Marionette INFO Stopped listening on port 61529
###!!! [Child][RunMessage] Error: Channel closing: too late to send/recv, messages will be lost
1617206313961 geckodriver INFO Listening on 127.0.0.1:61697
1617206317029 mozrunner::runner INFO Running command: "C:\\Program Files\\Mozilla Firefox\\firefox.exe" "--marionette" "-foreground" "-no-remote" "-profile" "C:\\Users\\conso\\AppData\\Local\\Temp\\rust_mozprofiletNrwwl"
console.warn: SearchSettings: "get: No settings file exists, new profile?" (new Error("", "(unknown module)"))
1617206319467 Marionette INFO Listening on port 61705
1617206319701 Marionette WARN TLS certificate errors will be ignored for this session
1617206523569 Marionette INFO Stopped listening on port 61705
###!!! [Child][RunMessage] Error: Channel closing: too late to send/recv, messages will be lost
"--marionette" "-foreground" "-no-remote" "-profile" "C:\\Users\\conso\\AppData\\Local\\Temp\\rust_mozprofileQyWhDq"
console.warn: SearchSettings: "get: No settings file exists, new profile?" (new Error("", "(unknown module)"))
1617206351271 Marionette INFO Listening on port 61798
1617206351596 Marionette WARN TLS certificate errors will be ignored for this session
1617206524220 Marionette INFO Stopped listening on port 61798
###!!! [Child][RunMessage] Error: Channel closing: too late to send/recv, messages will be lost
"--marionette" "-foreground" "-no-remote" "-profile" "C:\\Users\\conso\\AppData\\Local\\Temp\\rust_mozprofile1d7LKU"
console.warn: SearchSettings: "get: No settings file exists, new profile?" (new Error("", "(unknown module)"))
1617206393622 Marionette INFO Listening on port 61898
1617206393803 Marionette WARN TLS certificate errors will be ignored for this session
1617206525925 Marionette INFO Stopped listening on port 61898
###!!! [Child][RunMessage] Error: Channel closing: too late to send/recv, messages will be lost
1617206647310 geckodriver INFO Listening on 127.0.0.1:62088
1617206650361 mozrunner::runner INFO Running command: "C:\\Program Files\\Mozilla Firefox\\firefox.exe" "--marionette" "-foreground" "-no-remote" "-profile" "C:\\Users\\conso\\AppData\\Local\\Temp\\rust_mozprofileaa3KDq"
console.warn: SearchSettings: "get: No settings file exists, new profile?" (new Error("", "(unknown module)"))
1617206652662 Marionette INFO Listening on port 62096
1617206653053 Marionette WARN TLS certificate errors will be ignored for this session
1617207034774 Marionette INFO Stopped listening on port 62096
###!!! [Child][RunMessage] Error: Channel closing: too late to send/recv, messages will be lost
1617212953731 geckodriver INFO Listening on 127.0.0.1:63933
1617212956776 mozrunner::runner INFO Running command: "C:\\Program Files\\Mozilla Firefox\\firefox.exe" "--marionette" "-foreground" "-no-remote" "-profile" "C:\\Users\\conso\\AppData\\Local\\Temp\\rust_mozprofile3vuXur"
console.warn: SearchSettings: "get: No settings file exists, new profile?" (new Error("", "(unknown module)"))
1617212960372 Marionette INFO Listening on port 63942
1617212960471 Marionette WARN TLS certificate errors will be ignored for this session
JavaScript error: resource://devtools/shared/protocol/Front.js, line 99: Error: Connection closed, pending request to server0.conn0.child3/domnode1678, type modifyAttributes failed
Request stack:
request@resource://devtools/shared/protocol/Front.js:288:14
generateRequestMethods/</frontProto[name]@resource://devtools/shared/protocol/Front/FrontClassWithSpec.js:46:19
apply@resource://devtools/client/fronts/node.js:70:27
_setupAttributeEditor/done/<@resource://devtools/client/inspector/markup/views/element-editor.js:761:20
do@resource://devtools/client/shared/undo.js:70:16
endBatch@resource://devtools/client/shared/undo.js:81:11
do@resource://devtools/client/shared/undo.js:93:10
done@resource://devtools/client/inspector/markup/views/element-editor.js:759:29
_apply@resource://devtools/client/shared/inplace-editor.js:1041:19
_onBlur@resource://devtools/client/shared/inplace-editor.js:1072:12
1617213011211 Marionette INFO Stopped listening on port 63942
1617213174923 geckodriver INFO Listening on 127.0.0.1:64198
1617213178004 mozrunner::runner INFO Running command: "C:\\Program Files\\Mozilla Firefox\\firefox.exe" "--marionette" "-foreground" "-no-remote" "-profile" "C:\\Users\\conso\\AppData\\Local\\Temp\\rust_mozprofileovGAJN"
console.warn: SearchSettings: "get: No settings file exists, new profile?" (new Error("", "(unknown module)"))
1617213180618 Marionette INFO Listening on port 64207
1617213180705 Marionette WARN TLS certificate errors will be ignored for this session
1617213388673 Marionette INFO Stopped listening on port 64207
1617371603019 geckodriver INFO Listening on 127.0.0.1:62433
1617371606109 mozrunner::runner INFO Running command: "C:\\Program Files\\Mozilla Firefox\\firefox.exe" "--marionette" "-foreground" "-no-remote" "-profile" "C:\\Users\\conso\\AppData\\Local\\Temp\\rust_mozprofileRwNu3B"
console.warn: SearchSettings: "get: No settings file exists, new profile?" (new Error("", "(unknown module)"))
1617371608789 Marionette INFO Listening on port 62441
1617371609313 Marionette WARN TLS certificate errors will be ignored for this session
console.log: WebExtensions: reset-default-search: No addons in our list are installed.
1617372976827 Marionette INFO Stopped listening on port 62441
7372477540 mozrunner::runner INFO Running command: "C:\\Program Files\\Mozilla Firefox\\firefox.exe" "--marionette" "-foreground" "-no-remote" "-profile" "C:\\Users\\conso\\AppData\\Local\\Temp\\rust_mozprofileiKAN4p"
console.warn: SearchSettings: "get: No settings file exists, new profile?" (new Error("", "(unknown module)"))
1617372479954 Marionette INFO Listening on port 62676
1617372480217 Marionette WARN TLS certificate errors will be ignored for this session
1617372496756 Marionette INFO Stopped listening on port 62676
###!!! [Child][RunMessage] Error: Channel closing: too late to send/recv, messages will be lost
1617372626352 geckodriver INFO Listening on 127.0.0.1:62769
1617372629429 mozrunner::runner INFO Running command: "C:\\Program Files\\Mozilla Firefox\\firefox.exe" "--marionette" "-foreground" "-no-remote" "-profile" "C:\\Users\\conso\\AppData\\Local\\Temp\\rust_mozprofileLy7DgU"
console.warn: SearchSettings: "get: No settings file exists, new profile?" (new Error("", "(unknown module)"))
1617372632038 Marionette INFO Listening on port 62778
1617372632111 Marionette WARN TLS certificate errors will be ignored for this session
1617372977325 Marionette INFO Stopped listening on port 62778
###!!! [Child][RunMessage] Error: Channel closing: too late to send/recv, messages will be lost
"--marionette" "-foreground" "-no-remote" "-profile" "C:\\Users\\conso\\AppData\\Local\\Temp\\rust_mozprofilePbywfX"
console.warn: SearchSettings: "get: No settings file exists, new profile?" (new Error("", "(unknown module)"))
1617372670596 Marionette INFO Listening on port 62930
1617372671050 Marionette WARN TLS certificate errors will be ignored for this session
1617372977955 Marionette INFO Stopped listening on port 62930
###!!! [Child][RunMessage] Error: Channel closing: too late to send/recv, messages will be lost
"--marionette" "-foreground" "-no-remote" "-profile" "C:\\Users\\conso\\AppData\\Local\\Temp\\rust_mozprofileAmE2dB"
console.warn: SearchSettings: "get: No settings file exists, new profile?" (new Error("", "(unknown module)"))
1617372778457 Marionette INFO Listening on port 63051
1617372778987 Marionette WARN TLS certificate errors will be ignored for this session
1617372978530 Marionette INFO Stopped listening on port 63051
###!!! [Child][RunMessage] Error: Channel closing: too late to send/recv, messages will be lost
"--marionette" "-foreground" "-no-remote" "-profile" "C:\\Users\\conso\\AppData\\Local\\Temp\\rust_mozprofilegUioTB"
console.warn: SearchSettings: "get: No settings file exists, new profile?" (new Error("", "(unknown module)"))
1617372834948 Marionette INFO Listening on port 63147
1617372835210 Marionette WARN TLS certificate errors will be ignored for this session
1617372979156 Marionette INFO Stopped listening on port 63147
###!!! [Child][RunMessage] Error: Channel closing: too late to send/recv, messages will be lost
"--marionette" "-foreground" "-no-remote" "-profile" "C:\\Users\\conso\\AppData\\Local\\Temp\\rust_mozprofileK8nS6j"
console.warn: SearchSettings: "get: No settings file exists, new profile?" (new Error("", "(unknown module)"))
1617372917626 Marionette INFO Listening on port 63251
1617372917823 Marionette WARN TLS certificate errors will be ignored for this session
1617372984103 Marionette INFO Stopped listening on port 63251
1617373127956 geckodriver INFO Listening on 127.0.0.1:63424
1617373131047 mozrunner::runner INFO Running command: "C:\\Program Files\\Mozilla Firefox\\firefox.exe" "--marionette" "-foreground" "-no-remote" "-profile" "C:\\Users\\conso\\AppData\\Local\\Temp\\rust_mozprofilebOufJ3"
console.warn: SearchSettings: "get: No settings file exists, new profile?" (new Error("", "(unknown module)"))
1617373133364 Marionette INFO Listening on port 63432
1617373133772 Marionette WARN TLS certificate errors will be ignored for this session
console.log: WebExtensions: reset-default-search: No addons in our list are installed.
1617374043941 Marionette INFO Stopped listening on port 63432
firefox.exe" "--marionette" "-foreground" "-no-remote" "-profile" "C:\\Users\\conso\\AppData\\Local\\Temp\\rust_mozprofileKzA5Py"
console.warn: SearchSettings: "get: No settings file exists, new profile?" (new Error("", "(unknown module)"))
1617373206976 Marionette INFO Listening on port 63589
1617373207154 Marionette WARN TLS certificate errors will be ignored for this session
console.log: WebExtensions: reset-default-search: No addons in our list are installed.
1617374044545 Marionette INFO Stopped listening on port 63589
firefox.exe" "--marionette" "-foreground" "-no-remote" "-profile" "C:\\Users\\conso\\AppData\\Local\\Temp\\rust_mozprofilez7rS3j"
console.warn: SearchSettings: "get: No settings file exists, new profile?" (new Error("", "(unknown module)"))
1617373277674 Marionette INFO Listening on port 63685
1617373277780 Marionette WARN TLS certificate errors will be ignored for this session
console.log: WebExtensions: reset-default-search: No addons in our list are installed.
1617374044980 Marionette INFO Stopped listening on port 63685
firefox.exe" "--marionette" "-foreground" "-no-remote" "-profile" "C:\\Users\\conso\\AppData\\Local\\Temp\\rust_mozprofile9eNrkS"
console.warn: SearchSettings: "get: No settings file exists, new profile?" (new Error("", "(unknown module)"))
1617373452713 Marionette INFO Listening on port 63821
1617373452892 Marionette WARN TLS certificate errors will be ignored for this session
console.log: WebExtensions: reset-default-search: No addons in our list are installed.
1617374045336 Marionette INFO Stopped listening on port 63821
###!!! [Child][RunMessage] Error: Channel closing: too late to send/recv, messages will be lost
Temp\\rust_mozprofileb2Wb79"
console.warn: SearchSettings: "get: No settings file exists, new profile?" (new Error("", "(unknown module)"))
1617373554431 Marionette INFO Listening on port 63936
1617373554649 Marionette WARN TLS certificate errors will be ignored for this session
1617374045744 Marionette INFO Stopped listening on port 63936
###!!! [Child][RunMessage] Error: Channel closing: too late to send/recv, messages will be lost
"--marionette" "-foreground" "-no-remote" "-profile" "C:\\Users\\conso\\AppData\\Local\\Temp\\rust_mozprofile5DFweQ"
console.warn: SearchSettings: "get: No settings file exists, new profile?" (new Error("", "(unknown module)"))
1617373624598 Marionette INFO Listening on port 64043
1617373624780 Marionette WARN TLS certificate errors will be ignored for this session
1617374046139 Marionette INFO Stopped listening on port 64043
7373784782 mozrunner::runner INFO Running command: "C:\\Program Files\\Mozilla Firefox\\firefox.exe" "--marionette" "-foreground" "-no-remote" "-profile" "C:\\Users\\conso\\AppData\\Local\\Temp\\rust_mozprofile2Bf2ZA"
console.warn: SearchSettings: "get: No settings file exists, new profile?" (new Error("", "(unknown module)"))
1617373787284 Marionette INFO Listening on port 64165
1617373787464 Marionette WARN TLS certificate errors will be ignored for this session
1617374048221 Marionette INFO Stopped listening on port 64165
###!!! [Child][RunMessage] Error: Channel closing: too late to send/recv, messages will be lost
1617376228290 geckodriver INFO Listening on 127.0.0.1:64972
1617376231383 mozrunner::runner INFO Running command: "C:\\Program Files\\Mozilla Firefox\\firefox.exe" "--marionette" "-foreground" "-no-remote" "-profile" "C:\\Users\\conso\\AppData\\Local\\Temp\\rust_mozprofilevc1Q6v"
console.warn: SearchSettings: "get: No settings file exists, new profile?" (new Error("", "(unknown module)"))
1617376233820 Marionette INFO Listening on port 64980
1617376234051 Marionette WARN TLS certificate errors will be ignored for this session
1617376645006 Marionette INFO Stopped listening on port 64980
###!!! [Child][RunMessage] Error: Channel closing: too late to send/recv, messages will be lost
"--marionette" "-foreground" "-no-remote" "-profile" "C:\\Users\\conso\\AppData\\Local\\Temp\\rust_mozprofileaSCD6u"
console.warn: SearchSettings: "get: No settings file exists, new profile?" (new Error("", "(unknown module)"))
1617376339560 Marionette INFO Listening on port 65076
1617376340051 Marionette WARN TLS certificate errors will be ignored for this session
1617376645722 Marionette INFO Stopped listening on port 65076
###!!! [Child][RunMessage] Error: Channel closing: too late to send/recv, messages will be lost
"--marionette" "-foreground" "-no-remote" "-profile" "C:\\Users\\conso\\AppData\\Local\\Temp\\rust_mozprofile15OiUz"
console.warn: SearchSettings: "get: No settings file exists, new profile?" (new Error("", "(unknown module)"))
1617376441370 Marionette INFO Listening on port 65183
1617376441872 Marionette WARN TLS certificate errors will be ignored for this session
1617376646191 Marionette INFO Stopped listening on port 65183
###!!! [Child][RunMessage] Error: Channel closing: too late to send/recv, messages will be lost
"--marionette" "-foreground" "-no-remote" "-profile" "C:\\Users\\conso\\AppData\\Local\\Temp\\rust_mozprofileDSaecr"
console.warn: SearchSettings: "get: No settings file exists, new profile?" (new Error("", "(unknown module)"))
1617376472010 Marionette INFO Listening on port 65276
1617376472179 Marionette WARN TLS certificate errors will be ignored for this session
1617376646673 Marionette INFO Stopped listening on port 65276
###!!! [Child][RunMessage] Error: Channel closing: too late to send/recv, messages will be lost
"--marionette" "-foreground" "-no-remote" "-profile" "C:\\Users\\conso\\AppData\\Local\\Temp\\rust_mozprofileHbDOnT"
console.warn: SearchSettings: "get: No settings file exists, new profile?" (new Error("", "(unknown module)"))
1617376600015 Marionette INFO Listening on port 65390
1617376600387 Marionette WARN TLS certificate errors will be ignored for this session
1617376647253 Marionette INFO Stopped listening on port 65390
1617376650611 geckodriver INFO Listening on 127.0.0.1:65486
1617376653692 mozrunner::runner INFO Running command: "C:\\Program Files\\Mozilla Firefox\\firefox.exe" "--marionette" "-foreground" "-no-remote" "-profile" "C:\\Users\\conso\\AppData\\Local\\Temp\\rust_mozprofileNuFz3F"
console.warn: SearchSettings: "get: No settings file exists, new profile?" (new Error("", "(unknown module)"))
1617376656014 Marionette INFO Listening on port 65495
1617376656354 Marionette WARN TLS certificate errors will be ignored for this session
1617377110427 Marionette INFO Stopped listening on port 65495
###!!! [Child][RunMessage] Error: Channel closing: too late to send/recv, messages will be lost
1617438034768 geckodriver INFO Listening on 127.0.0.1:50389
1617438037810 mozrunner::runner INFO Running command: "C:\\Program Files\\Mozilla Firefox\\firefox.exe" "--marionette" "-foreground" "-no-remote" "-profile" "C:\\Users\\conso\\AppData\\Local\\Temp\\rust_mozprofileU42rPe"
console.warn: SearchSettings: "get: No settings file exists, new profile?" (new Error("", "(unknown module)"))
1617438042039 Marionette INFO Listening on port 50398
1617438042128 Marionette WARN TLS certificate errors will be ignored for this session
1617438480854 Marionette INFO Stopped listening on port 50398
###!!! [Child][RunMessage] Error: Channel closing: too late to send/recv, messages will be lost
1617438667246 geckodriver INFO Listening on 127.0.0.1:50837
1617438670343 mozrunner::runner INFO Running command: "C:\\Program Files\\Mozilla Firefox\\firefox.exe" "--marionette" "-foreground" "-no-remote" "-profile" "C:\\Users\\conso\\AppData\\Local\\Temp\\rust_mozprofilejAO0wL"
console.warn: SearchSettings: "get: No settings file exists, new profile?" (new Error("", "(unknown module)"))
1617438672726 Marionette INFO Listening on port 50845
1617438673008 Marionette WARN TLS certificate errors will be ignored for this session
JavaScript error: , line 0: uncaught exception: undefined
1617439086104 Marionette INFO Stopped listening on port 50845
###!!! [Child][RunMessage] Error: Channel closing: too late to send/recv, messages will be lost
1617715819403 geckodriver INFO Listening on 127.0.0.1:52087
1617715822431 mozrunner::runner INFO Running command: "C:\\Program Files\\Mozilla Firefox\\firefox.exe" "--marionette" "-foreground" "-no-remote" "-profile" "C:\\Users\\conso\\AppData\\Local\\Temp\\rust_mozprofile2pOsR7"
console.warn: SearchSettings: "get: No settings file exists, new profile?" (new Error("", "(unknown module)"))
1617715825677 Marionette INFO Listening on port 52096
1617716208688 Marionette INFO Stopped listening on port 52096
###!!! [Child][RunMessage] Error: Channel closing: too late to send/recv, messages will be lost
1617885643453 geckodriver INFO Listening on 127.0.0.1:63456
1617885646545 mozrunner::runner INFO Running command: "C:\\Program Files\\Mozilla Firefox\\firefox.exe" "--marionette" "-foreground" "-no-remote" "-profile" "C:\\Users\\conso\\AppData\\Local\\Temp\\rust_mozprofilejfStwj"
console.warn: SearchSettings: "get: No settings file exists, new profile?" (new Error("", "(unknown module)"))
1617885648934 Marionette INFO Listening on port 63465
1617885649192 Marionette WARN TLS certificate errors will be ignored for this session
1617885832670 Marionette INFO Stopped listening on port 63465
###!!! [Child][RunMessage] Error: Channel closing: too late to send/recv, messages will be lost
1621768746361 geckodriver INFO Listening on 127.0.0.1:52927
1621768749513 mozrunner::runner INFO Running command: "C:\\Program Files\\Mozilla Firefox\\firefox.exe" "--marionette" "-foreground" "-no-remote" "-profile" "C:\\Users\\conso\\AppData\\Local\\Temp\\rust_mozprofilev8WCyS"
1621768749853 Marionette INFO Marionette enabled
console.warn: SearchSettings: "get: No settings file exists, new profile?" (new Error("", "(unknown module)"))
1621768751828 Marionette INFO Listening on port 52935
1621768752188 Marionette WARN TLS certificate errors will be ignored for this session
JavaScript error: https://www.eurobet.it/it/scommesse/#!, line 1600: ReferenceError: _satellite is not defined
1621769347395 Marionette INFO Stopped listening on port 52935
###!!! [Child][RunMessage] Error: Channel closing: too late to send/recv, messages will be lost
1621769499955 geckodriver INFO Listening on 127.0.0.1:53322
1621769503038 mozrunner::runner INFO Running command: "C:\\Program Files\\Mozilla Firefox\\firefox.exe" "--marionette" "-foreground" "-no-remote" "-profile" "C:\\Users\\conso\\AppData\\Local\\Temp\\rust_mozprofileOw3j0P"
1621769503365 Marionette INFO Marionette enabled
console.warn: SearchSettings: "get: No settings file exists, new profile?" (new Error("", "(unknown module)"))
1621769505392 Marionette INFO Listening on port 53330
1621769505714 Marionette WARN TLS certificate errors will be ignored for this session
JavaScript error: https://www.eurobet.it/it/scommesse/#!/calcio/it-serie-a/, line 1600: ReferenceError: _satellite is not defined
1621770279847 Marionette INFO Stopped listening on port 53330
1769557447 mozrunner::runner INFO Running command: "C:\\Program Files\\Mozilla Firefox\\firefox.exe" "--marionette" "-foreground" "-no-remote" "-profile" "C:\\Users\\conso\\AppData\\Local\\Temp\\rust_mozprofile8IRJN5"
1621769557755 Marionette INFO Marionette enabled
console.warn: SearchSettings: "get: No settings file exists, new profile?" (new Error("", "(unknown module)"))
1621769559808 Marionette INFO Listening on port 53438
1621769560130 Marionette WARN TLS certificate errors will be ignored for this session
JavaScript error: https://www.eurobet.it/it/scommesse/#!/calcio/it-serie-a/, line 1600: ReferenceError: _satellite is not defined
JavaScript error: , line 0: NotFoundError: No such JSWindowActor 'MarionetteEvents'
1621770280452 Marionette INFO Stopped listening on port 53438
1769590847 mozrunner::runner INFO Running command: "C:\\Program Files\\Mozilla Firefox\\firefox.exe" "--marionette" "-foreground" "-no-remote" "-profile" "C:\\Users\\conso\\AppData\\Local\\Temp\\rust_mozprofileDoSJqP"
1621769591175 Marionette INFO Marionette enabled
console.warn: SearchSettings: "get: No settings file exists, new profile?" (new Error("", "(unknown module)"))
1621769593176 Marionette INFO Listening on port 53530
1621769593512 Marionette WARN TLS certificate errors will be ignored for this session
JavaScript error: https://www.eurobet.it/it/scommesse/#!/calcio/it-serie-a/, line 1600: ReferenceError: _satellite is not defined
JavaScript error: chrome://global/content/elements/browser-custom-element.js, line 1652: Error: permitUnload is already running for this tab.
JavaScript error: chrome://browser/content/browser.js, line 7927: uncaught exception: undefined
###!!! [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
1621770280618 Marionette INFO Stopped listening on port 53530
944804 Marionette WARN TLS certificate errors will be ignored for this session
JavaScript error: https://www.eurobet.it/it/scommesse/#!/calcio/it-serie-a/, line 1600: ReferenceError: _satellite is not defined
1621770280260 Marionette INFO Stopped listening on port 53785
1769992423 mozrunner::runner INFO Running command: "C:\\Program Files\\Mozilla Firefox\\firefox.exe" "--marionette" "-foreground" "-no-remote" "-profile" "C:\\Users\\conso\\AppData\\Local\\Temp\\rust_mozprofileyUYxLO"
1621769992809 Marionette INFO Marionette enabled
console.warn: SearchSettings: "get: No settings file exists, new profile?" (new Error("", "(unknown module)"))
1621769996433 Marionette INFO Listening on port 53897
1621769996633 Marionette WARN TLS certificate errors will be ignored for this session
JavaScript error: https://www.eurobet.it/it/scommesse/#!/calcio/it-serie-a/, line 1600: ReferenceError: _satellite is not defined
JavaScript error: , line 0: NotFoundError: No such JSWindowActor 'MarionetteEvents'
JavaScript error: , line 0: NotFoundError: No such JSWindowActor 'MarionetteEvents'
1621770280202 Marionette INFO Stopped listening on port 53897
1770111040 mozrunner::runner INFO Running command: "C:\\Program Files\\Mozilla Firefox\\firefox.exe" "--marionette" "-foreground" "-no-remote" "-profile" "C:\\Users\\conso\\AppData\\Local\\Temp\\rust_mozprofileG3XFVk"
1621770111504 Marionette INFO Marionette enabled
console.warn: SearchSettings: "get: No settings file exists, new profile?" (new Error("", "(unknown module)"))
1621770116130 Marionette INFO Listening on port 54003
1621770116599 Marionette WARN TLS certificate errors will be ignored for this session
JavaScript error: https://www.eurobet.it/it/scommesse/#!/calcio/it-serie-a/, line 1600: ReferenceError: _satellite is not defined
JavaScript error: , line 0: NotFoundError: No such JSWindowActor 'MarionetteEvents'
JavaScript error: , line 0: NotFoundError: No such JSWindowActor 'MarionetteEvents'
1621770278663 Marionette INFO Stopped listening on port 54003
###!!! [Child][RunMessage] Error: Channel closing: too late to send/recv, messages will be lost
"--marionette" "-foreground" "-no-remote" "-profile" "C:\\Users\\conso\\AppData\\Local\\Temp\\rust_mozprofileHknecE"
1621770165376 Marionette INFO Marionette enabled
console.warn: SearchSettings: "get: No settings file exists, new profile?" (new Error("", "(unknown module)"))
1621770170138 Marionette INFO Listening on port 54102
1621770170571 Marionette WARN TLS certificate errors will be ignored for this session
JavaScript error: https://www.eurobet.it/it/scommesse/#!/calcio/it-serie-a/, line 1600: ReferenceError: _satellite is not defined
1621770279235 Marionette INFO Stopped listening on port 54102
###!!! [Child][RunMessage] Error: Channel closing: too late to send/recv, messages will be lost
"--marionette" "-foreground" "-no-remote" "-profile" "C:\\Users\\conso\\AppData\\Local\\Temp\\rust_mozprofile9GSRng"
1621770238288 Marionette INFO Marionette enabled
console.warn: SearchSettings: "get: No settings file exists, new profile?" (new Error("", "(unknown module)"))
1621770243328 Marionette INFO Listening on port 54198
1621770243885 Marionette WARN TLS certificate errors will be ignored for this session
JavaScript error: https://www.eurobet.it/it/scommesse/#!/calcio/it-serie-a/, line 1600: ReferenceError: _satellite is not defined
1621770279517 Marionette INFO Stopped listening on port 54198
###!!! [Child][RunMessage] Error: Channel closing: too late to send/recv, messages will be lost
1621770447963 geckodriver INFO Listening on 127.0.0.1:54351
1621770451049 mozrunner::runner INFO Running command: "C:\\Program Files\\Mozilla Firefox\\firefox.exe" "--marionette" "-foreground" "-no-remote" "-profile" "C:\\Users\\conso\\AppData\\Local\\Temp\\rust_mozprofileFZHqhv"
1621770451418 Marionette INFO Marionette enabled
console.warn: SearchSettings: "get: No settings file exists, new profile?" (new Error("", "(unknown module)"))
1621770453408 Marionette INFO Listening on port 54359
1621770453695 Marionette WARN TLS certificate errors will be ignored for this session
JavaScript error: https://www.eurobet.it/it/scommesse/#!/calcio/it-serie-a/, line 1600: ReferenceError: _satellite is not defined
console.error: "Error while calling actor 'layout's method 'getGrids'" "node is null"
console.error: (new TypeError("node is null", "resource://devtools/server/actors/layout.js", 502))
###!!! [Child][RunMessage] Error: Channel closing: too late to send/recv, messages will be lost
1621770954152 Marionette INFO Stopped listening on port 54359
###!!! [Child][RunMessage] Error: Channel closing: too late to send/recv, messages will be lost
3946 Marionette INFO Listening on port 54461
console.error: services.settings:
main/cfr-fxa Signature failed TypeError: NetworkError when attempting to fetch resource.
1621770534227 Marionette INFO Stopped listening on port 54461
###!!! [Child][RunMessage] Error: Channel closing: too late to send/recv, messages will be lost
1621770541647 geckodriver INFO Listening on 127.0.0.1:54481
1621770544703 mozrunner::runner INFO Running command: "C:\\Program Files\\Mozilla Firefox\\firefox.exe" "--marionette" "-foreground" "-no-remote" "-profile" "C:\\Users\\conso\\AppData\\Local\\Temp\\rust_mozprofile29lMTR"
1621770545152 Marionette INFO Marionette enabled
console.warn: SearchSettings: "get: No settings file exists, new profile?" (new Error("", "(unknown module)"))
1621770547258 Marionette INFO Listening on port 54489
1621770547387 Marionette WARN TLS certificate errors will be ignored for this session
JavaScript error: https://www.eurobet.it/it/scommesse/#!/calcio/it-serie-a/, line 1600: ReferenceError: _satellite is not defined
JavaScript error: , line 0: NotFoundError: No such JSWindowActor 'MarionetteEvents'
1621770953581 Marionette INFO Stopped listening on port 54489
1770638200 mozrunner::runner INFO Running command: "C:\\Program Files\\Mozilla Firefox\\firefox.exe" "--marionette" "-foreground" "-no-remote" "-profile" "C:\\Users\\conso\\AppData\\Local\\Temp\\rust_mozprofilebB60bU"
1621770638512 Marionette INFO Marionette enabled
console.warn: SearchSettings: "get: No settings file exists, new profile?" (new Error("", "(unknown module)"))
1621770640740 Marionette INFO Listening on port 54620
1621770640845 Marionette WARN TLS certificate errors will be ignored for this session
JavaScript error: https://www.eurobet.it/it/scommesse/#!/calcio/it-serie-a/, line 1600: ReferenceError: _satellite is not defined
JavaScript error: , line 0: NotFoundError: No such JSWindowActor 'MarionetteEvents'
1621770652070 Marionette INFO Stopped listening on port 54620
###!!! [Child][RunMessage] Error: Channel closing: too late to send/recv, messages will be lost
1621770735105 geckodriver INFO Listening on 127.0.0.1:54706
1621770738167 mozrunner::runner INFO Running command: "C:\\Program Files\\Mozilla Firefox\\firefox.exe" "--marionette" "-foreground" "-no-remote" "-profile" "C:\\Users\\conso\\AppData\\Local\\Temp\\rust_mozprofileN25MPW"
1621770738504 Marionette INFO Marionette enabled
console.warn: SearchSettings: "get: No settings file exists, new profile?" (new Error("", "(unknown module)"))
1621770740637 Marionette INFO Listening on port 54714
1621770740829 Marionette WARN TLS certificate errors will be ignored for this session
JavaScript error: https://www.eurobet.it/it/scommesse/#!/calcio/it-serie-a/, line 1600: ReferenceError: _satellite is not defined
JavaScript error: , line 0: NotFoundError: No such JSWindowActor 'MarionetteEvents'
1621770953864 Marionette INFO Stopped listening on port 54714
1770758793 mozrunner::runner INFO Running command: "C:\\Program Files\\Mozilla Firefox\\firefox.exe" "--marionette" "-foreground" "-no-remote" "-profile" "C:\\Users\\conso\\AppData\\Local\\Temp\\rust_mozprofileTrSqmc"
1621770759140 Marionette INFO Marionette enabled
console.warn: SearchSettings: "get: No settings file exists, new profile?" (new Error("", "(unknown module)"))
1621770762280 Marionette INFO Listening on port 54809
1621770762505 Marionette WARN TLS certificate errors will be ignored for this session
JavaScript error: https://www.eurobet.it/it/scommesse/#!/calcio/it-serie-a/, line 1600: ReferenceError: _satellite is not defined
1621770775285 Marionette INFO Stopped listening on port 54809
###!!! [Child][RunMessage] Error: Channel closing: too late to send/recv, messages will be lost
1621770852340 geckodriver INFO Listening on 127.0.0.1:54901
1621770855418 mozrunner::runner INFO Running command: "C:\\Program Files\\Mozilla Firefox\\firefox.exe" "--marionette" "-foreground" "-no-remote" "-profile" "C:\\Users\\conso\\AppData\\Local\\Temp\\rust_mozprofileOe2UQr"
1621770855790 Marionette INFO Marionette enabled
console.warn: SearchSettings: "get: No settings file exists, new profile?" (new Error("", "(unknown module)"))
1621770858775 Marionette INFO Listening on port 54910
1621770859104 Marionette WARN TLS certificate errors will be ignored for this session
JavaScript error: https://www.eurobet.it/it/scommesse/#!/calcio/it-serie-a/, line 1600: ReferenceError: _satellite is not defined
JavaScript error: , line 0: NotFoundError: No such JSWindowActor 'MarionetteEvents'
1621770954250 Marionette INFO Stopped listening on port 54910
1770884324 mozrunner::runner INFO Running command: "C:\\Program Files\\Mozilla Firefox\\firefox.exe" "--marionette" "-foreground" "-no-remote" "-profile" "C:\\Users\\conso\\AppData\\Local\\Temp\\rust_mozprofile71U1LK"
1621770884671 Marionette INFO Marionette enabled
console.warn: SearchSettings: "get: No settings file exists, new profile?" (new Error("", "(unknown module)"))
1621770887562 Marionette INFO Listening on port 54996
1621770888041 Marionette WARN TLS certificate errors will be ignored for this session
JavaScript error: https://www.eurobet.it/it/scommesse/#!/calcio/it-serie-a/, line 1600: ReferenceError: _satellite is not defined
1621770956716 Marionette INFO Stopped listening on port 54996
###!!! [Child][RunMessage] Error: Channel closing: too late to send/recv, messages will be lost
1621775512713 geckodriver INFO Listening on 127.0.0.1:57931
1621775515841 mozrunner::runner INFO Running command: "C:\\Program Files\\Mozilla Firefox\\firefox.exe" "--marionette" "-foreground" "-no-remote" "-profile" "C:\\Users\\conso\\AppData\\Local\\Temp\\rust_mozprofileljzWFV"
1621775516220 Marionette INFO Marionette enabled
console.warn: SearchSettings: "get: No settings file exists, new profile?" (new Error("", "(unknown module)"))
1621775518227 Marionette INFO Listening on port 57940
1621775518515 Marionette WARN TLS certificate errors will be ignored for this session
JavaScript error: https://www.eurobet.it/it/scommesse/#!/calcio/it-serie-a/, line 1600: ReferenceError: _satellite is not defined
JavaScript error: , line 0: NotFoundError: No such JSWindowActor 'MarionetteEvents'
JavaScript error: , line 0: NotFoundError: No such JSWindowActor 'MarionetteEvents'
1621775584321 Marionette INFO Stopped listening on port 57940
###!!! [Child][RunMessage] Error: Channel closing: too late to send/recv, messages will be lost
"--marionette" "-foreground" "-no-remote" "-profile" "C:\\Users\\conso\\AppData\\Local\\Temp\\rust_mozprofileuqrdAc"
1621775556783 Marionette INFO Marionette enabled
console.warn: SearchSettings: "get: No settings file exists, new profile?" (new Error("", "(unknown module)"))
1621775558976 Marionette INFO Listening on port 58029
1621775559100 Marionette WARN TLS certificate errors will be ignored for this session
1621775579657 Marionette INFO Stopped listening on port 58029
###!!! [Child][RunMessage] Error: Channel closing: too late to send/recv, messages will be lost
1621775586691 geckodriver INFO Listening on 127.0.0.1:58077
1621775589770 mozrunner::runner INFO Running command: "C:\\Program Files\\Mozilla Firefox\\firefox.exe" "--marionette" "-foreground" "-no-remote" "-profile" "C:\\Users\\conso\\AppData\\Local\\Temp\\rust_mozprofile4jDni5"
1621775590101 Marionette INFO Marionette enabled
console.warn: SearchSettings: "get: No settings file exists, new profile?" (new Error("", "(unknown module)"))
1621775591998 Marionette INFO Listening on port 58085
1621775592445 Marionette WARN TLS certificate errors will be ignored for this session
JavaScript error: https://www.eurobet.it/etc/analytics/_jcr_content/analytics.sitecatalyst.js, line 2: TypeError: CQ_Analytics.registerAfterCallback is not a function
JavaScript error: https://www.eurobet.it/etc/clientlibs/sitecatalyst/plugins.min.js, line 1: TypeError: s is undefined
JavaScript error: https://www.eurobet.it/it/scommesse/#!/calcio/it-serie-a/, line 1600: ReferenceError: _satellite is not defined
JavaScript error: https://www.eurobet.it/it/scommesse/#!/calcio/it-serie-a/, line 1560: TypeError: s is undefined
1621775624488 Marionette INFO Stopped listening on port 58085
###!!! [Child][RunMessage] Error: Channel closing: too late to send/recv, messages will be lost
1621775687319 geckodriver INFO Listening on 127.0.0.1:58167
1621775690402 mozrunner::runner INFO Running command: "C:\\Program Files\\Mozilla Firefox\\firefox.exe" "--marionette" "-foreground" "-no-remote" "-profile" "C:\\Users\\conso\\AppData\\Local\\Temp\\rust_mozprofileAt7hSd"
1621775690742 Marionette INFO Marionette enabled
console.warn: SearchSettings: "get: No settings file exists, new profile?" (new Error("", "(unknown module)"))
1621775692870 Marionette INFO Listening on port 58175
1621775693068 Marionette WARN TLS certificate errors will be ignored for this session
JavaScript error: https://www.eurobet.it/it/scommesse/#!/calcio/it-serie-a/, line 1600: ReferenceError: _satellite is not defined
1621775881575 Marionette INFO Stopped listening on port 58175
###!!! [Child][RunMessage] Error: Channel closing: too late to send/recv, messages will be lost
"--marionette" "-foreground" "-no-remote" "-profile" "C:\\Users\\conso\\AppData\\Local\\Temp\\rust_mozprofileXI7ytv"
1621775717628 Marionette INFO Marionette enabled
console.warn: SearchSettings: "get: No settings file exists, new profile?" (new Error("", "(unknown module)"))
1621775719534 Marionette INFO Listening on port 58260
1621775719939 Marionette WARN TLS certificate errors will be ignored for this session
JavaScript error: https://www.eurobet.it/it/scommesse/#!/calcio/it-serie-a/, line 1600: ReferenceError: _satellite is not defined
1621775881998 Marionette INFO Stopped listening on port 58260
###!!! [Child][RunMessage] Error: Channel closing: too late to send/recv, messages will be lost
"--marionette" "-foreground" "-no-remote" "-profile" "C:\\Users\\conso\\AppData\\Local\\Temp\\rust_mozprofileS4askL"
1621775745699 Marionette INFO Marionette enabled
console.warn: SearchSettings: "get: No settings file exists, new profile?" (new Error("", "(unknown module)"))
1621775748018 Marionette INFO Listening on port 58351
1621775748056 Marionette WARN TLS certificate errors will be ignored for this session
JavaScript error: https://www.eurobet.it/it/scommesse/#!/calcio/it-serie-a/, line 1600: ReferenceError: _satellite is not defined
JavaScript error: , line 0: NotFoundError: No such JSWindowActor 'MarionetteEvents'
JavaScript error: , line 0: NotFoundError: No such JSWindowActor 'MarionetteEvents'
1621775882376 Marionette INFO Stopped listening on port 58351
###!!! [Child][RunMessage] Error: Channel closing: too late to send/recv, messages will be lost
"--marionette" "-foreground" "-no-remote" "-profile" "C:\\Users\\conso\\AppData\\Local\\Temp\\rust_mozprofileG6BPQs"
1621775781725 Marionette INFO Marionette enabled
console.warn: SearchSettings: "get: No settings file exists, new profile?" (new Error("", "(unknown module)"))
1621775784227 Marionette INFO Listening on port 58438
1621775784593 Marionette WARN TLS certificate errors will be ignored for this session
JavaScript error: https://www.eurobet.it/it/scommesse/#!/calcio/it-serie-a/, line 1600: ReferenceError: _satellite is not defined
JavaScript error: resource://devtools/shared/protocol/Front.js, line 99: Error: Connection closed, pending request to server0.conn0.child4/domnode1639, type setNodeValue failed
Request stack:
request@resource://devtools/shared/protocol/Front.js:285:14
generateRequestMethods/</frontProto[name]@resource://devtools/shared/protocol/Front/FrontClassWithSpec.js:46:19
showTextEditor/done/</<@resource://devtools/client/inspector/markup/views/text-editor.js:101:25
do@resource://devtools/client/shared/undo.js:70:16
endBatch@resource://devtools/client/shared/undo.js:81:11
do@resource://devtools/client/shared/undo.js:93:10
showTextEditor/done/<@resource://devtools/client/inspector/markup/views/text-editor.js:99:31
process@resource://gre/modules/Promise-backend.js:961:38
walkerLoop@resource://gre/modules/Promise-backend.js:845:29
Promise*scheduleWalkerLoop@resource://gre/modules/Promise-backend.js:775:19
schedulePromise@resource://gre/modules/Promise-backend.js:809:12
completePromise@resource://gre/modules/Promise-backend.js:741:12
1621775940020 Marionette INFO Stopped listening on port 58438
###!!! [Child][RunMessage] Error: Channel closing: too late to send/recv, messages will be lost
1621776136870 geckodriver INFO Listening on 127.0.0.1:58646
1621776139985 mozrunner::runner INFO Running command: "C:\\Program Files\\Mozilla Firefox\\firefox.exe" "--marionette" "-foreground" "-no-remote" "-profile" "C:\\Users\\conso\\AppData\\Local\\Temp\\rust_mozprofileB22rzU"
1621776140324 Marionette INFO Marionette enabled
console.warn: SearchSettings: "get: No settings file exists, new profile?" (new Error("", "(unknown module)"))
1621776142372 Marionette INFO Listening on port 58654
1621776142676 Marionette WARN TLS certificate errors will be ignored for this session
JavaScript error: https://www.eurobet.it/it/scommesse/#!/calcio/it-serie-a/, line 1600: ReferenceError: _satellite is not defined
1621776161672 Marionette INFO Stopped listening on port 58654
1621776821777 geckodriver INFO Listening on 127.0.0.1:59017
1621776824818 mozrunner::runner INFO Running command: "C:\\Program Files\\Mozilla Firefox\\firefox.exe" "--marionette" "-foreground" "-no-remote" "-profile" "C:\\Users\\conso\\AppData\\Local\\Temp\\rust_mozprofile2Smon5"
1621776825122 Marionette INFO Marionette enabled
console.warn: SearchSettings: "get: No settings file exists, new profile?" (new Error("", "(unknown module)"))
1621776826896 Marionette INFO Listening on port 59025
1621776826960 Marionette WARN TLS certificate errors will be ignored for this session
JavaScript error: https://www.eurobet.it/it/scommesse/#!/calcio/it-serie-a/, line 1600: ReferenceError: _satellite is not defined
1621777076543 Marionette INFO Stopped listening on port 59025
1776877734 mozrunner::runner INFO Running command: "C:\\Program Files\\Mozilla Firefox\\firefox.exe" "--marionette" "-foreground" "-no-remote" "-profile" "C:\\Users\\conso\\AppData\\Local\\Temp\\rust_mozprofileguOEvH"
1621776878036 Marionette INFO Marionette enabled
console.warn: SearchSettings: "get: No settings file exists, new profile?" (new Error("", "(unknown module)"))
1621776879918 Marionette INFO Listening on port 59122
1621776880380 Marionette WARN TLS certificate errors will be ignored for this session
JavaScript error: https://www.eurobet.it/it/scommesse/#!/calcio/it-serie-a/, line 1600: ReferenceError: _satellite is not defined
###!!! [Child][RunMessage] Error: Channel closing: too late to send/recv, messages will be lost
1621777074399 Marionette INFO Stopped listening on port 59122
"--marionette" "-foreground" "-no-remote" "-profile" "C:\\Users\\conso\\AppData\\Local\\Temp\\rust_mozprofilekWATvR"
1621776905320 Marionette INFO Marionette enabled
console.warn: SearchSettings: "get: No settings file exists, new profile?" (new Error("", "(unknown module)"))
1621776907345 Marionette INFO Listening on port 59208
1621776907645 Marionette WARN TLS certificate errors will be ignored for this session
JavaScript error: https://www.eurobet.it/it/scommesse/#!/calcio/it-serie-a/, line 1600: ReferenceError: _satellite is not defined
1621777075764 Marionette INFO Stopped listening on port 59208
1776964493 mozrunner::runner INFO Running command: "C:\\Program Files\\Mozilla Firefox\\firefox.exe" "--marionette" "-foreground" "-no-remote" "-profile" "C:\\Users\\conso\\AppData\\Local\\Temp\\rust_mozprofilexgXGbB"
1621776964865 Marionette INFO Marionette enabled
console.warn: SearchSettings: "get: No settings file exists, new profile?" (new Error("", "(unknown module)"))
1621776966966 Marionette INFO Listening on port 59301
1621776967178 Marionette WARN TLS certificate errors will be ignored for this session
JavaScript error: https://www.eurobet.it/it/scommesse/#!/calcio/it-serie-a/, line 1600: ReferenceError: _satellite is not defined
1621777075784 Marionette INFO Stopped listening on port 59301
1777031583 mozrunner::runner INFO Running command: "C:\\Program Files\\Mozilla Firefox\\firefox.exe" "--marionette" "-foreground" "-no-remote" "-profile" "C:\\Users\\conso\\AppData\\Local\\Temp\\rust_mozprofilecj88Dw"
1621777031917 Marionette INFO Marionette enabled
console.warn: SearchSettings: "get: No settings file exists, new profile?" (new Error("", "(unknown module)"))
1621777034348 Marionette INFO Listening on port 59386
1621777034747 Marionette WARN TLS certificate errors will be ignored for this session
JavaScript error: https://www.eurobet.it/it/scommesse/#!/calcio/it-serie-a/, line 1600: ReferenceError: _satellite is not defined
1621777037627 Marionette WARN Ignoring event 'DOMContentLoaded' because document has an invalid readyState of 'complete'.
###!!! [Child][RunMessage] Error: Channel closing: too late to send/recv, messages will be lost
1621777075777 Marionette INFO Stopped listening on port 59386
###!!! [Child][RunMessage] Error: Channel closing: too late to send/recv, messages will be lost
zprofilexwe6ZO"
1621777070071 Marionette INFO Marionette enabled
console.warn: SearchSettings: "get: No settings file exists, new profile?" (new Error("", "(unknown module)"))
1621777073109 Marionette INFO Listening on port 59483
1621777073391 Marionette WARN TLS certificate errors will be ignored for this session
JavaScript error: https://www.eurobet.it/it/scommesse/#!/calcio/it-serie-a/, line 1600: ReferenceError: _satellite is not defined
JavaScript error: resource://gre/modules/AsyncShutdown.jsm, line 575: NotFoundError: No such JSWindowActor 'MarionetteEvents'
JavaScript error: resource://gre/modules/AsyncShutdown.jsm, line 575: NotFoundError: No such JSWindowActor 'MarionetteEvents'
JavaScript error: https://www.eurobet.it/etc/clientlibs/foundation/personalization/kernel.min.js, line 562: NS_ERROR_NOT_INITIALIZED:
JavaScript error: https://www.eurobet.it/etc/designs/eurobet/clientlib-all.min.js, line 5059: NS_ERROR_NOT_INITIALIZED:
JavaScript error: , line 0: NetworkError: A network error occurred.
JavaScript error: resource://gre/modules/Sqlite.jsm, line 1030: Error: Sqlite.jsm has been shutdown. Cannot open connection to: C:\Users\conso\AppData\Local\Temp\rust_mozprofilexwe6ZO\protections.sqlite
1621777077757 Marionette INFO Stopped listening on port 59483
###!!! [Child][RunMessage] Error: Channel closing: too late to send/recv, messages will be lost
1621777085724 geckodriver INFO Listening on 127.0.0.1:59546
1621777088844 mozrunner::runner INFO Running command: "C:\\Program Files\\Mozilla Firefox\\firefox.exe" "--marionette" "-foreground" "-no-remote" "-profile" "C:\\Users\\conso\\AppData\\Local\\Temp\\rust_mozprofile1Dg1Ca"
1621777089151 Marionette INFO Marionette enabled
console.warn: SearchSettings: "get: No settings file exists, new profile?" (new Error("", "(unknown module)"))
1621777091020 Marionette INFO Listening on port 59554
1621777091541 Marionette WARN TLS certificate errors will be ignored for this session
JavaScript error: https://www.eurobet.it/it/scommesse/#!/calcio/it-serie-a/, line 1600: ReferenceError: _satellite is not defined
1621777960277 Marionette INFO Stopped listening on port 59554
1777112753 mozrunner::runner INFO Running command: "C:\\Program Files\\Mozilla Firefox\\firefox.exe" "--marionette" "-foreground" "-no-remote" "-profile" "C:\\Users\\conso\\AppData\\Local\\Temp\\rust_mozprofile1KYlMn"
1621777113085 Marionette INFO Marionette enabled
console.warn: SearchSettings: "get: No settings file exists, new profile?" (new Error("", "(unknown module)"))
1621777115325 Marionette INFO Listening on port 59642
1621777115425 Marionette WARN TLS certificate errors will be ignored for this session
JavaScript error: https://www.eurobet.it/it/scommesse/#!/calcio/it-serie-a/, line 1600: ReferenceError: _satellite is not defined
1621777960559 Marionette INFO Stopped listening on port 59642
1777154934 mozrunner::runner INFO Running command: "C:\\Program Files\\Mozilla Firefox\\firefox.exe" "--marionette" "-foreground" "-no-remote" "-profile" "C:\\Users\\conso\\AppData\\Local\\Temp\\rust_mozprofileoGSTMI"
1621777155273 Marionette INFO Marionette enabled
console.warn: SearchSettings: "get: No settings file exists, new profile?" (new Error("", "(unknown module)"))
1621777157322 Marionette INFO Listening on port 59738
1621777157619 Marionette WARN TLS certificate errors will be ignored for this session
JavaScript error: https://www.eurobet.it/it/scommesse/#!/calcio/it-serie-a/, line 1600: ReferenceError: _satellite is not defined
1621777960822 Marionette INFO Stopped listening on port 59738
1777273783 mozrunner::runner INFO Running command: "C:\\Program Files\\Mozilla Firefox\\firefox.exe" "--marionette" "-foreground" "-no-remote" "-profile" "C:\\Users\\conso\\AppData\\Local\\Temp\\rust_mozprofileDjweL4"
1621777274160 Marionette INFO Marionette enabled
console.warn: SearchSettings: "get: No settings file exists, new profile?" (new Error("", "(unknown module)"))
1621777276244 Marionette INFO Listening on port 59840
1621777276461 Marionette WARN TLS certificate errors will be ignored for this session
JavaScript error: https://www.eurobet.it/it/scommesse/#!/calcio/it-serie-b1, line 1600: ReferenceError: _satellite is not defined
1621777965362 Marionette INFO Stopped listening on port 59840
###!!! [Child][RunMessage] Error: Channel closing: too late to send/recv, messages will be lost
"--marionette" "-foreground" "-no-remote" "-profile" "C:\\Users\\conso\\AppData\\Local\\Temp\\rust_mozprofileIRNjm4"
1621777417839 Marionette INFO Marionette enabled
console.warn: SearchSettings: "get: No settings file exists, new profile?" (new Error("", "(unknown module)"))
1621777421227 Marionette INFO Listening on port 59989
1621777421678 Marionette WARN TLS certificate errors will be ignored for this session
JavaScript error: https://www.eurobet.it/it/scommesse/#!/calcio/it-serie-a, line 1600: ReferenceError: _satellite is not defined
1621777968336 Marionette INFO Stopped listening on port 59989
###!!! [Child][RunMessage] Error: Channel closing: too late to send/recv, messages will be lost
1621778178497 geckodriver INFO Listening on 127.0.0.1:60211
1621778181642 mozrunner::runner INFO Running command: "C:\\Program Files\\Mozilla Firefox\\firefox.exe" "--marionette" "-foreground" "-no-remote" "-profile" "C:\\Users\\conso\\AppData\\Local\\Temp\\rust_mozprofiledcmqNs"
1621778181975 Marionette INFO Marionette enabled
console.warn: SearchSettings: "get: No settings file exists, new profile?" (new Error("", "(unknown module)"))
1621778183730 Marionette INFO Listening on port 60220
1621778183820 Marionette WARN TLS certificate errors will be ignored for this session
JavaScript error: https://www.eurobet.it/it/scommesse/#!/calcio/it-serie-a, line 1600: ReferenceError: _satellite is not defined
1621778192071 Marionette INFO Stopped listening on port 60220
###!!! [Child][RunMessage] Error: Channel closing: too late to send/recv, messages will be lost
1621778248456 geckodriver INFO Listening on 127.0.0.1:60303
1621778251561 mozrunner::runner INFO Running command: "C:\\Program Files\\Mozilla Firefox\\firefox.exe" "--marionette" "-foreground" "-no-remote" "-profile" "C:\\Users\\conso\\AppData\\Local\\Temp\\rust_mozprofilekXkVBI"
1621778251871 Marionette INFO Marionette enabled
console.warn: SearchSettings: "get: No settings file exists, new profile?" (new Error("", "(unknown module)"))
1621778253912 Marionette INFO Listening on port 60311
1621778254238 Marionette WARN TLS certificate errors will be ignored for this session
JavaScript error: https://www.eurobet.it/it/scommesse/#!/calcio/it-serie-a, line 1600: ReferenceError: _satellite is not defined
1621778744204 Marionette INFO Stopped listening on port 60311
1778427405 mozrunner::runner INFO Running command: "C:\\Program Files\\Mozilla Firefox\\firefox.exe" "--marionette" "-foreground" "-no-remote" "-profile" "C:\\Users\\conso\\AppData\\Local\\Temp\\rust_mozprofileLoZiC3"
1621778427728 Marionette INFO Marionette enabled
console.warn: SearchSettings: "get: No settings file exists, new profile?" (new Error("", "(unknown module)"))
1621778429646 Marionette INFO Listening on port 60408
1621778430083 Marionette WARN TLS certificate errors will be ignored for this session
JavaScript error: https://www.eurobet.it/it/scommesse/#!/calcio/it-serie-a, line 1600: ReferenceError: _satellite is not defined
1621778735967 Marionette INFO Stopped listening on port 60408
1778522856 mozrunner::runner INFO Running command: "C:\\Program Files\\Mozilla Firefox\\firefox.exe" "--marionette" "-foreground" "-no-remote" "-profile" "C:\\Users\\conso\\AppData\\Local\\Temp\\rust_mozprofileHdzzJf"
1621778523181 Marionette INFO Marionette enabled
console.warn: SearchSettings: "get: No settings file exists, new profile?" (new Error("", "(unknown module)"))
1621778525604 Marionette INFO Listening on port 60510
1621778526032 Marionette WARN TLS certificate errors will be ignored for this session
JavaScript error: https://www.eurobet.it/it/scommesse/#!/calcio/it-serie-a, line 1600: ReferenceError: _satellite is not defined
###!!! [Child][RunMessage] Error: Channel closing: too late to send/recv, messages will be lost
1621778744342 Marionette INFO Stopped listening on port 60510
###!!! [Child][RunMessage] Error: Channel closing: too late to send/recv, messages will be lost
zprofileZFyajq"
1621778559469 Marionette INFO Marionette enabled
console.warn: SearchSettings: "get: No settings file exists, new profile?" (new Error("", "(unknown module)"))
1621778561548 Marionette INFO Listening on port 60604
1621778561819 Marionette WARN TLS certificate errors will be ignored for this session
JavaScript error: https://www.eurobet.it/it/scommesse/#!/calcio/it-serie-a, line 1600: ReferenceError: _satellite is not defined
1621778573844 Marionette INFO Stopped listening on port 60604
1621778600074 geckodriver INFO Listening on 127.0.0.1:60681
1621778603150 mozrunner::runner INFO Running command: "C:\\Program Files\\Mozilla Firefox\\firefox.exe" "--marionette" "-foreground" "-no-remote" "-profile" "C:\\Users\\conso\\AppData\\Local\\Temp\\rust_mozprofileKpfxlk"
1621778603485 Marionette INFO Marionette enabled
console.warn: SearchSettings: "get: No settings file exists, new profile?" (new Error("", "(unknown module)"))
1621778605528 Marionette INFO Listening on port 60689
1621778605832 Marionette WARN TLS certificate errors will be ignored for this session
JavaScript error: https://www.eurobet.it/it/scommesse/#!/calcio/it-serie-a, line 1600: ReferenceError: _satellite is not defined
1621778735389 Marionette INFO Stopped listening on port 60689
###!!! [Child][RunMessage] Error: Channel closing: too late to send/recv, messages will be lost
"--marionette" "-foreground" "-no-remote" "-profile" "C:\\Users\\conso\\AppData\\Local\\Temp\\rust_mozprofilefgoT7K"
1621778673755 Marionette INFO Marionette enabled
console.warn: SearchSettings: "get: No settings file exists, new profile?" (new Error("", "(unknown module)"))
1621778675944 Marionette INFO Listening on port 60783
1621778676069 Marionette WARN TLS certificate errors will be ignored for this session
JavaScript error: https://www.eurobet.it/it/scommesse/#!/calcio/it-serie-a, line 1600: ReferenceError: _satellite is not defined
1621778734979 Marionette INFO Stopped listening on port 60783
###!!! [Child][RunMessage] Error: Channel closing: too late to send/recv, messages will be lost
"--marionette" "-foreground" "-no-remote" "-profile" "C:\\Users\\conso\\AppData\\Local\\Temp\\rust_mozprofile24Wled"
1621778701216 Marionette INFO Marionette enabled
console.warn: SearchSettings: "get: No settings file exists, new profile?" (new Error("", "(unknown module)"))
1621778704808 Marionette INFO Listening on port 60872
1621778705024 Marionette WARN TLS certificate errors will be ignored for this session
JavaScript error: https://www.eurobet.it/it/scommesse/#!/calcio/it-serie-a, line 1600: ReferenceError: _satellite is not defined
1621778733579 Marionette INFO Stopped listening on port 60872
###!!! [Child][RunMessage] Error: Channel closing: too late to send/recv, messages will be lost
1621778749527 geckodriver INFO Listening on 127.0.0.1:61009
1621778752597 mozrunner::runner INFO Running command: "C:\\Program Files\\Mozilla Firefox\\firefox.exe" "--marionette" "-foreground" "-no-remote" "-profile" "C:\\Users\\conso\\AppData\\Local\\Temp\\rust_mozprofileEBfT6c"
1621778753015 Marionette INFO Marionette enabled
console.warn: SearchSettings: "get: No settings file exists, new profile?" (new Error("", "(unknown module)"))
1621778756208 Marionette INFO Listening on port 61017
1621778937418 Marionette INFO Stopped listening on port 61017