-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathgeckodriver.log
4522 lines (4435 loc) · 316 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
1664904853150 geckodriver INFO Listening on 127.0.0.1:42723
1664904853677 mozrunner::runner INFO Running command: "/usr/bin/firefox" "--marionette" "--remote-debugging-port" "54173" "--remote-allow-hosts" "localhost" "-no-remote" "-profile" "/tmp/rust_mozprofileeVnCc9"
1664904854304 Marionette INFO Marionette enabled
1664904854307 Marionette INFO Listening on port 34737
Read port: 34737
WebDriver BiDi listening on ws://127.0.0.1:54173
1664904854516 RemoteAgent WARN TLS certificate errors will be ignored for this session
Unsupported modifier, resource creation failed.
XXX: resource creation failed
Unsupported modifier, resource creation failed.
XXX: resource creation failed
console.warn: SearchSettings: "get: No settings file exists, new profile?" (new NotFoundError("Could not open the file at /tmp/rust_mozprofileeVnCc9/search.json.mozlz4", (void 0)))
Unsupported modifier, resource creation failed.
XXX: resource creation failed
Unsupported modifier, resource creation failed.
XXX: resource creation failed
Unsupported modifier, resource creation failed.
XXX: resource creation failed
Missing chrome or resource URL: resource://gre/modules/UpdateListener.sys.mjs
DevTools listening on ws://127.0.0.1:54173/devtools/browser/8cee7cf0-6b8b-4618-a80f-1f76b1fe597c
Unsupported modifier, resource creation failed.
XXX: resource creation failed
1664904857333 Marionette INFO Stopped listening on port 34737
Missing chrome or resource URL: resource://gre/modules/UpdateListener.sys.mjs
console.error: "Error during quit-application-granted: [Exception... \"File error: Not found\" nsresult: \"0x80520012 (NS_ERROR_FILE_NOT_FOUND)\" location: \"JS frame :: resource:///modules/BrowserGlue.jsm :: _onQuitApplicationGranted/tasks< :: line 2009\" data: no]"
1664909867167 geckodriver INFO Listening on 127.0.0.1:52201
1664909867698 mozrunner::runner INFO Running command: "/usr/bin/firefox" "--marionette" "--remote-debugging-port" "45355" "--remote-allow-hosts" "localhost" "-no-remote" "-profile" "/tmp/rust_mozprofileshdIYE"
1664909868348 Marionette INFO Marionette enabled
1664909868352 Marionette INFO Listening on port 46063
Read port: 46063
WebDriver BiDi listening on ws://127.0.0.1:45355
1664909868504 RemoteAgent WARN TLS certificate errors will be ignored for this session
Unsupported modifier, resource creation failed.
XXX: resource creation failed
Unsupported modifier, resource creation failed.
XXX: resource creation failed
console.warn: SearchSettings: "get: No settings file exists, new profile?" (new NotFoundError("Could not open the file at /tmp/rust_mozprofileshdIYE/search.json.mozlz4", (void 0)))
Unsupported modifier, resource creation failed.
XXX: resource creation failed
Unsupported modifier, resource creation failed.
XXX: resource creation failed
Unsupported modifier, resource creation failed.
XXX: resource creation failed
Missing chrome or resource URL: resource://gre/modules/UpdateListener.sys.mjs
DevTools listening on ws://127.0.0.1:45355/devtools/browser/76cfdcd0-5906-411e-b07b-24093755ad72
Unsupported modifier, resource creation failed.
XXX: resource creation failed
Unsupported modifier, resource creation failed.
XXX: resource creation failed
1664909988469 geckodriver INFO Listening on 127.0.0.1:56685
1664909988999 mozrunner::runner INFO Running command: "/usr/bin/firefox" "--marionette" "--remote-debugging-port" "42213" "--remote-allow-hosts" "localhost" "-no-remote" "-profile" "/tmp/rust_mozprofileymV5o9"
1664909989626 Marionette INFO Marionette enabled
1664909989630 Marionette INFO Listening on port 41019
Read port: 41019
WebDriver BiDi listening on ws://127.0.0.1:42213
1664909989805 RemoteAgent WARN TLS certificate errors will be ignored for this session
Unsupported modifier, resource creation failed.
XXX: resource creation failed
Unsupported modifier, resource creation failed.
XXX: resource creation failed
console.warn: SearchSettings: "get: No settings file exists, new profile?" (new NotFoundError("Could not open the file at /tmp/rust_mozprofileymV5o9/search.json.mozlz4", (void 0)))
Unsupported modifier, resource creation failed.
XXX: resource creation failed
Unsupported modifier, resource creation failed.
XXX: resource creation failed
Unsupported modifier, resource creation failed.
XXX: resource creation failed
Missing chrome or resource URL: resource://gre/modules/UpdateListener.sys.mjs
DevTools listening on ws://127.0.0.1:42213/devtools/browser/91a97f65-879b-467a-a83f-f71d95ac986a
Unsupported modifier, resource creation failed.
XXX: resource creation failed
Unsupported modifier, resource creation failed.
XXX: resource creation failed
console.warn: LoginRecipes: "Falling back to a synchronous message for: https://www.amazon.co.uk."
Missing chrome or resource URL: resource://gre/modules/UpdateListener.sys.mjs
console.error: "Error during quit-application-granted: [Exception... \"File error: Not found\" nsresult: \"0x80520012 (NS_ERROR_FILE_NOT_FOUND)\" location: \"JS frame :: resource:///modules/BrowserGlue.jsm :: _onQuitApplicationGranted/tasks< :: line 2009\" data: no]"
1664910242426 Marionette INFO Stopped listening on port 46063
console.warn: TopSitesFeed: Failed to fetch data from Contile server: NetworkError when attempting to fetch resource.
Missing chrome or resource URL: resource://gre/modules/UpdateListener.sys.mjs
console.error: "Error during quit-application-granted: [Exception... \"File error: Not found\" nsresult: \"0x80520012 (NS_ERROR_FILE_NOT_FOUND)\" location: \"JS frame :: resource:///modules/BrowserGlue.jsm :: _onQuitApplicationGranted/tasks< :: line 2009\" data: no]"
1664910244127 Marionette INFO Stopped listening on port 41019
console.warn: TopSitesFeed: Failed to fetch data from Contile server: NetworkError when attempting to fetch resource.
1664911058683 geckodriver INFO Listening on 127.0.0.1:50513
1664911059213 mozrunner::runner INFO Running command: "/usr/bin/firefox" "--marionette" "--remote-debugging-port" "42465" "--remote-allow-hosts" "localhost" "-no-remote" "-profile" "/tmp/rust_mozprofileZJvEPN"
1664911059855 Marionette INFO Marionette enabled
1664911059859 Marionette INFO Listening on port 45205
Read port: 45205
WebDriver BiDi listening on ws://127.0.0.1:42465
1664911060098 RemoteAgent WARN TLS certificate errors will be ignored for this session
Unsupported modifier, resource creation failed.
XXX: resource creation failed
Unsupported modifier, resource creation failed.
XXX: resource creation failed
console.warn: SearchSettings: "get: No settings file exists, new profile?" (new NotFoundError("Could not open the file at /tmp/rust_mozprofileZJvEPN/search.json.mozlz4", (void 0)))
Unsupported modifier, resource creation failed.
XXX: resource creation failed
Unsupported modifier, resource creation failed.
XXX: resource creation failed
Unsupported modifier, resource creation failed.
XXX: resource creation failed
Missing chrome or resource URL: resource://gre/modules/UpdateListener.sys.mjs
DevTools listening on ws://127.0.0.1:42465/devtools/browser/0a036841-0d91-452e-b0cb-0436915c1700
Unsupported modifier, resource creation failed.
XXX: resource creation failed
1664911062789 Marionette INFO Stopped listening on port 45205
Missing chrome or resource URL: resource://gre/modules/UpdateListener.sys.mjs
console.error: "Error during quit-application-granted: [Exception... \"File error: Not found\" nsresult: \"0x80520012 (NS_ERROR_FILE_NOT_FOUND)\" location: \"JS frame :: resource:///modules/BrowserGlue.jsm :: _onQuitApplicationGranted/tasks< :: line 2009\" data: no]"
1664911172860 geckodriver INFO Listening on 127.0.0.1:58327
1664911173390 mozrunner::runner INFO Running command: "/usr/bin/firefox" "--marionette" "--remote-debugging-port" "34243" "--remote-allow-hosts" "localhost" "-no-remote" "-profile" "/tmp/rust_mozprofileXZ2TIl"
1664911174030 Marionette INFO Marionette enabled
1664911174033 Marionette INFO Listening on port 42223
Read port: 42223
WebDriver BiDi listening on ws://127.0.0.1:34243
1664911174210 RemoteAgent WARN TLS certificate errors will be ignored for this session
Unsupported modifier, resource creation failed.
XXX: resource creation failed
Unsupported modifier, resource creation failed.
XXX: resource creation failed
console.warn: SearchSettings: "get: No settings file exists, new profile?" (new NotFoundError("Could not open the file at /tmp/rust_mozprofileXZ2TIl/search.json.mozlz4", (void 0)))
Unsupported modifier, resource creation failed.
XXX: resource creation failed
Unsupported modifier, resource creation failed.
XXX: resource creation failed
Unsupported modifier, resource creation failed.
XXX: resource creation failed
Missing chrome or resource URL: resource://gre/modules/UpdateListener.sys.mjs
DevTools listening on ws://127.0.0.1:34243/devtools/browser/26e876a1-ddb0-484a-b4c7-441f627edaab
1664911176650 Marionette INFO Stopped listening on port 42223
Missing chrome or resource URL: resource://gre/modules/UpdateListener.sys.mjs
console.error: "Error during quit-application-granted: [Exception... \"File error: Not found\" nsresult: \"0x80520012 (NS_ERROR_FILE_NOT_FOUND)\" location: \"JS frame :: resource:///modules/BrowserGlue.jsm :: _onQuitApplicationGranted/tasks< :: line 2009\" data: no]"
1664911193240 geckodriver INFO Listening on 127.0.0.1:44963
1664911193760 mozrunner::runner INFO Running command: "/usr/bin/firefox" "--marionette" "--remote-debugging-port" "46131" "--remote-allow-hosts" "localhost" "-no-remote" "-profile" "/tmp/rust_mozprofilen2TWyF"
1664911194396 Marionette INFO Marionette enabled
1664911194400 Marionette INFO Listening on port 46227
Read port: 46227
WebDriver BiDi listening on ws://127.0.0.1:46131
1664911194632 RemoteAgent WARN TLS certificate errors will be ignored for this session
Unsupported modifier, resource creation failed.
XXX: resource creation failed
Unsupported modifier, resource creation failed.
XXX: resource creation failed
console.warn: SearchSettings: "get: No settings file exists, new profile?" (new NotFoundError("Could not open the file at /tmp/rust_mozprofilen2TWyF/search.json.mozlz4", (void 0)))
Unsupported modifier, resource creation failed.
XXX: resource creation failed
Unsupported modifier, resource creation failed.
XXX: resource creation failed
Unsupported modifier, resource creation failed.
XXX: resource creation failed
Missing chrome or resource URL: resource://gre/modules/UpdateListener.sys.mjs
DevTools listening on ws://127.0.0.1:46131/devtools/browser/a8456d81-f0aa-4293-b3e5-c697e07438bb
1664911196997 Marionette INFO Stopped listening on port 46227
Missing chrome or resource URL: resource://gre/modules/UpdateListener.sys.mjs
console.error: "Error during quit-application-granted: [Exception... \"File error: Not found\" nsresult: \"0x80520012 (NS_ERROR_FILE_NOT_FOUND)\" location: \"JS frame :: resource:///modules/BrowserGlue.jsm :: _onQuitApplicationGranted/tasks< :: line 2009\" data: no]"
1664911232740 geckodriver INFO Listening on 127.0.0.1:58421
1664911233270 mozrunner::runner INFO Running command: "/usr/bin/firefox" "--marionette" "--remote-debugging-port" "46257" "--remote-allow-hosts" "localhost" "-no-remote" "-profile" "/tmp/rust_mozprofileJV9IuZ"
1664911233914 Marionette INFO Marionette enabled
1664911233917 Marionette INFO Listening on port 34309
Read port: 34309
WebDriver BiDi listening on ws://127.0.0.1:46257
1664911234063 RemoteAgent WARN TLS certificate errors will be ignored for this session
Unsupported modifier, resource creation failed.
XXX: resource creation failed
Unsupported modifier, resource creation failed.
XXX: resource creation failed
console.warn: SearchSettings: "get: No settings file exists, new profile?" (new NotFoundError("Could not open the file at /tmp/rust_mozprofileJV9IuZ/search.json.mozlz4", (void 0)))
Unsupported modifier, resource creation failed.
XXX: resource creation failed
Unsupported modifier, resource creation failed.
XXX: resource creation failed
Unsupported modifier, resource creation failed.
XXX: resource creation failed
Missing chrome or resource URL: resource://gre/modules/UpdateListener.sys.mjs
DevTools listening on ws://127.0.0.1:46257/devtools/browser/f585c856-dc23-4e01-aaa8-e82933c92ba5
Unsupported modifier, resource creation failed.
XXX: resource creation failed
Missing chrome or resource URL: resource://gre/modules/UpdateListener.sys.mjs
console.error: "Error during quit-application-granted: [Exception... \"File error: Not found\" nsresult: \"0x80520012 (NS_ERROR_FILE_NOT_FOUND)\" location: \"JS frame :: resource:///modules/BrowserGlue.jsm :: _onQuitApplicationGranted/tasks< :: line 2009\" data: no]"
1664911262260 Marionette INFO Stopped listening on port 34309
console.warn: TopSitesFeed: Failed to fetch data from Contile server: NetworkError when attempting to fetch resource.
1664911266559 geckodriver INFO Listening on 127.0.0.1:49083
1664911267091 mozrunner::runner INFO Running command: "/usr/bin/firefox" "--marionette" "--remote-debugging-port" "43875" "--remote-allow-hosts" "localhost" "-no-remote" "-profile" "/tmp/rust_mozprofile10XZFE"
1664911267727 Marionette INFO Marionette enabled
1664911267730 Marionette INFO Listening on port 44227
Read port: 44227
WebDriver BiDi listening on ws://127.0.0.1:43875
1664911267953 RemoteAgent WARN TLS certificate errors will be ignored for this session
Unsupported modifier, resource creation failed.
XXX: resource creation failed
Unsupported modifier, resource creation failed.
XXX: resource creation failed
Unsupported modifier, resource creation failed.
XXX: resource creation failed
console.warn: SearchSettings: "get: No settings file exists, new profile?" (new NotFoundError("Could not open the file at /tmp/rust_mozprofile10XZFE/search.json.mozlz4", (void 0)))
Unsupported modifier, resource creation failed.
XXX: resource creation failed
Unsupported modifier, resource creation failed.
XXX: resource creation failed
Missing chrome or resource URL: resource://gre/modules/UpdateListener.sys.mjs
DevTools listening on ws://127.0.0.1:43875/devtools/browser/0923a831-acab-439e-98af-04e63eea6ddc
Unsupported modifier, resource creation failed.
XXX: resource creation failed
1664911299528 geckodriver INFO Listening on 127.0.0.1:50305
1664911300058 mozrunner::runner INFO Running command: "/usr/bin/firefox" "--marionette" "--remote-debugging-port" "52795" "--remote-allow-hosts" "localhost" "-no-remote" "-profile" "/tmp/rust_mozprofiledTgkLr"
1664911300698 Marionette INFO Marionette enabled
1664911300702 Marionette INFO Listening on port 36393
Read port: 36393
WebDriver BiDi listening on ws://127.0.0.1:52795
1664911300841 RemoteAgent WARN TLS certificate errors will be ignored for this session
Unsupported modifier, resource creation failed.
XXX: resource creation failed
Unsupported modifier, resource creation failed.
XXX: resource creation failed
console.warn: SearchSettings: "get: No settings file exists, new profile?" (new NotFoundError("Could not open the file at /tmp/rust_mozprofiledTgkLr/search.json.mozlz4", (void 0)))
Unsupported modifier, resource creation failed.
XXX: resource creation failed
Unsupported modifier, resource creation failed.
XXX: resource creation failed
Unsupported modifier, resource creation failed.
XXX: resource creation failed
Missing chrome or resource URL: resource://gre/modules/UpdateListener.sys.mjs
DevTools listening on ws://127.0.0.1:52795/devtools/browser/ab99ef31-bf2e-4ef8-ac51-1125e21cd533
1664911303247 Marionette INFO Stopped listening on port 36393
Unsupported modifier, resource creation failed.
XXX: resource creation failed
Missing chrome or resource URL: resource://gre/modules/UpdateListener.sys.mjs
console.error: "Error during quit-application-granted: [Exception... \"File error: Not found\" nsresult: \"0x80520012 (NS_ERROR_FILE_NOT_FOUND)\" location: \"JS frame :: resource:///modules/BrowserGlue.jsm :: _onQuitApplicationGranted/tasks< :: line 2009\" data: no]"
Missing chrome or resource URL: resource://gre/modules/UpdateListener.sys.mjs
console.error: "Error during quit-application-granted: [Exception... \"File error: Not found\" nsresult: \"0x80520012 (NS_ERROR_FILE_NOT_FOUND)\" location: \"JS frame :: resource:///modules/BrowserGlue.jsm :: _onQuitApplicationGranted/tasks< :: line 2009\" data: no]"
1664911363685 Marionette INFO Stopped listening on port 44227
console.warn: TopSitesFeed: Failed to fetch data from Contile server: NetworkError when attempting to fetch resource.
1664911373859 geckodriver INFO Listening on 127.0.0.1:41897
1664911374384 mozrunner::runner INFO Running command: "/usr/bin/firefox" "--marionette" "--remote-debugging-port" "52257" "--remote-allow-hosts" "localhost" "-no-remote" "-profile" "/tmp/rust_mozprofileNjy9MX"
1664911375039 Marionette INFO Marionette enabled
1664911375042 Marionette INFO Listening on port 35995
Read port: 35995
WebDriver BiDi listening on ws://127.0.0.1:52257
1664911375180 RemoteAgent WARN TLS certificate errors will be ignored for this session
Unsupported modifier, resource creation failed.
XXX: resource creation failed
Unsupported modifier, resource creation failed.
XXX: resource creation failed
console.warn: SearchSettings: "get: No settings file exists, new profile?" (new NotFoundError("Could not open the file at /tmp/rust_mozprofileNjy9MX/search.json.mozlz4", (void 0)))
Unsupported modifier, resource creation failed.
XXX: resource creation failed
Unsupported modifier, resource creation failed.
XXX: resource creation failed
Unsupported modifier, resource creation failed.
XXX: resource creation failed
Missing chrome or resource URL: resource://gre/modules/UpdateListener.sys.mjs
DevTools listening on ws://127.0.0.1:52257/devtools/browser/f1f44540-cf99-4de2-bab2-af92018c6ac3
1664911377604 Marionette INFO Stopped listening on port 35995
Missing chrome or resource URL: resource://gre/modules/UpdateListener.sys.mjs
console.error: "Error during quit-application-granted: [Exception... \"File error: Not found\" nsresult: \"0x80520012 (NS_ERROR_FILE_NOT_FOUND)\" location: \"JS frame :: resource:///modules/BrowserGlue.jsm :: _onQuitApplicationGranted/tasks< :: line 2009\" data: no]"
1664911427117 geckodriver INFO Listening on 127.0.0.1:36739
1664911427647 mozrunner::runner INFO Running command: "/usr/bin/firefox" "--marionette" "--remote-debugging-port" "39311" "--remote-allow-hosts" "localhost" "-no-remote" "-profile" "/tmp/rust_mozprofile70aQKs"
1664911428278 Marionette INFO Marionette enabled
1664911428282 Marionette INFO Listening on port 44255
Read port: 44255
WebDriver BiDi listening on ws://127.0.0.1:39311
1664911428450 RemoteAgent WARN TLS certificate errors will be ignored for this session
Unsupported modifier, resource creation failed.
XXX: resource creation failed
Unsupported modifier, resource creation failed.
XXX: resource creation failed
console.warn: SearchSettings: "get: No settings file exists, new profile?" (new NotFoundError("Could not open the file at /tmp/rust_mozprofile70aQKs/search.json.mozlz4", (void 0)))
Unsupported modifier, resource creation failed.
XXX: resource creation failed
Unsupported modifier, resource creation failed.
XXX: resource creation failed
Unsupported modifier, resource creation failed.
XXX: resource creation failed
Missing chrome or resource URL: resource://gre/modules/UpdateListener.sys.mjs
DevTools listening on ws://127.0.0.1:39311/devtools/browser/10e9a9c2-9a1a-46e0-9db0-312bbb6045cd
1664911431189 Marionette INFO Stopped listening on port 44255
Missing chrome or resource URL: resource://gre/modules/UpdateListener.sys.mjs
console.error: "Error during quit-application-granted: [Exception... \"File error: Not found\" nsresult: \"0x80520012 (NS_ERROR_FILE_NOT_FOUND)\" location: \"JS frame :: resource:///modules/BrowserGlue.jsm :: _onQuitApplicationGranted/tasks< :: line 2009\" data: no]"
console.error: Region.jsm: "Error fetching region" (new TypeError("NetworkError when attempting to fetch resource.", ""))
console.error: Region.jsm: "Failed to fetch region" (new Error("NO_RESULT", "resource://gre/modules/Region.jsm", 420))
1664911439887 geckodriver INFO Listening on 127.0.0.1:34841
1664911440417 mozrunner::runner INFO Running command: "/usr/bin/firefox" "--marionette" "--remote-debugging-port" "45191" "--remote-allow-hosts" "localhost" "-no-remote" "-profile" "/tmp/rust_mozprofile6Lo5Ad"
1664911441085 Marionette INFO Marionette enabled
1664911441090 Marionette INFO Listening on port 36471
Read port: 36471
WebDriver BiDi listening on ws://127.0.0.1:45191
1664911441220 RemoteAgent WARN TLS certificate errors will be ignored for this session
Unsupported modifier, resource creation failed.
XXX: resource creation failed
Unsupported modifier, resource creation failed.
XXX: resource creation failed
console.warn: SearchSettings: "get: No settings file exists, new profile?" (new NotFoundError("Could not open the file at /tmp/rust_mozprofile6Lo5Ad/search.json.mozlz4", (void 0)))
Unsupported modifier, resource creation failed.
XXX: resource creation failed
Unsupported modifier, resource creation failed.
XXX: resource creation failed
Unsupported modifier, resource creation failed.
XXX: resource creation failed
Missing chrome or resource URL: resource://gre/modules/UpdateListener.sys.mjs
DevTools listening on ws://127.0.0.1:45191/devtools/browser/bd6b19a6-8b97-4d65-8332-058a189eac91
1664911443796 Marionette INFO Stopped listening on port 36471
Missing chrome or resource URL: resource://gre/modules/UpdateListener.sys.mjs
console.error: "Error during quit-application-granted: [Exception... \"File error: Not found\" nsresult: \"0x80520012 (NS_ERROR_FILE_NOT_FOUND)\" location: \"JS frame :: resource:///modules/BrowserGlue.jsm :: _onQuitApplicationGranted/tasks< :: line 2009\" data: no]"
1664911451190 geckodriver INFO Listening on 127.0.0.1:43207
1664911451710 mozrunner::runner INFO Running command: "/usr/bin/firefox" "--marionette" "--remote-debugging-port" "45531" "--remote-allow-hosts" "localhost" "-no-remote" "-profile" "/tmp/rust_mozprofileyScZak"
1664911452342 Marionette INFO Marionette enabled
1664911452346 Marionette INFO Listening on port 34571
Read port: 34571
WebDriver BiDi listening on ws://127.0.0.1:45531
1664911452573 RemoteAgent WARN TLS certificate errors will be ignored for this session
Unsupported modifier, resource creation failed.
XXX: resource creation failed
Unsupported modifier, resource creation failed.
XXX: resource creation failed
console.warn: SearchSettings: "get: No settings file exists, new profile?" (new NotFoundError("Could not open the file at /tmp/rust_mozprofileyScZak/search.json.mozlz4", (void 0)))
Unsupported modifier, resource creation failed.
XXX: resource creation failed
Unsupported modifier, resource creation failed.
XXX: resource creation failed
Unsupported modifier, resource creation failed.
XXX: resource creation failed
Missing chrome or resource URL: resource://gre/modules/UpdateListener.sys.mjs
DevTools listening on ws://127.0.0.1:45531/devtools/browser/f5eec6c7-5e84-482c-8317-dbe62ef5553c
1664911454985 Marionette INFO Stopped listening on port 34571
Missing chrome or resource URL: resource://gre/modules/UpdateListener.sys.mjs
console.error: "Error during quit-application-granted: [Exception... \"File error: Not found\" nsresult: \"0x80520012 (NS_ERROR_FILE_NOT_FOUND)\" location: \"JS frame :: resource:///modules/BrowserGlue.jsm :: _onQuitApplicationGranted/tasks< :: line 2009\" data: no]"
1664911762228 geckodriver INFO Listening on 127.0.0.1:44059
1664911762751 mozrunner::runner INFO Running command: "/usr/bin/firefox" "--marionette" "--remote-debugging-port" "38471" "--remote-allow-hosts" "localhost" "-no-remote" "-profile" "/tmp/rust_mozprofileVlRlrI"
1664911763386 Marionette INFO Marionette enabled
1664911763390 Marionette INFO Listening on port 43239
Read port: 43239
WebDriver BiDi listening on ws://127.0.0.1:38471
1664911763621 RemoteAgent WARN TLS certificate errors will be ignored for this session
Unsupported modifier, resource creation failed.
XXX: resource creation failed
Unsupported modifier, resource creation failed.
XXX: resource creation failed
Unsupported modifier, resource creation failed.
XXX: resource creation failed
console.warn: SearchSettings: "get: No settings file exists, new profile?" (new NotFoundError("Could not open the file at /tmp/rust_mozprofileVlRlrI/search.json.mozlz4", (void 0)))
Missing chrome or resource URL: resource://gre/modules/UpdateListener.sys.mjs
DevTools listening on ws://127.0.0.1:38471/devtools/browser/6732d8a0-7e71-48de-91ee-468bc6ff4cf1
Unsupported modifier, resource creation failed.
XXX: resource creation failed
1664911766241 Marionette INFO Stopped listening on port 43239
Missing chrome or resource URL: resource://gre/modules/UpdateListener.sys.mjs
console.error: "Error during quit-application-granted: [Exception... \"File error: Not found\" nsresult: \"0x80520012 (NS_ERROR_FILE_NOT_FOUND)\" location: \"JS frame :: resource:///modules/BrowserGlue.jsm :: _onQuitApplicationGranted/tasks< :: line 2009\" data: no]"
1664911841162 geckodriver INFO Listening on 127.0.0.1:59375
1664911841692 mozrunner::runner INFO Running command: "/usr/bin/firefox" "--marionette" "--remote-debugging-port" "33333" "--remote-allow-hosts" "localhost" "-no-remote" "-profile" "/tmp/rust_mozprofilet3wDRy"
1664911842359 Marionette INFO Marionette enabled
1664911842362 Marionette INFO Listening on port 39361
Read port: 39361
WebDriver BiDi listening on ws://127.0.0.1:33333
1664911842494 RemoteAgent WARN TLS certificate errors will be ignored for this session
Unsupported modifier, resource creation failed.
XXX: resource creation failed
Unsupported modifier, resource creation failed.
XXX: resource creation failed
console.warn: SearchSettings: "get: No settings file exists, new profile?" (new NotFoundError("Could not open the file at /tmp/rust_mozprofilet3wDRy/search.json.mozlz4", (void 0)))
Unsupported modifier, resource creation failed.
XXX: resource creation failed
Unsupported modifier, resource creation failed.
XXX: resource creation failed
Unsupported modifier, resource creation failed.
XXX: resource creation failed
Missing chrome or resource URL: resource://gre/modules/UpdateListener.sys.mjs
DevTools listening on ws://127.0.0.1:33333/devtools/browser/8fc64092-506d-40c7-b245-e85961905264
Unsupported modifier, resource creation failed.
XXX: resource creation failed
Unsupported modifier, resource creation failed.
XXX: resource creation failed
1664911845070 Marionette INFO Stopped listening on port 39361
Missing chrome or resource URL: resource://gre/modules/UpdateListener.sys.mjs
console.error: "Error during quit-application-granted: [Exception... \"File error: Not found\" nsresult: \"0x80520012 (NS_ERROR_FILE_NOT_FOUND)\" location: \"JS frame :: resource:///modules/BrowserGlue.jsm :: _onQuitApplicationGranted/tasks< :: line 2009\" data: no]"
1664912046769 geckodriver INFO Listening on 127.0.0.1:46521
1664912047301 mozrunner::runner INFO Running command: "/usr/bin/firefox" "--marionette" "--remote-debugging-port" "57155" "--remote-allow-hosts" "localhost" "-no-remote" "-profile" "/tmp/rust_mozprofile10qJ8W"
1664912047943 Marionette INFO Marionette enabled
1664912047946 Marionette INFO Listening on port 39915
Read port: 39915
WebDriver BiDi listening on ws://127.0.0.1:57155
1664912048151 RemoteAgent WARN TLS certificate errors will be ignored for this session
Unsupported modifier, resource creation failed.
XXX: resource creation failed
Unsupported modifier, resource creation failed.
XXX: resource creation failed
Unsupported modifier, resource creation failed.
XXX: resource creation failed
console.warn: SearchSettings: "get: No settings file exists, new profile?" (new NotFoundError("Could not open the file at /tmp/rust_mozprofile10qJ8W/search.json.mozlz4", (void 0)))
Missing chrome or resource URL: resource://gre/modules/UpdateListener.sys.mjs
DevTools listening on ws://127.0.0.1:57155/devtools/browser/d915c90f-3e17-499e-b5d5-7ba2273d1334
Unsupported modifier, resource creation failed.
XXX: resource creation failed
1664912050755 Marionette INFO Stopped listening on port 39915
Missing chrome or resource URL: resource://gre/modules/UpdateListener.sys.mjs
console.error: "Error during quit-application-granted: [Exception... \"File error: Not found\" nsresult: \"0x80520012 (NS_ERROR_FILE_NOT_FOUND)\" location: \"JS frame :: resource:///modules/BrowserGlue.jsm :: _onQuitApplicationGranted/tasks< :: line 2009\" data: no]"
1664912174280 geckodriver INFO Listening on 127.0.0.1:50833
1664912174804 mozrunner::runner INFO Running command: "/usr/bin/firefox" "--marionette" "--remote-debugging-port" "41667" "--remote-allow-hosts" "localhost" "-no-remote" "-profile" "/tmp/rust_mozprofile92IQ9C"
1664912175423 Marionette INFO Marionette enabled
1664912175427 Marionette INFO Listening on port 36979
Read port: 36979
WebDriver BiDi listening on ws://127.0.0.1:41667
1664912175654 RemoteAgent WARN TLS certificate errors will be ignored for this session
Unsupported modifier, resource creation failed.
XXX: resource creation failed
Unsupported modifier, resource creation failed.
XXX: resource creation failed
console.warn: SearchSettings: "get: No settings file exists, new profile?" (new NotFoundError("Could not open the file at /tmp/rust_mozprofile92IQ9C/search.json.mozlz4", (void 0)))
Unsupported modifier, resource creation failed.
XXX: resource creation failed
Unsupported modifier, resource creation failed.
XXX: resource creation failed
Unsupported modifier, resource creation failed.
XXX: resource creation failed
Missing chrome or resource URL: resource://gre/modules/UpdateListener.sys.mjs
DevTools listening on ws://127.0.0.1:41667/devtools/browser/ba7996bd-246d-46f9-b50c-f5471d0ed573
Unsupported modifier, resource creation failed.
XXX: resource creation failed
1664912178191 Marionette INFO Stopped listening on port 36979
Missing chrome or resource URL: resource://gre/modules/UpdateListener.sys.mjs
console.error: "Error during quit-application-granted: [Exception... \"File error: Not found\" nsresult: \"0x80520012 (NS_ERROR_FILE_NOT_FOUND)\" location: \"JS frame :: resource:///modules/BrowserGlue.jsm :: _onQuitApplicationGranted/tasks< :: line 2009\" data: no]"
1664912536035 geckodriver INFO Listening on 127.0.0.1:53721
1664912536565 mozrunner::runner INFO Running command: "/usr/bin/firefox" "--marionette" "--remote-debugging-port" "59513" "--remote-allow-hosts" "localhost" "-no-remote" "-profile" "/tmp/rust_mozprofilevc23vq"
1664912537227 Marionette INFO Marionette enabled
1664912537230 Marionette INFO Listening on port 38355
Read port: 38355
WebDriver BiDi listening on ws://127.0.0.1:59513
1664912537363 RemoteAgent WARN TLS certificate errors will be ignored for this session
Unsupported modifier, resource creation failed.
XXX: resource creation failed
Unsupported modifier, resource creation failed.
XXX: resource creation failed
console.warn: SearchSettings: "get: No settings file exists, new profile?" (new NotFoundError("Could not open the file at /tmp/rust_mozprofilevc23vq/search.json.mozlz4", (void 0)))
Unsupported modifier, resource creation failed.
XXX: resource creation failed
Unsupported modifier, resource creation failed.
XXX: resource creation failed
Unsupported modifier, resource creation failed.
XXX: resource creation failed
Missing chrome or resource URL: resource://gre/modules/UpdateListener.sys.mjs
DevTools listening on ws://127.0.0.1:59513/devtools/browser/3f38edcd-5290-4576-978e-fb1d39c48941
Unsupported modifier, resource creation failed.
XXX: resource creation failed
Missing chrome or resource URL: resource://gre/modules/UpdateListener.sys.mjs
console.error: "Error during quit-application-granted: [Exception... \"File error: Not found\" nsresult: \"0x80520012 (NS_ERROR_FILE_NOT_FOUND)\" location: \"JS frame :: resource:///modules/BrowserGlue.jsm :: _onQuitApplicationGranted/tasks< :: line 2009\" data: no]"
1664912676544 Marionette INFO Stopped listening on port 38355
console.warn: TopSitesFeed: Failed to fetch data from Contile server: NetworkError when attempting to fetch resource.
Sandbox: Unexpected EOF, op 0 flags 00 path /proc/cpuinfo
1664912687496 geckodriver INFO Listening on 127.0.0.1:34961
1664912688026 mozrunner::runner INFO Running command: "/usr/bin/firefox" "--marionette" "--remote-debugging-port" "57335" "--remote-allow-hosts" "localhost" "-no-remote" "-profile" "/tmp/rust_mozprofileednL2U"
1664912688670 Marionette INFO Marionette enabled
1664912688673 Marionette INFO Listening on port 46073
Read port: 46073
WebDriver BiDi listening on ws://127.0.0.1:57335
1664912688805 RemoteAgent WARN TLS certificate errors will be ignored for this session
Unsupported modifier, resource creation failed.
XXX: resource creation failed
Unsupported modifier, resource creation failed.
XXX: resource creation failed
console.warn: SearchSettings: "get: No settings file exists, new profile?" (new NotFoundError("Could not open the file at /tmp/rust_mozprofileednL2U/search.json.mozlz4", (void 0)))
Unsupported modifier, resource creation failed.
XXX: resource creation failed
Unsupported modifier, resource creation failed.
XXX: resource creation failed
Unsupported modifier, resource creation failed.
XXX: resource creation failed
Missing chrome or resource URL: resource://gre/modules/UpdateListener.sys.mjs
DevTools listening on ws://127.0.0.1:57335/devtools/browser/a8d99853-8620-4e6b-abc3-a34d86430281
Unsupported modifier, resource creation failed.
XXX: resource creation failed
1664912691384 Marionette INFO Stopped listening on port 46073
Missing chrome or resource URL: resource://gre/modules/UpdateListener.sys.mjs
console.error: "Error during quit-application-granted: [Exception... \"File error: Not found\" nsresult: \"0x80520012 (NS_ERROR_FILE_NOT_FOUND)\" location: \"JS frame :: resource:///modules/BrowserGlue.jsm :: _onQuitApplicationGranted/tasks< :: line 2009\" data: no]"
1664912719851 geckodriver INFO Listening on 127.0.0.1:47407
1664912720382 mozrunner::runner INFO Running command: "/usr/bin/firefox" "--marionette" "--remote-debugging-port" "38469" "--remote-allow-hosts" "localhost" "-no-remote" "-profile" "/tmp/rust_mozprofilegvTx7V"
1664912721031 Marionette INFO Marionette enabled
1664912721034 Marionette INFO Listening on port 37507
Read port: 37507
WebDriver BiDi listening on ws://127.0.0.1:38469
1664912721190 RemoteAgent WARN TLS certificate errors will be ignored for this session
Unsupported modifier, resource creation failed.
XXX: resource creation failed
Unsupported modifier, resource creation failed.
XXX: resource creation failed
console.warn: SearchSettings: "get: No settings file exists, new profile?" (new NotFoundError("Could not open the file at /tmp/rust_mozprofilegvTx7V/search.json.mozlz4", (void 0)))
Unsupported modifier, resource creation failed.
XXX: resource creation failed
Unsupported modifier, resource creation failed.
XXX: resource creation failed
Unsupported modifier, resource creation failed.
XXX: resource creation failed
Unsupported modifier, resource creation failed.
XXX: resource creation failed
Missing chrome or resource URL: resource://gre/modules/UpdateListener.sys.mjs
DevTools listening on ws://127.0.0.1:38469/devtools/browser/9ef0c6de-4f82-4c0a-93f8-ae2ca1058318
Unsupported modifier, resource creation failed.
XXX: resource creation failed
1664912723816 Marionette INFO Stopped listening on port 37507
Missing chrome or resource URL: resource://gre/modules/UpdateListener.sys.mjs
console.error: "Error during quit-application-granted: [Exception... \"File error: Not found\" nsresult: \"0x80520012 (NS_ERROR_FILE_NOT_FOUND)\" location: \"JS frame :: resource:///modules/BrowserGlue.jsm :: _onQuitApplicationGranted/tasks< :: line 2009\" data: no]"
1664970716304 geckodriver INFO Listening on 127.0.0.1:35175
1664970716829 mozrunner::runner INFO Running command: "/usr/bin/firefox" "--marionette" "--remote-debugging-port" "53309" "--remote-allow-hosts" "localhost" "-no-remote" "-profile" "/tmp/rust_mozprofilegjbUv6"
ATTENTION: default value of option mesa_glthread overridden by environment.
ATTENTION: default value of option mesa_glthread overridden by environment.
ATTENTION: default value of option mesa_glthread overridden by environment.
ATTENTION: default value of option mesa_glthread overridden by environment.
1664970717773 Marionette INFO Marionette enabled
1664970717778 Marionette INFO Listening on port 38671
Read port: 38671
WebDriver BiDi listening on ws://127.0.0.1:53309
1664970718016 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_mozprofilegjbUv6/search.json.mozlz4", (void 0)))
Missing chrome or resource URL: resource://gre/modules/UpdateListener.sys.mjs
DevTools listening on ws://127.0.0.1:53309/devtools/browser/562bf865-1b54-47c0-9d5f-d621696fec76
1664970722179 Marionette INFO Stopped listening on port 38671
Missing chrome or resource URL: resource://gre/modules/UpdateListener.sys.mjs
console.error: "Error during quit-application-granted: [Exception... \"File error: Not found\" nsresult: \"0x80520012 (NS_ERROR_FILE_NOT_FOUND)\" location: \"JS frame :: resource:///modules/BrowserGlue.jsm :: _onQuitApplicationGranted/tasks< :: line 2009\" data: no]"
1664970737247 geckodriver INFO Listening on 127.0.0.1:34849
1664970737767 mozrunner::runner INFO Running command: "/usr/bin/firefox" "--marionette" "--remote-debugging-port" "39021" "--remote-allow-hosts" "localhost" "-no-remote" "-profile" "/tmp/rust_mozprofilenm1MyG"
ATTENTION: default value of option mesa_glthread overridden by environment.
ATTENTION: default value of option mesa_glthread overridden by environment.
ATTENTION: default value of option mesa_glthread overridden by environment.
ATTENTION: default value of option mesa_glthread overridden by environment.
1664970738442 Marionette INFO Marionette enabled
1664970738445 Marionette INFO Listening on port 38555
Read port: 38555
WebDriver BiDi listening on ws://127.0.0.1:39021
1664970738577 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_mozprofilenm1MyG/search.json.mozlz4", (void 0)))
Missing chrome or resource URL: resource://gre/modules/UpdateListener.sys.mjs
DevTools listening on ws://127.0.0.1:39021/devtools/browser/2623613d-38c4-4faf-8840-55cd50a08956
console.warn: LoginRecipes: "Falling back to a synchronous message for: http://secure-retreat-92358.herokuapp.com."
Missing chrome or resource URL: resource://gre/modules/UpdateListener.sys.mjs
console.error: "Error during quit-application-granted: [Exception... \"File error: Not found\" nsresult: \"0x80520012 (NS_ERROR_FILE_NOT_FOUND)\" location: \"JS frame :: resource:///modules/BrowserGlue.jsm :: _onQuitApplicationGranted/tasks< :: line 2009\" data: no]"
1664970982507 Marionette INFO Stopped listening on port 38555
console.warn: TopSitesFeed: Failed to fetch data from Contile server: NetworkError when attempting to fetch resource.
1664975530436 geckodriver INFO Listening on 127.0.0.1:54405
1664975530953 mozrunner::runner INFO Running command: "/usr/bin/firefox" "--marionette" "--remote-debugging-port" "37463" "--remote-allow-hosts" "localhost" "-no-remote" "-profile" "/tmp/rust_mozprofilekQ4P2w"
1664975531838 Marionette INFO Marionette enabled
1664975531842 Marionette INFO Listening on port 42017
Read port: 42017
WebDriver BiDi listening on ws://127.0.0.1:37463
1664975532070 RemoteAgent WARN TLS certificate errors will be ignored for this session
Unsupported modifier, resource creation failed.
XXX: resource creation failed
Unsupported modifier, resource creation failed.
XXX: resource creation failed
console.warn: SearchSettings: "get: No settings file exists, new profile?" (new NotFoundError("Could not open the file at /tmp/rust_mozprofilekQ4P2w/search.json.mozlz4", (void 0)))
Unsupported modifier, resource creation failed.
XXX: resource creation failed
Unsupported modifier, resource creation failed.
XXX: resource creation failed
Unsupported modifier, resource creation failed.
XXX: resource creation failed
Missing chrome or resource URL: resource://gre/modules/UpdateListener.sys.mjs
DevTools listening on ws://127.0.0.1:37463/devtools/browser/52853032-03d7-40ab-a3c0-8a6589ca87ce
Unsupported modifier, resource creation failed.
XXX: resource creation failed
console.warn: LoginRecipes: "Falling back to a synchronous message for: http://secure-retreat-92358.herokuapp.com."
Missing chrome or resource URL: resource://gre/modules/UpdateListener.sys.mjs
console.error: "Error during quit-application-granted: [Exception... \"File error: Not found\" nsresult: \"0x80520012 (NS_ERROR_FILE_NOT_FOUND)\" location: \"JS frame :: resource:///modules/BrowserGlue.jsm :: _onQuitApplicationGranted/tasks< :: line 2009\" data: no]"
1664975538512 Marionette INFO Stopped listening on port 42017
console.warn: TopSitesFeed: Failed to fetch data from Contile server: NetworkError when attempting to fetch resource.
1664977572019 geckodriver INFO Listening on 127.0.0.1:54253
1664977572549 mozrunner::runner INFO Running command: "/usr/bin/firefox" "--marionette" "--remote-debugging-port" "54581" "--remote-allow-hosts" "localhost" "-no-remote" "-profile" "/tmp/rust_mozprofileVT4PYa"
1664977573187 Marionette INFO Marionette enabled
1664977573191 Marionette INFO Listening on port 42771
Read port: 42771
WebDriver BiDi listening on ws://127.0.0.1:54581
1664977573330 RemoteAgent WARN TLS certificate errors will be ignored for this session
Unsupported modifier, resource creation failed.
XXX: resource creation failed
Unsupported modifier, resource creation failed.
XXX: resource creation failed
console.warn: SearchSettings: "get: No settings file exists, new profile?" (new NotFoundError("Could not open the file at /tmp/rust_mozprofileVT4PYa/search.json.mozlz4", (void 0)))
Unsupported modifier, resource creation failed.
XXX: resource creation failed
Unsupported modifier, resource creation failed.
XXX: resource creation failed
Unsupported modifier, resource creation failed.
XXX: resource creation failed
Missing chrome or resource URL: resource://gre/modules/UpdateListener.sys.mjs
DevTools listening on ws://127.0.0.1:54581/devtools/browser/c0f4c26d-65c6-417b-af36-8370480a2fd4
1664977619611 geckodriver INFO Listening on 127.0.0.1:47083
1664977620144 mozrunner::runner INFO Running command: "/usr/bin/firefox" "--marionette" "--remote-debugging-port" "39805" "--remote-allow-hosts" "localhost" "-no-remote" "-profile" "/tmp/rust_mozprofileVewjax"
1664977620784 Marionette INFO Marionette enabled
1664977620787 Marionette INFO Listening on port 41395
Read port: 41395
WebDriver BiDi listening on ws://127.0.0.1:39805
1664977620918 RemoteAgent WARN TLS certificate errors will be ignored for this session
Unsupported modifier, resource creation failed.
XXX: resource creation failed
Unsupported modifier, resource creation failed.
XXX: resource creation failed
console.warn: SearchSettings: "get: No settings file exists, new profile?" (new NotFoundError("Could not open the file at /tmp/rust_mozprofileVewjax/search.json.mozlz4", (void 0)))
Unsupported modifier, resource creation failed.
XXX: resource creation failed
Unsupported modifier, resource creation failed.
XXX: resource creation failed
Unsupported modifier, resource creation failed.
XXX: resource creation failed
Missing chrome or resource URL: resource://gre/modules/UpdateListener.sys.mjs
DevTools listening on ws://127.0.0.1:39805/devtools/browser/d8e25977-41d7-4218-8e20-a2724cb10bdf
Missing chrome or resource URL: resource://gre/modules/UpdateListener.sys.mjs
console.error: "Error during quit-application-granted: [Exception... \"File error: Not found\" nsresult: \"0x80520012 (NS_ERROR_FILE_NOT_FOUND)\" location: \"JS frame :: resource:///modules/BrowserGlue.jsm :: _onQuitApplicationGranted/tasks< :: line 2009\" data: no]"
1664977656182 Marionette INFO Stopped listening on port 42771
console.warn: TopSitesFeed: Failed to fetch data from Contile server: NetworkError when attempting to fetch resource.
Missing chrome or resource URL: resource://gre/modules/UpdateListener.sys.mjs
console.error: "Error during quit-application-granted: [Exception... \"File error: Not found\" nsresult: \"0x80520012 (NS_ERROR_FILE_NOT_FOUND)\" location: \"JS frame :: resource:///modules/BrowserGlue.jsm :: _onQuitApplicationGranted/tasks< :: line 2009\" data: no]"
1664977657895 Marionette INFO Stopped listening on port 41395
console.warn: TopSitesFeed: Failed to fetch data from Contile server: NetworkError when attempting to fetch resource.
1664977677064 geckodriver INFO Listening on 127.0.0.1:40885
1664977677594 mozrunner::runner INFO Running command: "/usr/bin/firefox" "--marionette" "--remote-debugging-port" "39045" "--remote-allow-hosts" "localhost" "-no-remote" "-profile" "/tmp/rust_mozprofilezxzgNe"
1664977678260 Marionette INFO Marionette enabled
1664977678263 Marionette INFO Listening on port 43405
Read port: 43405
WebDriver BiDi listening on ws://127.0.0.1:39045
1664977678376 RemoteAgent WARN TLS certificate errors will be ignored for this session
Unsupported modifier, resource creation failed.
XXX: resource creation failed
Unsupported modifier, resource creation failed.
XXX: resource creation failed
console.warn: SearchSettings: "get: No settings file exists, new profile?" (new NotFoundError("Could not open the file at /tmp/rust_mozprofilezxzgNe/search.json.mozlz4", (void 0)))
Unsupported modifier, resource creation failed.
XXX: resource creation failed
Unsupported modifier, resource creation failed.
XXX: resource creation failed
Unsupported modifier, resource creation failed.
XXX: resource creation failed
Missing chrome or resource URL: resource://gre/modules/UpdateListener.sys.mjs
DevTools listening on ws://127.0.0.1:39045/devtools/browser/9c1cfad7-003c-46f5-a69b-0928fd05cccb
Unsupported modifier, resource creation failed.
XXX: resource creation failed
Missing chrome or resource URL: resource://gre/modules/UpdateListener.sys.mjs
console.error: "Error during quit-application-granted: [Exception... \"File error: Not found\" nsresult: \"0x80520012 (NS_ERROR_FILE_NOT_FOUND)\" location: \"JS frame :: resource:///modules/BrowserGlue.jsm :: _onQuitApplicationGranted/tasks< :: line 2009\" data: no]"
1664977792644 Marionette INFO Stopped listening on port 43405
console.warn: TopSitesFeed: Failed to fetch data from Contile server: NetworkError when attempting to fetch resource.
1664977803787 geckodriver INFO Listening on 127.0.0.1:59147
1664977804308 mozrunner::runner INFO Running command: "/usr/bin/firefox" "--marionette" "--remote-debugging-port" "46069" "--remote-allow-hosts" "localhost" "-no-remote" "-profile" "/tmp/rust_mozprofileQpZuQJ"
1664977804903 Marionette INFO Marionette enabled
1664977804907 Marionette INFO Listening on port 41937
Read port: 41937
WebDriver BiDi listening on ws://127.0.0.1:46069
1664977805046 RemoteAgent WARN TLS certificate errors will be ignored for this session
Unsupported modifier, resource creation failed.
XXX: resource creation failed
Unsupported modifier, resource creation failed.
XXX: resource creation failed
console.warn: SearchSettings: "get: No settings file exists, new profile?" (new NotFoundError("Could not open the file at /tmp/rust_mozprofileQpZuQJ/search.json.mozlz4", (void 0)))
Unsupported modifier, resource creation failed.
XXX: resource creation failed
Unsupported modifier, resource creation failed.
XXX: resource creation failed
Unsupported modifier, resource creation failed.
XXX: resource creation failed
Missing chrome or resource URL: resource://gre/modules/UpdateListener.sys.mjs
DevTools listening on ws://127.0.0.1:46069/devtools/browser/7d04150a-03d6-4156-9111-32648bfd0582
Unsupported modifier, resource creation failed.
XXX: resource creation failed
Unsupported modifier, resource creation failed.
XXX: resource creation failed
Unsupported modifier, resource creation failed.
XXX: resource creation failed
Missing chrome or resource URL: resource://gre/modules/UpdateListener.sys.mjs
console.error: "Error during quit-application-granted: [Exception... \"File error: Not found\" nsresult: \"0x80520012 (NS_ERROR_FILE_NOT_FOUND)\" location: \"JS frame :: resource:///modules/BrowserGlue.jsm :: _onQuitApplicationGranted/tasks< :: line 2009\" data: no]"
1664977836883 Marionette INFO Stopped listening on port 41937
console.warn: TopSitesFeed: Failed to fetch data from Contile server: NetworkError when attempting to fetch resource.
1664977848751 geckodriver INFO Listening on 127.0.0.1:42117
1664977849272 mozrunner::runner INFO Running command: "/usr/bin/firefox" "--marionette" "--remote-debugging-port" "49379" "--remote-allow-hosts" "localhost" "-no-remote" "-profile" "/tmp/rust_mozprofileu3VbU6"
1664977849894 Marionette INFO Marionette enabled
1664977849897 Marionette INFO Listening on port 37959
Read port: 37959
WebDriver BiDi listening on ws://127.0.0.1:49379
1664977850056 RemoteAgent WARN TLS certificate errors will be ignored for this session
Unsupported modifier, resource creation failed.
XXX: resource creation failed
console.warn: SearchSettings: "get: No settings file exists, new profile?" (new NotFoundError("Could not open the file at /tmp/rust_mozprofileu3VbU6/search.json.mozlz4", (void 0)))
Unsupported modifier, resource creation failed.
XXX: resource creation failed
Unsupported modifier, resource creation failed.
XXX: resource creation failed
Unsupported modifier, resource creation failed.
XXX: resource creation failed
Unsupported modifier, resource creation failed.
XXX: resource creation failed
Missing chrome or resource URL: resource://gre/modules/UpdateListener.sys.mjs
DevTools listening on ws://127.0.0.1:49379/devtools/browser/59b59df4-c542-41cd-be5d-e9bec6ad4c38
Unsupported modifier, resource creation failed.
XXX: resource creation failed
Unsupported modifier, resource creation failed.
XXX: resource creation failed
Missing chrome or resource URL: resource://gre/modules/UpdateListener.sys.mjs
console.error: "Error during quit-application-granted: [Exception... \"File error: Not found\" nsresult: \"0x80520012 (NS_ERROR_FILE_NOT_FOUND)\" location: \"JS frame :: resource:///modules/BrowserGlue.jsm :: _onQuitApplicationGranted/tasks< :: line 2009\" data: no]"
1664977905152 Marionette INFO Stopped listening on port 37959
console.warn: TopSitesFeed: Failed to fetch data from Contile server: NetworkError when attempting to fetch resource.
1664977911420 geckodriver INFO Listening on 127.0.0.1:53759
1664977911939 mozrunner::runner INFO Running command: "/usr/bin/firefox" "--marionette" "--remote-debugging-port" "59945" "--remote-allow-hosts" "localhost" "-no-remote" "-profile" "/tmp/rust_mozprofilezTYCLy"
1664977912548 Marionette INFO Marionette enabled
1664977912551 Marionette INFO Listening on port 40315
Read port: 40315
WebDriver BiDi listening on ws://127.0.0.1:59945
1664977912739 RemoteAgent WARN TLS certificate errors will be ignored for this session
Unsupported modifier, resource creation failed.
XXX: resource creation failed
Unsupported modifier, resource creation failed.
XXX: resource creation failed
Unsupported modifier, resource creation failed.
XXX: resource creation failed
console.warn: SearchSettings: "get: No settings file exists, new profile?" (new NotFoundError("Could not open the file at /tmp/rust_mozprofilezTYCLy/search.json.mozlz4", (void 0)))
Unsupported modifier, resource creation failed.
XXX: resource creation failed
Unsupported modifier, resource creation failed.
XXX: resource creation failed
Missing chrome or resource URL: resource://gre/modules/UpdateListener.sys.mjs
DevTools listening on ws://127.0.0.1:59945/devtools/browser/9d883ba8-f2c0-4c83-bd49-3b2dd2a58ff7
Unsupported modifier, resource creation failed.
XXX: resource creation failed
Missing chrome or resource URL: resource://gre/modules/UpdateListener.sys.mjs
console.error: "Error during quit-application-granted: [Exception... \"File error: Not found\" nsresult: \"0x80520012 (NS_ERROR_FILE_NOT_FOUND)\" location: \"JS frame :: resource:///modules/BrowserGlue.jsm :: _onQuitApplicationGranted/tasks< :: line 2009\" data: no]"
1664978143875 Marionette INFO Stopped listening on port 40315
console.warn: TopSitesFeed: Failed to fetch data from Contile server: NetworkError when attempting to fetch resource.
1664978155635 geckodriver INFO Listening on 127.0.0.1:59953
1664978156166 mozrunner::runner INFO Running command: "/usr/bin/firefox" "--marionette" "--remote-debugging-port" "38691" "--remote-allow-hosts" "localhost" "-no-remote" "-profile" "/tmp/rust_mozprofileFJGwei"
1664978156807 Marionette INFO Marionette enabled
1664978156810 Marionette INFO Listening on port 36575
Read port: 36575
WebDriver BiDi listening on ws://127.0.0.1:38691
1664978156949 RemoteAgent WARN TLS certificate errors will be ignored for this session
Unsupported modifier, resource creation failed.
XXX: resource creation failed
Unsupported modifier, resource creation failed.
XXX: resource creation failed
console.warn: SearchSettings: "get: No settings file exists, new profile?" (new NotFoundError("Could not open the file at /tmp/rust_mozprofileFJGwei/search.json.mozlz4", (void 0)))
Unsupported modifier, resource creation failed.
XXX: resource creation failed
Unsupported modifier, resource creation failed.
XXX: resource creation failed
Unsupported modifier, resource creation failed.
XXX: resource creation failed
Missing chrome or resource URL: resource://gre/modules/UpdateListener.sys.mjs
DevTools listening on ws://127.0.0.1:38691/devtools/browser/98089173-f2c3-4751-8e41-01e31deec201
1664978177159 geckodriver INFO Listening on 127.0.0.1:46769
1664978177679 mozrunner::runner INFO Running command: "/usr/bin/firefox" "--marionette" "--remote-debugging-port" "33459" "--remote-allow-hosts" "localhost" "-no-remote" "-profile" "/tmp/rust_mozprofileUfpadO"
1664978178323 Marionette INFO Marionette enabled
1664978178327 Marionette INFO Listening on port 39503
Read port: 39503
WebDriver BiDi listening on ws://127.0.0.1:33459
1664978178459 RemoteAgent WARN TLS certificate errors will be ignored for this session
Unsupported modifier, resource creation failed.
XXX: resource creation failed
Unsupported modifier, resource creation failed.
XXX: resource creation failed
console.warn: SearchSettings: "get: No settings file exists, new profile?" (new NotFoundError("Could not open the file at /tmp/rust_mozprofileUfpadO/search.json.mozlz4", (void 0)))
Unsupported modifier, resource creation failed.
XXX: resource creation failed
Unsupported modifier, resource creation failed.
XXX: resource creation failed
Unsupported modifier, resource creation failed.
XXX: resource creation failed
Missing chrome or resource URL: resource://gre/modules/UpdateListener.sys.mjs
DevTools listening on ws://127.0.0.1:33459/devtools/browser/96ec2fea-e169-4f5f-a469-39682a1b1eb0
Unsupported modifier, resource creation failed.
XXX: resource creation failed
1664978225051 geckodriver INFO Listening on 127.0.0.1:47233
1664978225581 mozrunner::runner INFO Running command: "/usr/bin/firefox" "--marionette" "--remote-debugging-port" "43113" "--remote-allow-hosts" "localhost" "-no-remote" "-profile" "/tmp/rust_mozprofileG5S1QE"
1664978226230 Marionette INFO Marionette enabled
1664978226233 Marionette INFO Listening on port 33795
Read port: 33795
WebDriver BiDi listening on ws://127.0.0.1:43113
1664978226352 RemoteAgent WARN TLS certificate errors will be ignored for this session
Unsupported modifier, resource creation failed.
XXX: resource creation failed
Unsupported modifier, resource creation failed.
XXX: resource creation failed
Unsupported modifier, resource creation failed.
XXX: resource creation failed
console.warn: SearchSettings: "get: No settings file exists, new profile?" (new NotFoundError("Could not open the file at /tmp/rust_mozprofileG5S1QE/search.json.mozlz4", (void 0)))
Missing chrome or resource URL: resource://gre/modules/UpdateListener.sys.mjs
DevTools listening on ws://127.0.0.1:43113/devtools/browser/ed229fd8-c4c7-464e-8ca6-269b12148bcb
Unsupported modifier, resource creation failed.
XXX: resource creation failed
Unsupported modifier, resource creation failed.
XXX: resource creation failed
Missing chrome or resource URL: resource://gre/modules/UpdateListener.sys.mjs
console.error: "Error during quit-application-granted: [Exception... \"File error: Not found\" nsresult: \"0x80520012 (NS_ERROR_FILE_NOT_FOUND)\" location: \"JS frame :: resource:///modules/BrowserGlue.jsm :: _onQuitApplicationGranted/tasks< :: line 2009\" data: no]"
1664978230754 Marionette INFO Stopped listening on port 36575
console.warn: TopSitesFeed: Failed to fetch data from Contile server: NetworkError when attempting to fetch resource.
Missing chrome or resource URL: resource://gre/modules/UpdateListener.sys.mjs
console.error: "Error during quit-application-granted: [Exception... \"File error: Not found\" nsresult: \"0x80520012 (NS_ERROR_FILE_NOT_FOUND)\" location: \"JS frame :: resource:///modules/BrowserGlue.jsm :: _onQuitApplicationGranted/tasks< :: line 2009\" data: no]"
1664978232979 Marionette INFO Stopped listening on port 39503
console.warn: TopSitesFeed: Failed to fetch data from Contile server: NetworkError when attempting to fetch resource.
Sandbox: Unexpected EOF, op 0 flags 00 path /proc/cpuinfo
1664978308983 geckodriver INFO Listening on 127.0.0.1:35651
1664978309514 mozrunner::runner INFO Running command: "/usr/bin/firefox" "--marionette" "--remote-debugging-port" "42095" "--remote-allow-hosts" "localhost" "-no-remote" "-profile" "/tmp/rust_mozprofilezwGwWa"
1664978310188 Marionette INFO Marionette enabled
1664978310192 Marionette INFO Listening on port 38069
Read port: 38069
WebDriver BiDi listening on ws://127.0.0.1:42095
1664978310327 RemoteAgent WARN TLS certificate errors will be ignored for this session
Unsupported modifier, resource creation failed.
XXX: resource creation failed
Unsupported modifier, resource creation failed.
XXX: resource creation failed
console.warn: SearchSettings: "get: No settings file exists, new profile?" (new NotFoundError("Could not open the file at /tmp/rust_mozprofilezwGwWa/search.json.mozlz4", (void 0)))
Unsupported modifier, resource creation failed.
XXX: resource creation failed
Unsupported modifier, resource creation failed.
XXX: resource creation failed
Unsupported modifier, resource creation failed.
XXX: resource creation failed
Missing chrome or resource URL: resource://gre/modules/UpdateListener.sys.mjs
DevTools listening on ws://127.0.0.1:42095/devtools/browser/46cec2c2-8ac9-414f-951a-4490051cc141
Unsupported modifier, resource creation failed.
XXX: resource creation failed
Unsupported modifier, resource creation failed.
XXX: resource creation failed
Unsupported modifier, resource creation failed.
XXX: resource creation failed
Missing chrome or resource URL: resource://gre/modules/UpdateListener.sys.mjs
console.error: "Error during quit-application-granted: [Exception... \"File error: Not found\" nsresult: \"0x80520012 (NS_ERROR_FILE_NOT_FOUND)\" location: \"JS frame :: resource:///modules/BrowserGlue.jsm :: _onQuitApplicationGranted/tasks< :: line 2009\" data: no]"
1664978336430 Marionette INFO Stopped listening on port 33795
console.warn: TopSitesFeed: Failed to fetch data from Contile server: NetworkError when attempting to fetch resource.
Sandbox: Unexpected EOF, op 0 flags 00 path /proc/cpuinfo
Missing chrome or resource URL: resource://gre/modules/UpdateListener.sys.mjs
console.error: "Error during quit-application-granted: [Exception... \"File error: Not found\" nsresult: \"0x80520012 (NS_ERROR_FILE_NOT_FOUND)\" location: \"JS frame :: resource:///modules/BrowserGlue.jsm :: _onQuitApplicationGranted/tasks< :: line 2009\" data: no]"
1664978338048 Marionette INFO Stopped listening on port 38069
console.warn: TopSitesFeed: Failed to fetch data from Contile server: NetworkError when attempting to fetch resource.
1664978367979 geckodriver INFO Listening on 127.0.0.1:50091
1664978368504 mozrunner::runner INFO Running command: "/usr/bin/firefox" "--marionette" "--remote-debugging-port" "47807" "--remote-allow-hosts" "localhost" "-no-remote" "-profile" "/tmp/rust_mozprofileOxKt1w"
1664978369153 Marionette INFO Marionette enabled
1664978369157 Marionette INFO Listening on port 45359
Read port: 45359
WebDriver BiDi listening on ws://127.0.0.1:47807
1664978369311 RemoteAgent WARN TLS certificate errors will be ignored for this session
Unsupported modifier, resource creation failed.
XXX: resource creation failed
Unsupported modifier, resource creation failed.
XXX: resource creation failed
console.warn: SearchSettings: "get: No settings file exists, new profile?" (new NotFoundError("Could not open the file at /tmp/rust_mozprofileOxKt1w/search.json.mozlz4", (void 0)))
Unsupported modifier, resource creation failed.
XXX: resource creation failed
Unsupported modifier, resource creation failed.
XXX: resource creation failed
Unsupported modifier, resource creation failed.
XXX: resource creation failed
Missing chrome or resource URL: resource://gre/modules/UpdateListener.sys.mjs
DevTools listening on ws://127.0.0.1:47807/devtools/browser/7a561cd9-05ae-45f0-804d-630cf8103c78
1664978415320 geckodriver INFO Listening on 127.0.0.1:42375
1664978415850 mozrunner::runner INFO Running command: "/usr/bin/firefox" "--marionette" "--remote-debugging-port" "44709" "--remote-allow-hosts" "localhost" "-no-remote" "-profile" "/tmp/rust_mozprofileaRv2hR"
1664978416503 Marionette INFO Marionette enabled
1664978416507 Marionette INFO Listening on port 45257
Read port: 45257
WebDriver BiDi listening on ws://127.0.0.1:44709
1664978416654 RemoteAgent WARN TLS certificate errors will be ignored for this session
Unsupported modifier, resource creation failed.
XXX: resource creation failed
Unsupported modifier, resource creation failed.
XXX: resource creation failed
console.warn: SearchSettings: "get: No settings file exists, new profile?" (new NotFoundError("Could not open the file at /tmp/rust_mozprofileaRv2hR/search.json.mozlz4", (void 0)))
Unsupported modifier, resource creation failed.
XXX: resource creation failed
Unsupported modifier, resource creation failed.
XXX: resource creation failed
Unsupported modifier, resource creation failed.
XXX: resource creation failed
Missing chrome or resource URL: resource://gre/modules/UpdateListener.sys.mjs
DevTools listening on ws://127.0.0.1:44709/devtools/browser/cce9cf21-433c-4156-b5cd-0db3c0b9adf5
Unsupported modifier, resource creation failed.
XXX: resource creation failed
Unsupported modifier, resource creation failed.
XXX: resource creation failed
Unsupported modifier, resource creation failed.
XXX: resource creation failed
Unsupported modifier, resource creation failed.
XXX: resource creation failed
Unsupported modifier, resource creation failed.
XXX: resource creation failed
Missing chrome or resource URL: resource://gre/modules/UpdateListener.sys.mjs
console.error: "Error during quit-application-granted: [Exception... \"File error: Not found\" nsresult: \"0x80520012 (NS_ERROR_FILE_NOT_FOUND)\" location: \"JS frame :: resource:///modules/BrowserGlue.jsm :: _onQuitApplicationGranted/tasks< :: line 2009\" data: no]"
1664978710669 Marionette INFO Stopped listening on port 45359
console.warn: TopSitesFeed: Failed to fetch data from Contile server: NetworkError when attempting to fetch resource.
Missing chrome or resource URL: resource://gre/modules/UpdateListener.sys.mjs
console.error: "Error during quit-application-granted: [Exception... \"File error: Not found\" nsresult: \"0x80520012 (NS_ERROR_FILE_NOT_FOUND)\" location: \"JS frame :: resource:///modules/BrowserGlue.jsm :: _onQuitApplicationGranted/tasks< :: line 2009\" data: no]"
1664978712242 Marionette INFO Stopped listening on port 45257
console.warn: TopSitesFeed: Failed to fetch data from Contile server: NetworkError when attempting to fetch resource.
1664978716243 geckodriver INFO Listening on 127.0.0.1:57799
1664978716773 mozrunner::runner INFO Running command: "/usr/bin/firefox" "--marionette" "--remote-debugging-port" "49337" "--remote-allow-hosts" "localhost" "-no-remote" "-profile" "/tmp/rust_mozprofilehc8mxC"
1664978717394 Marionette INFO Marionette enabled
1664978717397 Marionette INFO Listening on port 44911
Read port: 44911
WebDriver BiDi listening on ws://127.0.0.1:49337
1664978717626 RemoteAgent WARN TLS certificate errors will be ignored for this session
Unsupported modifier, resource creation failed.
XXX: resource creation failed
Unsupported modifier, resource creation failed.
XXX: resource creation failed
console.warn: SearchSettings: "get: No settings file exists, new profile?" (new NotFoundError("Could not open the file at /tmp/rust_mozprofilehc8mxC/search.json.mozlz4", (void 0)))
Unsupported modifier, resource creation failed.
XXX: resource creation failed
Unsupported modifier, resource creation failed.
XXX: resource creation failed
Unsupported modifier, resource creation failed.
XXX: resource creation failed
Missing chrome or resource URL: resource://gre/modules/UpdateListener.sys.mjs
DevTools listening on ws://127.0.0.1:49337/devtools/browser/d5ae9a77-d71d-475d-8ae3-e821b4abb5f6
1664978781687 geckodriver INFO Listening on 127.0.0.1:51889
1664978782219 mozrunner::runner INFO Running command: "/usr/bin/firefox" "--marionette" "--remote-debugging-port" "36903" "--remote-allow-hosts" "localhost" "-no-remote" "-profile" "/tmp/rust_mozprofile8C0LXH"
1664978782839 Marionette INFO Marionette enabled
1664978782842 Marionette INFO Listening on port 43485
Read port: 43485
WebDriver BiDi listening on ws://127.0.0.1:36903
1664978783055 RemoteAgent WARN TLS certificate errors will be ignored for this session
Unsupported modifier, resource creation failed.
XXX: resource creation failed
Unsupported modifier, resource creation failed.
XXX: resource creation failed
console.warn: SearchSettings: "get: No settings file exists, new profile?" (new NotFoundError("Could not open the file at /tmp/rust_mozprofile8C0LXH/search.json.mozlz4", (void 0)))
Unsupported modifier, resource creation failed.
XXX: resource creation failed
Unsupported modifier, resource creation failed.
XXX: resource creation failed
Unsupported modifier, resource creation failed.
XXX: resource creation failed
Missing chrome or resource URL: resource://gre/modules/UpdateListener.sys.mjs
DevTools listening on ws://127.0.0.1:36903/devtools/browser/a5f0ffcb-6d31-4037-a678-46dc1b25473c
Unsupported modifier, resource creation failed.
XXX: resource creation failed
Unsupported modifier, resource creation failed.
XXX: resource creation failed
Unsupported modifier, resource creation failed.
XXX: resource creation failed
Unsupported modifier, resource creation failed.
XXX: resource creation failed
Missing chrome or resource URL: resource://gre/modules/UpdateListener.sys.mjs
console.error: "Error during quit-application-granted: [Exception... \"File error: Not found\" nsresult: \"0x80520012 (NS_ERROR_FILE_NOT_FOUND)\" location: \"JS frame :: resource:///modules/BrowserGlue.jsm :: _onQuitApplicationGranted/tasks< :: line 2009\" data: no]"
1664979370295 Marionette INFO Stopped listening on port 44911
console.warn: TopSitesFeed: Failed to fetch data from Contile server: NetworkError when attempting to fetch resource.
Missing chrome or resource URL: resource://gre/modules/UpdateListener.sys.mjs
console.error: "Error during quit-application-granted: [Exception... \"File error: Not found\" nsresult: \"0x80520012 (NS_ERROR_FILE_NOT_FOUND)\" location: \"JS frame :: resource:///modules/BrowserGlue.jsm :: _onQuitApplicationGranted/tasks< :: line 2009\" data: no]"
1664979371863 Marionette INFO Stopped listening on port 43485
console.warn: TopSitesFeed: Failed to fetch data from Contile server: NetworkError when attempting to fetch resource.
1664979381876 geckodriver INFO Listening on 127.0.0.1:41711
1664979382393 mozrunner::runner INFO Running command: "/usr/bin/firefox" "--marionette" "--remote-debugging-port" "46371" "--remote-allow-hosts" "localhost" "-no-remote" "-profile" "/tmp/rust_mozprofileIovBGy"
1664979383037 Marionette INFO Marionette enabled
1664979383041 Marionette INFO Listening on port 46463
Read port: 46463
WebDriver BiDi listening on ws://127.0.0.1:46371
1664979383166 RemoteAgent WARN TLS certificate errors will be ignored for this session
Unsupported modifier, resource creation failed.
XXX: resource creation failed
Unsupported modifier, resource creation failed.
XXX: resource creation failed
console.warn: SearchSettings: "get: No settings file exists, new profile?" (new NotFoundError("Could not open the file at /tmp/rust_mozprofileIovBGy/search.json.mozlz4", (void 0)))
Unsupported modifier, resource creation failed.
XXX: resource creation failed
Unsupported modifier, resource creation failed.
XXX: resource creation failed
Unsupported modifier, resource creation failed.
XXX: resource creation failed
Missing chrome or resource URL: resource://gre/modules/UpdateListener.sys.mjs
DevTools listening on ws://127.0.0.1:46371/devtools/browser/42a4a251-63bc-4b7b-b5bb-0e3448a62e2f
Missing chrome or resource URL: resource://gre/modules/UpdateListener.sys.mjs
console.error: "Error during quit-application-granted: [Exception... \"File error: Not found\" nsresult: \"0x80520012 (NS_ERROR_FILE_NOT_FOUND)\" location: \"JS frame :: resource:///modules/BrowserGlue.jsm :: _onQuitApplicationGranted/tasks< :: line 2009\" data: no]"
1664979478106 Marionette INFO Stopped listening on port 46463
console.warn: TopSitesFeed: Failed to fetch data from Contile server: NetworkError when attempting to fetch resource.
1664979490819 geckodriver INFO Listening on 127.0.0.1:47159
1664979491350 mozrunner::runner INFO Running command: "/usr/bin/firefox" "--marionette" "--remote-debugging-port" "37825" "--remote-allow-hosts" "localhost" "-no-remote" "-profile" "/tmp/rust_mozprofileDBTXbD"
1664979492018 Marionette INFO Marionette enabled
1664979492021 Marionette INFO Listening on port 40869
Read port: 40869
WebDriver BiDi listening on ws://127.0.0.1:37825
1664979492163 RemoteAgent WARN TLS certificate errors will be ignored for this session
Unsupported modifier, resource creation failed.
XXX: resource creation failed
Unsupported modifier, resource creation failed.
XXX: resource creation failed
console.warn: SearchSettings: "get: No settings file exists, new profile?" (new NotFoundError("Could not open the file at /tmp/rust_mozprofileDBTXbD/search.json.mozlz4", (void 0)))
Unsupported modifier, resource creation failed.
XXX: resource creation failed
Unsupported modifier, resource creation failed.
XXX: resource creation failed
Unsupported modifier, resource creation failed.
XXX: resource creation failed
Missing chrome or resource URL: resource://gre/modules/UpdateListener.sys.mjs
DevTools listening on ws://127.0.0.1:37825/devtools/browser/0d2feac7-1e84-4c92-874c-3ebcdb1aa2c6
Unsupported modifier, resource creation failed.
XXX: resource creation failed
Unsupported modifier, resource creation failed.
XXX: resource creation failed
Unsupported modifier, resource creation failed.
XXX: resource creation failed
Missing chrome or resource URL: resource://gre/modules/UpdateListener.sys.mjs
console.error: "Error during quit-application-granted: [Exception... \"File error: Not found\" nsresult: \"0x80520012 (NS_ERROR_FILE_NOT_FOUND)\" location: \"JS frame :: resource:///modules/BrowserGlue.jsm :: _onQuitApplicationGranted/tasks< :: line 2009\" data: no]"
1664980098578 Marionette INFO Stopped listening on port 40869
console.warn: TopSitesFeed: Failed to fetch data from Contile server: NetworkError when attempting to fetch resource.
1664980107668 geckodriver INFO Listening on 127.0.0.1:37433
1664980108198 mozrunner::runner INFO Running command: "/usr/bin/firefox" "--marionette" "--remote-debugging-port" "53209" "--remote-allow-hosts" "localhost" "-no-remote" "-profile" "/tmp/rust_mozprofiledumAL6"
1664980108848 Marionette INFO Marionette enabled
1664980108851 Marionette INFO Listening on port 33971
Read port: 33971
WebDriver BiDi listening on ws://127.0.0.1:53209
1664980109016 RemoteAgent WARN TLS certificate errors will be ignored for this session
Unsupported modifier, resource creation failed.