-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathgeckodriver.log
5272 lines (5255 loc) · 387 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
1677277703639 geckodriver INFO Listening on 127.0.0.1:57843
1677277991692 geckodriver INFO Listening on 127.0.0.1:50677
1677277991703 mozrunner::runner INFO Running command: "/home/deck/firefox-esr/firefox" "--marionette" "--remote-debugging-port" "53141" "--remote-allow-hosts" "localhost" "-no-remote" "-profile" "/tmp/rust_mozprofilel4qYl2"
Gtk-Message: 23:33:11.744: Failed to load module "canberra-gtk-module"
Gtk-Message: 23:33:11.833: Failed to load module "colorreload-gtk-module"
Gtk-Message: 23:33:11.833: Failed to load module "window-decorations-gtk-module"
ATTENTION: default value of option mesa_glthread overridden by environment.
ATTENTION: default value of option mesa_glthread overridden by environment.
1677277992628 Marionette INFO Marionette enabled
1677277992634 Marionette INFO Listening on port 40463
WebDriver BiDi listening on ws://localhost:53141
Read port: 40463
1677277992798 RemoteAgent WARN TLS certificate errors will be ignored for this session
console.warn: SearchSettings: "get: No settings file exists, new profile?" (new NotFoundError("Could not open the file at /tmp/rust_mozprofilel4qYl2/search.json.mozlz4", (void 0)))
DevTools listening on ws://localhost:53141/devtools/browser/04958973-8031-4c22-9e62-2e727b2e1261
1677278042996 geckodriver INFO Listening on 127.0.0.1:38589
1677278043008 mozrunner::runner INFO Running command: "/home/deck/firefox-esr/firefox" "--marionette" "--remote-debugging-port" "55749" "--remote-allow-hosts" "localhost" "-no-remote" "-profile" "/tmp/rust_mozprofilellmfES"
Gtk-Message: 23:34:03.053: Failed to load module "canberra-gtk-module"
Gtk-Message: 23:34:03.146: Failed to load module "colorreload-gtk-module"
Gtk-Message: 23:34:03.147: Failed to load module "window-decorations-gtk-module"
ATTENTION: default value of option mesa_glthread overridden by environment.
ATTENTION: default value of option mesa_glthread overridden by environment.
1677278043946 Marionette INFO Marionette enabled
1677278043953 Marionette INFO Listening on port 34479
WebDriver BiDi listening on ws://localhost:55749
Read port: 34479
1677278044122 RemoteAgent WARN TLS certificate errors will be ignored for this session
console.warn: SearchSettings: "get: No settings file exists, new profile?" (new NotFoundError("Could not open the file at /tmp/rust_mozprofilellmfES/search.json.mozlz4", (void 0)))
DevTools listening on ws://localhost:55749/devtools/browser/4ef683ca-608f-4aca-8337-74defb808e6e
1677278088056 geckodriver INFO Listening on 127.0.0.1:38005
1677278088069 mozrunner::runner INFO Running command: "/home/deck/firefox-esr/firefox" "--marionette" "--remote-debugging-port" "48009" "--remote-allow-hosts" "localhost" "-no-remote" "-profile" "/tmp/rust_mozprofile5byMQO"
Gtk-Message: 23:34:48.112: Failed to load module "canberra-gtk-module"
Gtk-Message: 23:34:48.202: Failed to load module "colorreload-gtk-module"
Gtk-Message: 23:34:48.202: Failed to load module "window-decorations-gtk-module"
ATTENTION: default value of option mesa_glthread overridden by environment.
ATTENTION: default value of option mesa_glthread overridden by environment.
1677278088952 Marionette INFO Marionette enabled
1677278088958 Marionette INFO Listening on port 37771
WebDriver BiDi listening on ws://localhost:48009
Read port: 37771
1677278089143 RemoteAgent WARN TLS certificate errors will be ignored for this session
console.warn: SearchSettings: "get: No settings file exists, new profile?" (new NotFoundError("Could not open the file at /tmp/rust_mozprofile5byMQO/search.json.mozlz4", (void 0)))
DevTools listening on ws://localhost:48009/devtools/browser/d5734144-1839-4a48-9cfa-403c5088ade1
1677278147969 geckodriver INFO Listening on 127.0.0.1:37767
1677278147981 mozrunner::runner INFO Running command: "/home/deck/firefox-esr/firefox" "--marionette" "--remote-debugging-port" "40531" "--remote-allow-hosts" "localhost" "-no-remote" "-profile" "/tmp/rust_mozprofile9MLuA5"
Gtk-Message: 23:35:48.024: Failed to load module "canberra-gtk-module"
Gtk-Message: 23:35:48.126: Failed to load module "colorreload-gtk-module"
Gtk-Message: 23:35:48.126: Failed to load module "window-decorations-gtk-module"
ATTENTION: default value of option mesa_glthread overridden by environment.
ATTENTION: default value of option mesa_glthread overridden by environment.
1677278148904 Marionette INFO Marionette enabled
1677278148909 Marionette INFO Listening on port 45327
WebDriver BiDi listening on ws://localhost:40531
Read port: 45327
1677278149069 RemoteAgent WARN TLS certificate errors will be ignored for this session
console.warn: SearchSettings: "get: No settings file exists, new profile?" (new NotFoundError("Could not open the file at /tmp/rust_mozprofile9MLuA5/search.json.mozlz4", (void 0)))
DevTools listening on ws://localhost:40531/devtools/browser/5ffae6ff-270c-42e9-bcdf-2997e0bcf1a2
SourceActor threw an exception: [Exception... "Component returned failure code: 0x80470002 (NS_BASE_STREAM_CLOSED) [nsIInputStream.available]" nsresult: "0x80470002 (NS_BASE_STREAM_CLOSED)" location: "JS frame :: resource://devtools/shared/DevToolsUtils.js :: onResponse :: line 596" data: no]
Stack: onResponse@resource://devtools/shared/DevToolsUtils.js:596:34
onStopRequest@resource://gre/modules/NetUtil.jsm:128:18
Line: 596, column: 0
console.error: ({})
JavaScript error: resource://devtools/shared/DevToolsUtils.js, line 596: NS_BASE_STREAM_CLOSED: Component returned failure code: 0x80470002 (NS_BASE_STREAM_CLOSED) [nsIInputStream.available]
1677278366070 geckodriver INFO Listening on 127.0.0.1:56487
1677278366082 mozrunner::runner INFO Running command: "/home/deck/firefox-esr/firefox" "--marionette" "--remote-debugging-port" "52803" "--remote-allow-hosts" "localhost" "-no-remote" "-profile" "/tmp/rust_mozprofile9lYQXR"
Gtk-Message: 23:39:26.125: Failed to load module "canberra-gtk-module"
Gtk-Message: 23:39:26.214: Failed to load module "colorreload-gtk-module"
Gtk-Message: 23:39:26.214: Failed to load module "window-decorations-gtk-module"
ATTENTION: default value of option mesa_glthread overridden by environment.
ATTENTION: default value of option mesa_glthread overridden by environment.
1677278366965 Marionette INFO Marionette enabled
1677278366970 Marionette INFO Listening on port 36573
WebDriver BiDi listening on ws://localhost:52803
Read port: 36573
1677278367156 RemoteAgent WARN TLS certificate errors will be ignored for this session
console.warn: SearchSettings: "get: No settings file exists, new profile?" (new NotFoundError("Could not open the file at /tmp/rust_mozprofile9lYQXR/search.json.mozlz4", (void 0)))
DevTools listening on ws://localhost:52803/devtools/browser/a3686828-7a18-4df6-bc39-d1e5dd0c2be4
1677278417478 geckodriver INFO Listening on 127.0.0.1:58851
1677278417489 mozrunner::runner INFO Running command: "/home/deck/firefox-esr/firefox" "--marionette" "--remote-debugging-port" "55269" "--remote-allow-hosts" "localhost" "-no-remote" "-profile" "/tmp/rust_mozprofile9WKoV4"
Gtk-Message: 23:40:17.532: Failed to load module "canberra-gtk-module"
Gtk-Message: 23:40:17.622: Failed to load module "colorreload-gtk-module"
Gtk-Message: 23:40:17.622: Failed to load module "window-decorations-gtk-module"
ATTENTION: default value of option mesa_glthread overridden by environment.
ATTENTION: default value of option mesa_glthread overridden by environment.
1677278418501 Marionette INFO Marionette enabled
1677278418508 Marionette INFO Listening on port 33049
WebDriver BiDi listening on ws://localhost:55269
Read port: 33049
1677278418715 RemoteAgent WARN TLS certificate errors will be ignored for this session
console.warn: SearchSettings: "get: No settings file exists, new profile?" (new NotFoundError("Could not open the file at /tmp/rust_mozprofile9WKoV4/search.json.mozlz4", (void 0)))
DevTools listening on ws://localhost:55269/devtools/browser/4d3f1f61-67f3-4aeb-9ebe-c7c6f69e0b92
1677315040486 Marionette INFO Stopped listening on port 33049
console.warn: LoginRecipes: "getRecipes: falling back to a synchronous message for:" "https://www.indeed.com"
console.warn: LoginRecipes: "getRecipes: falling back to a synchronous message for:" "https://www.indeed.com"
1677315952352 Marionette INFO Stopped listening on port 36573
1677317074383 geckodriver INFO Listening on 127.0.0.1:39687
1677317074893 mozrunner::runner INFO Running command: "/home/deck/firefox-esr/firefox" "--marionette" "--remote-debugging-port" "45205" "--remote-allow-hosts" "localhost" "-no-remote" "-profile" "/tmp/rust_mozprofileAYjtVy"
Gtk-Message: 10:24:34.935: Failed to load module "canberra-gtk-module"
Gtk-Message: 10:24:35.037: Failed to load module "colorreload-gtk-module"
Gtk-Message: 10:24:35.038: Failed to load module "window-decorations-gtk-module"
ATTENTION: default value of option mesa_glthread overridden by environment.
ATTENTION: default value of option mesa_glthread overridden by environment.
1677317075820 Marionette INFO Marionette enabled
1677317075826 Marionette INFO Listening on port 39913
WebDriver BiDi listening on ws://localhost:45205
Read port: 39913
1677317076035 RemoteAgent WARN TLS certificate errors will be ignored for this session
console.warn: SearchSettings: "get: No settings file exists, new profile?" (new NotFoundError("Could not open the file at /tmp/rust_mozprofileAYjtVy/search.json.mozlz4", (void 0)))
DevTools listening on ws://localhost:45205/devtools/browser/36b3b770-9a53-4f8d-9b60-cc15052132aa
1677317096074 Marionette INFO Stopped listening on port 40463
1677317097132 Marionette INFO Stopped listening on port 37771
1677317097854 Marionette INFO Stopped listening on port 34479
1677317098338 Marionette INFO Stopped listening on port 39913
JavaScript error: resource://gre/modules/AsyncShutdown.jsm, line 575: NotFoundError: No such JSWindowActor 'DevToolsFrame'
JavaScript error: resource://gre/modules/AsyncShutdown.jsm, line 575: NotFoundError: No such JSWindowActor 'DevToolsFrame'
1677317101360 Marionette INFO Stopped listening on port 45327
1677317114406 geckodriver::marionette ERROR Failed to close browser connection: Socket not connected (os error 107)
1677317182009 geckodriver INFO Listening on 127.0.0.1:36155
1677317182021 mozrunner::runner INFO Running command: "/home/deck/firefox-esr/firefox" "--marionette" "--remote-debugging-port" "48791" "--remote-allow-hosts" "localhost" "-no-remote" "-profile" "/tmp/rust_mozprofilefNywro"
Gtk-Message: 10:26:22.062: Failed to load module "canberra-gtk-module"
Gtk-Message: 10:26:22.146: Failed to load module "colorreload-gtk-module"
Gtk-Message: 10:26:22.146: Failed to load module "window-decorations-gtk-module"
ATTENTION: default value of option mesa_glthread overridden by environment.
ATTENTION: default value of option mesa_glthread overridden by environment.
1677317182885 Marionette INFO Marionette enabled
1677317182890 Marionette INFO Listening on port 44605
WebDriver BiDi listening on ws://localhost:48791
Read port: 44605
1677317183053 RemoteAgent WARN TLS certificate errors will be ignored for this session
console.warn: SearchSettings: "get: No settings file exists, new profile?" (new NotFoundError("Could not open the file at /tmp/rust_mozprofilefNywro/search.json.mozlz4", (void 0)))
DevTools listening on ws://localhost:48791/devtools/browser/d3c1749c-bc18-4034-ab0b-48ec8605426c
1677317248031 geckodriver INFO Listening on 127.0.0.1:45379
1677317248044 mozrunner::runner INFO Running command: "/home/deck/firefox-esr/firefox" "--marionette" "--remote-debugging-port" "45973" "--remote-allow-hosts" "localhost" "-no-remote" "-profile" "/tmp/rust_mozprofileWYtoQV"
Gtk-Message: 10:27:28.086: Failed to load module "canberra-gtk-module"
Gtk-Message: 10:27:28.171: Failed to load module "colorreload-gtk-module"
Gtk-Message: 10:27:28.171: Failed to load module "window-decorations-gtk-module"
ATTENTION: default value of option mesa_glthread overridden by environment.
ATTENTION: default value of option mesa_glthread overridden by environment.
1677317248922 Marionette INFO Marionette enabled
1677317248928 Marionette INFO Listening on port 37975
WebDriver BiDi listening on ws://localhost:45973
Read port: 37975
1677317249113 RemoteAgent WARN TLS certificate errors will be ignored for this session
console.warn: SearchSettings: "get: No settings file exists, new profile?" (new NotFoundError("Could not open the file at /tmp/rust_mozprofileWYtoQV/search.json.mozlz4", (void 0)))
DevTools listening on ws://localhost:45973/devtools/browser/33cd0a11-9914-4f33-89cf-4d3358400ebb
1677317335791 geckodriver INFO Listening on 127.0.0.1:50765
1677317335802 mozrunner::runner INFO Running command: "/home/deck/firefox-esr/firefox" "--marionette" "--remote-debugging-port" "42397" "--remote-allow-hosts" "localhost" "-no-remote" "-profile" "/tmp/rust_mozprofilefhq2Ko"
Gtk-Message: 10:28:55.840: Failed to load module "canberra-gtk-module"
Gtk-Message: 10:28:55.935: Failed to load module "colorreload-gtk-module"
Gtk-Message: 10:28:55.936: Failed to load module "window-decorations-gtk-module"
ATTENTION: default value of option mesa_glthread overridden by environment.
ATTENTION: default value of option mesa_glthread overridden by environment.
1677317336686 Marionette INFO Marionette enabled
1677317336692 Marionette INFO Listening on port 38889
WebDriver BiDi listening on ws://localhost:42397
Read port: 38889
1677317336854 RemoteAgent WARN TLS certificate errors will be ignored for this session
console.warn: SearchSettings: "get: No settings file exists, new profile?" (new NotFoundError("Could not open the file at /tmp/rust_mozprofilefhq2Ko/search.json.mozlz4", (void 0)))
DevTools listening on ws://localhost:42397/devtools/browser/46983195-d4d9-4041-87a8-9f82e38d32cc
SourceActor threw an exception: [Exception... "Component returned failure code: 0x80470002 (NS_BASE_STREAM_CLOSED) [nsIInputStream.available]" nsresult: "0x80470002 (NS_BASE_STREAM_CLOSED)" location: "JS frame :: resource://devtools/shared/DevToolsUtils.js :: onResponse :: line 596" data: no]
Stack: onResponse@resource://devtools/shared/DevToolsUtils.js:596:34
onStopRequest@resource://gre/modules/NetUtil.jsm:128:18
Line: 596, column: 0
console.error: ({})
JavaScript error: resource://devtools/shared/DevToolsUtils.js, line 596: NS_BASE_STREAM_CLOSED: Component returned failure code: 0x80470002 (NS_BASE_STREAM_CLOSED) [nsIInputStream.available]
1677317395240 geckodriver INFO Listening on 127.0.0.1:57371
1677317395253 mozrunner::runner INFO Running command: "/home/deck/firefox-esr/firefox" "--marionette" "--remote-debugging-port" "56217" "--remote-allow-hosts" "localhost" "-no-remote" "-profile" "/tmp/rust_mozprofilegz844l"
Gtk-Message: 10:29:55.301: Failed to load module "canberra-gtk-module"
Gtk-Message: 10:29:55.398: Failed to load module "colorreload-gtk-module"
Gtk-Message: 10:29:55.399: Failed to load module "window-decorations-gtk-module"
ATTENTION: default value of option mesa_glthread overridden by environment.
ATTENTION: default value of option mesa_glthread overridden by environment.
1677317396181 Marionette INFO Marionette enabled
1677317396187 Marionette INFO Listening on port 46365
WebDriver BiDi listening on ws://localhost:56217
Read port: 46365
1677317396357 RemoteAgent WARN TLS certificate errors will be ignored for this session
console.warn: SearchSettings: "get: No settings file exists, new profile?" (new NotFoundError("Could not open the file at /tmp/rust_mozprofilegz844l/search.json.mozlz4", (void 0)))
DevTools listening on ws://localhost:56217/devtools/browser/af899c7c-5c15-48d0-80c3-ef0cf8f8f857
1677317399007 Marionette INFO Stopped listening on port 37975
1677317488188 geckodriver INFO Listening on 127.0.0.1:58395
1677317488196 mozrunner::runner INFO Running command: "/home/deck/firefox-esr/firefox" "--marionette" "--remote-debugging-port" "34341" "--remote-allow-hosts" "localhost" "-no-remote" "-profile" "/tmp/rust_mozprofilevJrIHD"
Gtk-Message: 10:31:28.226: Failed to load module "canberra-gtk-module"
Gtk-Message: 10:31:28.295: Failed to load module "colorreload-gtk-module"
Gtk-Message: 10:31:28.296: Failed to load module "window-decorations-gtk-module"
ATTENTION: default value of option mesa_glthread overridden by environment.
ATTENTION: default value of option mesa_glthread overridden by environment.
1677317488909 Marionette INFO Marionette enabled
1677317488914 Marionette INFO Listening on port 36559
WebDriver BiDi listening on ws://localhost:34341
Read port: 36559
1677317489062 RemoteAgent WARN TLS certificate errors will be ignored for this session
console.warn: SearchSettings: "get: No settings file exists, new profile?" (new NotFoundError("Could not open the file at /tmp/rust_mozprofilevJrIHD/search.json.mozlz4", (void 0)))
DevTools listening on ws://localhost:34341/devtools/browser/8e596172-820b-4bda-bd30-455a035a9ce1
1677317519479 geckodriver INFO Listening on 127.0.0.1:44385
1677317519490 mozrunner::runner INFO Running command: "/home/deck/firefox-esr/firefox" "--marionette" "--remote-debugging-port" "60113" "--remote-allow-hosts" "localhost" "-no-remote" "-profile" "/tmp/rust_mozprofileQLodpG"
Gtk-Message: 10:31:59.533: Failed to load module "canberra-gtk-module"
Gtk-Message: 10:31:59.622: Failed to load module "colorreload-gtk-module"
Gtk-Message: 10:31:59.622: Failed to load module "window-decorations-gtk-module"
ATTENTION: default value of option mesa_glthread overridden by environment.
ATTENTION: default value of option mesa_glthread overridden by environment.
1677317520370 Marionette INFO Marionette enabled
1677317520376 Marionette INFO Listening on port 36427
WebDriver BiDi listening on ws://localhost:60113
Read port: 36427
1677317520570 RemoteAgent WARN TLS certificate errors will be ignored for this session
console.warn: SearchSettings: "get: No settings file exists, new profile?" (new NotFoundError("Could not open the file at /tmp/rust_mozprofileQLodpG/search.json.mozlz4", (void 0)))
DevTools listening on ws://localhost:60113/devtools/browser/edb03bda-c9ab-4e9d-ac14-9fcfa2b28a18
SourceActor threw an exception: [Exception... "Component returned failure code: 0x80470002 (NS_BASE_STREAM_CLOSED) [nsIInputStream.available]" nsresult: "0x80470002 (NS_BASE_STREAM_CLOSED)" location: "JS frame :: resource://devtools/shared/DevToolsUtils.js :: onResponse :: line 596" data: no]
Stack: onResponse@resource://devtools/shared/DevToolsUtils.js:596:34
onStopRequest@resource://gre/modules/NetUtil.jsm:128:18
Line: 596, column: 0
console.error: ({})
JavaScript error: resource://devtools/shared/DevToolsUtils.js, line 596: NS_BASE_STREAM_CLOSED: Component returned failure code: 0x80470002 (NS_BASE_STREAM_CLOSED) [nsIInputStream.available]
1677317578571 Marionette INFO Stopped listening on port 36559
Sandbox: Unexpected EOF, op 0 flags 00 path /proc/cpuinfo
1677317580642 Marionette INFO Stopped listening on port 46365
JavaScript error: resource://gre/modules/AsyncShutdown.jsm, line 575: NotFoundError: No such JSWindowActor 'DevToolsFrame'
JavaScript error: resource://gre/modules/AsyncShutdown.jsm, line 575: NotFoundError: No such JSWindowActor 'DevToolsFrame'
JavaScript error: resource://gre/modules/AsyncShutdown.jsm, line 575: NotFoundError: No such JSWindowActor 'DevToolsFrame'
JavaScript error: resource://gre/modules/AsyncShutdown.jsm, line 575: NotFoundError: No such JSWindowActor 'DevToolsFrame'
JavaScript error: resource://gre/modules/AsyncShutdown.jsm, line 575: NotFoundError: No such JSWindowActor 'DevToolsFrame'
JavaScript error: resource://gre/modules/AsyncShutdown.jsm, line 575: NotFoundError: No such JSWindowActor 'DevToolsFrame'
1677317580800 Marionette INFO Stopped listening on port 44605
1677317580802 Marionette INFO Stopped listening on port 36427
1677317580823 Marionette INFO Stopped listening on port 38889
1677317583772 geckodriver INFO Listening on 127.0.0.1:45809
1677317583785 mozrunner::runner INFO Running command: "/home/deck/firefox-esr/firefox" "--marionette" "--remote-debugging-port" "48183" "--remote-allow-hosts" "localhost" "-no-remote" "-profile" "/tmp/rust_mozprofilezMSdD1"
Gtk-Message: 10:33:03.828: Failed to load module "canberra-gtk-module"
Gtk-Message: 10:33:03.910: Failed to load module "colorreload-gtk-module"
Gtk-Message: 10:33:03.911: Failed to load module "window-decorations-gtk-module"
ATTENTION: default value of option mesa_glthread overridden by environment.
ATTENTION: default value of option mesa_glthread overridden by environment.
1677317584652 Marionette INFO Marionette enabled
1677317584658 Marionette INFO Listening on port 43019
WebDriver BiDi listening on ws://localhost:48183
Read port: 43019
1677317584833 RemoteAgent WARN TLS certificate errors will be ignored for this session
console.warn: SearchSettings: "get: No settings file exists, new profile?" (new NotFoundError("Could not open the file at /tmp/rust_mozprofilezMSdD1/search.json.mozlz4", (void 0)))
DevTools listening on ws://localhost:48183/devtools/browser/8368e031-9e26-4906-bb5c-1a042a286dde
SourceActor threw an exception: [Exception... "Component returned failure code: 0x80470002 (NS_BASE_STREAM_CLOSED) [nsIInputStream.available]" nsresult: "0x80470002 (NS_BASE_STREAM_CLOSED)" location: "JS frame :: resource://devtools/shared/DevToolsUtils.js :: onResponse :: line 596" data: no]
Stack: onResponse@resource://devtools/shared/DevToolsUtils.js:596:34
onStopRequest@resource://gre/modules/NetUtil.jsm:128:18
Line: 596, column: 0
console.error: ({})
JavaScript error: resource://devtools/shared/DevToolsUtils.js, line 596: NS_BASE_STREAM_CLOSED: Component returned failure code: 0x80470002 (NS_BASE_STREAM_CLOSED) [nsIInputStream.available]
1677317747163 geckodriver INFO Listening on 127.0.0.1:44509
1677317747177 mozrunner::runner INFO Running command: "/home/deck/firefox-esr/firefox" "--marionette" "--remote-debugging-port" "45885" "--remote-allow-hosts" "localhost" "-no-remote" "-profile" "/tmp/rust_mozprofilegqsV56"
Gtk-Message: 10:35:47.219: Failed to load module "canberra-gtk-module"
Gtk-Message: 10:35:47.303: Failed to load module "colorreload-gtk-module"
Gtk-Message: 10:35:47.303: Failed to load module "window-decorations-gtk-module"
ATTENTION: default value of option mesa_glthread overridden by environment.
ATTENTION: default value of option mesa_glthread overridden by environment.
1677317748041 Marionette INFO Marionette enabled
1677317748048 Marionette INFO Listening on port 40189
WebDriver BiDi listening on ws://localhost:45885
Read port: 40189
1677317748219 RemoteAgent WARN TLS certificate errors will be ignored for this session
console.warn: SearchSettings: "get: No settings file exists, new profile?" (new NotFoundError("Could not open the file at /tmp/rust_mozprofilegqsV56/search.json.mozlz4", (void 0)))
DevTools listening on ws://localhost:45885/devtools/browser/455a6e01-b597-4529-9de2-063f0603492f
SourceActor threw an exception: [Exception... "Component returned failure code: 0x80470002 (NS_BASE_STREAM_CLOSED) [nsIInputStream.available]" nsresult: "0x80470002 (NS_BASE_STREAM_CLOSED)" location: "JS frame :: resource://devtools/shared/DevToolsUtils.js :: onResponse :: line 596" data: no]
Stack: onResponse@resource://devtools/shared/DevToolsUtils.js:596:34
onStopRequest@resource://gre/modules/NetUtil.jsm:128:18
Line: 596, column: 0
console.error: ({})
JavaScript error: resource://devtools/shared/DevToolsUtils.js, line 596: NS_BASE_STREAM_CLOSED: Component returned failure code: 0x80470002 (NS_BASE_STREAM_CLOSED) [nsIInputStream.available]
1677317877455 geckodriver INFO Listening on 127.0.0.1:57695
1677317877466 mozrunner::runner INFO Running command: "/home/deck/firefox-esr/firefox" "--marionette" "--remote-debugging-port" "53751" "--remote-allow-hosts" "localhost" "-no-remote" "-profile" "/tmp/rust_mozprofilebr58M3"
Gtk-Message: 10:37:57.502: Failed to load module "canberra-gtk-module"
Gtk-Message: 10:37:57.588: Failed to load module "colorreload-gtk-module"
Gtk-Message: 10:37:57.589: Failed to load module "window-decorations-gtk-module"
ATTENTION: default value of option mesa_glthread overridden by environment.
ATTENTION: default value of option mesa_glthread overridden by environment.
1677317878344 Marionette INFO Marionette enabled
1677317878350 Marionette INFO Listening on port 33527
WebDriver BiDi listening on ws://localhost:53751
Read port: 33527
1677317878517 RemoteAgent WARN TLS certificate errors will be ignored for this session
console.warn: SearchSettings: "get: No settings file exists, new profile?" (new NotFoundError("Could not open the file at /tmp/rust_mozprofilebr58M3/search.json.mozlz4", (void 0)))
DevTools listening on ws://localhost:53751/devtools/browser/060f6b11-806c-4c8e-a704-eaca0fece690
1677317911346 geckodriver INFO Listening on 127.0.0.1:45849
1677317911356 mozrunner::runner INFO Running command: "/home/deck/firefox-esr/firefox" "--marionette" "--remote-debugging-port" "35195" "--remote-allow-hosts" "localhost" "-no-remote" "-profile" "/tmp/rust_mozprofile194xRX"
Gtk-Message: 10:38:31.397: Failed to load module "canberra-gtk-module"
Gtk-Message: 10:38:31.486: Failed to load module "colorreload-gtk-module"
Gtk-Message: 10:38:31.486: Failed to load module "window-decorations-gtk-module"
ATTENTION: default value of option mesa_glthread overridden by environment.
ATTENTION: default value of option mesa_glthread overridden by environment.
1677317912218 Marionette INFO Marionette enabled
1677317912224 Marionette INFO Listening on port 39331
WebDriver BiDi listening on ws://localhost:35195
Read port: 39331
1677317912396 RemoteAgent WARN TLS certificate errors will be ignored for this session
console.warn: SearchSettings: "get: No settings file exists, new profile?" (new NotFoundError("Could not open the file at /tmp/rust_mozprofile194xRX/search.json.mozlz4", (void 0)))
DevTools listening on ws://localhost:35195/devtools/browser/301ddea3-7cac-419d-a9d2-b8fdc3e06499
SourceActor threw an exception: [Exception... "Component returned failure code: 0x80470002 (NS_BASE_STREAM_CLOSED) [nsIInputStream.available]" nsresult: "0x80470002 (NS_BASE_STREAM_CLOSED)" location: "JS frame :: resource://devtools/shared/DevToolsUtils.js :: onResponse :: line 596" data: no]
Stack: onResponse@resource://devtools/shared/DevToolsUtils.js:596:34
onStopRequest@resource://gre/modules/NetUtil.jsm:128:18
Line: 596, column: 0
console.error: ({})
JavaScript error: resource://devtools/shared/DevToolsUtils.js, line 596: NS_BASE_STREAM_CLOSED: Component returned failure code: 0x80470002 (NS_BASE_STREAM_CLOSED) [nsIInputStream.available]
JavaScript error: https://d3fw5vlhllyvee.cloudfront.net/dist/header/6600.f8fe9f0e0956bd104a55.js, line 2: uncaught exception: undefined
JavaScript error: resource://devtools/client/inspector/rules/utils/utils.js, line 186: TypeError: rule is undefined
JavaScript error: resource://devtools/client/inspector/rules/utils/utils.js, line 186: TypeError: rule is undefined
JavaScript error: resource://devtools/client/inspector/rules/utils/utils.js, line 186: TypeError: rule is undefined
JavaScript error: resource://devtools/client/inspector/rules/utils/utils.js, line 186: TypeError: rule is undefined
JavaScript error: resource://devtools/client/inspector/rules/utils/utils.js, line 186: TypeError: rule is undefined
JavaScript error: resource://devtools/client/inspector/rules/utils/utils.js, line 186: TypeError: rule is undefined
JavaScript error: resource://devtools/client/inspector/rules/utils/utils.js, line 186: TypeError: rule is undefined
JavaScript error: resource://devtools/client/inspector/rules/utils/utils.js, line 186: TypeError: rule is undefined
JavaScript error: resource://devtools/client/inspector/rules/utils/utils.js, line 186: TypeError: rule is undefined
JavaScript error: resource://devtools/client/inspector/rules/utils/utils.js, line 186: TypeError: rule is undefined
1677318756274 geckodriver INFO Listening on 127.0.0.1:47847
1677318756287 mozrunner::runner INFO Running command: "/home/deck/firefox-esr/firefox" "--marionette" "--remote-debugging-port" "51531" "--remote-allow-hosts" "localhost" "-no-remote" "-profile" "/tmp/rust_mozprofilevZAmly"
Gtk-Message: 10:52:36.328: Failed to load module "canberra-gtk-module"
Gtk-Message: 10:52:36.416: Failed to load module "colorreload-gtk-module"
Gtk-Message: 10:52:36.416: Failed to load module "window-decorations-gtk-module"
ATTENTION: default value of option mesa_glthread overridden by environment.
ATTENTION: default value of option mesa_glthread overridden by environment.
1677318757176 Marionette INFO Marionette enabled
1677318757182 Marionette INFO Listening on port 40547
Read port: 40547
WebDriver BiDi listening on ws://localhost:51531
1677318757369 RemoteAgent WARN TLS certificate errors will be ignored for this session
console.warn: SearchSettings: "get: No settings file exists, new profile?" (new NotFoundError("Could not open the file at /tmp/rust_mozprofilevZAmly/search.json.mozlz4", (void 0)))
DevTools listening on ws://localhost:51531/devtools/browser/1428ac26-9525-445e-8f1a-f27fe0f45157
1677318814518 geckodriver INFO Listening on 127.0.0.1:33923
1677318814529 mozrunner::runner INFO Running command: "/home/deck/firefox-esr/firefox" "--marionette" "--remote-debugging-port" "53175" "--remote-allow-hosts" "localhost" "-no-remote" "-profile" "/tmp/rust_mozprofileXhrSg9"
Gtk-Message: 10:53:34.575: Failed to load module "canberra-gtk-module"
Gtk-Message: 10:53:34.666: Failed to load module "colorreload-gtk-module"
Gtk-Message: 10:53:34.667: Failed to load module "window-decorations-gtk-module"
ATTENTION: default value of option mesa_glthread overridden by environment.
ATTENTION: default value of option mesa_glthread overridden by environment.
1677318815407 Marionette INFO Marionette enabled
1677318815412 Marionette INFO Listening on port 35925
WebDriver BiDi listening on ws://localhost:53175
Read port: 35925
1677318815585 RemoteAgent WARN TLS certificate errors will be ignored for this session
console.warn: SearchSettings: "get: No settings file exists, new profile?" (new NotFoundError("Could not open the file at /tmp/rust_mozprofileXhrSg9/search.json.mozlz4", (void 0)))
DevTools listening on ws://localhost:53175/devtools/browser/4da6360c-f26a-47d5-aa22-2c4a8a648dae
SourceActor threw an exception: [Exception... "Component returned failure code: 0x80470002 (NS_BASE_STREAM_CLOSED) [nsIInputStream.available]" nsresult: "0x80470002 (NS_BASE_STREAM_CLOSED)" location: "JS frame :: resource://devtools/shared/DevToolsUtils.js :: onResponse :: line 596" data: no]
Stack: onResponse@resource://devtools/shared/DevToolsUtils.js:596:34
onStopRequest@resource://gre/modules/NetUtil.jsm:128:18
Line: 596, column: 0
console.error: ({})
JavaScript error: resource://devtools/shared/DevToolsUtils.js, line 596: NS_BASE_STREAM_CLOSED: Component returned failure code: 0x80470002 (NS_BASE_STREAM_CLOSED) [nsIInputStream.available]
1677318878624 geckodriver INFO Listening on 127.0.0.1:54773
1677318878635 mozrunner::runner INFO Running command: "/home/deck/firefox-esr/firefox" "--marionette" "--remote-debugging-port" "53941" "--remote-allow-hosts" "localhost" "-no-remote" "-profile" "/tmp/rust_mozprofileDnMFd6"
Gtk-Message: 10:54:38.683: Failed to load module "canberra-gtk-module"
Gtk-Message: 10:54:38.768: Failed to load module "colorreload-gtk-module"
Gtk-Message: 10:54:38.768: Failed to load module "window-decorations-gtk-module"
ATTENTION: default value of option mesa_glthread overridden by environment.
ATTENTION: default value of option mesa_glthread overridden by environment.
1677318879492 Marionette INFO Marionette enabled
1677318879498 Marionette INFO Listening on port 34847
WebDriver BiDi listening on ws://localhost:53941
Read port: 34847
1677318879685 RemoteAgent WARN TLS certificate errors will be ignored for this session
console.warn: SearchSettings: "get: No settings file exists, new profile?" (new NotFoundError("Could not open the file at /tmp/rust_mozprofileDnMFd6/search.json.mozlz4", (void 0)))
DevTools listening on ws://localhost:53941/devtools/browser/e54a57ed-c123-4984-a4ee-664152b9d659
1677318940304 geckodriver INFO Listening on 127.0.0.1:38847
1677318940317 mozrunner::runner INFO Running command: "/home/deck/firefox-esr/firefox" "--marionette" "--remote-debugging-port" "39467" "--remote-allow-hosts" "localhost" "-no-remote" "-profile" "/tmp/rust_mozprofileZYi8dF"
Gtk-Message: 10:55:40.369: Failed to load module "canberra-gtk-module"
Gtk-Message: 10:55:40.461: Failed to load module "colorreload-gtk-module"
Gtk-Message: 10:55:40.461: Failed to load module "window-decorations-gtk-module"
ATTENTION: default value of option mesa_glthread overridden by environment.
ATTENTION: default value of option mesa_glthread overridden by environment.
1677318941214 Marionette INFO Marionette enabled
1677318941220 Marionette INFO Listening on port 34829
WebDriver BiDi listening on ws://localhost:39467
Read port: 34829
1677318941535 RemoteAgent WARN TLS certificate errors will be ignored for this session
console.warn: SearchSettings: "get: No settings file exists, new profile?" (new NotFoundError("Could not open the file at /tmp/rust_mozprofileZYi8dF/search.json.mozlz4", (void 0)))
DevTools listening on ws://localhost:39467/devtools/browser/df0b2223-7d9d-4694-8179-8ae305f5488d
1677318980217 geckodriver INFO Listening on 127.0.0.1:45805
1677318980232 mozrunner::runner INFO Running command: "/home/deck/firefox-esr/firefox" "--marionette" "--remote-debugging-port" "40363" "--remote-allow-hosts" "localhost" "-no-remote" "-profile" "/tmp/rust_mozprofileryuTuA"
Gtk-Message: 10:56:20.285: Failed to load module "canberra-gtk-module"
Gtk-Message: 10:56:20.389: Failed to load module "colorreload-gtk-module"
Gtk-Message: 10:56:20.389: Failed to load module "window-decorations-gtk-module"
ATTENTION: default value of option mesa_glthread overridden by environment.
ATTENTION: default value of option mesa_glthread overridden by environment.
1677318981114 Marionette INFO Marionette enabled
1677318981120 Marionette INFO Listening on port 46759
WebDriver BiDi listening on ws://localhost:40363
Read port: 46759
1677318981300 RemoteAgent WARN TLS certificate errors will be ignored for this session
console.warn: SearchSettings: "get: No settings file exists, new profile?" (new NotFoundError("Could not open the file at /tmp/rust_mozprofileryuTuA/search.json.mozlz4", (void 0)))
DevTools listening on ws://localhost:40363/devtools/browser/233c3c1a-6fb5-4064-b79b-7090f9d40955
1677319200812 geckodriver INFO Listening on 127.0.0.1:59689
1677319200824 mozrunner::runner INFO Running command: "/home/deck/firefox-esr/firefox" "--marionette" "--remote-debugging-port" "37417" "--remote-allow-hosts" "localhost" "-no-remote" "-profile" "/tmp/rust_mozprofileCzECo7"
Gtk-Message: 11:00:00.869: Failed to load module "canberra-gtk-module"
Gtk-Message: 11:00:00.956: Failed to load module "colorreload-gtk-module"
Gtk-Message: 11:00:00.956: Failed to load module "window-decorations-gtk-module"
ATTENTION: default value of option mesa_glthread overridden by environment.
ATTENTION: default value of option mesa_glthread overridden by environment.
1677319201706 Marionette INFO Marionette enabled
1677319201713 Marionette INFO Listening on port 33833
WebDriver BiDi listening on ws://localhost:37417
Read port: 33833
1677319201885 RemoteAgent WARN TLS certificate errors will be ignored for this session
console.warn: SearchSettings: "get: No settings file exists, new profile?" (new NotFoundError("Could not open the file at /tmp/rust_mozprofileCzECo7/search.json.mozlz4", (void 0)))
DevTools listening on ws://localhost:37417/devtools/browser/c12687c5-a055-4999-8686-de4a7a6e8803
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.
1677319258669 geckodriver INFO Listening on 127.0.0.1:44899
1677319258683 mozrunner::runner INFO Running command: "/home/deck/firefox-esr/firefox" "--marionette" "--remote-debugging-port" "40635" "--remote-allow-hosts" "localhost" "-no-remote" "-profile" "/tmp/rust_mozprofileGFgh4I"
Gtk-Message: 11:00:58.726: Failed to load module "canberra-gtk-module"
Gtk-Message: 11:00:58.818: Failed to load module "colorreload-gtk-module"
Gtk-Message: 11:00:58.819: Failed to load module "window-decorations-gtk-module"
ATTENTION: default value of option mesa_glthread overridden by environment.
ATTENTION: default value of option mesa_glthread overridden by environment.
1677319259584 Marionette INFO Marionette enabled
1677319259590 Marionette INFO Listening on port 42409
WebDriver BiDi listening on ws://localhost:40635
Read port: 42409
1677319259769 RemoteAgent WARN TLS certificate errors will be ignored for this session
console.warn: SearchSettings: "get: No settings file exists, new profile?" (new NotFoundError("Could not open the file at /tmp/rust_mozprofileGFgh4I/search.json.mozlz4", (void 0)))
DevTools listening on ws://localhost:40635/devtools/browser/8f51d703-6740-4901-bf33-0043fa942b5e
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.
1677319337316 geckodriver INFO Listening on 127.0.0.1:46325
1677319337327 mozrunner::runner INFO Running command: "/home/deck/firefox-esr/firefox" "--marionette" "--remote-debugging-port" "60571" "--remote-allow-hosts" "localhost" "-no-remote" "-profile" "/tmp/rust_mozprofileTXEdKt"
Gtk-Message: 11:02:17.365: Failed to load module "canberra-gtk-module"
Gtk-Message: 11:02:17.462: Failed to load module "colorreload-gtk-module"
Gtk-Message: 11:02:17.463: Failed to load module "window-decorations-gtk-module"
ATTENTION: default value of option mesa_glthread overridden by environment.
ATTENTION: default value of option mesa_glthread overridden by environment.
1677319338208 Marionette INFO Marionette enabled
1677319338214 Marionette INFO Listening on port 44547
WebDriver BiDi listening on ws://localhost:60571
Read port: 44547
1677319338391 RemoteAgent WARN TLS certificate errors will be ignored for this session
console.warn: SearchSettings: "get: No settings file exists, new profile?" (new NotFoundError("Could not open the file at /tmp/rust_mozprofileTXEdKt/search.json.mozlz4", (void 0)))
DevTools listening on ws://localhost:60571/devtools/browser/d3d80751-2c5a-4ffb-b99c-dc80a359ec4c
1677319404956 geckodriver INFO Listening on 127.0.0.1:53373
1677319404969 mozrunner::runner INFO Running command: "/home/deck/firefox-esr/firefox" "--marionette" "--remote-debugging-port" "54255" "--remote-allow-hosts" "localhost" "-no-remote" "-profile" "/tmp/rust_mozprofileylL9zi"
Gtk-Message: 11:03:25.014: Failed to load module "canberra-gtk-module"
Gtk-Message: 11:03:25.101: Failed to load module "colorreload-gtk-module"
Gtk-Message: 11:03:25.101: Failed to load module "window-decorations-gtk-module"
ATTENTION: default value of option mesa_glthread overridden by environment.
ATTENTION: default value of option mesa_glthread overridden by environment.
1677319405844 Marionette INFO Marionette enabled
1677319405850 Marionette INFO Listening on port 46149
WebDriver BiDi listening on ws://localhost:54255
Read port: 46149
1677319406017 RemoteAgent WARN TLS certificate errors will be ignored for this session
console.warn: SearchSettings: "get: No settings file exists, new profile?" (new NotFoundError("Could not open the file at /tmp/rust_mozprofileylL9zi/search.json.mozlz4", (void 0)))
DevTools listening on ws://localhost:54255/devtools/browser/d4c9ff99-0190-4af7-b653-df2f721e4a5e
1677319428925 geckodriver INFO Listening on 127.0.0.1:50421
1677319428937 mozrunner::runner INFO Running command: "/home/deck/firefox-esr/firefox" "--marionette" "--remote-debugging-port" "33627" "--remote-allow-hosts" "localhost" "-no-remote" "-profile" "/tmp/rust_mozprofileFPqr63"
Gtk-Message: 11:03:48.978: Failed to load module "canberra-gtk-module"
Gtk-Message: 11:03:49.071: Failed to load module "colorreload-gtk-module"
Gtk-Message: 11:03:49.071: Failed to load module "window-decorations-gtk-module"
ATTENTION: default value of option mesa_glthread overridden by environment.
ATTENTION: default value of option mesa_glthread overridden by environment.
1677319429813 Marionette INFO Marionette enabled
1677319429819 Marionette INFO Listening on port 39737
WebDriver BiDi listening on ws://localhost:33627
Read port: 39737
1677319430006 RemoteAgent WARN TLS certificate errors will be ignored for this session
console.warn: SearchSettings: "get: No settings file exists, new profile?" (new NotFoundError("Could not open the file at /tmp/rust_mozprofileFPqr63/search.json.mozlz4", (void 0)))
DevTools listening on ws://localhost:33627/devtools/browser/b106cd6c-2882-4066-baed-f2280524e0ca
SourceActor threw an exception: [Exception... "Component returned failure code: 0x80470002 (NS_BASE_STREAM_CLOSED) [nsIInputStream.available]" nsresult: "0x80470002 (NS_BASE_STREAM_CLOSED)" location: "JS frame :: resource://devtools/shared/DevToolsUtils.js :: onResponse :: line 596" data: no]
Stack: onResponse@resource://devtools/shared/DevToolsUtils.js:596:34
onStopRequest@resource://gre/modules/NetUtil.jsm:128:18
Line: 596, column: 0
console.error: ({})
JavaScript error: resource://devtools/shared/DevToolsUtils.js, line 596: NS_BASE_STREAM_CLOSED: Component returned failure code: 0x80470002 (NS_BASE_STREAM_CLOSED) [nsIInputStream.available]
console.warn: LoginRecipes: "getRecipes: falling back to a synchronous message for:" "https://de.indeed.com"
ATTENTION: default value of option mesa_glthread overridden by environment.
ATTENTION: default value of option mesa_glthread overridden by environment.
JavaScript warning: https://www.serveipqs.com/api/*/eMwmXXsIshVbLVzfAdLjm3wy8YGsm9RJy7ejxJI2TL5aigEzH3AdUAmTyWSQSoFzBE4fmK4vnOfkluQrkxuzVy8bBRPcY5BsuXyi82owb2kNYlFbOy2EIH01RNzC3mItdx5Fm6Y2NqRZpfcLjYtLLeta9t3ADoNOUprMf96xtkNnoBf71hLKsK5U5h1SClFIMYOUXUaIpxowk5mmTnP5W5OraBaW6v2d4oIhaVagiJYPvf81JxNMaPVpXXDLv7iC/learn.js line 1 > eval line 1 > eval, line 1: WEBGL_debug_renderer_info is deprecated in Firefox and will be removed. Please use RENDERER.
console.error: (new TypeError("parent is null", "resource://devtools/client/inspector/shared/style-change-tracker.js", 67))
TypeError: parent is null: canMutationImpactCurrentStyles@resource://devtools/client/inspector/shared/style-change-tracker.js:67:24
onMutations@resource://devtools/client/inspector/shared/style-change-tracker.js:84:41
_emit@resource://devtools/shared/event-emitter.js:242:32
emit@resource://devtools/shared/event-emitter.js:186:18
emit@resource://devtools/shared/event-emitter.js:330:18
getMutations@resource://devtools/client/fronts/walker.js:312:10
console.error: (new TypeError("container.node.targetFront is null", "resource://devtools/client/inspector/markup/markup.js", 2320))
console.error: (new TypeError("container.node.targetFront is null", "resource://devtools/client/inspector/markup/markup.js", 2320))
console.error: (new TypeError("container.node.targetFront is null", "resource://devtools/client/inspector/markup/markup.js", 2320))
JavaScript error: resource://devtools/client/inspector/rules/utils/utils.js, line 186: TypeError: rule is undefined
JavaScript error: resource://devtools/client/inspector/rules/utils/utils.js, line 186: TypeError: rule is undefined
JavaScript error: resource://devtools/client/inspector/rules/utils/utils.js, line 186: TypeError: rule is undefined
1677319926265 geckodriver INFO Listening on 127.0.0.1:57069
1677319926278 mozrunner::runner INFO Running command: "/home/deck/firefox-esr/firefox" "--marionette" "--remote-debugging-port" "34341" "--remote-allow-hosts" "localhost" "-no-remote" "-profile" "/tmp/rust_mozprofilesrm4qd"
Gtk-Message: 11:12:06.322: Failed to load module "canberra-gtk-module"
Gtk-Message: 11:12:06.411: Failed to load module "colorreload-gtk-module"
Gtk-Message: 11:12:06.411: Failed to load module "window-decorations-gtk-module"
ATTENTION: default value of option mesa_glthread overridden by environment.
ATTENTION: default value of option mesa_glthread overridden by environment.
1677319927171 Marionette INFO Marionette enabled
1677319927177 Marionette INFO Listening on port 37589
Read port: 37589
WebDriver BiDi listening on ws://localhost:34341
1677319927346 RemoteAgent WARN TLS certificate errors will be ignored for this session
console.warn: SearchSettings: "get: No settings file exists, new profile?" (new NotFoundError("Could not open the file at /tmp/rust_mozprofilesrm4qd/search.json.mozlz4", (void 0)))
DevTools listening on ws://localhost:34341/devtools/browser/bd8cc207-d2ed-4e7a-948b-b306a4b31a66
1677319972218 geckodriver INFO Listening on 127.0.0.1:60103
1677319972235 mozrunner::runner INFO Running command: "/home/deck/firefox-esr/firefox" "--marionette" "--remote-debugging-port" "49331" "--remote-allow-hosts" "localhost" "-no-remote" "-profile" "/tmp/rust_mozprofiletCn1c6"
Gtk-Message: 11:12:52.293: Failed to load module "canberra-gtk-module"
Gtk-Message: 11:12:52.385: Failed to load module "colorreload-gtk-module"
Gtk-Message: 11:12:52.385: Failed to load module "window-decorations-gtk-module"
ATTENTION: default value of option mesa_glthread overridden by environment.
ATTENTION: default value of option mesa_glthread overridden by environment.
1677319973099 Marionette INFO Marionette enabled
1677319973104 Marionette INFO Listening on port 37219
WebDriver BiDi listening on ws://localhost:49331
Read port: 37219
1677319973272 RemoteAgent WARN TLS certificate errors will be ignored for this session
console.warn: SearchSettings: "get: No settings file exists, new profile?" (new NotFoundError("Could not open the file at /tmp/rust_mozprofiletCn1c6/search.json.mozlz4", (void 0)))
DevTools listening on ws://localhost:49331/devtools/browser/a0ccf0bf-e3e5-4256-83f6-6046a6b35ece
1677319990238 geckodriver INFO Listening on 127.0.0.1:40577
1677319990253 mozrunner::runner INFO Running command: "/home/deck/firefox-esr/firefox" "--marionette" "--remote-debugging-port" "38745" "--remote-allow-hosts" "localhost" "-no-remote" "-profile" "/tmp/rust_mozprofilen6XzRL"
Gtk-Message: 11:13:10.318: Failed to load module "canberra-gtk-module"
Gtk-Message: 11:13:10.414: Failed to load module "colorreload-gtk-module"
Gtk-Message: 11:13:10.414: Failed to load module "window-decorations-gtk-module"
ATTENTION: default value of option mesa_glthread overridden by environment.
ATTENTION: default value of option mesa_glthread overridden by environment.
1677319991156 Marionette INFO Marionette enabled
1677319991161 Marionette INFO Listening on port 46831
WebDriver BiDi listening on ws://localhost:38745
Read port: 46831
1677319991336 RemoteAgent WARN TLS certificate errors will be ignored for this session
console.warn: SearchSettings: "get: No settings file exists, new profile?" (new NotFoundError("Could not open the file at /tmp/rust_mozprofilen6XzRL/search.json.mozlz4", (void 0)))
DevTools listening on ws://localhost:38745/devtools/browser/b20cb486-7a64-4bb3-ab18-ab2dd670c9f2
1677319995115 Marionette INFO Stopped listening on port 46831
JavaScript error: resource://gre/modules/AsyncShutdown.jsm, line 575: NotFoundError: No such JSWindowActor 'DevToolsFrame'
JavaScript error: resource://gre/modules/AsyncShutdown.jsm, line 575: NotFoundError: No such JSWindowActor 'DevToolsFrame'
JavaScript error: resource://gre/modules/AsyncShutdown.jsm, line 575: NotFoundError: No such JSWindowActor 'DevToolsFrame'
JavaScript error: resource://gre/modules/AsyncShutdown.jsm, line 575: NotFoundError: No such JSWindowActor 'DevToolsFrame'
1677319996813 Marionette INFO Stopped listening on port 39737
1677319996823 Marionette INFO Stopped listening on port 40547
1677319996866 Marionette INFO Stopped listening on port 34847
JavaScript error: resource://gre/modules/AsyncShutdown.jsm, line 575: NotFoundError: No such JSWindowActor 'DevToolsFrame'
JavaScript error: resource://gre/modules/AsyncShutdown.jsm, line 575: NotFoundError: No such JSWindowActor 'DevToolsFrame'
1677319996961 Marionette INFO Stopped listening on port 39331
JavaScript error: resource://gre/modules/AsyncShutdown.jsm, line 575: NotFoundError: No such JSWindowActor 'DevToolsFrame'
JavaScript error: resource://gre/modules/AsyncShutdown.jsm, line 575: NotFoundError: No such JSWindowActor 'DevToolsFrame'
1677319997188 Marionette INFO Stopped listening on port 43019
JavaScript error: resource://gre/modules/AsyncShutdown.jsm, line 575: NotFoundError: No such JSWindowActor 'DevToolsFrame'
JavaScript error: resource://gre/modules/AsyncShutdown.jsm, line 575: NotFoundError: No such JSWindowActor 'DevToolsFrame'
1677319997363 Marionette INFO Stopped listening on port 40189
JavaScript error: resource://gre/modules/AsyncShutdown.jsm, line 575: NotFoundError: No such JSWindowActor 'DevToolsFrame'
JavaScript error: resource://gre/modules/AsyncShutdown.jsm, line 575: NotFoundError: No such JSWindowActor 'DevToolsFrame'
1677319997453 Marionette INFO Stopped listening on port 33527
JavaScript error: resource://gre/modules/AsyncShutdown.jsm, line 575: NotFoundError: No such JSWindowActor 'DevToolsFrame'
JavaScript error: resource://gre/modules/AsyncShutdown.jsm, line 575: NotFoundError: No such JSWindowActor 'DevToolsFrame'
1677319997535 Marionette INFO Stopped listening on port 35925
1677320005106 geckodriver::marionette ERROR Failed to close browser connection: Socket not connected (os error 107)
1677320012249 geckodriver INFO Listening on 127.0.0.1:34465
1677320012259 mozrunner::runner INFO Running command: "/home/deck/firefox-esr/firefox" "--marionette" "--remote-debugging-port" "44747" "--remote-allow-hosts" "localhost" "-no-remote" "-profile" "/tmp/rust_mozprofileFsrVqf"
Gtk-Message: 11:13:32.300: Failed to load module "canberra-gtk-module"
Gtk-Message: 11:13:32.385: Failed to load module "colorreload-gtk-module"
Gtk-Message: 11:13:32.385: Failed to load module "window-decorations-gtk-module"
ATTENTION: default value of option mesa_glthread overridden by environment.
ATTENTION: default value of option mesa_glthread overridden by environment.
1677320013129 Marionette INFO Marionette enabled
1677320013135 Marionette INFO Listening on port 39753
WebDriver BiDi listening on ws://localhost:44747
Read port: 39753
1677320013312 RemoteAgent WARN TLS certificate errors will be ignored for this session
console.warn: SearchSettings: "get: No settings file exists, new profile?" (new NotFoundError("Could not open the file at /tmp/rust_mozprofileFsrVqf/search.json.mozlz4", (void 0)))
DevTools listening on ws://localhost:44747/devtools/browser/9ea23a52-fb9d-4a30-9c34-95dbfc8c1a5b
1677320045967 geckodriver INFO Listening on 127.0.0.1:33661
1677320045977 mozrunner::runner INFO Running command: "/home/deck/firefox-esr/firefox" "--marionette" "--remote-debugging-port" "45637" "--remote-allow-hosts" "localhost" "-no-remote" "-profile" "/tmp/rust_mozprofileQTXRDw"
Gtk-Message: 11:14:06.015: Failed to load module "canberra-gtk-module"
Gtk-Message: 11:14:06.100: Failed to load module "colorreload-gtk-module"
Gtk-Message: 11:14:06.100: Failed to load module "window-decorations-gtk-module"
ATTENTION: default value of option mesa_glthread overridden by environment.
ATTENTION: default value of option mesa_glthread overridden by environment.
1677320046859 Marionette INFO Marionette enabled
1677320046865 Marionette INFO Listening on port 35155
WebDriver BiDi listening on ws://localhost:45637
Read port: 35155
1677320047043 RemoteAgent WARN TLS certificate errors will be ignored for this session
console.warn: SearchSettings: "get: No settings file exists, new profile?" (new NotFoundError("Could not open the file at /tmp/rust_mozprofileQTXRDw/search.json.mozlz4", (void 0)))
DevTools listening on ws://localhost:45637/devtools/browser/3f14d5c2-3dbe-46c7-a237-5e7d6ea29eed
1677320171804 Marionette INFO Stopped listening on port 35155
Sandbox: Unexpected EOF, op 0 flags 00 path /proc/cpuinfo
1677320175340 geckodriver INFO Listening on 127.0.0.1:37203
1677320175354 mozrunner::runner INFO Running command: "/home/deck/firefox-esr/firefox" "--marionette" "--remote-debugging-port" "50871" "--remote-allow-hosts" "localhost" "-no-remote" "-profile" "/tmp/rust_mozprofilevde2D9"
Gtk-Message: 11:16:15.405: Failed to load module "canberra-gtk-module"
Gtk-Message: 11:16:15.496: Failed to load module "colorreload-gtk-module"
Gtk-Message: 11:16:15.496: Failed to load module "window-decorations-gtk-module"
ATTENTION: default value of option mesa_glthread overridden by environment.
ATTENTION: default value of option mesa_glthread overridden by environment.
1677320176276 Marionette INFO Marionette enabled
1677320176281 Marionette INFO Listening on port 44841
WebDriver BiDi listening on ws://localhost:50871
Read port: 44841
1677320176458 RemoteAgent WARN TLS certificate errors will be ignored for this session
console.warn: SearchSettings: "get: No settings file exists, new profile?" (new NotFoundError("Could not open the file at /tmp/rust_mozprofilevde2D9/search.json.mozlz4", (void 0)))
DevTools listening on ws://localhost:50871/devtools/browser/3e169e84-e8f9-4baa-8b28-c83bc539ffb2
1677320258578 Marionette INFO Stopped listening on port 44841
Sandbox: Unexpected EOF, op 0 flags 00 path /proc/cpuinfo
1677320261538 geckodriver::marionette ERROR Failed to close browser connection: Socket not connected (os error 107)
1677320268451 geckodriver INFO Listening on 127.0.0.1:54233
1677320268463 mozrunner::runner INFO Running command: "/home/deck/firefox-esr/firefox" "--marionette" "--remote-debugging-port" "44855" "--remote-allow-hosts" "localhost" "-no-remote" "-profile" "/tmp/rust_mozprofile8MJTft"
Gtk-Message: 11:17:48.504: Failed to load module "canberra-gtk-module"
Gtk-Message: 11:17:48.593: Failed to load module "colorreload-gtk-module"
Gtk-Message: 11:17:48.594: Failed to load module "window-decorations-gtk-module"
ATTENTION: default value of option mesa_glthread overridden by environment.
ATTENTION: default value of option mesa_glthread overridden by environment.
1677320269342 Marionette INFO Marionette enabled
1677320269348 Marionette INFO Listening on port 39313
WebDriver BiDi listening on ws://localhost:44855
Read port: 39313
1677320269531 RemoteAgent WARN TLS certificate errors will be ignored for this session
console.warn: SearchSettings: "get: No settings file exists, new profile?" (new NotFoundError("Could not open the file at /tmp/rust_mozprofile8MJTft/search.json.mozlz4", (void 0)))
DevTools listening on ws://localhost:44855/devtools/browser/ff516903-9f3b-4ac5-8b5b-f70969e1c06b
SourceActor threw an exception: [Exception... "Component returned failure code: 0x80470002 (NS_BASE_STREAM_CLOSED) [nsIInputStream.available]" nsresult: "0x80470002 (NS_BASE_STREAM_CLOSED)" location: "JS frame :: resource://devtools/shared/DevToolsUtils.js :: onResponse :: line 596" data: no]
Stack: onResponse@resource://devtools/shared/DevToolsUtils.js:596:34
onStopRequest@resource://gre/modules/NetUtil.jsm:128:18
Line: 596, column: 0
console.error: ({})
JavaScript error: resource://devtools/shared/DevToolsUtils.js, line 596: NS_BASE_STREAM_CLOSED: Component returned failure code: 0x80470002 (NS_BASE_STREAM_CLOSED) [nsIInputStream.available]
1677320417032 geckodriver INFO Listening on 127.0.0.1:59891
1677320417044 mozrunner::runner INFO Running command: "/home/deck/firefox-esr/firefox" "--marionette" "--remote-debugging-port" "53209" "--remote-allow-hosts" "localhost" "-no-remote" "-profile" "/tmp/rust_mozprofileIDNGaM"
Gtk-Message: 11:20:17.087: Failed to load module "canberra-gtk-module"
Gtk-Message: 11:20:17.171: Failed to load module "colorreload-gtk-module"
Gtk-Message: 11:20:17.171: Failed to load module "window-decorations-gtk-module"
ATTENTION: default value of option mesa_glthread overridden by environment.
ATTENTION: default value of option mesa_glthread overridden by environment.
1677320417898 Marionette INFO Marionette enabled
1677320417904 Marionette INFO Listening on port 33607
WebDriver BiDi listening on ws://localhost:53209
Read port: 33607
1677320418083 RemoteAgent WARN TLS certificate errors will be ignored for this session
console.warn: SearchSettings: "get: No settings file exists, new profile?" (new NotFoundError("Could not open the file at /tmp/rust_mozprofileIDNGaM/search.json.mozlz4", (void 0)))
DevTools listening on ws://localhost:53209/devtools/browser/16717e29-7289-4298-8664-dc3d7add9c57
1677320562742 geckodriver INFO Listening on 127.0.0.1:48407
1677320562754 mozrunner::runner INFO Running command: "/home/deck/firefox-esr/firefox" "--marionette" "--remote-debugging-port" "43881" "--remote-allow-hosts" "localhost" "-no-remote" "-profile" "/tmp/rust_mozprofileajbCQF"
Gtk-Message: 11:22:42.805: Failed to load module "canberra-gtk-module"
Gtk-Message: 11:22:42.888: Failed to load module "colorreload-gtk-module"
Gtk-Message: 11:22:42.888: Failed to load module "window-decorations-gtk-module"
1677320566192 geckodriver INFO Listening on 127.0.0.1:57161
1677320566203 mozrunner::runner INFO Running command: "/home/deck/firefox-esr/firefox" "--marionette" "--remote-debugging-port" "38215" "--remote-allow-hosts" "localhost" "-no-remote" "-profile" "/tmp/rust_mozprofile5M2ldB"
Gtk-Message: 11:22:46.242: Failed to load module "canberra-gtk-module"
Gtk-Message: 11:22:46.336: Failed to load module "colorreload-gtk-module"
Gtk-Message: 11:22:46.336: Failed to load module "window-decorations-gtk-module"
ATTENTION: default value of option mesa_glthread overridden by environment.
ATTENTION: default value of option mesa_glthread overridden by environment.
1677320567064 Marionette INFO Marionette enabled
1677320567070 Marionette INFO Listening on port 42399
WebDriver BiDi listening on ws://localhost:38215
Read port: 42399
1677320567259 RemoteAgent WARN TLS certificate errors will be ignored for this session
console.warn: SearchSettings: "get: No settings file exists, new profile?" (new NotFoundError("Could not open the file at /tmp/rust_mozprofile5M2ldB/search.json.mozlz4", (void 0)))
DevTools listening on ws://localhost:38215/devtools/browser/78641521-9982-4a1f-bafc-38150aa96c3f
1677320598832 geckodriver INFO Listening on 127.0.0.1:56647
1677320598844 mozrunner::runner INFO Running command: "/home/deck/firefox-esr/firefox" "--marionette" "--remote-debugging-port" "34857" "--remote-allow-hosts" "localhost" "-no-remote" "-profile" "/tmp/rust_mozprofileafpmB5"
Gtk-Message: 11:23:18.891: Failed to load module "canberra-gtk-module"
Gtk-Message: 11:23:18.975: Failed to load module "colorreload-gtk-module"
Gtk-Message: 11:23:18.976: Failed to load module "window-decorations-gtk-module"
ATTENTION: default value of option mesa_glthread overridden by environment.
ATTENTION: default value of option mesa_glthread overridden by environment.
1677320599717 Marionette INFO Marionette enabled
1677320599723 Marionette INFO Listening on port 38571
WebDriver BiDi listening on ws://localhost:34857
Read port: 38571
1677320599895 RemoteAgent WARN TLS certificate errors will be ignored for this session
console.warn: SearchSettings: "get: No settings file exists, new profile?" (new NotFoundError("Could not open the file at /tmp/rust_mozprofileafpmB5/search.json.mozlz4", (void 0)))
DevTools listening on ws://localhost:34857/devtools/browser/c84ad663-5e07-4fd1-93e6-224f3cb8ecd8
JavaScript error: , line 0: uncaught exception: undefined
JavaScript error: , line 0: uncaught exception: undefined
JavaScript error: , line 0: uncaught exception: undefined
JavaScript error: , line 0: uncaught exception: undefined
JavaScript error: , line 0: uncaught exception: undefined
JavaScript error: , line 0: uncaught exception: undefined
JavaScript error: https://www.yourfirm.de/job/dirk-kremer-consulting/entwicklungsingenieur-elektronik-elektrotechnik-g-mikroelektronik-leistungselektronik-antriebstechni-bielefeld---15927367/?prefer_mailto=1&apply=1&utm_source=indeed_de&utm_medium=paid-partner&utm_campaign=vip_ingenieur&location=aa5c6 line 564 > injectedScript, line 1: ReferenceError: posthog is not defined
ATTENTION: default value of option mesa_glthread overridden by environment.
ATTENTION: default value of option mesa_glthread overridden by environment.
JavaScript error: https://cdn01.brunel.net/FED/UMB/static/js/main.js?v=2.94.0.0, line 1: TypeError: this._vacancyDetailMenuToggle is null
JavaScript error: https://cdn01.brunel.net/FED/UMB/static/js/main.js?v=2.94.0.0, line 1: TypeError: this._vacancyDetailMenuToggle is null
JavaScript error: https://personalhaus-erfassung.de/lib/js/bootstrap.min.js, line 6: TypeError: t is undefined
ATTENTION: default value of option mesa_glthread overridden by environment.
ATTENTION: default value of option mesa_glthread overridden by environment.
JavaScript error: , line 0: uncaught exception: undefined
JavaScript error: , line 0: uncaught exception: undefined
JavaScript error: , line 0: uncaught exception: undefined
1677321401034 geckodriver INFO Listening on 127.0.0.1:45717
1677321401046 mozrunner::runner INFO Running command: "/home/deck/firefox-esr/firefox" "--marionette" "--remote-debugging-port" "45317" "--remote-allow-hosts" "localhost" "-no-remote" "-profile" "/tmp/rust_mozprofilec5Jcyn"
Gtk-Message: 11:36:41.087: Failed to load module "canberra-gtk-module"
Gtk-Message: 11:36:41.177: Failed to load module "colorreload-gtk-module"
Gtk-Message: 11:36:41.178: Failed to load module "window-decorations-gtk-module"
ATTENTION: default value of option mesa_glthread overridden by environment.
ATTENTION: default value of option mesa_glthread overridden by environment.
1677321401931 Marionette INFO Marionette enabled
1677321401937 Marionette INFO Listening on port 43615
WebDriver BiDi listening on ws://localhost:45317
Read port: 43615
1677321402098 RemoteAgent WARN TLS certificate errors will be ignored for this session
console.warn: SearchSettings: "get: No settings file exists, new profile?" (new NotFoundError("Could not open the file at /tmp/rust_mozprofilec5Jcyn/search.json.mozlz4", (void 0)))
DevTools listening on ws://localhost:45317/devtools/browser/6f12f7d8-2c5e-4029-9890-4fb6c6db128f
1677322271090 geckodriver INFO Listening on 127.0.0.1:41731
1677322271106 mozrunner::runner INFO Running command: "/home/deck/firefox-esr/firefox" "--marionette" "--remote-debugging-port" "41701" "--remote-allow-hosts" "localhost" "-no-remote" "-profile" "/tmp/rust_mozprofile4N2g19"
Gtk-Message: 11:51:11.156: Failed to load module "canberra-gtk-module"
Gtk-Message: 11:51:11.251: Failed to load module "colorreload-gtk-module"
Gtk-Message: 11:51:11.251: Failed to load module "window-decorations-gtk-module"
ATTENTION: default value of option mesa_glthread overridden by environment.
ATTENTION: default value of option mesa_glthread overridden by environment.
1677322271938 Marionette INFO Marionette enabled
1677322271944 Marionette INFO Listening on port 33621
WebDriver BiDi listening on ws://localhost:41701
Read port: 33621
1677322272118 RemoteAgent WARN TLS certificate errors will be ignored for this session
console.warn: SearchSettings: "get: No settings file exists, new profile?" (new NotFoundError("Could not open the file at /tmp/rust_mozprofile4N2g19/search.json.mozlz4", (void 0)))
DevTools listening on ws://localhost:41701/devtools/browser/f2e0878d-5bf7-43be-ae6f-c19c3582afbe
SourceActor threw an exception: [Exception... "Component returned failure code: 0x80470002 (NS_BASE_STREAM_CLOSED) [nsIInputStream.available]" nsresult: "0x80470002 (NS_BASE_STREAM_CLOSED)" location: "JS frame :: resource://devtools/shared/DevToolsUtils.js :: onResponse :: line 596" data: no]
Stack: onResponse@resource://devtools/shared/DevToolsUtils.js:596:34
onStopRequest@resource://gre/modules/NetUtil.jsm:128:18
Line: 596, column: 0
console.error: ({})
JavaScript error: resource://devtools/shared/DevToolsUtils.js, line 596: NS_BASE_STREAM_CLOSED: Component returned failure code: 0x80470002 (NS_BASE_STREAM_CLOSED) [nsIInputStream.available]
1677322481532 geckodriver INFO Listening on 127.0.0.1:54063
1677322481545 mozrunner::runner INFO Running command: "/home/deck/firefox-esr/firefox" "--marionette" "--remote-debugging-port" "53471" "--remote-allow-hosts" "localhost" "-no-remote" "-profile" "/tmp/rust_mozprofilefyLzWj"
Gtk-Message: 11:54:41.589: Failed to load module "canberra-gtk-module"
Gtk-Message: 11:54:41.678: Failed to load module "colorreload-gtk-module"
Gtk-Message: 11:54:41.678: Failed to load module "window-decorations-gtk-module"
ATTENTION: default value of option mesa_glthread overridden by environment.
ATTENTION: default value of option mesa_glthread overridden by environment.
1677322482419 Marionette INFO Marionette enabled
1677322482424 Marionette INFO Listening on port 46337
WebDriver BiDi listening on ws://localhost:53471
Read port: 46337
1677322482595 RemoteAgent WARN TLS certificate errors will be ignored for this session
console.warn: SearchSettings: "get: No settings file exists, new profile?" (new NotFoundError("Could not open the file at /tmp/rust_mozprofilefyLzWj/search.json.mozlz4", (void 0)))
DevTools listening on ws://localhost:53471/devtools/browser/b7878279-b5a8-4ed4-b07f-a50c70c5ea82
1677322567687 geckodriver INFO Listening on 127.0.0.1:60711
1677322567699 mozrunner::runner INFO Running command: "/home/deck/firefox-esr/firefox" "--marionette" "--remote-debugging-port" "41475" "--remote-allow-hosts" "localhost" "-no-remote" "-profile" "/tmp/rust_mozprofilenjDE2l"
Gtk-Message: 11:56:07.743: Failed to load module "canberra-gtk-module"
Gtk-Message: 11:56:07.836: Failed to load module "colorreload-gtk-module"
Gtk-Message: 11:56:07.836: Failed to load module "window-decorations-gtk-module"
ATTENTION: default value of option mesa_glthread overridden by environment.
ATTENTION: default value of option mesa_glthread overridden by environment.
1677322568595 Marionette INFO Marionette enabled
1677322568600 Marionette INFO Listening on port 35241
Read port: 35241
WebDriver BiDi listening on ws://localhost:41475
1677322568795 RemoteAgent WARN TLS certificate errors will be ignored for this session
console.warn: SearchSettings: "get: No settings file exists, new profile?" (new NotFoundError("Could not open the file at /tmp/rust_mozprofilenjDE2l/search.json.mozlz4", (void 0)))
DevTools listening on ws://localhost:41475/devtools/browser/8e59d1e0-3ca7-428e-abbc-69fb425c828a
1677322664873 geckodriver INFO Listening on 127.0.0.1:43969
1677322664886 mozrunner::runner INFO Running command: "/home/deck/firefox-esr/firefox" "--marionette" "--remote-debugging-port" "40077" "--remote-allow-hosts" "localhost" "-no-remote" "-profile" "/tmp/rust_mozprofileYmbMoe"
Gtk-Message: 11:57:44.934: Failed to load module "canberra-gtk-module"
Gtk-Message: 11:57:45.025: Failed to load module "colorreload-gtk-module"
Gtk-Message: 11:57:45.025: Failed to load module "window-decorations-gtk-module"
ATTENTION: default value of option mesa_glthread overridden by environment.
ATTENTION: default value of option mesa_glthread overridden by environment.
1677322665783 Marionette INFO Marionette enabled
1677322665789 Marionette INFO Listening on port 33311
WebDriver BiDi listening on ws://localhost:40077
Read port: 33311
1677322665989 RemoteAgent WARN TLS certificate errors will be ignored for this session
console.warn: SearchSettings: "get: No settings file exists, new profile?" (new NotFoundError("Could not open the file at /tmp/rust_mozprofileYmbMoe/search.json.mozlz4", (void 0)))
DevTools listening on ws://localhost:40077/devtools/browser/84e2ad46-fb0d-49ff-bd34-3df5eabcab8a
1677322741058 geckodriver INFO Listening on 127.0.0.1:38207
1677322741069 mozrunner::runner INFO Running command: "/home/deck/firefox-esr/firefox" "--marionette" "--remote-debugging-port" "47715" "--remote-allow-hosts" "localhost" "-no-remote" "-profile" "/tmp/rust_mozprofile6VFY7b"
Gtk-Message: 11:59:01.111: Failed to load module "canberra-gtk-module"
Gtk-Message: 11:59:01.196: Failed to load module "colorreload-gtk-module"
Gtk-Message: 11:59:01.196: Failed to load module "window-decorations-gtk-module"
ATTENTION: default value of option mesa_glthread overridden by environment.
ATTENTION: default value of option mesa_glthread overridden by environment.
1677322741952 Marionette INFO Marionette enabled
1677322741957 Marionette INFO Listening on port 40511
WebDriver BiDi listening on ws://localhost:47715
Read port: 40511
1677322742132 RemoteAgent WARN TLS certificate errors will be ignored for this session
console.warn: SearchSettings: "get: No settings file exists, new profile?" (new NotFoundError("Could not open the file at /tmp/rust_mozprofile6VFY7b/search.json.mozlz4", (void 0)))
JavaScript error: resource://gre/modules/PlacesUtils.jsm, line 2013: NS_ERROR_UNEXPECTED: Component returned failure code: 0x8000ffff (NS_ERROR_UNEXPECTED) [nsINavBookmarksService.tagsFolder]
console.error: SearchSettings: "_write: Could not write to settings file:" (new NotReadableError("Could not write chunk (size = 276) to file /tmp/rust_mozprofile6VFY7b/search.json.mozlz4.tmp. The file may be corrupt.", (void 0)))
console.warn: SearchSettings: "get: No settings file exists, new profile?" (new NotFoundError("Could not open the file at /tmp/rust_mozprofile6VFY7b/search.json.mozlz4", (void 0)))
JavaScript error: resource://gre/modules/PlacesUtils.jsm, line 2013: NS_ERROR_UNEXPECTED: Component returned failure code: 0x8000ffff (NS_ERROR_UNEXPECTED) [nsINavBookmarksService.tagsFolder]
JavaScript error: resource://gre/modules/PlacesUtils.jsm, line 2013: NS_ERROR_UNEXPECTED: Component returned failure code: 0x8000ffff (NS_ERROR_UNEXPECTED) [nsINavBookmarksService.tagsFolder]
JavaScript error: resource://gre/modules/PlacesUtils.jsm, line 2013: NS_ERROR_UNEXPECTED: Component returned failure code: 0x8000ffff (NS_ERROR_UNEXPECTED) [nsINavBookmarksService.tagsFolder]
JavaScript error: resource://gre/modules/PlacesUtils.jsm, line 2013: NS_ERROR_UNEXPECTED: Component returned failure code: 0x8000ffff (NS_ERROR_UNEXPECTED) [nsINavBookmarksService.tagsFolder]
JavaScript error: resource://gre/modules/PlacesUtils.jsm, line 2013: NS_ERROR_UNEXPECTED: Component returned failure code: 0x8000ffff (NS_ERROR_UNEXPECTED) [nsINavBookmarksService.tagsFolder]
console.log: "RemoteSettingsWorker error: QuotaExceededError: IndexedDB: execute() The current transaction exceeded its quota limitations."
JavaScript error: resource://gre/modules/PlacesUtils.jsm, line 2013: NS_ERROR_UNEXPECTED: Component returned failure code: 0x8000ffff (NS_ERROR_UNEXPECTED) [nsINavBookmarksService.tagsFolder]
JavaScript error: resource://gre/modules/PlacesUtils.jsm, line 2013: NS_ERROR_UNEXPECTED: Component returned failure code: 0x8000ffff (NS_ERROR_UNEXPECTED) [nsINavBookmarksService.tagsFolder]
JavaScript error: resource://gre/modules/PlacesUtils.jsm, line 2013: NS_ERROR_UNEXPECTED: Component returned failure code: 0x8000ffff (NS_ERROR_UNEXPECTED) [nsINavBookmarksService.tagsFolder]
JavaScript error: resource://gre/modules/PlacesUtils.jsm, line 2013: NS_ERROR_UNEXPECTED: Component returned failure code: 0x8000ffff (NS_ERROR_UNEXPECTED) [nsINavBookmarksService.tagsFolder]
console.log: "RemoteSettingsWorker error: QuotaExceededError: IndexedDB: execute() The current transaction exceeded its quota limitations."
console.error: PushService:
stateChangeProcessEnqueue: Error transitioning state
QuotaExceededError
console.log: "RemoteSettingsWorker error: QuotaExceededError: IndexedDB: execute() The current transaction exceeded its quota limitations."
[2023-02-25T10:59:03Z ERROR glean_core::database] Failed to record metric into glean_client_info: Error { kind: Rkv(IoError(Os { code: 28, kind: StorageFull, message: "No space left on device" })) }
DevTools listening on ws://localhost:47715/devtools/browser/321af280-0096-4e1c-a45c-723adb2c092f
1677322743524 CDP WARN Failed to create /tmp/rust_mozprofile6VFY7b/DevToolsActivePort (Could not write chunk (size = 60) to file /tmp/rust_mozprofile6VFY7b/DevToolsActivePort. The file may be corrupt.)
console.log: "RemoteSettingsWorker error: QuotaExceededError: IndexedDB: execute() The current transaction exceeded its quota limitations."
console.error: SearchSettings: "_write: Could not write to settings file:" (new NotReadableError("Could not write chunk (size = 272) to file /tmp/rust_mozprofile6VFY7b/search.json.mozlz4.tmp. The file may be corrupt.", (void 0)))
JavaScript error: resource://gre/modules/NewTabUtils.jsm, line 1409: TypeError: conn is undefined
JavaScript error: resource://gre/modules/Sqlite.jsm, line 963: Error: Error(s) encountered during statement execution: database or disk is full
JavaScript error: resource://gre/modules/NewTabUtils.jsm, line 1409: TypeError: conn is undefined
console.error: "Could not write session state file " (new NotReadableError("Could not write chunk (size = 4503) to file /tmp/rust_mozprofile6VFY7b/sessionstore-backups/recovery.jsonlz4.tmp. The file may be corrupt.", (void 0))) ""
console.error: "Error when attaching target:" (void 0)
console.error: "Error when attaching target:" (void 0)
console.error: "Exception while opening the toolbox" "undefined" (void 0)
JavaScript error: resource://devtools/client/framework/toolbox.js, line 1028: TypeError: e is undefined
JavaScript error: , line 0: uncaught exception: Object
JavaScript error: resource://devtools/client/framework/toolbox.js, line 2764: Error: Can't select tool, wait for toolbox 'ready' event
console.error: "Could not write session state file " (new NotReadableError("Could not write chunk (size = 4554) to file /tmp/rust_mozprofile6VFY7b/sessionstore-backups/recovery.jsonlz4.tmp. The file may be corrupt.", (void 0))) ""
JavaScript error: , line 0: NotReadableError: Could not write chunk (size = 66) to file /tmp/rust_mozprofile6VFY7b/crashes/store.json.mozlz4.tmp. The file may be corrupt.
JavaScript error: , line 0: NotReadableError: Could not write chunk (size = 51) to file /tmp/rust_mozprofile6VFY7b/datareporting/state.json.tmp. The file may be corrupt.
1677322855666 geckodriver INFO Listening on 127.0.0.1:41851
1677322862541 geckodriver INFO Listening on 127.0.0.1:52879
1677322880416 geckodriver INFO Listening on 127.0.0.1:55117
1677322896288 geckodriver INFO Listening on 127.0.0.1:32801
1677322957089 geckodriver INFO Listening on 127.0.0.1:40643
1677324180836 geckodriver INFO Listening on 127.0.0.1:43977
1677324181187 mozrunner::runner INFO Running command: "/home/deck/firefox-esr/firefox" "--marionette" "--remote-debugging-port" "57381" "--remote-allow-hosts" "localhost" "-no-remote" "-profile" "/tmp/rust_mozprofilejTWeh7"
Gtk-Message: 12:23:02.678: Failed to load module "canberra-gtk-module"
Gtk-Message: 12:23:04.117: Failed to load module "colorreload-gtk-module"
Gtk-Message: 12:23:04.117: Failed to load module "window-decorations-gtk-module"
ATTENTION: default value of option mesa_glthread overridden by environment.
ATTENTION: default value of option mesa_glthread overridden by environment.
1677324187845 Marionette INFO Marionette enabled
1677324187885 Marionette INFO Listening on port 35673
Read port: 35673
WebDriver BiDi listening on ws://localhost:57381
1677324188773 RemoteAgent WARN TLS certificate errors will be ignored for this session
console.warn: SearchSettings: "get: No settings file exists, new profile?" (new NotFoundError("Could not open the file at /tmp/rust_mozprofilejTWeh7/search.json.mozlz4", (void 0)))
DevTools listening on ws://localhost:57381/devtools/browser/85d9bd81-716d-427c-822d-3c5fbae32183
JavaScript error: , line 0: uncaught exception: undefined
1677324324891 Marionette INFO Stopped listening on port 35673
1677324333594 geckodriver INFO Listening on 127.0.0.1:53333
1677324333605 mozrunner::runner INFO Running command: "/home/deck/firefox-esr/firefox" "--marionette" "--remote-debugging-port" "49461" "--remote-allow-hosts" "localhost" "-no-remote" "-profile" "/tmp/rust_mozprofileVwdLEy"
Gtk-Message: 12:25:33.647: Failed to load module "canberra-gtk-module"
Gtk-Message: 12:25:33.730: Failed to load module "colorreload-gtk-module"
Gtk-Message: 12:25:33.730: Failed to load module "window-decorations-gtk-module"
ATTENTION: default value of option mesa_glthread overridden by environment.
ATTENTION: default value of option mesa_glthread overridden by environment.
1677324334471 Marionette INFO Marionette enabled
1677324334477 Marionette INFO Listening on port 38669
WebDriver BiDi listening on ws://localhost:49461
Read port: 38669
1677324334645 RemoteAgent WARN TLS certificate errors will be ignored for this session
console.warn: SearchSettings: "get: No settings file exists, new profile?" (new NotFoundError("Could not open the file at /tmp/rust_mozprofileVwdLEy/search.json.mozlz4", (void 0)))
DevTools listening on ws://localhost:49461/devtools/browser/d2eab2c5-c412-47e8-b72a-f5ad35df8730
JavaScript error: , line 0: uncaught exception: undefined
JavaScript error: , line 0: uncaught exception: undefined
JavaScript error: , line 0: uncaught exception: undefined
JavaScript error: , line 0: uncaught exception: undefined
JavaScript error: , line 0: uncaught exception: undefined
JavaScript error: , line 0: uncaught exception: undefined
1677324559796 geckodriver INFO Listening on 127.0.0.1:47331
1677324559808 mozrunner::runner INFO Running command: "/home/deck/firefox-esr/firefox" "--marionette" "--remote-debugging-port" "48585" "--remote-allow-hosts" "localhost" "-no-remote" "-profile" "/tmp/rust_mozprofileWZYiJx"
Gtk-Message: 12:29:19.851: Failed to load module "canberra-gtk-module"
Gtk-Message: 12:29:19.941: Failed to load module "colorreload-gtk-module"
Gtk-Message: 12:29:19.942: Failed to load module "window-decorations-gtk-module"
ATTENTION: default value of option mesa_glthread overridden by environment.
ATTENTION: default value of option mesa_glthread overridden by environment.
1677324560671 Marionette INFO Marionette enabled
1677324560676 Marionette INFO Listening on port 37603
WebDriver BiDi listening on ws://localhost:48585
Read port: 37603
1677324560839 RemoteAgent WARN TLS certificate errors will be ignored for this session
console.warn: SearchSettings: "get: No settings file exists, new profile?" (new NotFoundError("Could not open the file at /tmp/rust_mozprofileWZYiJx/search.json.mozlz4", (void 0)))
DevTools listening on ws://localhost:48585/devtools/browser/38f1ee33-b16e-42ac-8cc0-9fc352d29f42
JavaScript error: , line 0: uncaught exception: undefined
JavaScript error: , line 0: uncaught exception: undefined
JavaScript error: , line 0: uncaught exception: undefined
JavaScript error: , line 0: uncaught exception: undefined
JavaScript error: , line 0: uncaught exception: undefined
JavaScript error: , line 0: uncaught exception: undefined
1677324774318 geckodriver INFO Listening on 127.0.0.1:50245
1677324774328 mozrunner::runner INFO Running command: "/home/deck/firefox-esr/firefox" "--marionette" "--remote-debugging-port" "56807" "--remote-allow-hosts" "localhost" "-no-remote" "-profile" "/tmp/rust_mozprofileS0kD6v"
Gtk-Message: 12:32:54.369: Failed to load module "canberra-gtk-module"
Gtk-Message: 12:32:54.450: Failed to load module "colorreload-gtk-module"
Gtk-Message: 12:32:54.450: Failed to load module "window-decorations-gtk-module"
ATTENTION: default value of option mesa_glthread overridden by environment.
ATTENTION: default value of option mesa_glthread overridden by environment.
1677324775175 Marionette INFO Marionette enabled
1677324775180 Marionette INFO Listening on port 35339
WebDriver BiDi listening on ws://localhost:56807
Read port: 35339
1677324775339 RemoteAgent WARN TLS certificate errors will be ignored for this session
console.warn: SearchSettings: "get: No settings file exists, new profile?" (new NotFoundError("Could not open the file at /tmp/rust_mozprofileS0kD6v/search.json.mozlz4", (void 0)))
DevTools listening on ws://localhost:56807/devtools/browser/4c991eab-e515-4dad-a6a5-7acb2b3a8bf9
1677324801249 geckodriver INFO Listening on 127.0.0.1:58005
1677324801261 mozrunner::runner INFO Running command: "/home/deck/firefox-esr/firefox" "--marionette" "--remote-debugging-port" "43127" "--remote-allow-hosts" "localhost" "-no-remote" "-profile" "/tmp/rust_mozprofileQXhwDZ"
Gtk-Message: 12:33:21.298: Failed to load module "canberra-gtk-module"
Gtk-Message: 12:33:21.394: Failed to load module "colorreload-gtk-module"
Gtk-Message: 12:33:21.394: Failed to load module "window-decorations-gtk-module"
ATTENTION: default value of option mesa_glthread overridden by environment.
ATTENTION: default value of option mesa_glthread overridden by environment.
1677324802094 Marionette INFO Marionette enabled
1677324802099 Marionette INFO Listening on port 40053
WebDriver BiDi listening on ws://localhost:43127
Read port: 40053
1677324802287 RemoteAgent WARN TLS certificate errors will be ignored for this session
console.warn: SearchSettings: "get: No settings file exists, new profile?" (new NotFoundError("Could not open the file at /tmp/rust_mozprofileQXhwDZ/search.json.mozlz4", (void 0)))
DevTools listening on ws://localhost:43127/devtools/browser/5cb5303d-5da2-4a15-95ff-9c587a67416c
1677324834956 geckodriver INFO Listening on 127.0.0.1:53943
1677324834967 mozrunner::runner INFO Running command: "/home/deck/firefox-esr/firefox" "--marionette" "--remote-debugging-port" "47477" "--remote-allow-hosts" "localhost" "-no-remote" "-profile" "/tmp/rust_mozprofilej7bN5T"
Gtk-Message: 12:33:55.004: Failed to load module "canberra-gtk-module"
Gtk-Message: 12:33:55.087: Failed to load module "colorreload-gtk-module"
Gtk-Message: 12:33:55.087: Failed to load module "window-decorations-gtk-module"
ATTENTION: default value of option mesa_glthread overridden by environment.
ATTENTION: default value of option mesa_glthread overridden by environment.
1677324835810 Marionette INFO Marionette enabled
1677324835816 Marionette INFO Listening on port 38461
WebDriver BiDi listening on ws://localhost:47477
Read port: 38461
1677324835993 RemoteAgent WARN TLS certificate errors will be ignored for this session
console.warn: SearchSettings: "get: No settings file exists, new profile?" (new NotFoundError("Could not open the file at /tmp/rust_mozprofilej7bN5T/search.json.mozlz4", (void 0)))
DevTools listening on ws://localhost:47477/devtools/browser/8de97514-dc17-4f72-a9ae-a9546803df67
JavaScript error: , line 0: uncaught exception: undefined
JavaScript error: , line 0: uncaught exception: undefined
JavaScript error: , line 0: uncaught exception: undefined
JavaScript error: , line 0: uncaught exception: undefined
JavaScript error: , line 0: uncaught exception: undefined
JavaScript error: , line 0: uncaught exception: undefined
1677325019874 geckodriver INFO Listening on 127.0.0.1:58485
1677325019886 mozrunner::runner INFO Running command: "/home/deck/firefox-esr/firefox" "--marionette" "--remote-debugging-port" "40267" "--remote-allow-hosts" "localhost" "-no-remote" "-profile" "/tmp/rust_mozprofileVS5iKm"
Gtk-Message: 12:36:59.928: Failed to load module "canberra-gtk-module"
Gtk-Message: 12:37:00.014: Failed to load module "colorreload-gtk-module"
Gtk-Message: 12:37:00.014: Failed to load module "window-decorations-gtk-module"
ATTENTION: default value of option mesa_glthread overridden by environment.
ATTENTION: default value of option mesa_glthread overridden by environment.
1677325020729 Marionette INFO Marionette enabled
1677325020734 Marionette INFO Listening on port 36479
WebDriver BiDi listening on ws://localhost:40267
Read port: 36479
1677325020909 RemoteAgent WARN TLS certificate errors will be ignored for this session
console.warn: SearchSettings: "get: No settings file exists, new profile?" (new NotFoundError("Could not open the file at /tmp/rust_mozprofileVS5iKm/search.json.mozlz4", (void 0)))
DevTools listening on ws://localhost:40267/devtools/browser/1baa0a46-c834-4be8-9100-bc7d99501a77
1677325086531 geckodriver INFO Listening on 127.0.0.1:60797
1677325086543 mozrunner::runner INFO Running command: "/home/deck/firefox-esr/firefox" "--marionette" "--remote-debugging-port" "54223" "--remote-allow-hosts" "localhost" "-no-remote" "-profile" "/tmp/rust_mozprofilemLnQB0"
Gtk-Message: 12:38:06.585: Failed to load module "canberra-gtk-module"
Gtk-Message: 12:38:06.671: Failed to load module "colorreload-gtk-module"
Gtk-Message: 12:38:06.671: Failed to load module "window-decorations-gtk-module"
ATTENTION: default value of option mesa_glthread overridden by environment.
ATTENTION: default value of option mesa_glthread overridden by environment.
1677325087379 Marionette INFO Marionette enabled
1677325087385 Marionette INFO Listening on port 44961
WebDriver BiDi listening on ws://localhost:54223
Read port: 44961
1677325087569 RemoteAgent WARN TLS certificate errors will be ignored for this session
console.warn: SearchSettings: "get: No settings file exists, new profile?" (new NotFoundError("Could not open the file at /tmp/rust_mozprofilemLnQB0/search.json.mozlz4", (void 0)))
DevTools listening on ws://localhost:54223/devtools/browser/631259f2-ac0e-467e-ae38-83cf08cd9131
1677325954847 geckodriver INFO Listening on 127.0.0.1:52911
1677325954858 mozrunner::runner INFO Running command: "/home/deck/firefox-esr/firefox" "--marionette" "--remote-debugging-port" "53059" "--remote-allow-hosts" "localhost" "-no-remote" "-profile" "/tmp/rust_mozprofile7mbRT8"
Gtk-Message: 12:52:34.900: Failed to load module "canberra-gtk-module"
Gtk-Message: 12:52:34.987: Failed to load module "colorreload-gtk-module"
Gtk-Message: 12:52:34.987: Failed to load module "window-decorations-gtk-module"
ATTENTION: default value of option mesa_glthread overridden by environment.
ATTENTION: default value of option mesa_glthread overridden by environment.
1677325955713 Marionette INFO Marionette enabled
1677325955719 Marionette INFO Listening on port 35265
WebDriver BiDi listening on ws://localhost:53059
Read port: 35265
1677325955925 RemoteAgent WARN TLS certificate errors will be ignored for this session
console.warn: SearchSettings: "get: No settings file exists, new profile?" (new NotFoundError("Could not open the file at /tmp/rust_mozprofile7mbRT8/search.json.mozlz4", (void 0)))
DevTools listening on ws://localhost:53059/devtools/browser/d704bafa-9b64-443d-a909-97b01bf35d7b
JavaScript error: , line 0: uncaught exception: undefined
JavaScript error: , line 0: uncaught exception: undefined
JavaScript error: , line 0: uncaught exception: undefined
JavaScript error: , line 0: uncaught exception: undefined
JavaScript error: , line 0: uncaught exception: undefined
JavaScript error: , line 0: uncaught exception: undefined
1677326244716 geckodriver INFO Listening on 127.0.0.1:47709
1677326244727 mozrunner::runner INFO Running command: "/home/deck/firefox-esr/firefox" "--marionette" "--remote-debugging-port" "53407" "--remote-allow-hosts" "localhost" "-no-remote" "-profile" "/tmp/rust_mozprofileiPCkJH"
Gtk-Message: 12:57:24.766: Failed to load module "canberra-gtk-module"
Gtk-Message: 12:57:24.853: Failed to load module "colorreload-gtk-module"
Gtk-Message: 12:57:24.854: Failed to load module "window-decorations-gtk-module"
ATTENTION: default value of option mesa_glthread overridden by environment.
ATTENTION: default value of option mesa_glthread overridden by environment.
1677326245615 Marionette INFO Marionette enabled
1677326245622 Marionette INFO Listening on port 43899
Read port: 43899
WebDriver BiDi listening on ws://localhost:53407
1677326245785 RemoteAgent WARN TLS certificate errors will be ignored for this session
console.warn: SearchSettings: "get: No settings file exists, new profile?" (new NotFoundError("Could not open the file at /tmp/rust_mozprofileiPCkJH/search.json.mozlz4", (void 0)))
DevTools listening on ws://localhost:53407/devtools/browser/2a6b6e5b-2f42-48b9-bedd-22a9c9b9eef8
1677326353823 geckodriver INFO Listening on 127.0.0.1:56085
1677326353836 mozrunner::runner INFO Running command: "/home/deck/firefox-esr/firefox" "--marionette" "--remote-debugging-port" "44629" "--remote-allow-hosts" "localhost" "-no-remote" "-profile" "/tmp/rust_mozprofileayQ9aA"
Gtk-Message: 12:59:13.879: Failed to load module "canberra-gtk-module"
Gtk-Message: 12:59:13.971: Failed to load module "colorreload-gtk-module"
Gtk-Message: 12:59:13.971: Failed to load module "window-decorations-gtk-module"
ATTENTION: default value of option mesa_glthread overridden by environment.
ATTENTION: default value of option mesa_glthread overridden by environment.
1677326354715 Marionette INFO Marionette enabled
1677326354720 Marionette INFO Listening on port 43813
WebDriver BiDi listening on ws://localhost:44629
Read port: 43813
1677326354899 RemoteAgent WARN TLS certificate errors will be ignored for this session
console.warn: SearchSettings: "get: No settings file exists, new profile?" (new NotFoundError("Could not open the file at /tmp/rust_mozprofileayQ9aA/search.json.mozlz4", (void 0)))
DevTools listening on ws://localhost:44629/devtools/browser/fdc1ee81-54f1-4eaa-a890-8bcb6e71db7c
JavaScript error: , line 0: uncaught exception: undefined
JavaScript error: , line 0: uncaught exception: undefined