-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathgeckodriver.log
3765 lines (2856 loc) · 254 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
1640765495591 geckodriver INFO Listening on 127.0.0.1:55901
1640765495595 mozrunner::runner INFO Running command: "/usr/bin/firefox" "--marionette" "--remote-debugging-port" "53349" "-no-remote" "-profile" "/tmp/rust_mozprofilel1TGWH"
(firefox:6217): Gdk-WARNING **: 13:41:35.634: Cannot transform xsetting gtk-xft-dpi of type gchararray to type gint
(firefox:6217): Gdk-WARNING **: 13:41:35.679: Cannot transform xsetting gtk-xft-dpi of type gchararray to type gint
(firefox:6217): Gdk-WARNING **: 13:41:35.679: Cannot transform xsetting gtk-enable-input-feedback-sounds of type gchararray to type gboolean
(firefox:6217): Gdk-WARNING **: 13:41:35.679: Cannot transform xsetting gtk-enable-event-sounds of type gchararray to type gboolean
(firefox:6217): Gdk-WARNING **: 13:41:35.679: Cannot transform xsetting gtk-enable-input-feedback-sounds of type gchararray to type gboolean
ATTENTION: default value of option mesa_glthread overridden by environment.
1640765496127 Marionette INFO Marionette enabled
console.warn: SearchSettings: "get: No settings file exists, new profile?" (new NotFoundError("Could not open the file at /tmp/rust_mozprofilel1TGWH/search.json.mozlz4", (void 0)))
DevTools listening on ws://localhost:53349/devtools/browser/e898992d-52b0-4ec7-94f7-2fdbbb5fd172
1640765497294 Marionette INFO Listening on port 40843
1640765497324 RemoteAgent WARN TLS certificate errors will be ignored for this session
1640765523098 geckodriver INFO Listening on 127.0.0.1:38183
1640765523103 mozrunner::runner INFO Running command: "/usr/bin/firefox" "--marionette" "--remote-debugging-port" "47249" "-no-remote" "-profile" "/tmp/rust_mozprofileKcYS7O"
(firefox:6597): Gdk-WARNING **: 13:42:03.135: Cannot transform xsetting gtk-xft-dpi of type gchararray to type gint
(firefox:6597): Gdk-WARNING **: 13:42:03.176: Cannot transform xsetting gtk-xft-dpi of type gchararray to type gint
(firefox:6597): Gdk-WARNING **: 13:42:03.176: Cannot transform xsetting gtk-enable-input-feedback-sounds of type gchararray to type gboolean
(firefox:6597): Gdk-WARNING **: 13:42:03.176: Cannot transform xsetting gtk-enable-event-sounds of type gchararray to type gboolean
(firefox:6597): Gdk-WARNING **: 13:42:03.177: Cannot transform xsetting gtk-enable-input-feedback-sounds of type gchararray to type gboolean
ATTENTION: default value of option mesa_glthread overridden by environment.
1640765523568 Marionette INFO Marionette enabled
console.warn: SearchSettings: "get: No settings file exists, new profile?" (new NotFoundError("Could not open the file at /tmp/rust_mozprofileKcYS7O/search.json.mozlz4", (void 0)))
DevTools listening on ws://localhost:47249/devtools/browser/53e4e55d-f04b-47ff-b743-d0cfafa8c119
1640765524522 Marionette INFO Listening on port 39387
1640765524639 RemoteAgent WARN TLS certificate errors will be ignored for this session
1640765526192 Marionette INFO Stopped listening on port 40843
console.warn: TopSitesFeed: Failed to fetch data from Contile server: NetworkError when attempting to fetch resource.
Exiting due to channel error.
Exiting due to channel error.
Exiting due to channel error.
1640765537870 geckodriver INFO Listening on 127.0.0.1:59455
1640765537875 mozrunner::runner INFO Running command: "/usr/bin/firefox" "--marionette" "--remote-debugging-port" "37829" "-no-remote" "-profile" "/tmp/rust_mozprofilecr72cK"
(firefox:7003): Gdk-WARNING **: 13:42:17.909: Cannot transform xsetting gtk-xft-dpi of type gchararray to type gint
(firefox:7003): Gdk-WARNING **: 13:42:17.952: Cannot transform xsetting gtk-xft-dpi of type gchararray to type gint
(firefox:7003): Gdk-WARNING **: 13:42:17.952: Cannot transform xsetting gtk-enable-input-feedback-sounds of type gchararray to type gboolean
(firefox:7003): Gdk-WARNING **: 13:42:17.952: Cannot transform xsetting gtk-enable-event-sounds of type gchararray to type gboolean
(firefox:7003): Gdk-WARNING **: 13:42:17.953: Cannot transform xsetting gtk-enable-input-feedback-sounds of type gchararray to type gboolean
ATTENTION: default value of option mesa_glthread overridden by environment.
1640765538345 Marionette INFO Marionette enabled
console.warn: SearchSettings: "get: No settings file exists, new profile?" (new NotFoundError("Could not open the file at /tmp/rust_mozprofilecr72cK/search.json.mozlz4", (void 0)))
DevTools listening on ws://localhost:37829/devtools/browser/1d055cdc-10ec-4db0-b9f7-c28eab808911
1640765539711 Marionette INFO Listening on port 34237
1640765539810 RemoteAgent WARN TLS certificate errors will be ignored for this session
1640765553650 Marionette INFO Stopped listening on port 34237
1640765639046 geckodriver INFO Listening on 127.0.0.1:38535
1640765639050 mozrunner::runner INFO Running command: "/usr/bin/firefox" "--marionette" "--remote-debugging-port" "35997" "-no-remote" "-profile" "/tmp/rust_mozprofilerCEMgd"
(firefox:7519): Gdk-WARNING **: 13:43:59.082: Cannot transform xsetting gtk-xft-dpi of type gchararray to type gint
(firefox:7519): Gdk-WARNING **: 13:43:59.130: Cannot transform xsetting gtk-xft-dpi of type gchararray to type gint
(firefox:7519): Gdk-WARNING **: 13:43:59.130: Cannot transform xsetting gtk-enable-input-feedback-sounds of type gchararray to type gboolean
(firefox:7519): Gdk-WARNING **: 13:43:59.130: Cannot transform xsetting gtk-enable-event-sounds of type gchararray to type gboolean
(firefox:7519): Gdk-WARNING **: 13:43:59.131: Cannot transform xsetting gtk-enable-input-feedback-sounds of type gchararray to type gboolean
ATTENTION: default value of option mesa_glthread overridden by environment.
1640765639521 Marionette INFO Marionette enabled
console.warn: SearchSettings: "get: No settings file exists, new profile?" (new NotFoundError("Could not open the file at /tmp/rust_mozprofilerCEMgd/search.json.mozlz4", (void 0)))
DevTools listening on ws://localhost:35997/devtools/browser/e057f606-dda1-4599-9dbd-466215d1bad6
1640765640687 Marionette INFO Listening on port 39023
1640765640766 RemoteAgent WARN TLS certificate errors will be ignored for this session
1640765654224 Marionette INFO Stopped listening on port 39023
console.warn: TopSitesFeed: Failed to fetch data from Contile server: NetworkError when attempting to fetch resource.
JavaScript error: chrome://remote/content/marionette/cert.js, line 55: NS_ERROR_NOT_AVAILABLE: Component returned failure code: 0x80040111 (NS_ERROR_NOT_AVAILABLE) [nsICertOverrideService.setDisableAllSecurityChecksAndLetAttackersInterceptMyData]
###!!! [Parent][RunMessage] Error: Channel closing: too late to send/recv, messages will be lost
1640765657017 geckodriver INFO Listening on 127.0.0.1:44781
1640765657021 mozrunner::runner INFO Running command: "/usr/bin/firefox" "--marionette" "--remote-debugging-port" "40071" "-no-remote" "-profile" "/tmp/rust_mozprofilejiU1io"
(firefox:7919): Gdk-WARNING **: 13:44:17.054: Cannot transform xsetting gtk-xft-dpi of type gchararray to type gint
(firefox:7919): Gdk-WARNING **: 13:44:17.110: Cannot transform xsetting gtk-xft-dpi of type gchararray to type gint
(firefox:7919): Gdk-WARNING **: 13:44:17.110: Cannot transform xsetting gtk-enable-input-feedback-sounds of type gchararray to type gboolean
(firefox:7919): Gdk-WARNING **: 13:44:17.110: Cannot transform xsetting gtk-enable-event-sounds of type gchararray to type gboolean
(firefox:7919): Gdk-WARNING **: 13:44:17.111: Cannot transform xsetting gtk-enable-input-feedback-sounds of type gchararray to type gboolean
ATTENTION: default value of option mesa_glthread overridden by environment.
1640765657501 Marionette INFO Marionette enabled
console.warn: SearchSettings: "get: No settings file exists, new profile?" (new NotFoundError("Could not open the file at /tmp/rust_mozprofilejiU1io/search.json.mozlz4", (void 0)))
DevTools listening on ws://localhost:40071/devtools/browser/23b24401-eec5-4aee-99fc-18c07692a5a4
1640765658487 Marionette INFO Listening on port 45475
1640765658539 RemoteAgent WARN TLS certificate errors will be ignored for this session
1640765664658 Marionette INFO Stopped listening on port 45475
JavaScript error: chrome://remote/content/marionette/cert.js, line 55: NS_ERROR_NOT_AVAILABLE: Component returned failure code: 0x80040111 (NS_ERROR_NOT_AVAILABLE) [nsICertOverrideService.setDisableAllSecurityChecksAndLetAttackersInterceptMyData]
1640765770889 geckodriver INFO Listening on 127.0.0.1:53667
1640765770893 mozrunner::runner INFO Running command: "/usr/bin/firefox" "--marionette" "-headless" "--remote-debugging-port" "53523" "-no-remote" "-profile" "/tmp/rust_mozprofileLVTm3I"
*** You are running in headless mode.
1640765771156 Marionette INFO Marionette enabled
[GFX1-]: RenderCompositorSWGL failed mapping default framebuffer, no dt
console.warn: SearchSettings: "get: No settings file exists, new profile?" (new NotFoundError("Could not open the file at /tmp/rust_mozprofileLVTm3I/search.json.mozlz4", (void 0)))
DevTools listening on ws://localhost:53523/devtools/browser/7b3e1004-f61c-4f34-a0fc-0af012ed2182
1640765772090 Marionette INFO Listening on port 36301
1640765772112 RemoteAgent WARN TLS certificate errors will be ignored for this session
1640765791892 geckodriver INFO Listening on 127.0.0.1:54571
1640765791897 mozrunner::runner INFO Running command: "/usr/bin/firefox" "--marionette" "-headless" "--remote-debugging-port" "46307" "-no-remote" "-profile" "/tmp/rust_mozprofile6zyJH9"
*** You are running in headless mode.
1640765792165 Marionette INFO Marionette enabled
[GFX1-]: RenderCompositorSWGL failed mapping default framebuffer, no dt
console.warn: SearchSettings: "get: No settings file exists, new profile?" (new NotFoundError("Could not open the file at /tmp/rust_mozprofile6zyJH9/search.json.mozlz4", (void 0)))
DevTools listening on ws://localhost:46307/devtools/browser/70f00b27-995e-4921-b0aa-a02ef9c796a3
1640765793192 Marionette INFO Listening on port 38037
1640765793245 RemoteAgent WARN TLS certificate errors will be ignored for this session
1640765809096 Marionette INFO Stopped listening on port 38037
###!!! [Parent][RunMessage] Error: Channel closing: too late to send/recv, messages will be lost
console.log: WebExtensions: reset-default-search: starting.
console.log: WebExtensions: reset-default-search: No addons in our list are installed.
1640768984631 geckodriver INFO Listening on 127.0.0.1:51679
1640768984636 mozrunner::runner INFO Running command: "/usr/bin/firefox" "--marionette" "--remote-debugging-port" "49943" "-no-remote" "-profile" "/tmp/rust_mozprofileHfb49I"
(firefox:19426): Gdk-WARNING **: 14:39:44.669: Cannot transform xsetting gtk-xft-dpi of type gchararray to type gint
(firefox:19426): Gdk-WARNING **: 14:39:44.712: Cannot transform xsetting gtk-xft-dpi of type gchararray to type gint
(firefox:19426): Gdk-WARNING **: 14:39:44.712: Cannot transform xsetting gtk-enable-input-feedback-sounds of type gchararray to type gboolean
(firefox:19426): Gdk-WARNING **: 14:39:44.712: Cannot transform xsetting gtk-enable-event-sounds of type gchararray to type gboolean
(firefox:19426): Gdk-WARNING **: 14:39:44.712: Cannot transform xsetting gtk-enable-input-feedback-sounds of type gchararray to type gboolean
ATTENTION: default value of option mesa_glthread overridden by environment.
1640768985104 Marionette INFO Marionette enabled
console.warn: SearchSettings: "get: No settings file exists, new profile?" (new NotFoundError("Could not open the file at /tmp/rust_mozprofileHfb49I/search.json.mozlz4", (void 0)))
DevTools listening on ws://localhost:49943/devtools/browser/0068aa22-663e-432f-af76-cee53b656a1a
1640768986289 Marionette INFO Listening on port 39185
1640768986360 RemoteAgent WARN TLS certificate errors will be ignored for this session
1640768991204 Marionette INFO Stopped listening on port 39185
console.warn: TopSitesFeed: Failed to fetch data from Contile server: NetworkError when attempting to fetch resource.
JavaScript error: chrome://remote/content/marionette/cert.js, line 55: NS_ERROR_NOT_AVAILABLE: Component returned failure code: 0x80040111 (NS_ERROR_NOT_AVAILABLE) [nsICertOverrideService.setDisableAllSecurityChecksAndLetAttackersInterceptMyData]
###!!! [Parent][RunMessage] Error: Channel closing: too late to send/recv, messages will be lost
1640768999223 geckodriver::marionette ERROR Failed to close browser connection: Transport endpoint is not connected (os error 107)
1640769053982 geckodriver INFO Listening on 127.0.0.1:34243
1640769053987 mozrunner::runner INFO Running command: "/usr/bin/firefox" "--marionette" "--remote-debugging-port" "52689" "-no-remote" "-profile" "/tmp/rust_mozprofile4QcS4F"
(firefox:20141): Gdk-WARNING **: 14:40:54.022: Cannot transform xsetting gtk-xft-dpi of type gchararray to type gint
(firefox:20141): Gdk-WARNING **: 14:40:54.064: Cannot transform xsetting gtk-xft-dpi of type gchararray to type gint
(firefox:20141): Gdk-WARNING **: 14:40:54.064: Cannot transform xsetting gtk-enable-input-feedback-sounds of type gchararray to type gboolean
(firefox:20141): Gdk-WARNING **: 14:40:54.064: Cannot transform xsetting gtk-enable-event-sounds of type gchararray to type gboolean
(firefox:20141): Gdk-WARNING **: 14:40:54.065: Cannot transform xsetting gtk-enable-input-feedback-sounds of type gchararray to type gboolean
ATTENTION: default value of option mesa_glthread overridden by environment.
1640769054450 Marionette INFO Marionette enabled
console.warn: SearchSettings: "get: No settings file exists, new profile?" (new NotFoundError("Could not open the file at /tmp/rust_mozprofile4QcS4F/search.json.mozlz4", (void 0)))
DevTools listening on ws://localhost:52689/devtools/browser/0f3ca854-c1ff-4161-89d0-cc95f9d614a0
1640769055504 Marionette INFO Listening on port 39847
1640769055610 RemoteAgent WARN TLS certificate errors will be ignored for this session
1640769057069 Marionette INFO Stopped listening on port 39847
console.warn: TopSitesFeed: Failed to fetch data from Contile server: NetworkError when attempting to fetch resource.
JavaScript error: chrome://remote/content/marionette/cert.js, line 55: NS_ERROR_NOT_AVAILABLE: Component returned failure code: 0x80040111 (NS_ERROR_NOT_AVAILABLE) [nsICertOverrideService.setDisableAllSecurityChecksAndLetAttackersInterceptMyData]
1640769079723 geckodriver INFO Listening on 127.0.0.1:41669
1640769079728 mozrunner::runner INFO Running command: "/usr/bin/firefox" "--marionette" "-headless" "--remote-debugging-port" "45033" "-no-remote" "-profile" "/tmp/rust_mozprofilePkdw03"
*** You are running in headless mode.
1640769080008 Marionette INFO Marionette enabled
[GFX1-]: RenderCompositorSWGL failed mapping default framebuffer, no dt
console.warn: SearchSettings: "get: No settings file exists, new profile?" (new NotFoundError("Could not open the file at /tmp/rust_mozprofilePkdw03/search.json.mozlz4", (void 0)))
DevTools listening on ws://localhost:45033/devtools/browser/12eb9b24-5029-40a8-a926-c839e3f385d2
1640769080965 Marionette INFO Listening on port 44153
1640769081048 RemoteAgent WARN TLS certificate errors will be ignored for this session
1640769094685 Marionette INFO Stopped listening on port 44153
1640769246726 geckodriver INFO Listening on 127.0.0.1:48207
1640769246730 mozrunner::runner INFO Running command: "/usr/bin/firefox" "--marionette" "-headless" "--remote-debugging-port" "53667" "-no-remote" "-profile" "/tmp/rust_mozprofileAllBJR"
*** You are running in headless mode.
1640769247005 Marionette INFO Marionette enabled
[GFX1-]: RenderCompositorSWGL failed mapping default framebuffer, no dt
console.warn: SearchSettings: "get: No settings file exists, new profile?" (new NotFoundError("Could not open the file at /tmp/rust_mozprofileAllBJR/search.json.mozlz4", (void 0)))
DevTools listening on ws://localhost:53667/devtools/browser/37c20a71-336b-4494-9cd4-79c95d5fb90e
1640769247883 Marionette INFO Listening on port 33063
1640769247947 RemoteAgent WARN TLS certificate errors will be ignored for this session
1640769261462 Marionette INFO Stopped listening on port 33063
###!!! [Parent][RunMessage] Error: Channel closing: too late to send/recv, messages will be lost
1641364791509 geckodriver INFO Listening on 127.0.0.1:57553
1641364831618 geckodriver INFO Listening on 127.0.0.1:49497
1641364831628 mozrunner::runner INFO Running command: "/usr/bin/firefox" "--marionette" "--remote-debugging-port" "54427" "-no-remote" "-profile" "/tmp/rust_mozprofileCAD282"
(firefox:4460): Gdk-WARNING **: 12:10:31.668: Cannot transform xsetting gtk-xft-dpi of type gchararray to type gint
(firefox:4460): Gdk-WARNING **: 12:10:31.713: Cannot transform xsetting gtk-xft-dpi of type gchararray to type gint
(firefox:4460): Gdk-WARNING **: 12:10:31.713: Cannot transform xsetting gtk-enable-input-feedback-sounds of type gchararray to type gboolean
(firefox:4460): Gdk-WARNING **: 12:10:31.713: Cannot transform xsetting gtk-enable-event-sounds of type gchararray to type gboolean
(firefox:4460): Gdk-WARNING **: 12:10:31.713: Cannot transform xsetting gtk-enable-input-feedback-sounds of type gchararray to type gboolean
ATTENTION: default value of option mesa_glthread overridden by environment.
1641364832161 Marionette INFO Marionette enabled
console.warn: SearchSettings: "get: No settings file exists, new profile?" (new NotFoundError("Could not open the file at /tmp/rust_mozprofileCAD282/search.json.mozlz4", (void 0)))
DevTools listening on ws://localhost:54427/devtools/browser/87accc7a-2e85-4793-b8f4-21a989f920d0
1641364833460 Marionette INFO Listening on port 42547
1641364833552 RemoteAgent WARN TLS certificate errors will be ignored for this session
1641364834974 Marionette INFO Stopped listening on port 42547
console.warn: TopSitesFeed: Failed to fetch data from Contile server: NetworkError when attempting to fetch resource.
JavaScript error: chrome://remote/content/marionette/cert.js, line 55: NS_ERROR_NOT_AVAILABLE: Component returned failure code: 0x80040111 (NS_ERROR_NOT_AVAILABLE) [nsICertOverrideService.setDisableAllSecurityChecksAndLetAttackersInterceptMyData]
###!!! [Parent][RunMessage] Error: Channel closing: too late to send/recv, messages will be lost
1641364890321 geckodriver INFO Listening on 127.0.0.1:32889
1641364890325 mozrunner::runner INFO Running command: "/usr/bin/firefox" "--marionette" "-headless" "--remote-debugging-port" "56721" "-no-remote" "-profile" "/tmp/rust_mozprofilejibsFb"
*** You are running in headless mode.
1641364890601 Marionette INFO Marionette enabled
[GFX1-]: RenderCompositorSWGL failed mapping default framebuffer, no dt
console.warn: SearchSettings: "get: No settings file exists, new profile?" (new NotFoundError("Could not open the file at /tmp/rust_mozprofilejibsFb/search.json.mozlz4", (void 0)))
DevTools listening on ws://localhost:56721/devtools/browser/0d800f69-44b9-4bbc-9d6f-96945d41dbc4
1641364891621 Marionette INFO Listening on port 39511
1641364891645 RemoteAgent WARN TLS certificate errors will be ignored for this session
Exiting due to channel error.
Exiting due to channel error.
Exiting due to channel error.
1641364933792 geckodriver INFO Listening on 127.0.0.1:51247
1641364933796 mozrunner::runner INFO Running command: "/usr/bin/firefox" "--marionette" "--remote-debugging-port" "42103" "-no-remote" "-profile" "/tmp/rust_mozprofilebdKADu"
(firefox:5441): Gdk-WARNING **: 12:12:13.832: Cannot transform xsetting gtk-xft-dpi of type gchararray to type gint
(firefox:5441): Gdk-WARNING **: 12:12:13.877: Cannot transform xsetting gtk-xft-dpi of type gchararray to type gint
(firefox:5441): Gdk-WARNING **: 12:12:13.877: Cannot transform xsetting gtk-enable-input-feedback-sounds of type gchararray to type gboolean
(firefox:5441): Gdk-WARNING **: 12:12:13.877: Cannot transform xsetting gtk-enable-event-sounds of type gchararray to type gboolean
(firefox:5441): Gdk-WARNING **: 12:12:13.877: Cannot transform xsetting gtk-enable-input-feedback-sounds of type gchararray to type gboolean
ATTENTION: default value of option mesa_glthread overridden by environment.
1641364934270 Marionette INFO Marionette enabled
console.warn: SearchSettings: "get: No settings file exists, new profile?" (new NotFoundError("Could not open the file at /tmp/rust_mozprofilebdKADu/search.json.mozlz4", (void 0)))
DevTools listening on ws://localhost:42103/devtools/browser/66b343bd-bf30-425c-878e-94fc4e334788
1641364935304 Marionette INFO Listening on port 33385
1641364935415 RemoteAgent WARN TLS certificate errors will be ignored for this session
1641364986650 Marionette INFO Stopped listening on port 33385
console.warn: TopSitesFeed: Failed to fetch data from Contile server: NetworkError when attempting to fetch resource.
JavaScript error: chrome://remote/content/marionette/cert.js, line 55: NS_ERROR_NOT_AVAILABLE: Component returned failure code: 0x80040111 (NS_ERROR_NOT_AVAILABLE) [nsICertOverrideService.setDisableAllSecurityChecksAndLetAttackersInterceptMyData]
1641365573354 geckodriver INFO Listening on 127.0.0.1:50017
1641365573866 mozrunner::runner INFO Running command: "/usr/bin/firefox" "--marionette" "--remote-debugging-port" "40057" "-no-remote" "-profile" "/tmp/rust_mozprofileIb42TC"
(firefox:7160): Gdk-WARNING **: 06:52:53.933: Cannot transform xsetting gtk-xft-dpi of type gchararray to type gint
(firefox:7160): Gdk-WARNING **: 06:52:53.979: Cannot transform xsetting gtk-xft-dpi of type gchararray to type gint
(firefox:7160): Gdk-WARNING **: 06:52:53.979: Cannot transform xsetting gtk-enable-input-feedback-sounds of type gchararray to type gboolean
(firefox:7160): Gdk-WARNING **: 06:52:53.979: Cannot transform xsetting gtk-enable-event-sounds of type gchararray to type gboolean
(firefox:7160): Gdk-WARNING **: 06:52:53.979: Cannot transform xsetting gtk-enable-input-feedback-sounds of type gchararray to type gboolean
ATTENTION: default value of option mesa_glthread overridden by environment.
1641365574428 Marionette INFO Marionette enabled
console.warn: SearchSettings: "get: No settings file exists, new profile?" (new NotFoundError("Could not open the file at /tmp/rust_mozprofileIb42TC/search.json.mozlz4", (void 0)))
DevTools listening on ws://localhost:40057/devtools/browser/2adc32dd-bca3-4a6e-a1fe-4a1302c7e9a0
1641365575679 Marionette INFO Listening on port 45431
1641365575785 RemoteAgent WARN TLS certificate errors will be ignored for this session
Exiting due to channel error.
Exiting due to channel error.
Exiting due to channel error.
1641365738349 geckodriver INFO Listening on 127.0.0.1:38411
1641365738858 mozrunner::runner INFO Running command: "/usr/bin/firefox" "--marionette" "--remote-debugging-port" "34833" "-no-remote" "-profile" "/tmp/rust_mozprofile2Anhzp"
(firefox:8591): Gdk-WARNING **: 06:55:38.928: Cannot transform xsetting gtk-xft-dpi of type gchararray to type gint
(firefox:8591): Gdk-WARNING **: 06:55:38.984: Cannot transform xsetting gtk-xft-dpi of type gchararray to type gint
(firefox:8591): Gdk-WARNING **: 06:55:38.984: Cannot transform xsetting gtk-enable-input-feedback-sounds of type gchararray to type gboolean
(firefox:8591): Gdk-WARNING **: 06:55:38.984: Cannot transform xsetting gtk-enable-event-sounds of type gchararray to type gboolean
(firefox:8591): Gdk-WARNING **: 06:55:38.984: Cannot transform xsetting gtk-enable-input-feedback-sounds of type gchararray to type gboolean
ATTENTION: default value of option mesa_glthread overridden by environment.
1641365739509 Marionette INFO Marionette enabled
console.warn: SearchSettings: "get: No settings file exists, new profile?" (new NotFoundError("Could not open the file at /tmp/rust_mozprofile2Anhzp/search.json.mozlz4", (void 0)))
DevTools listening on ws://localhost:34833/devtools/browser/597c822f-9082-4503-ab55-8b1c463e39d7
1641365740469 Marionette INFO Listening on port 38271
1641365740590 RemoteAgent WARN TLS certificate errors will be ignored for this session
Exiting due to channel error.
Exiting due to channel error.
Exiting due to channel error.
1641365946029 geckodriver INFO Listening on 127.0.0.1:58635
1641365946545 mozrunner::runner INFO Running command: "/usr/bin/firefox" "--marionette" "--remote-debugging-port" "50991" "-no-remote" "-profile" "/tmp/rust_mozprofilekTzXiO"
(firefox:10544): Gdk-WARNING **: 06:59:06.623: Cannot transform xsetting gtk-xft-dpi of type gchararray to type gint
(firefox:10544): Gdk-WARNING **: 06:59:06.686: Cannot transform xsetting gtk-xft-dpi of type gchararray to type gint
(firefox:10544): Gdk-WARNING **: 06:59:06.686: Cannot transform xsetting gtk-enable-input-feedback-sounds of type gchararray to type gboolean
(firefox:10544): Gdk-WARNING **: 06:59:06.686: Cannot transform xsetting gtk-enable-event-sounds of type gchararray to type gboolean
(firefox:10544): Gdk-WARNING **: 06:59:06.686: Cannot transform xsetting gtk-enable-input-feedback-sounds of type gchararray to type gboolean
ATTENTION: default value of option mesa_glthread overridden by environment.
1641365947169 Marionette INFO Marionette enabled
console.warn: SearchSettings: "get: No settings file exists, new profile?" (new NotFoundError("Could not open the file at /tmp/rust_mozprofilekTzXiO/search.json.mozlz4", (void 0)))
DevTools listening on ws://localhost:50991/devtools/browser/9e5c5343-d686-4cc3-ad32-179698c7cd5d
1641365948492 Marionette INFO Listening on port 36385
1641365948562 RemoteAgent WARN TLS certificate errors will be ignored for this session
Exiting due to channel error.
Exiting due to channel error.
Exiting due to channel error.
1641366190491 geckodriver INFO Listening on 127.0.0.1:58247
1641366191003 mozrunner::runner INFO Running command: "/usr/bin/firefox" "--marionette" "--remote-debugging-port" "39195" "-no-remote" "-profile" "/tmp/rust_mozprofileOYIhws"
(firefox:11663): Gdk-WARNING **: 07:03:11.067: Cannot transform xsetting gtk-xft-dpi of type gchararray to type gint
(firefox:11663): Gdk-WARNING **: 07:03:11.111: Cannot transform xsetting gtk-xft-dpi of type gchararray to type gint
(firefox:11663): Gdk-WARNING **: 07:03:11.111: Cannot transform xsetting gtk-enable-input-feedback-sounds of type gchararray to type gboolean
(firefox:11663): Gdk-WARNING **: 07:03:11.111: Cannot transform xsetting gtk-enable-event-sounds of type gchararray to type gboolean
(firefox:11663): Gdk-WARNING **: 07:03:11.111: Cannot transform xsetting gtk-enable-input-feedback-sounds of type gchararray to type gboolean
ATTENTION: default value of option mesa_glthread overridden by environment.
1641366191586 Marionette INFO Marionette enabled
console.warn: SearchSettings: "get: No settings file exists, new profile?" (new NotFoundError("Could not open the file at /tmp/rust_mozprofileOYIhws/search.json.mozlz4", (void 0)))
DevTools listening on ws://localhost:39195/devtools/browser/54f5263c-cac3-4cff-92a2-e0dd6aebb79d
1641366192840 Marionette INFO Listening on port 42037
1641366192925 RemoteAgent WARN TLS certificate errors will be ignored for this session
1641366465457 Marionette INFO Stopped listening on port 42037
console.warn: TopSitesFeed: Failed to fetch data from Contile server: NetworkError when attempting to fetch resource.
###!!! [Parent][RunMessage] Error: Channel closing: too late to send/recv, messages will be lost
1641366597624 geckodriver INFO Listening on 127.0.0.1:54639
1641366598129 mozrunner::runner INFO Running command: "/usr/bin/firefox" "--marionette" "--remote-debugging-port" "45799" "-no-remote" "-profile" "/tmp/rust_mozprofile35Hqt3"
(firefox:13246): Gdk-WARNING **: 07:09:58.170: Cannot transform xsetting gtk-xft-dpi of type gchararray to type gint
(firefox:13246): Gdk-WARNING **: 07:09:58.230: Cannot transform xsetting gtk-xft-dpi of type gchararray to type gint
(firefox:13246): Gdk-WARNING **: 07:09:58.230: Cannot transform xsetting gtk-enable-input-feedback-sounds of type gchararray to type gboolean
(firefox:13246): Gdk-WARNING **: 07:09:58.230: Cannot transform xsetting gtk-enable-event-sounds of type gchararray to type gboolean
(firefox:13246): Gdk-WARNING **: 07:09:58.230: Cannot transform xsetting gtk-enable-input-feedback-sounds of type gchararray to type gboolean
ATTENTION: default value of option mesa_glthread overridden by environment.
1641366598682 Marionette INFO Marionette enabled
console.warn: SearchSettings: "get: No settings file exists, new profile?" (new NotFoundError("Could not open the file at /tmp/rust_mozprofile35Hqt3/search.json.mozlz4", (void 0)))
DevTools listening on ws://localhost:45799/devtools/browser/270a94e0-a355-49c8-bf3f-a3f1c06c3e71
1641366599788 Marionette INFO Listening on port 40619
1641366599846 RemoteAgent WARN TLS certificate errors will be ignored for this session
console.log: WebExtensions: reset-default-search: starting.
console.log: WebExtensions: reset-default-search: No addons in our list are installed.
Exiting due to channel error.
Exiting due to channel error.
Exiting due to channel error.
1641367004536 geckodriver INFO Listening on 127.0.0.1:58941
1641367005049 mozrunner::runner INFO Running command: "/usr/bin/firefox" "--marionette" "--remote-debugging-port" "38499" "-no-remote" "-profile" "/tmp/rust_mozprofile8dXnYW"
(firefox:17035): Gdk-WARNING **: 07:16:45.117: Cannot transform xsetting gtk-xft-dpi of type gchararray to type gint
(firefox:17035): Gdk-WARNING **: 07:16:45.192: Cannot transform xsetting gtk-xft-dpi of type gchararray to type gint
(firefox:17035): Gdk-WARNING **: 07:16:45.192: Cannot transform xsetting gtk-enable-input-feedback-sounds of type gchararray to type gboolean
(firefox:17035): Gdk-WARNING **: 07:16:45.192: Cannot transform xsetting gtk-enable-event-sounds of type gchararray to type gboolean
(firefox:17035): Gdk-WARNING **: 07:16:45.193: Cannot transform xsetting gtk-enable-input-feedback-sounds of type gchararray to type gboolean
ATTENTION: default value of option mesa_glthread overridden by environment.
1641367005705 Marionette INFO Marionette enabled
console.warn: SearchSettings: "get: No settings file exists, new profile?" (new NotFoundError("Could not open the file at /tmp/rust_mozprofile8dXnYW/search.json.mozlz4", (void 0)))
DevTools listening on ws://localhost:38499/devtools/browser/beec69c4-fca1-4368-b347-8be662d9972a
1641367007002 Marionette INFO Listening on port 46643
1641367007074 RemoteAgent WARN TLS certificate errors will be ignored for this session
1641367348566 geckodriver INFO Listening on 127.0.0.1:40697
1641367349080 mozrunner::runner INFO Running command: "/usr/bin/firefox" "--marionette" "--remote-debugging-port" "39659" "-no-remote" "-profile" "/tmp/rust_mozprofilelNUCUo"
(firefox:18406): Gdk-WARNING **: 07:22:29.146: Cannot transform xsetting gtk-xft-dpi of type gchararray to type gint
(firefox:18406): Gdk-WARNING **: 07:22:29.201: Cannot transform xsetting gtk-xft-dpi of type gchararray to type gint
(firefox:18406): Gdk-WARNING **: 07:22:29.201: Cannot transform xsetting gtk-enable-input-feedback-sounds of type gchararray to type gboolean
(firefox:18406): Gdk-WARNING **: 07:22:29.201: Cannot transform xsetting gtk-enable-event-sounds of type gchararray to type gboolean
(firefox:18406): Gdk-WARNING **: 07:22:29.202: Cannot transform xsetting gtk-enable-input-feedback-sounds of type gchararray to type gboolean
ATTENTION: default value of option mesa_glthread overridden by environment.
1641367349660 Marionette INFO Marionette enabled
console.warn: SearchSettings: "get: No settings file exists, new profile?" (new NotFoundError("Could not open the file at /tmp/rust_mozprofilelNUCUo/search.json.mozlz4", (void 0)))
DevTools listening on ws://localhost:39659/devtools/browser/7f18837c-d4d0-491c-b1a4-d502a73add20
1641367350769 Marionette INFO Listening on port 45583
1641367350799 RemoteAgent WARN TLS certificate errors will be ignored for this session
1641367351639 Marionette INFO Stopped listening on port 46643
console.warn: TopSitesFeed: Failed to fetch data from Contile server: NetworkError when attempting to fetch resource.
###!!! [Parent][RunMessage] Error: Channel closing: too late to send/recv, messages will be lost
1641367497884 Marionette INFO Stopped listening on port 45583
console.warn: TopSitesFeed: Failed to fetch data from Contile server: NetworkError when attempting to fetch resource.
###!!! [Parent][RunMessage] Error: Channel closing: too late to send/recv, messages will be lost
1641367687256 geckodriver INFO Listening on 127.0.0.1:56563
1641367687769 mozrunner::runner INFO Running command: "/usr/bin/firefox" "--marionette" "-headless" "--remote-debugging-port" "46637" "-no-remote" "-profile" "/tmp/rust_mozprofileibYTji"
*** You are running in headless mode.
1641367688235 Marionette INFO Marionette enabled
[GFX1-]: RenderCompositorSWGL failed mapping default framebuffer, no dt
console.warn: SearchSettings: "get: No settings file exists, new profile?" (new NotFoundError("Could not open the file at /tmp/rust_mozprofileibYTji/search.json.mozlz4", (void 0)))
DevTools listening on ws://localhost:46637/devtools/browser/5acedc50-6d7f-49e5-8cce-f87e26c06c4b
1641367689305 Marionette INFO Listening on port 44335
1641367689416 RemoteAgent WARN TLS certificate errors will be ignored for this session
Exiting due to channel error.
Exiting due to channel error.
Exiting due to channel error.
1641373622649 geckodriver INFO Listening on 127.0.0.1:48015
1641373622654 mozrunner::runner INFO Running command: "/usr/bin/firefox" "--marionette" "--remote-debugging-port" "56913" "-no-remote" "-profile" "/tmp/rust_mozprofileXttAet"
(firefox:28158): Gdk-WARNING **: 14:37:02.687: Cannot transform xsetting gtk-xft-dpi of type gchararray to type gint
(firefox:28158): Gdk-WARNING **: 14:37:02.729: Cannot transform xsetting gtk-xft-dpi of type gchararray to type gint
(firefox:28158): Gdk-WARNING **: 14:37:02.729: Cannot transform xsetting gtk-enable-input-feedback-sounds of type gchararray to type gboolean
(firefox:28158): Gdk-WARNING **: 14:37:02.729: Cannot transform xsetting gtk-enable-event-sounds of type gchararray to type gboolean
(firefox:28158): Gdk-WARNING **: 14:37:02.729: Cannot transform xsetting gtk-enable-input-feedback-sounds of type gchararray to type gboolean
ATTENTION: default value of option mesa_glthread overridden by environment.
1641373623116 Marionette INFO Marionette enabled
console.warn: SearchSettings: "get: No settings file exists, new profile?" (new NotFoundError("Could not open the file at /tmp/rust_mozprofileXttAet/search.json.mozlz4", (void 0)))
DevTools listening on ws://localhost:56913/devtools/browser/b302c8e9-730c-46e8-bdfe-4bb3a3d31b1c
1641373624273 Marionette INFO Listening on port 45599
1641373624387 RemoteAgent WARN TLS certificate errors will be ignored for this session
1641373908403 geckodriver INFO Listening on 127.0.0.1:53575
1641373908407 mozrunner::runner INFO Running command: "/usr/bin/firefox" "--marionette" "-headless" "--remote-debugging-port" "45831" "-no-remote" "-profile" "/tmp/rust_mozprofileOoaGTE"
*** You are running in headless mode.
1641373908708 Marionette INFO Marionette enabled
[GFX1-]: RenderCompositorSWGL failed mapping default framebuffer, no dt
console.warn: SearchSettings: "get: No settings file exists, new profile?" (new NotFoundError("Could not open the file at /tmp/rust_mozprofileOoaGTE/search.json.mozlz4", (void 0)))
DevTools listening on ws://localhost:45831/devtools/browser/e3b640e8-4399-400e-a8de-94116a5b8d32
1641373909590 Marionette INFO Listening on port 41839
1641373909626 RemoteAgent WARN TLS certificate errors will be ignored for this session
1641373911855 geckodriver INFO Listening on 127.0.0.1:37845
1641373911859 mozrunner::runner INFO Running command: "/usr/bin/firefox" "--marionette" "-headless" "--remote-debugging-port" "34437" "-no-remote" "-profile" "/tmp/rust_mozprofileivCJ1O"
*** You are running in headless mode.
1641373912163 Marionette INFO Marionette enabled
[GFX1-]: RenderCompositorSWGL failed mapping default framebuffer, no dt
console.warn: SearchSettings: "get: No settings file exists, new profile?" (new NotFoundError("Could not open the file at /tmp/rust_mozprofileivCJ1O/search.json.mozlz4", (void 0)))
DevTools listening on ws://localhost:34437/devtools/browser/c9fe21dd-ae63-4aa9-a401-aa494ead381e
1641373913186 Marionette INFO Listening on port 37409
1641373913283 RemoteAgent WARN TLS certificate errors will be ignored for this session
1641373923994 Marionette INFO Stopped listening on port 45599
console.warn: TopSitesFeed: Failed to fetch data from Contile server: NetworkError when attempting to fetch resource.
1641373966143 geckodriver INFO Listening on 127.0.0.1:35345
1641373966146 mozrunner::runner INFO Running command: "/usr/bin/firefox" "--marionette" "-headless" "--remote-debugging-port" "41379" "-no-remote" "-profile" "/tmp/rust_mozprofileMxdkBa"
*** You are running in headless mode.
1641373966444 Marionette INFO Marionette enabled
[GFX1-]: RenderCompositorSWGL failed mapping default framebuffer, no dt
console.warn: SearchSettings: "get: No settings file exists, new profile?" (new NotFoundError("Could not open the file at /tmp/rust_mozprofileMxdkBa/search.json.mozlz4", (void 0)))
DevTools listening on ws://localhost:41379/devtools/browser/0a20409e-0195-439e-9ea3-54452c134c46
1641373967448 Marionette INFO Listening on port 35829
1641373967478 RemoteAgent WARN TLS certificate errors will be ignored for this session
1641373969869 geckodriver INFO Listening on 127.0.0.1:60871
1641373969873 mozrunner::runner INFO Running command: "/usr/bin/firefox" "--marionette" "-headless" "--remote-debugging-port" "35453" "-no-remote" "-profile" "/tmp/rust_mozprofilehH0yKM"
*** You are running in headless mode.
1641373970195 Marionette INFO Marionette enabled
[GFX1-]: RenderCompositorSWGL failed mapping default framebuffer, no dt
console.warn: SearchSettings: "get: No settings file exists, new profile?" (new NotFoundError("Could not open the file at /tmp/rust_mozprofilehH0yKM/search.json.mozlz4", (void 0)))
DevTools listening on ws://localhost:35453/devtools/browser/66b93848-eec1-4e45-b479-4dfa4aced1f1
1641373971191 Marionette INFO Listening on port 44373
1641373971317 RemoteAgent WARN TLS certificate errors will be ignored for this session
1641374001442 geckodriver INFO Listening on 127.0.0.1:36693
1641374001447 mozrunner::runner INFO Running command: "/usr/bin/firefox" "--marionette" "-headless" "--remote-debugging-port" "55511" "-no-remote" "-profile" "/tmp/rust_mozprofileDDSR36"
*** You are running in headless mode.
1641374001760 Marionette INFO Marionette enabled
[GFX1-]: RenderCompositorSWGL failed mapping default framebuffer, no dt
console.warn: SearchSettings: "get: No settings file exists, new profile?" (new NotFoundError("Could not open the file at /tmp/rust_mozprofileDDSR36/search.json.mozlz4", (void 0)))
DevTools listening on ws://localhost:55511/devtools/browser/0382c990-6a75-44d3-a5e0-033a90f7c5ef
1641374002778 Marionette INFO Listening on port 38817
1641374002870 RemoteAgent WARN TLS certificate errors will be ignored for this session
1641374005169 geckodriver INFO Listening on 127.0.0.1:57511
1641374005173 mozrunner::runner INFO Running command: "/usr/bin/firefox" "--marionette" "-headless" "--remote-debugging-port" "50257" "-no-remote" "-profile" "/tmp/rust_mozprofile4IqQVe"
*** You are running in headless mode.
1641374005458 Marionette INFO Marionette enabled
[GFX1-]: RenderCompositorSWGL failed mapping default framebuffer, no dt
console.warn: SearchSettings: "get: No settings file exists, new profile?" (new NotFoundError("Could not open the file at /tmp/rust_mozprofile4IqQVe/search.json.mozlz4", (void 0)))
DevTools listening on ws://localhost:50257/devtools/browser/550b5ea8-92b6-4c50-a3a1-e09e1f08d848
1641374006932 Marionette INFO Listening on port 35371
1641374006990 RemoteAgent WARN TLS certificate errors will be ignored for this session
console.log: WebExtensions: reset-default-search: starting.
console.log: WebExtensions: reset-default-search: No addons in our list are installed.
console.log: WebExtensions: reset-default-search: starting.
console.log: WebExtensions: reset-default-search: No addons in our list are installed.
console.log: WebExtensions: reset-default-search: starting.
console.log: WebExtensions: reset-default-search: No addons in our list are installed.
console.log: WebExtensions: reset-default-search: starting.
console.log: WebExtensions: reset-default-search: No addons in our list are installed.
console.log: WebExtensions: reset-default-search: starting.
console.log: WebExtensions: reset-default-search: No addons in our list are installed.
console.log: WebExtensions: reset-default-search: starting.
console.log: WebExtensions: reset-default-search: No addons in our list are installed.
1641374758187 geckodriver INFO Listening on 127.0.0.1:45631
1641374758191 mozrunner::runner INFO Running command: "/usr/bin/firefox" "--marionette" "-headless" "--remote-debugging-port" "56735" "-no-remote" "-profile" "/tmp/rust_mozprofileGY9Wrz"
*** You are running in headless mode.
1641374758469 Marionette INFO Marionette enabled
[GFX1-]: RenderCompositorSWGL failed mapping default framebuffer, no dt
console.warn: SearchSettings: "get: No settings file exists, new profile?" (new NotFoundError("Could not open the file at /tmp/rust_mozprofileGY9Wrz/search.json.mozlz4", (void 0)))
DevTools listening on ws://localhost:56735/devtools/browser/bc5c442e-d8c1-4941-9d05-02d716e5827a
1641374759483 Marionette INFO Listening on port 33479
1641374759507 RemoteAgent WARN TLS certificate errors will be ignored for this session
Exiting due to channel error.
Exiting due to channel error.
Exiting due to channel error.
Exiting due to channel error.
Exiting due to channel error.
Exiting due to channel error.
Exiting due to channel error.
Exiting due to channel error.
Exiting due to channel error.
Exiting due to channel error.
Exiting due to channel error.
Exiting due to channel error.
Exiting due to channel error.
Exiting due to channel error.
Exiting due to channel error.
Exiting due to channel error.
Exiting due to channel error.
Exiting due to channel error.
Exiting due to channel error.
Exiting due to channel error.
Exiting due to channel error.
1641375079694 geckodriver INFO Listening on 127.0.0.1:33849
1641375079698 mozrunner::runner INFO Running command: "/usr/bin/firefox" "--marionette" "-headless" "--remote-debugging-port" "37737" "-no-remote" "-profile" "/tmp/rust_mozprofilenjW8yJ"
*** You are running in headless mode.
1641375079961 Marionette INFO Marionette enabled
[GFX1-]: RenderCompositorSWGL failed mapping default framebuffer, no dt
console.warn: SearchSettings: "get: No settings file exists, new profile?" (new NotFoundError("Could not open the file at /tmp/rust_mozprofilenjW8yJ/search.json.mozlz4", (void 0)))
DevTools listening on ws://localhost:37737/devtools/browser/51566a21-8a6e-4458-b3fd-27b884517510
1641375080848 Marionette INFO Listening on port 42453
1641375080935 RemoteAgent WARN TLS certificate errors will be ignored for this session
Exiting due to channel error.
Exiting due to channel error.
Exiting due to channel error.
1641375583199 geckodriver INFO Listening on 127.0.0.1:60133
1641375583203 mozrunner::runner INFO Running command: "/usr/bin/firefox" "--marionette" "-headless" "--remote-debugging-port" "52941" "-no-remote" "-profile" "/tmp/rust_mozprofile8RuJ2N"
*** You are running in headless mode.
1641375583544 Marionette INFO Marionette enabled
[GFX1-]: RenderCompositorSWGL failed mapping default framebuffer, no dt
console.warn: SearchSettings: "get: No settings file exists, new profile?" (new NotFoundError("Could not open the file at /tmp/rust_mozprofile8RuJ2N/search.json.mozlz4", (void 0)))
DevTools listening on ws://localhost:52941/devtools/browser/d09d103e-a873-420a-93da-f96f2aca715f
1641375584552 Marionette INFO Listening on port 37651
1641375584621 RemoteAgent WARN TLS certificate errors will be ignored for this session
1641375586995 geckodriver INFO Listening on 127.0.0.1:33813
1641375586999 mozrunner::runner INFO Running command: "/usr/bin/firefox" "--marionette" "-headless" "--remote-debugging-port" "47587" "-no-remote" "-profile" "/tmp/rust_mozprofileEsR7n6"
*** You are running in headless mode.
1641375587284 Marionette INFO Marionette enabled
[GFX1-]: RenderCompositorSWGL failed mapping default framebuffer, no dt
console.warn: SearchSettings: "get: No settings file exists, new profile?" (new NotFoundError("Could not open the file at /tmp/rust_mozprofileEsR7n6/search.json.mozlz4", (void 0)))
DevTools listening on ws://localhost:47587/devtools/browser/b8ba16b3-cb28-497b-924a-7a3bf284e376
1641375588194 Marionette INFO Listening on port 43567
1641375588216 RemoteAgent WARN TLS certificate errors will be ignored for this session
1641375634687 geckodriver INFO Listening on 127.0.0.1:44261
1641375634691 mozrunner::runner INFO Running command: "/usr/bin/firefox" "--marionette" "-headless" "--remote-debugging-port" "38715" "-no-remote" "-profile" "/tmp/rust_mozprofileLSVIae"
*** You are running in headless mode.
1641375635024 Marionette INFO Marionette enabled
[GFX1-]: RenderCompositorSWGL failed mapping default framebuffer, no dt
console.warn: SearchSettings: "get: No settings file exists, new profile?" (new NotFoundError("Could not open the file at /tmp/rust_mozprofileLSVIae/search.json.mozlz4", (void 0)))
DevTools listening on ws://localhost:38715/devtools/browser/93631fef-f0e5-4c2e-ba49-f9d11a50b4cf
1641375636010 Marionette INFO Listening on port 33095
1641375636132 RemoteAgent WARN TLS certificate errors will be ignored for this session
Exiting due to channel error.
Exiting due to channel error.
Exiting due to channel error.
Exiting due to channel error.
Exiting due to channel error.
Exiting due to channel error.
Exiting due to channel error.
Exiting due to channel error.
Exiting due to channel error.
1641375753564 geckodriver INFO Listening on 127.0.0.1:60623
1641375753568 mozrunner::runner INFO Running command: "/usr/bin/firefox" "--marionette" "-headless" "--remote-debugging-port" "49393" "-no-remote" "-profile" "/tmp/rust_mozprofileHQFFIN"
*** You are running in headless mode.
1641375753830 Marionette INFO Marionette enabled
[GFX1-]: RenderCompositorSWGL failed mapping default framebuffer, no dt
console.warn: SearchSettings: "get: No settings file exists, new profile?" (new NotFoundError("Could not open the file at /tmp/rust_mozprofileHQFFIN/search.json.mozlz4", (void 0)))
DevTools listening on ws://localhost:49393/devtools/browser/a78d147f-b784-46d1-b3c1-1f9ab8a11898
1641375754706 Marionette INFO Listening on port 44773
1641375754808 RemoteAgent WARN TLS certificate errors will be ignored for this session
1641375861661 geckodriver INFO Listening on 127.0.0.1:56885
1641375861665 mozrunner::runner INFO Running command: "/usr/bin/firefox" "--marionette" "-headless" "--remote-debugging-port" "39563" "-no-remote" "-profile" "/tmp/rust_mozprofileUDURs9"
*** You are running in headless mode.
1641375861949 Marionette INFO Marionette enabled
[GFX1-]: RenderCompositorSWGL failed mapping default framebuffer, no dt
console.warn: SearchSettings: "get: No settings file exists, new profile?" (new NotFoundError("Could not open the file at /tmp/rust_mozprofileUDURs9/search.json.mozlz4", (void 0)))
DevTools listening on ws://localhost:39563/devtools/browser/ecc04c7a-cf7d-413d-b8e8-334fc1966d2c
1641375862958 Marionette INFO Listening on port 40613
1641375862984 RemoteAgent WARN TLS certificate errors will be ignored for this session
1641375867231 geckodriver INFO Listening on 127.0.0.1:40523
1641375867235 mozrunner::runner INFO Running command: "/usr/bin/firefox" "--marionette" "-headless" "--remote-debugging-port" "39779" "-no-remote" "-profile" "/tmp/rust_mozprofilewlBtS7"
*** You are running in headless mode.
1641375867511 Marionette INFO Marionette enabled
[GFX1-]: RenderCompositorSWGL failed mapping default framebuffer, no dt
console.warn: SearchSettings: "get: No settings file exists, new profile?" (new NotFoundError("Could not open the file at /tmp/rust_mozprofilewlBtS7/search.json.mozlz4", (void 0)))
DevTools listening on ws://localhost:39779/devtools/browser/dd7e5f88-896d-4035-8b04-7320687c7f3d
1641375868659 Marionette INFO Listening on port 45625
1641375868792 RemoteAgent WARN TLS certificate errors will be ignored for this session
1641375883430 geckodriver INFO Listening on 127.0.0.1:57985
1641375883434 mozrunner::runner INFO Running command: "/usr/bin/firefox" "--marionette" "-headless" "--remote-debugging-port" "46841" "-no-remote" "-profile" "/tmp/rust_mozprofile4TRckJ"
*** You are running in headless mode.
1641375883703 Marionette INFO Marionette enabled
[GFX1-]: RenderCompositorSWGL failed mapping default framebuffer, no dt
console.warn: SearchSettings: "get: No settings file exists, new profile?" (new NotFoundError("Could not open the file at /tmp/rust_mozprofile4TRckJ/search.json.mozlz4", (void 0)))
DevTools listening on ws://localhost:46841/devtools/browser/0f46f4a0-98ea-47f0-ac1b-fa2f03d7dfbd
1641375884635 Marionette INFO Listening on port 37149
1641375884651 RemoteAgent WARN TLS certificate errors will be ignored for this session
1641375938132 geckodriver INFO Listening on 127.0.0.1:49005
1641375938136 mozrunner::runner INFO Running command: "/usr/bin/firefox" "--marionette" "-headless" "--remote-debugging-port" "37649" "-no-remote" "-profile" "/tmp/rust_mozprofile6EAaUW"
*** You are running in headless mode.
1641375938418 Marionette INFO Marionette enabled
[GFX1-]: RenderCompositorSWGL failed mapping default framebuffer, no dt
console.warn: SearchSettings: "get: No settings file exists, new profile?" (new NotFoundError("Could not open the file at /tmp/rust_mozprofile6EAaUW/search.json.mozlz4", (void 0)))
DevTools listening on ws://localhost:37649/devtools/browser/bc9e90fb-9eb4-477c-a1a4-07fca64054e1
1641375939451 Marionette INFO Listening on port 34387
1641375939578 RemoteAgent WARN TLS certificate errors will be ignored for this session
1641375942034 geckodriver INFO Listening on 127.0.0.1:51555
1641375942040 mozrunner::runner INFO Running command: "/usr/bin/firefox" "--marionette" "-headless" "--remote-debugging-port" "59857" "-no-remote" "-profile" "/tmp/rust_mozprofileCmDY9b"
*** You are running in headless mode.
1641375942408 Marionette INFO Marionette enabled
[GFX1-]: RenderCompositorSWGL failed mapping default framebuffer, no dt
console.warn: SearchSettings: "get: No settings file exists, new profile?" (new NotFoundError("Could not open the file at /tmp/rust_mozprofileCmDY9b/search.json.mozlz4", (void 0)))
DevTools listening on ws://localhost:59857/devtools/browser/e28ade08-c674-499a-b3c7-1083d8167ba8
1641375943354 Marionette INFO Listening on port 43019
1641375943482 RemoteAgent WARN TLS certificate errors will be ignored for this session
console.log: WebExtensions: reset-default-search: starting.
console.log: WebExtensions: reset-default-search: No addons in our list are installed.
Exiting due to channel error.
Exiting due to channel error.
Exiting due to channel error.
Exiting due to channel error.
Exiting due to channel error.
Exiting due to channel error.
Exiting due to channel error.
Exiting due to channel error.
Exiting due to channel error.
Exiting due to channel error.
Exiting due to channel error.
Exiting due to channel error.
Exiting due to channel error.
Exiting due to channel error.
Exiting due to channel error.
Exiting due to channel error.
Exiting due to channel error.
Exiting due to channel error.
1641376244063 geckodriver INFO Listening on 127.0.0.1:50027
1641376244073 mozrunner::runner INFO Running command: "/usr/bin/firefox" "--marionette" "-headless" "--remote-debugging-port" "40517" "-no-remote" "-profile" "/tmp/rust_mozprofile8bdJIG"
*** You are running in headless mode.
1641376244358 Marionette INFO Marionette enabled
[GFX1-]: RenderCompositorSWGL failed mapping default framebuffer, no dt
console.warn: SearchSettings: "get: No settings file exists, new profile?" (new NotFoundError("Could not open the file at /tmp/rust_mozprofile8bdJIG/search.json.mozlz4", (void 0)))
DevTools listening on ws://localhost:40517/devtools/browser/8f90be44-8ff2-43ee-a627-0a61e153fd89
1641376245257 Marionette INFO Listening on port 37521
1641376245295 RemoteAgent WARN TLS certificate errors will be ignored for this session
1641376251456 geckodriver INFO Listening on 127.0.0.1:40397
1641376251460 mozrunner::runner INFO Running command: "/usr/bin/firefox" "--marionette" "-headless" "--remote-debugging-port" "41075" "-no-remote" "-profile" "/tmp/rust_mozprofilerLiEZ5"
*** You are running in headless mode.
1641376251731 Marionette INFO Marionette enabled
[GFX1-]: RenderCompositorSWGL failed mapping default framebuffer, no dt
console.warn: SearchSettings: "get: No settings file exists, new profile?" (new NotFoundError("Could not open the file at /tmp/rust_mozprofilerLiEZ5/search.json.mozlz4", (void 0)))
DevTools listening on ws://localhost:41075/devtools/browser/748c57a7-550b-4430-920d-7e06607f2ed0
1641376252753 Marionette INFO Listening on port 45487
1641376252777 RemoteAgent WARN TLS certificate errors will be ignored for this session
1641376256259 geckodriver INFO Listening on 127.0.0.1:36195
1641376256263 mozrunner::runner INFO Running command: "/usr/bin/firefox" "--marionette" "-headless" "--remote-debugging-port" "52785" "-no-remote" "-profile" "/tmp/rust_mozprofilenD6Lrk"
*** You are running in headless mode.
1641376256556 Marionette INFO Marionette enabled
[GFX1-]: RenderCompositorSWGL failed mapping default framebuffer, no dt
console.warn: SearchSettings: "get: No settings file exists, new profile?" (new NotFoundError("Could not open the file at /tmp/rust_mozprofilenD6Lrk/search.json.mozlz4", (void 0)))
DevTools listening on ws://localhost:52785/devtools/browser/c23571b8-1cd2-425c-9a03-984849ce71bd
1641376257492 Marionette INFO Listening on port 36327
1641376257601 RemoteAgent WARN TLS certificate errors will be ignored for this session
1641376270715 geckodriver INFO Listening on 127.0.0.1:60571
1641376270745 mozrunner::runner INFO Running command: "/usr/bin/firefox" "--marionette" "-headless" "--remote-debugging-port" "59065" "-no-remote" "-profile" "/tmp/rust_mozprofilefBIRoC"
*** You are running in headless mode.
1641376273028 Marionette INFO Marionette enabled
[GFX1-]: RenderCompositorSWGL failed mapping default framebuffer, no dt
console.warn: SearchSettings: "get: No settings file exists, new profile?" (new NotFoundError("Could not open the file at /tmp/rust_mozprofilefBIRoC/search.json.mozlz4", (void 0)))