-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathgeckodriver.log
2037 lines (2037 loc) · 184 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
1669701658225 geckodriver INFO Listening on 127.0.0.1:33267
1669701658738 mozrunner::runner INFO Running command: "/snap/firefox/current/firefox.launcher" "--marionette" "--remote-debugging-port" "35447" "--remote-allow-hosts" "localhost" "-no-remote" "-profile" "/tmp/rust_mozprofilecNtdYu"
Gtk-Message: 17:00:58.757: Not loading module "atk-bridge": The functionality is provided by GTK natively. Please try to not load it.
[GFX1-]: glxtest: VA-API test failed: failed to initialise VAAPI connection.
1669701659406 Marionette INFO Marionette enabled
1669701659410 Marionette INFO Listening on port 37809
Read port: 37809
WebDriver BiDi listening on ws://127.0.0.1:35447
1669701659532 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_mozprofilecNtdYu/search.json.mozlz4", (void 0)))
DevTools listening on ws://127.0.0.1:35447/devtools/browser/87cc1065-86e2-47a4-8ab9-dc022b910ed0
1669701661189 Marionette INFO Stopped listening on port 37809
1669701686118 geckodriver INFO Listening on 127.0.0.1:54941
1669701686622 mozrunner::runner INFO Running command: "/snap/firefox/current/firefox.launcher" "--marionette" "--remote-debugging-port" "38441" "--remote-allow-hosts" "localhost" "-no-remote" "-profile" "/tmp/rust_mozprofile6Umcuv"
Gtk-Message: 17:01:26.640: Not loading module "atk-bridge": The functionality is provided by GTK natively. Please try to not load it.
[GFX1-]: glxtest: VA-API test failed: failed to initialise VAAPI connection.
1669701687316 Marionette INFO Marionette enabled
1669701687319 Marionette INFO Listening on port 34297
Read port: 34297
WebDriver BiDi listening on ws://127.0.0.1:38441
1669701687454 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_mozprofile6Umcuv/search.json.mozlz4", (void 0)))
DevTools listening on ws://127.0.0.1:38441/devtools/browser/d6209df7-85c5-49cc-a036-4601bcb54d87
1669701689021 Marionette INFO Stopped listening on port 34297
1669701717233 geckodriver INFO Listening on 127.0.0.1:45885
1669701717745 mozrunner::runner INFO Running command: "/snap/firefox/current/firefox.launcher" "--marionette" "--remote-debugging-port" "38607" "--remote-allow-hosts" "localhost" "-no-remote" "-profile" "/tmp/rust_mozprofileUxnLvs"
Gtk-Message: 17:01:57.764: Not loading module "atk-bridge": The functionality is provided by GTK natively. Please try to not load it.
[GFX1-]: glxtest: VA-API test failed: failed to initialise VAAPI connection.
1669701718342 Marionette INFO Marionette enabled
1669701718345 Marionette INFO Listening on port 44983
Read port: 44983
WebDriver BiDi listening on ws://127.0.0.1:38607
1669701718475 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_mozprofileUxnLvs/search.json.mozlz4", (void 0)))
DevTools listening on ws://127.0.0.1:38607/devtools/browser/6f0db8ff-5f23-44eb-926f-adc81a9ce77a
1669701719916 Marionette INFO Stopped listening on port 44983
1669701828677 geckodriver INFO Listening on 127.0.0.1:37513
1669701829190 mozrunner::runner INFO Running command: "/snap/firefox/current/firefox.launcher" "--marionette" "--remote-debugging-port" "36107" "--remote-allow-hosts" "localhost" "-no-remote" "-profile" "/tmp/rust_mozprofileuOd2Yq"
Gtk-Message: 17:03:49.208: Not loading module "atk-bridge": The functionality is provided by GTK natively. Please try to not load it.
[GFX1-]: glxtest: VA-API test failed: failed to initialise VAAPI connection.
1669701829801 Marionette INFO Marionette enabled
1669701829804 Marionette INFO Listening on port 35991
Read port: 35991
WebDriver BiDi listening on ws://127.0.0.1:36107
1669701829971 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_mozprofileuOd2Yq/search.json.mozlz4", (void 0)))
DevTools listening on ws://127.0.0.1:36107/devtools/browser/9321560d-11fd-4aa9-a0ff-1b7706c79dd4
1669701831494 Marionette INFO Stopped listening on port 35991
1669701849678 geckodriver INFO Listening on 127.0.0.1:60947
1669701850189 mozrunner::runner INFO Running command: "/snap/firefox/current/firefox.launcher" "--marionette" "--remote-debugging-port" "44993" "--remote-allow-hosts" "localhost" "-no-remote" "-profile" "/tmp/rust_mozprofilezFYuwS"
Gtk-Message: 17:04:10.209: Not loading module "atk-bridge": The functionality is provided by GTK natively. Please try to not load it.
[GFX1-]: glxtest: VA-API test failed: failed to initialise VAAPI connection.
1669701850884 Marionette INFO Marionette enabled
1669701850888 Marionette INFO Listening on port 37515
Read port: 37515
WebDriver BiDi listening on ws://127.0.0.1:44993
1669701851020 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_mozprofilezFYuwS/search.json.mozlz4", (void 0)))
DevTools listening on ws://127.0.0.1:44993/devtools/browser/db9ced90-50b7-40ee-8dc1-e08765c35258
1669701852477 Marionette INFO Stopped listening on port 37515
1669701914762 geckodriver INFO Listening on 127.0.0.1:60517
1669701915246 mozrunner::runner INFO Running command: "/snap/firefox/current/firefox.launcher" "--marionette" "--remote-debugging-port" "57523" "--remote-allow-hosts" "localhost" "-no-remote" "-profile" "/tmp/rust_mozprofileD6vIfW"
Gtk-Message: 17:05:15.264: Not loading module "atk-bridge": The functionality is provided by GTK natively. Please try to not load it.
[GFX1-]: glxtest: VA-API test failed: failed to initialise VAAPI connection.
1669701915906 Marionette INFO Marionette enabled
1669701915909 Marionette INFO Listening on port 46377
Read port: 46377
WebDriver BiDi listening on ws://127.0.0.1:57523
1669701916026 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_mozprofileD6vIfW/search.json.mozlz4", (void 0)))
DevTools listening on ws://127.0.0.1:57523/devtools/browser/6d526664-32ca-46de-bee7-fc9b1a418b97
1669701917637 Marionette INFO Stopped listening on port 46377
1669701979588 geckodriver INFO Listening on 127.0.0.1:44055
1669701980102 mozrunner::runner INFO Running command: "/snap/firefox/current/firefox.launcher" "--marionette" "--remote-debugging-port" "59801" "--remote-allow-hosts" "localhost" "-no-remote" "-profile" "/tmp/rust_mozprofilebWKMRr"
Gtk-Message: 17:06:20.120: Not loading module "atk-bridge": The functionality is provided by GTK natively. Please try to not load it.
[GFX1-]: glxtest: VA-API test failed: failed to initialise VAAPI connection.
1669701980776 Marionette INFO Marionette enabled
1669701980779 Marionette INFO Listening on port 41405
Read port: 41405
WebDriver BiDi listening on ws://127.0.0.1:59801
1669701980910 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_mozprofilebWKMRr/search.json.mozlz4", (void 0)))
DevTools listening on ws://127.0.0.1:59801/devtools/browser/9a774a9a-a7bf-496f-9b36-9cca698b6548
1669701982550 Marionette INFO Stopped listening on port 41405
1669702015684 geckodriver INFO Listening on 127.0.0.1:54253
1669702016194 mozrunner::runner INFO Running command: "/snap/firefox/current/firefox.launcher" "--marionette" "--remote-debugging-port" "55699" "--remote-allow-hosts" "localhost" "-no-remote" "-profile" "/tmp/rust_mozprofile07DjGq"
Gtk-Message: 17:06:56.212: Not loading module "atk-bridge": The functionality is provided by GTK natively. Please try to not load it.
[GFX1-]: glxtest: VA-API test failed: failed to initialise VAAPI connection.
1669702016854 Marionette INFO Marionette enabled
1669702016858 Marionette INFO Listening on port 42193
Read port: 42193
WebDriver BiDi listening on ws://127.0.0.1:55699
1669702016996 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_mozprofile07DjGq/search.json.mozlz4", (void 0)))
DevTools listening on ws://127.0.0.1:55699/devtools/browser/a3dd8f60-f7fc-48ea-8911-f8212febe0f7
1669702018394 Marionette INFO Stopped listening on port 42193
1669702073981 geckodriver INFO Listening on 127.0.0.1:33583
1669702074494 mozrunner::runner INFO Running command: "/snap/firefox/current/firefox.launcher" "--marionette" "--remote-debugging-port" "46949" "--remote-allow-hosts" "localhost" "-no-remote" "-profile" "/tmp/rust_mozprofileQ9FbP9"
Gtk-Message: 17:07:54.514: Not loading module "atk-bridge": The functionality is provided by GTK natively. Please try to not load it.
[GFX1-]: glxtest: VA-API test failed: failed to initialise VAAPI connection.
1669702075139 Marionette INFO Marionette enabled
1669702075142 Marionette INFO Listening on port 34079
Read port: 34079
WebDriver BiDi listening on ws://127.0.0.1:46949
1669702075300 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_mozprofileQ9FbP9/search.json.mozlz4", (void 0)))
DevTools listening on ws://127.0.0.1:46949/devtools/browser/51ec362a-6bd1-43d5-9d97-d09e05cd87b2
1669702076845 Marionette INFO Stopped listening on port 34079
1669702104697 geckodriver INFO Listening on 127.0.0.1:52081
1669702105191 mozrunner::runner INFO Running command: "/snap/firefox/current/firefox.launcher" "--marionette" "--remote-debugging-port" "47837" "--remote-allow-hosts" "localhost" "-no-remote" "-profile" "/tmp/rust_mozprofile3LAXXS"
Gtk-Message: 17:08:25.210: Not loading module "atk-bridge": The functionality is provided by GTK natively. Please try to not load it.
[GFX1-]: glxtest: VA-API test failed: failed to initialise VAAPI connection.
1669702105862 Marionette INFO Marionette enabled
1669702105865 Marionette INFO Listening on port 36005
Read port: 36005
WebDriver BiDi listening on ws://127.0.0.1:47837
1669702105989 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_mozprofile3LAXXS/search.json.mozlz4", (void 0)))
DevTools listening on ws://127.0.0.1:47837/devtools/browser/630ca773-64eb-42c2-98f9-f754478900c3
1669702107415 Marionette INFO Stopped listening on port 36005
1669702116975 geckodriver INFO Listening on 127.0.0.1:51561
1669702117490 mozrunner::runner INFO Running command: "/snap/firefox/current/firefox.launcher" "--marionette" "--remote-debugging-port" "43439" "--remote-allow-hosts" "localhost" "-no-remote" "-profile" "/tmp/rust_mozprofilecgcnEP"
Gtk-Message: 17:08:37.508: Not loading module "atk-bridge": The functionality is provided by GTK natively. Please try to not load it.
[GFX1-]: glxtest: VA-API test failed: failed to initialise VAAPI connection.
1669702118022 Marionette INFO Marionette enabled
1669702118025 Marionette INFO Listening on port 41051
Read port: 41051
WebDriver BiDi listening on ws://127.0.0.1:43439
1669702118153 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_mozprofilecgcnEP/search.json.mozlz4", (void 0)))
DevTools listening on ws://127.0.0.1:43439/devtools/browser/b4a7602c-b298-4e10-b346-9abb4a0a7176
1669702119508 Marionette INFO Stopped listening on port 41051
1669702135878 geckodriver INFO Listening on 127.0.0.1:46023
1669702136390 mozrunner::runner INFO Running command: "/snap/firefox/current/firefox.launcher" "--marionette" "--remote-debugging-port" "51355" "--remote-allow-hosts" "localhost" "-no-remote" "-profile" "/tmp/rust_mozprofileJC621U"
Gtk-Message: 17:08:56.409: Not loading module "atk-bridge": The functionality is provided by GTK natively. Please try to not load it.
[GFX1-]: glxtest: VA-API test failed: failed to initialise VAAPI connection.
1669702137070 Marionette INFO Marionette enabled
1669702137073 Marionette INFO Listening on port 38515
Read port: 38515
WebDriver BiDi listening on ws://127.0.0.1:51355
1669702137244 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_mozprofileJC621U/search.json.mozlz4", (void 0)))
DevTools listening on ws://127.0.0.1:51355/devtools/browser/4401f6b0-928b-4625-a8f1-865ea999bbf5
1669702138886 Marionette INFO Stopped listening on port 38515
1669702165978 geckodriver INFO Listening on 127.0.0.1:55973
1669702166485 mozrunner::runner INFO Running command: "/snap/firefox/current/firefox.launcher" "--marionette" "--remote-debugging-port" "34697" "--remote-allow-hosts" "localhost" "-no-remote" "-profile" "/tmp/rust_mozprofilevVcrFT"
Gtk-Message: 17:09:26.504: Not loading module "atk-bridge": The functionality is provided by GTK natively. Please try to not load it.
[GFX1-]: glxtest: VA-API test failed: failed to initialise VAAPI connection.
1669702167162 Marionette INFO Marionette enabled
1669702167165 Marionette INFO Listening on port 46227
Read port: 46227
WebDriver BiDi listening on ws://127.0.0.1:34697
1669702167310 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_mozprofilevVcrFT/search.json.mozlz4", (void 0)))
DevTools listening on ws://127.0.0.1:34697/devtools/browser/f8de240f-ad24-4a56-aee3-4a27ad7a7162
1669702168730 Marionette INFO Stopped listening on port 46227
1669702202645 geckodriver INFO Listening on 127.0.0.1:40999
1669702203130 mozrunner::runner INFO Running command: "/snap/firefox/current/firefox.launcher" "--marionette" "--remote-debugging-port" "59801" "--remote-allow-hosts" "localhost" "-no-remote" "-profile" "/tmp/rust_mozprofileADbhS3"
Gtk-Message: 17:10:03.148: Not loading module "atk-bridge": The functionality is provided by GTK natively. Please try to not load it.
[GFX1-]: glxtest: VA-API test failed: failed to initialise VAAPI connection.
1669702203742 Marionette INFO Marionette enabled
1669702203745 Marionette INFO Listening on port 44977
Read port: 44977
WebDriver BiDi listening on ws://127.0.0.1:59801
1669702203922 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_mozprofileADbhS3/search.json.mozlz4", (void 0)))
DevTools listening on ws://127.0.0.1:59801/devtools/browser/6501d81e-53ac-425e-8a19-8bb6527cc61c
1669702206085 Marionette INFO Stopped listening on port 44977
1669702238448 geckodriver INFO Listening on 127.0.0.1:49721
1669702238969 mozrunner::runner INFO Running command: "/snap/firefox/current/firefox.launcher" "--marionette" "--remote-debugging-port" "49641" "--remote-allow-hosts" "localhost" "-no-remote" "-profile" "/tmp/rust_mozprofileTuU4iy"
Gtk-Message: 17:10:38.988: Not loading module "atk-bridge": The functionality is provided by GTK natively. Please try to not load it.
[GFX1-]: glxtest: VA-API test failed: failed to initialise VAAPI connection.
1669702239539 Marionette INFO Marionette enabled
1669702239542 Marionette INFO Listening on port 36043
Read port: 36043
WebDriver BiDi listening on ws://127.0.0.1:49641
1669702239675 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_mozprofileTuU4iy/search.json.mozlz4", (void 0)))
DevTools listening on ws://127.0.0.1:49641/devtools/browser/5feccb0e-6bbf-4426-96a5-f00dbeb27005
1669702241061 Marionette INFO Stopped listening on port 36043
1669702308698 geckodriver INFO Listening on 127.0.0.1:53595
1669702309182 mozrunner::runner INFO Running command: "/snap/firefox/current/firefox.launcher" "--marionette" "--remote-debugging-port" "38057" "--remote-allow-hosts" "localhost" "-no-remote" "-profile" "/tmp/rust_mozprofileWWHZTX"
Gtk-Message: 17:11:49.201: Not loading module "atk-bridge": The functionality is provided by GTK natively. Please try to not load it.
[GFX1-]: glxtest: VA-API test failed: failed to initialise VAAPI connection.
1669702309830 Marionette INFO Marionette enabled
1669702309833 Marionette INFO Listening on port 37701
Read port: 37701
WebDriver BiDi listening on ws://127.0.0.1:38057
1669702309954 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_mozprofileWWHZTX/search.json.mozlz4", (void 0)))
DevTools listening on ws://127.0.0.1:38057/devtools/browser/90770142-0a07-4e18-8a8f-ae803bdcbd07
1669702311380 Marionette INFO Stopped listening on port 37701
1669702329517 geckodriver INFO Listening on 127.0.0.1:46505
1669702330038 mozrunner::runner INFO Running command: "/snap/firefox/current/firefox.launcher" "--marionette" "--remote-debugging-port" "40231" "--remote-allow-hosts" "localhost" "-no-remote" "-profile" "/tmp/rust_mozprofileCUFDVz"
Gtk-Message: 17:12:10.056: Not loading module "atk-bridge": The functionality is provided by GTK natively. Please try to not load it.
[GFX1-]: glxtest: VA-API test failed: failed to initialise VAAPI connection.
1669702330696 Marionette INFO Marionette enabled
1669702330699 Marionette INFO Listening on port 44007
Read port: 44007
WebDriver BiDi listening on ws://127.0.0.1:40231
1669702330834 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_mozprofileCUFDVz/search.json.mozlz4", (void 0)))
DevTools listening on ws://127.0.0.1:40231/devtools/browser/199599fa-ebfb-4ecd-9464-f8a5d5586bab
1669702332336 Marionette INFO Stopped listening on port 44007
1669702807123 geckodriver INFO Listening on 127.0.0.1:58633
1669702807634 mozrunner::runner INFO Running command: "/snap/firefox/current/firefox.launcher" "--marionette" "--remote-debugging-port" "37219" "--remote-allow-hosts" "localhost" "-no-remote" "-profile" "/tmp/rust_mozprofiledmdMEg"
Gtk-Message: 17:20:07.652: Not loading module "atk-bridge": The functionality is provided by GTK natively. Please try to not load it.
[GFX1-]: glxtest: VA-API test failed: failed to initialise VAAPI connection.
1669702808291 Marionette INFO Marionette enabled
1669702808294 Marionette INFO Listening on port 46661
Read port: 46661
WebDriver BiDi listening on ws://127.0.0.1:37219
1669702808429 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_mozprofiledmdMEg/search.json.mozlz4", (void 0)))
DevTools listening on ws://127.0.0.1:37219/devtools/browser/e8132c46-07b9-438d-8c2a-ccdfb3e587d8
1669702836332 Marionette INFO Stopped listening on port 46661
1669702897259 geckodriver INFO Listening on 127.0.0.1:45217
1669702897766 mozrunner::runner INFO Running command: "/snap/firefox/current/firefox.launcher" "--marionette" "--remote-debugging-port" "52309" "--remote-allow-hosts" "localhost" "-no-remote" "-profile" "/tmp/rust_mozprofilekel90T"
Gtk-Message: 17:21:37.784: Not loading module "atk-bridge": The functionality is provided by GTK natively. Please try to not load it.
[GFX1-]: glxtest: VA-API test failed: failed to initialise VAAPI connection.
1669702898432 Marionette INFO Marionette enabled
1669702898435 Marionette INFO Listening on port 43733
Read port: 43733
WebDriver BiDi listening on ws://127.0.0.1:52309
1669702898588 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_mozprofilekel90T/search.json.mozlz4", (void 0)))
DevTools listening on ws://127.0.0.1:52309/devtools/browser/4cd09713-96ca-4f5c-96d5-e376fa54b15f
1669702906278 Marionette INFO Stopped listening on port 43733
1669702971293 geckodriver INFO Listening on 127.0.0.1:38833
1669702971801 mozrunner::runner INFO Running command: "/snap/firefox/current/firefox.launcher" "--marionette" "--remote-debugging-port" "47323" "--remote-allow-hosts" "localhost" "-no-remote" "-profile" "/tmp/rust_mozprofileF8AEeK"
Gtk-Message: 17:22:51.820: Not loading module "atk-bridge": The functionality is provided by GTK natively. Please try to not load it.
[GFX1-]: glxtest: VA-API test failed: failed to initialise VAAPI connection.
1669702972410 Marionette INFO Marionette enabled
1669702972413 Marionette INFO Listening on port 44577
Read port: 44577
WebDriver BiDi listening on ws://127.0.0.1:47323
1669702972552 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_mozprofileF8AEeK/search.json.mozlz4", (void 0)))
DevTools listening on ws://127.0.0.1:47323/devtools/browser/b3c2e9b9-0b92-45a2-944f-37f0c003865b
1669702988216 Marionette INFO Stopped listening on port 44577
1669703079898 geckodriver INFO Listening on 127.0.0.1:44079
1669703080386 mozrunner::runner INFO Running command: "/snap/firefox/current/firefox.launcher" "--marionette" "--remote-debugging-port" "60305" "--remote-allow-hosts" "localhost" "-no-remote" "-profile" "/tmp/rust_mozprofileSbgGhf"
Gtk-Message: 17:24:40.404: Not loading module "atk-bridge": The functionality is provided by GTK natively. Please try to not load it.
[GFX1-]: glxtest: VA-API test failed: failed to initialise VAAPI connection.
1669703080934 Marionette INFO Marionette enabled
1669703080937 Marionette INFO Listening on port 44629
Read port: 44629
WebDriver BiDi listening on ws://127.0.0.1:60305
1669703081080 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_mozprofileSbgGhf/search.json.mozlz4", (void 0)))
DevTools listening on ws://127.0.0.1:60305/devtools/browser/418c1472-5460-4386-b427-2ba449f05208
1669703088510 Marionette INFO Stopped listening on port 44629
1669703182857 geckodriver INFO Listening on 127.0.0.1:40673
1669703183370 mozrunner::runner INFO Running command: "/snap/firefox/current/firefox.launcher" "--marionette" "--remote-debugging-port" "36225" "--remote-allow-hosts" "localhost" "-no-remote" "-profile" "/tmp/rust_mozprofileHmPJKn"
Gtk-Message: 17:26:23.388: Not loading module "atk-bridge": The functionality is provided by GTK natively. Please try to not load it.
[GFX1-]: glxtest: VA-API test failed: failed to initialise VAAPI connection.
1669703183953 Marionette INFO Marionette enabled
1669703183956 Marionette INFO Listening on port 44889
Read port: 44889
WebDriver BiDi listening on ws://127.0.0.1:36225
1669703184088 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_mozprofileHmPJKn/search.json.mozlz4", (void 0)))
DevTools listening on ws://127.0.0.1:36225/devtools/browser/bb8bbdc1-5c28-46b9-ae15-6369b93adf15
1669703192417 Marionette INFO Stopped listening on port 44889
1669703194855 geckodriver INFO Listening on 127.0.0.1:41951
1669703195354 mozrunner::runner INFO Running command: "/snap/firefox/current/firefox.launcher" "--marionette" "--remote-debugging-port" "53369" "--remote-allow-hosts" "localhost" "-no-remote" "-profile" "/tmp/rust_mozprofiledbxNoD"
Gtk-Message: 17:26:35.372: Not loading module "atk-bridge": The functionality is provided by GTK natively. Please try to not load it.
[GFX1-]: glxtest: VA-API test failed: failed to initialise VAAPI connection.
1669703196014 Marionette INFO Marionette enabled
1669703196017 Marionette INFO Listening on port 40153
Read port: 40153
WebDriver BiDi listening on ws://127.0.0.1:53369
1669703196152 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_mozprofiledbxNoD/search.json.mozlz4", (void 0)))
DevTools listening on ws://127.0.0.1:53369/devtools/browser/6a533c75-6932-47ad-9f04-2fabcbd7a064
1669703203682 Marionette INFO Stopped listening on port 40153
1669703250449 geckodriver INFO Listening on 127.0.0.1:49909
1669703250958 mozrunner::runner INFO Running command: "/snap/firefox/current/firefox.launcher" "--marionette" "--remote-debugging-port" "34453" "--remote-allow-hosts" "localhost" "-no-remote" "-profile" "/tmp/rust_mozprofileeEucin"
Gtk-Message: 17:27:30.976: Not loading module "atk-bridge": The functionality is provided by GTK natively. Please try to not load it.
[GFX1-]: glxtest: VA-API test failed: failed to initialise VAAPI connection.
1669703251609 Marionette INFO Marionette enabled
1669703251613 Marionette INFO Listening on port 33945
Read port: 33945
WebDriver BiDi listening on ws://127.0.0.1:34453
1669703251744 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_mozprofileeEucin/search.json.mozlz4", (void 0)))
DevTools listening on ws://127.0.0.1:34453/devtools/browser/fcc2039e-ee85-467e-9ca2-4c8d048d5e1b
1669703266671 Marionette INFO Stopped listening on port 33945
1669703772398 geckodriver INFO Listening on 127.0.0.1:52625
1669703772897 mozrunner::runner INFO Running command: "/snap/firefox/current/firefox.launcher" "--marionette" "--remote-debugging-port" "47245" "--remote-allow-hosts" "localhost" "-no-remote" "-profile" "/tmp/rust_mozprofileWGXFcg"
Gtk-Message: 17:36:12.916: Not loading module "atk-bridge": The functionality is provided by GTK natively. Please try to not load it.
[GFX1-]: glxtest: VA-API test failed: failed to initialise VAAPI connection.
1669703773558 Marionette INFO Marionette enabled
1669703773561 Marionette INFO Listening on port 36525
Read port: 36525
WebDriver BiDi listening on ws://127.0.0.1:47245
1669703773678 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_mozprofileWGXFcg/search.json.mozlz4", (void 0)))
DevTools listening on ws://127.0.0.1:47245/devtools/browser/9da2c589-6c9e-456c-8068-8e469796cdf6
1669703782389 Marionette INFO Stopped listening on port 36525
JavaScript error: resource://gre/modules/Sqlite.sys.mjs, line 1106: Error: Sqlite.jsm has been shutdown. Cannot open connection to: /tmp/rust_mozprofileWGXFcg/protections.sqlite
1669703801681 geckodriver INFO Listening on 127.0.0.1:45263
1669703802194 mozrunner::runner INFO Running command: "/snap/firefox/current/firefox.launcher" "--marionette" "--remote-debugging-port" "40371" "--remote-allow-hosts" "localhost" "-no-remote" "-profile" "/tmp/rust_mozprofile1KA0CE"
Gtk-Message: 17:36:42.212: Not loading module "atk-bridge": The functionality is provided by GTK natively. Please try to not load it.
[GFX1-]: glxtest: VA-API test failed: failed to initialise VAAPI connection.
1669703802833 Marionette INFO Marionette enabled
1669703802836 Marionette INFO Listening on port 43995
Read port: 43995
WebDriver BiDi listening on ws://127.0.0.1:40371
1669703802973 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_mozprofile1KA0CE/search.json.mozlz4", (void 0)))
DevTools listening on ws://127.0.0.1:40371/devtools/browser/bb7ba3ff-ad4e-4601-930b-cc65475a4e59
1669703811154 Marionette INFO Stopped listening on port 43995
JavaScript error: resource://gre/modules/Sqlite.sys.mjs, line 1106: Error: Sqlite.jsm has been shutdown. Cannot open connection to: /tmp/rust_mozprofile1KA0CE/protections.sqlite
1669703818029 geckodriver INFO Listening on 127.0.0.1:45157
1669703818545 mozrunner::runner INFO Running command: "/snap/firefox/current/firefox.launcher" "--marionette" "--remote-debugging-port" "48293" "--remote-allow-hosts" "localhost" "-no-remote" "-profile" "/tmp/rust_mozprofilemwXUtv"
Gtk-Message: 17:36:58.564: Not loading module "atk-bridge": The functionality is provided by GTK natively. Please try to not load it.
[GFX1-]: glxtest: VA-API test failed: failed to initialise VAAPI connection.
1669703819129 Marionette INFO Marionette enabled
1669703819132 Marionette INFO Listening on port 46575
Read port: 46575
WebDriver BiDi listening on ws://127.0.0.1:48293
1669703819276 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_mozprofilemwXUtv/search.json.mozlz4", (void 0)))
DevTools listening on ws://127.0.0.1:48293/devtools/browser/37b54bb5-8d3a-4429-8424-812db43640fc
1669703836057 Marionette INFO Stopped listening on port 46575
1669703932560 geckodriver INFO Listening on 127.0.0.1:50271
1669703933069 mozrunner::runner INFO Running command: "/snap/firefox/current/firefox.launcher" "--marionette" "--remote-debugging-port" "37475" "--remote-allow-hosts" "localhost" "-no-remote" "-profile" "/tmp/rust_mozprofileaMqJTL"
Gtk-Message: 17:38:53.088: Not loading module "atk-bridge": The functionality is provided by GTK natively. Please try to not load it.
[GFX1-]: glxtest: VA-API test failed: failed to initialise VAAPI connection.
1669703933691 Marionette INFO Marionette enabled
1669703933695 Marionette INFO Listening on port 36237
Read port: 36237
WebDriver BiDi listening on ws://127.0.0.1:37475
1669703933836 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_mozprofileaMqJTL/search.json.mozlz4", (void 0)))
DevTools listening on ws://127.0.0.1:37475/devtools/browser/d9226603-de4e-4356-9517-706eff8ebdad
1669703943199 Marionette INFO Stopped listening on port 36237
JavaScript error: resource://gre/actors/ContentMetaChild.jsm, line 183: InvalidStateError: JSWindowActorChild.sendAsyncMessage: JSWindowActorChild cannot send at the moment
1669703951434 geckodriver INFO Listening on 127.0.0.1:45035
1669703951926 mozrunner::runner INFO Running command: "/snap/firefox/current/firefox.launcher" "--marionette" "--remote-debugging-port" "50491" "--remote-allow-hosts" "localhost" "-no-remote" "-profile" "/tmp/rust_mozprofileSOU8Ms"
Gtk-Message: 17:39:11.945: Not loading module "atk-bridge": The functionality is provided by GTK natively. Please try to not load it.
[GFX1-]: glxtest: VA-API test failed: failed to initialise VAAPI connection.
1669703952573 Marionette INFO Marionette enabled
1669703952576 Marionette INFO Listening on port 33159
Read port: 33159
WebDriver BiDi listening on ws://127.0.0.1:50491
1669703952714 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_mozprofileSOU8Ms/search.json.mozlz4", (void 0)))
DevTools listening on ws://127.0.0.1:50491/devtools/browser/d64c872f-f0c4-4193-8911-6dc5204e8cfe
1669703960836 Marionette INFO Stopped listening on port 33159
JavaScript error: resource://gre/modules/Sqlite.sys.mjs, line 1106: Error: Sqlite.jsm has been shutdown. Cannot open connection to: /tmp/rust_mozprofileSOU8Ms/protections.sqlite
1669703972104 geckodriver INFO Listening on 127.0.0.1:57503
1669703972598 mozrunner::runner INFO Running command: "/snap/firefox/current/firefox.launcher" "--marionette" "--remote-debugging-port" "43267" "--remote-allow-hosts" "localhost" "-no-remote" "-profile" "/tmp/rust_mozprofilefnH9FO"
Gtk-Message: 17:39:32.616: Not loading module "atk-bridge": The functionality is provided by GTK natively. Please try to not load it.
[GFX1-]: glxtest: VA-API test failed: failed to initialise VAAPI connection.
1669703973174 Marionette INFO Marionette enabled
1669703973177 Marionette INFO Listening on port 34849
Read port: 34849
WebDriver BiDi listening on ws://127.0.0.1:43267
1669703973310 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_mozprofilefnH9FO/search.json.mozlz4", (void 0)))
DevTools listening on ws://127.0.0.1:43267/devtools/browser/27019d9e-194e-45f6-ab92-ed32a97c16e8
1669703981335 Marionette INFO Stopped listening on port 34849
JavaScript error: resource://gre/modules/Sqlite.sys.mjs, line 1106: Error: Sqlite.jsm has been shutdown. Cannot open connection to: /tmp/rust_mozprofilefnH9FO/protections.sqlite
1669704063959 geckodriver INFO Listening on 127.0.0.1:34611
1669704064458 mozrunner::runner INFO Running command: "/snap/firefox/current/firefox.launcher" "--marionette" "--remote-debugging-port" "47703" "--remote-allow-hosts" "localhost" "-no-remote" "-profile" "/tmp/rust_mozprofilea03apT"
Gtk-Message: 17:41:04.476: Not loading module "atk-bridge": The functionality is provided by GTK natively. Please try to not load it.
[GFX1-]: glxtest: VA-API test failed: failed to initialise VAAPI connection.
1669704065099 Marionette INFO Marionette enabled
1669704065102 Marionette INFO Listening on port 39329
Read port: 39329
WebDriver BiDi listening on ws://127.0.0.1:47703
1669704065217 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_mozprofilea03apT/search.json.mozlz4", (void 0)))
DevTools listening on ws://127.0.0.1:47703/devtools/browser/325ed89c-5855-4948-bef0-753a5d8c4d1f
1669704100170 Marionette INFO Stopped listening on port 39329
1669704554918 geckodriver INFO Listening on 127.0.0.1:43239
1669704555402 mozrunner::runner INFO Running command: "/snap/firefox/current/firefox.launcher" "--marionette" "--remote-debugging-port" "34439" "--remote-allow-hosts" "localhost" "-no-remote" "-profile" "/tmp/rust_mozprofileHCnUgu"
Gtk-Message: 17:49:15.421: Not loading module "atk-bridge": The functionality is provided by GTK natively. Please try to not load it.
[GFX1-]: glxtest: VA-API test failed: failed to initialise VAAPI connection.
1669704555972 Marionette INFO Marionette enabled
1669704555975 Marionette INFO Listening on port 44233
Read port: 44233
WebDriver BiDi listening on ws://127.0.0.1:34439
1669704556089 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_mozprofileHCnUgu/search.json.mozlz4", (void 0)))
DevTools listening on ws://127.0.0.1:34439/devtools/browser/0232c3cf-01ec-4781-819e-a19e877e47ca
1669704566073 Marionette INFO Stopped listening on port 44233
1669704593204 geckodriver INFO Listening on 127.0.0.1:49867
1669704593718 mozrunner::runner INFO Running command: "/snap/firefox/current/firefox.launcher" "--marionette" "--remote-debugging-port" "45281" "--remote-allow-hosts" "localhost" "-no-remote" "-profile" "/tmp/rust_mozprofileelabws"
Gtk-Message: 17:49:53.736: Not loading module "atk-bridge": The functionality is provided by GTK natively. Please try to not load it.
[GFX1-]: glxtest: VA-API test failed: failed to initialise VAAPI connection.
1669704594353 Marionette INFO Marionette enabled
1669704594356 Marionette INFO Listening on port 38935
Read port: 38935
WebDriver BiDi listening on ws://127.0.0.1:45281
1669704594491 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_mozprofileelabws/search.json.mozlz4", (void 0)))
DevTools listening on ws://127.0.0.1:45281/devtools/browser/b3469b47-db12-4de1-a16d-7fb4d4a22198
1669704602812 Marionette INFO Stopped listening on port 38935
JavaScript error: resource://gre/modules/Sqlite.sys.mjs, line 1106: Error: Sqlite.jsm has been shutdown. Cannot open connection to: /tmp/rust_mozprofileelabws/protections.sqlite
1669704683054 geckodriver INFO Listening on 127.0.0.1:43161
1669704683550 mozrunner::runner INFO Running command: "/snap/firefox/current/firefox.launcher" "--marionette" "--remote-debugging-port" "37637" "--remote-allow-hosts" "localhost" "-no-remote" "-profile" "/tmp/rust_mozprofile4mi3mt"
Gtk-Message: 17:51:23.568: Not loading module "atk-bridge": The functionality is provided by GTK natively. Please try to not load it.
[GFX1-]: glxtest: VA-API test failed: failed to initialise VAAPI connection.
1669704684195 Marionette INFO Marionette enabled
1669704684198 Marionette INFO Listening on port 38827
Read port: 38827
WebDriver BiDi listening on ws://127.0.0.1:37637
1669704684372 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_mozprofile4mi3mt/search.json.mozlz4", (void 0)))
DevTools listening on ws://127.0.0.1:37637/devtools/browser/099ef5ec-7f79-4cf0-bbed-a71dd734fdd2
1669704693398 Marionette INFO Stopped listening on port 38827
1669704699265 geckodriver INFO Listening on 127.0.0.1:52405
1669704699750 mozrunner::runner INFO Running command: "/snap/firefox/current/firefox.launcher" "--marionette" "--remote-debugging-port" "41191" "--remote-allow-hosts" "localhost" "-no-remote" "-profile" "/tmp/rust_mozprofileN6pJDY"
Gtk-Message: 17:51:39.768: Not loading module "atk-bridge": The functionality is provided by GTK natively. Please try to not load it.
[GFX1-]: glxtest: VA-API test failed: failed to initialise VAAPI connection.
1669704700392 Marionette INFO Marionette enabled
1669704700395 Marionette INFO Listening on port 41101
Read port: 41101
WebDriver BiDi listening on ws://127.0.0.1:41191
1669704700514 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_mozprofileN6pJDY/search.json.mozlz4", (void 0)))
DevTools listening on ws://127.0.0.1:41191/devtools/browser/13b942f0-1825-4c77-bab1-44af646316f2
1669704724054 Marionette INFO Stopped listening on port 41101
1669704731081 geckodriver INFO Listening on 127.0.0.1:44069
1669704731594 mozrunner::runner INFO Running command: "/snap/firefox/current/firefox.launcher" "--marionette" "--remote-debugging-port" "39817" "--remote-allow-hosts" "localhost" "-no-remote" "-profile" "/tmp/rust_mozprofileDMRXwo"
Gtk-Message: 17:52:11.612: Not loading module "atk-bridge": The functionality is provided by GTK natively. Please try to not load it.
[GFX1-]: glxtest: VA-API test failed: failed to initialise VAAPI connection.
1669704732235 Marionette INFO Marionette enabled
1669704732238 Marionette INFO Listening on port 37601
Read port: 37601
WebDriver BiDi listening on ws://127.0.0.1:39817
1669704732377 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_mozprofileDMRXwo/search.json.mozlz4", (void 0)))
DevTools listening on ws://127.0.0.1:39817/devtools/browser/a52cdb0a-f553-4289-aaa4-c9d38d632c34
1669704748757 Marionette INFO Stopped listening on port 37601
1669704813314 geckodriver INFO Listening on 127.0.0.1:41059
1669704813798 mozrunner::runner INFO Running command: "/snap/firefox/current/firefox.launcher" "--marionette" "--remote-debugging-port" "41073" "--remote-allow-hosts" "localhost" "-no-remote" "-profile" "/tmp/rust_mozprofile7QR0iu"
Gtk-Message: 17:53:33.818: Not loading module "atk-bridge": The functionality is provided by GTK natively. Please try to not load it.
[GFX1-]: glxtest: VA-API test failed: failed to initialise VAAPI connection.
1669704814436 Marionette INFO Marionette enabled
1669704814439 Marionette INFO Listening on port 44925
Read port: 44925
WebDriver BiDi listening on ws://127.0.0.1:41073
1669704814592 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_mozprofile7QR0iu/search.json.mozlz4", (void 0)))
DevTools listening on ws://127.0.0.1:41073/devtools/browser/aba729a4-bc44-4236-8c2d-3bb948d5d9dc
1669704834414 Marionette INFO Stopped listening on port 44925
1669704878045 geckodriver INFO Listening on 127.0.0.1:60247
1669704878558 mozrunner::runner INFO Running command: "/snap/firefox/current/firefox.launcher" "--marionette" "--remote-debugging-port" "50847" "--remote-allow-hosts" "localhost" "-no-remote" "-profile" "/tmp/rust_mozprofileFlTC1Q"
Gtk-Message: 17:54:38.576: Not loading module "atk-bridge": The functionality is provided by GTK natively. Please try to not load it.
[GFX1-]: glxtest: VA-API test failed: failed to initialise VAAPI connection.
1669704879224 Marionette INFO Marionette enabled
1669704879227 Marionette INFO Listening on port 44361
Read port: 44361
WebDriver BiDi listening on ws://127.0.0.1:50847
1669704879373 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_mozprofileFlTC1Q/search.json.mozlz4", (void 0)))
DevTools listening on ws://127.0.0.1:50847/devtools/browser/091b9336-9396-40a1-a09f-5d83b38db563
1669704901020 Marionette INFO Stopped listening on port 44361
1669705025127 geckodriver INFO Listening on 127.0.0.1:40969
1669705025638 mozrunner::runner INFO Running command: "/snap/firefox/current/firefox.launcher" "--marionette" "--remote-debugging-port" "41767" "--remote-allow-hosts" "localhost" "-no-remote" "-profile" "/tmp/rust_mozprofilepnhThL"
Gtk-Message: 17:57:05.657: Not loading module "atk-bridge": The functionality is provided by GTK natively. Please try to not load it.
[GFX1-]: glxtest: VA-API test failed: failed to initialise VAAPI connection.
1669705026244 Marionette INFO Marionette enabled
1669705026248 Marionette INFO Listening on port 41233
Read port: 41233
WebDriver BiDi listening on ws://127.0.0.1:41767
1669705026404 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_mozprofilepnhThL/search.json.mozlz4", (void 0)))
DevTools listening on ws://127.0.0.1:41767/devtools/browser/9b0bf907-195b-44d5-bf17-eb8d72f5f9b4
1669705047976 Marionette INFO Stopped listening on port 41233
1669705523253 geckodriver INFO Listening on 127.0.0.1:53471
1669705523770 mozrunner::runner INFO Running command: "/snap/firefox/current/firefox.launcher" "--marionette" "--remote-debugging-port" "54139" "--remote-allow-hosts" "localhost" "-no-remote" "-profile" "/tmp/rust_mozprofilepuzvag"
Gtk-Message: 18:05:23.788: Not loading module "atk-bridge": The functionality is provided by GTK natively. Please try to not load it.
[GFX1-]: glxtest: VA-API test failed: failed to initialise VAAPI connection.
1669705524408 Marionette INFO Marionette enabled
1669705524411 Marionette INFO Listening on port 42077
Read port: 42077
WebDriver BiDi listening on ws://127.0.0.1:54139
1669705524554 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_mozprofilepuzvag/search.json.mozlz4", (void 0)))
DevTools listening on ws://127.0.0.1:54139/devtools/browser/66c2a9ea-f3f2-4b3f-863d-43ebada32757
1669705537523 Marionette INFO Stopped listening on port 42077
Sandbox: Unexpected EOF, op 0 flags 00 path /proc/cpuinfo
1669705576180 geckodriver INFO Listening on 127.0.0.1:52851
1669705576670 mozrunner::runner INFO Running command: "/snap/firefox/current/firefox.launcher" "--marionette" "--remote-debugging-port" "38145" "--remote-allow-hosts" "localhost" "-no-remote" "-profile" "/tmp/rust_mozprofileWHD5OK"
Gtk-Message: 18:06:16.688: Not loading module "atk-bridge": The functionality is provided by GTK natively. Please try to not load it.
[GFX1-]: glxtest: VA-API test failed: failed to initialise VAAPI connection.
1669705577350 Marionette INFO Marionette enabled
1669705577353 Marionette INFO Listening on port 41111
Read port: 41111
WebDriver BiDi listening on ws://127.0.0.1:38145
1669705577486 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_mozprofileWHD5OK/search.json.mozlz4", (void 0)))
DevTools listening on ws://127.0.0.1:38145/devtools/browser/fd301729-1cb2-48f3-b6c9-f6a4a9f27d8d
1669705584799 Marionette INFO Stopped listening on port 41111
1669705585420 geckodriver INFO Listening on 127.0.0.1:32821
1669705585884 mozrunner::runner INFO Running command: "/snap/firefox/current/firefox.launcher" "--marionette" "--remote-debugging-port" "56655" "--remote-allow-hosts" "localhost" "-no-remote" "-profile" "/tmp/rust_mozprofileJkyXs2"
Gtk-Message: 18:06:25.906: Not loading module "atk-bridge": The functionality is provided by GTK natively. Please try to not load it.
[GFX1-]: glxtest: VA-API test failed: failed to initialise VAAPI connection.
1669705586442 Marionette INFO Marionette enabled
1669705586445 Marionette INFO Listening on port 33769
Read port: 33769
WebDriver BiDi listening on ws://127.0.0.1:56655
1669705586580 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_mozprofileJkyXs2/search.json.mozlz4", (void 0)))
DevTools listening on ws://127.0.0.1:56655/devtools/browser/e81823f5-63aa-4aeb-8901-1694c43694e8
1669705597319 Marionette INFO Stopped listening on port 33769
1669705597889 geckodriver INFO Listening on 127.0.0.1:43961
1669705598398 mozrunner::runner INFO Running command: "/snap/firefox/current/firefox.launcher" "--marionette" "--remote-debugging-port" "52969" "--remote-allow-hosts" "localhost" "-no-remote" "-profile" "/tmp/rust_mozprofileeag49S"
Gtk-Message: 18:06:38.416: Not loading module "atk-bridge": The functionality is provided by GTK natively. Please try to not load it.
[GFX1-]: glxtest: VA-API test failed: failed to initialise VAAPI connection.
1669705599035 Marionette INFO Marionette enabled
1669705599038 Marionette INFO Listening on port 43061
Read port: 43061
WebDriver BiDi listening on ws://127.0.0.1:52969
1669705599167 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_mozprofileeag49S/search.json.mozlz4", (void 0)))
DevTools listening on ws://127.0.0.1:52969/devtools/browser/2f25a14b-7b7e-4070-b1d2-81bf351b4738
1669705623138 Marionette INFO Stopped listening on port 43061
1669705623764 geckodriver INFO Listening on 127.0.0.1:37993
1669705624230 mozrunner::runner INFO Running command: "/snap/firefox/current/firefox.launcher" "--marionette" "--remote-debugging-port" "59129" "--remote-allow-hosts" "localhost" "-no-remote" "-profile" "/tmp/rust_mozprofileUAoWCD"
Gtk-Message: 18:07:04.251: Not loading module "atk-bridge": The functionality is provided by GTK natively. Please try to not load it.
[GFX1-]: glxtest: VA-API test failed: failed to initialise VAAPI connection.
1669705624823 Marionette INFO Marionette enabled
1669705624826 Marionette INFO Listening on port 44855
Read port: 44855
WebDriver BiDi listening on ws://127.0.0.1:59129
1669705624961 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_mozprofileUAoWCD/search.json.mozlz4", (void 0)))
DevTools listening on ws://127.0.0.1:59129/devtools/browser/0bd18a9a-129f-4805-a43a-d2bb6c68bf9d
1669705636165 Marionette INFO Stopped listening on port 44855
1669705636769 geckodriver INFO Listening on 127.0.0.1:45139
1669705637270 mozrunner::runner INFO Running command: "/snap/firefox/current/firefox.launcher" "--marionette" "--remote-debugging-port" "53831" "--remote-allow-hosts" "localhost" "-no-remote" "-profile" "/tmp/rust_mozprofilezKkV3s"
Gtk-Message: 18:07:17.288: Not loading module "atk-bridge": The functionality is provided by GTK natively. Please try to not load it.
[GFX1-]: glxtest: VA-API test failed: failed to initialise VAAPI connection.
1669705637934 Marionette INFO Marionette enabled
1669705637937 Marionette INFO Listening on port 34331
Read port: 34331
WebDriver BiDi listening on ws://127.0.0.1:53831
1669705638062 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_mozprofilezKkV3s/search.json.mozlz4", (void 0)))
DevTools listening on ws://127.0.0.1:53831/devtools/browser/d00b8e3e-7640-4e09-bb74-b9a1ff2ac2ea
1669705651875 Marionette INFO Stopped listening on port 34331
1669705902435 geckodriver INFO Listening on 127.0.0.1:41293
1669705902953 mozrunner::runner INFO Running command: "/snap/firefox/current/firefox.launcher" "--marionette" "--remote-debugging-port" "40721" "--remote-allow-hosts" "localhost" "-no-remote" "-profile" "/tmp/rust_mozprofile6VBPAB"
Gtk-Message: 18:11:42.972: Not loading module "atk-bridge": The functionality is provided by GTK natively. Please try to not load it.
[GFX1-]: glxtest: VA-API test failed: failed to initialise VAAPI connection.
1669705903588 Marionette INFO Marionette enabled
1669705903591 Marionette INFO Listening on port 39077
Read port: 39077
WebDriver BiDi listening on ws://127.0.0.1:40721
1669705903724 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_mozprofile6VBPAB/search.json.mozlz4", (void 0)))
DevTools listening on ws://127.0.0.1:40721/devtools/browser/9f1a0a8b-b336-4de0-945d-6256967a641f
1669705912979 Marionette INFO Stopped listening on port 39077
1669705913591 geckodriver INFO Listening on 127.0.0.1:57505
1669705914058 mozrunner::runner INFO Running command: "/snap/firefox/current/firefox.launcher" "--marionette" "--remote-debugging-port" "51557" "--remote-allow-hosts" "localhost" "-no-remote" "-profile" "/tmp/rust_mozprofilep6SBJT"
Gtk-Message: 18:11:54.078: Not loading module "atk-bridge": The functionality is provided by GTK natively. Please try to not load it.
[GFX1-]: glxtest: VA-API test failed: failed to initialise VAAPI connection.
1669705914663 Marionette INFO Marionette enabled
1669705914666 Marionette INFO Listening on port 46219
Read port: 46219
WebDriver BiDi listening on ws://127.0.0.1:51557
1669705914811 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_mozprofilep6SBJT/search.json.mozlz4", (void 0)))
DevTools listening on ws://127.0.0.1:51557/devtools/browser/48f5f3f7-2e03-4904-b46e-35718520c280
1669705927426 Marionette INFO Stopped listening on port 46219
1669705928027 geckodriver INFO Listening on 127.0.0.1:35265
1669705928510 mozrunner::runner INFO Running command: "/snap/firefox/current/firefox.launcher" "--marionette" "--remote-debugging-port" "51589" "--remote-allow-hosts" "localhost" "-no-remote" "-profile" "/tmp/rust_mozprofilefZ9Fz8"
Gtk-Message: 18:12:08.528: Not loading module "atk-bridge": The functionality is provided by GTK natively. Please try to not load it.
[GFX1-]: glxtest: VA-API test failed: failed to initialise VAAPI connection.
1669705929193 Marionette INFO Marionette enabled
1669705929196 Marionette INFO Listening on port 37029
Read port: 37029
WebDriver BiDi listening on ws://127.0.0.1:51589
1669705929314 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_mozprofilefZ9Fz8/search.json.mozlz4", (void 0)))
DevTools listening on ws://127.0.0.1:51589/devtools/browser/aea6a552-0600-4078-90ac-358ad2b94d95
1669705945470 Marionette INFO Stopped listening on port 37029
1669705946054 geckodriver INFO Listening on 127.0.0.1:49595
1669705946542 mozrunner::runner INFO Running command: "/snap/firefox/current/firefox.launcher" "--marionette" "--remote-debugging-port" "48039" "--remote-allow-hosts" "localhost" "-no-remote" "-profile" "/tmp/rust_mozprofile6BxcEV"
Gtk-Message: 18:12:26.561: Not loading module "atk-bridge": The functionality is provided by GTK natively. Please try to not load it.
[GFX1-]: glxtest: VA-API test failed: failed to initialise VAAPI connection.
1669705947207 Marionette INFO Marionette enabled
1669705947210 Marionette INFO Listening on port 40825
Read port: 40825
WebDriver BiDi listening on ws://127.0.0.1:48039
1669705947341 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_mozprofile6BxcEV/search.json.mozlz4", (void 0)))
DevTools listening on ws://127.0.0.1:48039/devtools/browser/9f81d327-5e71-4c00-a774-2a02725495d7
1669705956444 Marionette INFO Stopped listening on port 40825
1669705957036 geckodriver INFO Listening on 127.0.0.1:43973
1669705957510 mozrunner::runner INFO Running command: "/snap/firefox/current/firefox.launcher" "--marionette" "--remote-debugging-port" "48043" "--remote-allow-hosts" "localhost" "-no-remote" "-profile" "/tmp/rust_mozprofileoqHf0i"
Gtk-Message: 18:12:37.529: Not loading module "atk-bridge": The functionality is provided by GTK natively. Please try to not load it.
[GFX1-]: glxtest: VA-API test failed: failed to initialise VAAPI connection.
1669705958149 Marionette INFO Marionette enabled
1669705958152 Marionette INFO Listening on port 40521
Read port: 40521
WebDriver BiDi listening on ws://127.0.0.1:48043
1669705958305 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_mozprofileoqHf0i/search.json.mozlz4", (void 0)))
DevTools listening on ws://127.0.0.1:48043/devtools/browser/e8359871-2827-44dc-8294-2d6a44aa88e8
1669705970094 Marionette INFO Stopped listening on port 40521
1669705970706 geckodriver INFO Listening on 127.0.0.1:52079
1669705971214 mozrunner::runner INFO Running command: "/snap/firefox/current/firefox.launcher" "--marionette" "--remote-debugging-port" "59403" "--remote-allow-hosts" "localhost" "-no-remote" "-profile" "/tmp/rust_mozprofilepFnjqt"
Gtk-Message: 18:12:51.233: Not loading module "atk-bridge": The functionality is provided by GTK natively. Please try to not load it.
[GFX1-]: glxtest: VA-API test failed: failed to initialise VAAPI connection.
1669705971843 Marionette INFO Marionette enabled
1669705971846 Marionette INFO Listening on port 34225
Read port: 34225
WebDriver BiDi listening on ws://127.0.0.1:59403
1669705971995 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_mozprofilepFnjqt/search.json.mozlz4", (void 0)))
DevTools listening on ws://127.0.0.1:59403/devtools/browser/50e62010-f4ad-404b-8a02-adf18cd088ec
1669705992060 Marionette INFO Stopped listening on port 34225
1669706525190 geckodriver INFO Listening on 127.0.0.1:37495
1669706525710 mozrunner::runner INFO Running command: "/snap/firefox/current/firefox.launcher" "--marionette" "--remote-debugging-port" "36873" "--remote-allow-hosts" "localhost" "-no-remote" "-profile" "/tmp/rust_mozprofileIvpRGt"
Gtk-Message: 18:22:05.731: Not loading module "atk-bridge": The functionality is provided by GTK natively. Please try to not load it.
[GFX1-]: glxtest: VA-API test failed: failed to initialise VAAPI connection.
1669706526369 Marionette INFO Marionette enabled
1669706526372 Marionette INFO Listening on port 37125
Read port: 37125
WebDriver BiDi listening on ws://127.0.0.1:36873
1669706526527 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_mozprofileIvpRGt/search.json.mozlz4", (void 0)))
DevTools listening on ws://127.0.0.1:36873/devtools/browser/07443c82-4fae-4ae6-b614-c8ffe4fd1ec0
1669706535676 Marionette INFO Stopped listening on port 37125
1669706536642 geckodriver INFO Listening on 127.0.0.1:55673
1669706597601 geckodriver INFO Listening on 127.0.0.1:37787
1669706598090 mozrunner::runner INFO Running command: "/snap/firefox/current/firefox.launcher" "--marionette" "--remote-debugging-port" "36045" "--remote-allow-hosts" "localhost" "-no-remote" "-profile" "/tmp/rust_mozprofileBKexnK"
Gtk-Message: 18:23:18.108: Not loading module "atk-bridge": The functionality is provided by GTK natively. Please try to not load it.
[GFX1-]: glxtest: VA-API test failed: failed to initialise VAAPI connection.
1669706598745 Marionette INFO Marionette enabled
1669706598748 Marionette INFO Listening on port 40305
Read port: 40305
WebDriver BiDi listening on ws://127.0.0.1:36045
1669706598923 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_mozprofileBKexnK/search.json.mozlz4", (void 0)))
DevTools listening on ws://127.0.0.1:36045/devtools/browser/4a96d83b-6ed0-46bf-a3aa-214c70e963c5
1669706606399 Marionette INFO Stopped listening on port 40305
1669706606946 geckodriver INFO Listening on 127.0.0.1:41035
1669706607430 mozrunner::runner INFO Running command: "/snap/firefox/current/firefox.launcher" "--marionette" "--remote-debugging-port" "44575" "--remote-allow-hosts" "localhost" "-no-remote" "-profile" "/tmp/rust_mozprofileaVXdJ4"
Gtk-Message: 18:23:27.451: Not loading module "atk-bridge": The functionality is provided by GTK natively. Please try to not load it.
[GFX1-]: glxtest: VA-API test failed: failed to initialise VAAPI connection.
1669706607971 Marionette INFO Marionette enabled
1669706607974 Marionette INFO Listening on port 33733
Read port: 33733
WebDriver BiDi listening on ws://127.0.0.1:44575
1669706608125 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_mozprofileaVXdJ4/search.json.mozlz4", (void 0)))
DevTools listening on ws://127.0.0.1:44575/devtools/browser/12d4f2b0-63d9-4678-a415-468af8eecaf7
1669706616013 Marionette INFO Stopped listening on port 33733
1669706648917 geckodriver INFO Listening on 127.0.0.1:41839
1669706649410 mozrunner::runner INFO Running command: "/snap/firefox/current/firefox.launcher" "--marionette" "--remote-debugging-port" "35021" "--remote-allow-hosts" "localhost" "-no-remote" "-profile" "/tmp/rust_mozprofileGv13hr"
Gtk-Message: 18:24:09.428: Not loading module "atk-bridge": The functionality is provided by GTK natively. Please try to not load it.
[GFX1-]: glxtest: VA-API test failed: failed to initialise VAAPI connection.
1669706650054 Marionette INFO Marionette enabled
1669706650057 Marionette INFO Listening on port 34169
Read port: 34169
WebDriver BiDi listening on ws://127.0.0.1:35021
1669706650221 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_mozprofileGv13hr/search.json.mozlz4", (void 0)))
DevTools listening on ws://127.0.0.1:35021/devtools/browser/432c1a66-e07e-426c-a5af-49ceb4f244e8
1669706657418 Marionette INFO Stopped listening on port 34169
JavaScript error: resource://gre/modules/UrlClassifierListManager.jsm, line 693: TypeError: this.tablesData[table] is undefined
1669706661116 geckodriver INFO Listening on 127.0.0.1:51069
1669706661605 mozrunner::runner INFO Running command: "/snap/firefox/current/firefox.launcher" "--marionette" "--remote-debugging-port" "39177" "--remote-allow-hosts" "localhost" "-no-remote" "-profile" "/tmp/rust_mozprofiledO9ppS"
Gtk-Message: 18:24:21.624: Not loading module "atk-bridge": The functionality is provided by GTK natively. Please try to not load it.
[GFX1-]: glxtest: VA-API test failed: failed to initialise VAAPI connection.
1669706662248 Marionette INFO Marionette enabled
1669706662251 Marionette INFO Listening on port 34367
Read port: 34367
WebDriver BiDi listening on ws://127.0.0.1:39177
1669706662381 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_mozprofiledO9ppS/search.json.mozlz4", (void 0)))
DevTools listening on ws://127.0.0.1:39177/devtools/browser/55065b9a-b846-4a46-8c81-45922a03b0d4
1669706686042 Marionette INFO Stopped listening on port 34367
1669706686628 geckodriver INFO Listening on 127.0.0.1:47957
1669706687146 mozrunner::runner INFO Running command: "/snap/firefox/current/firefox.launcher" "--marionette" "--remote-debugging-port" "37579" "--remote-allow-hosts" "localhost" "-no-remote" "-profile" "/tmp/rust_mozprofileBG9xVA"
Gtk-Message: 18:24:47.164: Not loading module "atk-bridge": The functionality is provided by GTK natively. Please try to not load it.
[GFX1-]: glxtest: VA-API test failed: failed to initialise VAAPI connection.
1669706687757 Marionette INFO Marionette enabled
1669706687760 Marionette INFO Listening on port 34815
Read port: 34815
WebDriver BiDi listening on ws://127.0.0.1:37579
1669706687895 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_mozprofileBG9xVA/search.json.mozlz4", (void 0)))
DevTools listening on ws://127.0.0.1:37579/devtools/browser/6d4a6fa0-cf7d-48c4-aec8-f84bf97609c9
1669706697959 Marionette INFO Stopped listening on port 34815
1669706752405 geckodriver INFO Listening on 127.0.0.1:46727
1669706752918 mozrunner::runner INFO Running command: "/snap/firefox/current/firefox.launcher" "--marionette" "--remote-debugging-port" "53501" "--remote-allow-hosts" "localhost" "-no-remote" "-profile" "/tmp/rust_mozprofilewP7XsL"
Gtk-Message: 18:25:52.936: Not loading module "atk-bridge": The functionality is provided by GTK natively. Please try to not load it.
[GFX1-]: glxtest: VA-API test failed: failed to initialise VAAPI connection.
1669706753490 Marionette INFO Marionette enabled
1669706753494 Marionette INFO Listening on port 42187
Read port: 42187
WebDriver BiDi listening on ws://127.0.0.1:53501
1669706753645 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_mozprofilewP7XsL/search.json.mozlz4", (void 0)))
DevTools listening on ws://127.0.0.1:53501/devtools/browser/a2f0f357-62c3-427c-a2d6-70ad76cf660a
1669706772799 Marionette INFO Stopped listening on port 42187
1669706773430 geckodriver INFO Listening on 127.0.0.1:60971
1669706773930 mozrunner::runner INFO Running command: "/snap/firefox/current/firefox.launcher" "--marionette" "--remote-debugging-port" "39549" "--remote-allow-hosts" "localhost" "-no-remote" "-profile" "/tmp/rust_mozprofileh1S2u6"
Gtk-Message: 18:26:13.949: Not loading module "atk-bridge": The functionality is provided by GTK natively. Please try to not load it.
[GFX1-]: glxtest: VA-API test failed: failed to initialise VAAPI connection.
1669706774593 Marionette INFO Marionette enabled
1669706774596 Marionette INFO Listening on port 46657
Read port: 46657
WebDriver BiDi listening on ws://127.0.0.1:39549
1669706774726 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_mozprofileh1S2u6/search.json.mozlz4", (void 0)))
DevTools listening on ws://127.0.0.1:39549/devtools/browser/42049d05-c76d-4073-9f36-1ff94b9652fd
1669706791994 Marionette INFO Stopped listening on port 46657
console.warn: TopSitesFeed: Failed to fetch data from Contile server: NetworkError when attempting to fetch resource.
1669706792020 geckodriver::marionette ERROR Failed to close browser connection: Transport endpoint is not connected (os error 107)
JavaScript error: resource://gre/modules/Sqlite.sys.mjs, line 964: Error: Error(s) encountered during statement execution: disk I/O error
[2022-11-29T07:26:32Z ERROR glean_core] Can't persist ping lifetime data: Error { kind: Rkv(IoError(Os { code: 2, kind: NotFound, message: "No such file or directory" })) }
Sandbox: Unexpected EOF, op 0 flags 00 path /proc/cpuinfo
1669706795538 geckodriver INFO Listening on 127.0.0.1:41723
1669706796022 mozrunner::runner INFO Running command: "/snap/firefox/current/firefox.launcher" "--marionette" "--remote-debugging-port" "39125" "--remote-allow-hosts" "localhost" "-no-remote" "-profile" "/tmp/rust_mozprofilebDmuDm"
Gtk-Message: 18:26:36.040: Not loading module "atk-bridge": The functionality is provided by GTK natively. Please try to not load it.
[GFX1-]: glxtest: VA-API test failed: failed to initialise VAAPI connection.
1669706796676 Marionette INFO Marionette enabled
1669706796679 Marionette INFO Listening on port 41119
Read port: 41119
WebDriver BiDi listening on ws://127.0.0.1:39125
1669706796810 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_mozprofilebDmuDm/search.json.mozlz4", (void 0)))
DevTools listening on ws://127.0.0.1:39125/devtools/browser/d1717010-199a-4864-afec-3d9839db537e
1669706803813 Marionette INFO Stopped listening on port 41119
1669706804437 geckodriver INFO Listening on 127.0.0.1:53185
1669706804945 mozrunner::runner INFO Running command: "/snap/firefox/current/firefox.launcher" "--marionette" "--remote-debugging-port" "45719" "--remote-allow-hosts" "localhost" "-no-remote" "-profile" "/tmp/rust_mozprofileG86IL8"
Gtk-Message: 18:26:44.964: Not loading module "atk-bridge": The functionality is provided by GTK natively. Please try to not load it.
[GFX1-]: glxtest: VA-API test failed: failed to initialise VAAPI connection.
1669706805617 Marionette INFO Marionette enabled
1669706805620 Marionette INFO Listening on port 35531
Read port: 35531
WebDriver BiDi listening on ws://127.0.0.1:45719
1669706805741 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_mozprofileG86IL8/search.json.mozlz4", (void 0)))
DevTools listening on ws://127.0.0.1:45719/devtools/browser/ef590a17-399e-4c4a-b80f-6ec64c4920ff
1669706813478 Marionette INFO Stopped listening on port 35531
1669706814082 geckodriver INFO Listening on 127.0.0.1:47149
1669706814540 mozrunner::runner INFO Running command: "/snap/firefox/current/firefox.launcher" "--marionette" "--remote-debugging-port" "37117" "--remote-allow-hosts" "localhost" "-no-remote" "-profile" "/tmp/rust_mozprofileMU4LmP"
Gtk-Message: 18:26:54.558: Not loading module "atk-bridge": The functionality is provided by GTK natively. Please try to not load it.
[GFX1-]: glxtest: VA-API test failed: failed to initialise VAAPI connection.
1669706815267 Marionette INFO Marionette enabled
1669706815271 Marionette INFO Listening on port 45149
Read port: 45149
WebDriver BiDi listening on ws://127.0.0.1:37117
1669706815433 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_mozprofileMU4LmP/search.json.mozlz4", (void 0)))
DevTools listening on ws://127.0.0.1:37117/devtools/browser/90984b51-97a5-4b9c-8dd9-8da016a67252
1669706822497 Marionette INFO Stopped listening on port 45149
1669707558208 geckodriver INFO Listening on 127.0.0.1:47829
1669707558721 mozrunner::runner INFO Running command: "/snap/firefox/current/firefox.launcher" "--marionette" "--remote-debugging-port" "37789" "--remote-allow-hosts" "localhost" "-no-remote" "-profile" "/tmp/rust_mozprofile1crDbD"
Gtk-Message: 18:39:18.741: Not loading module "atk-bridge": The functionality is provided by GTK natively. Please try to not load it.
[GFX1-]: glxtest: VA-API test failed: failed to initialise VAAPI connection.
1669707559373 Marionette INFO Marionette enabled
1669707559376 Marionette INFO Listening on port 46765
Read port: 46765
WebDriver BiDi listening on ws://127.0.0.1:37789
1669707559509 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_mozprofile1crDbD/search.json.mozlz4", (void 0)))
DevTools listening on ws://127.0.0.1:37789/devtools/browser/3d3adc58-9168-4bac-80cf-69152d3a07ae
1669707567655 Marionette INFO Stopped listening on port 46765
1669707668767 geckodriver INFO Listening on 127.0.0.1:49547
1669707669282 mozrunner::runner INFO Running command: "/snap/firefox/current/firefox.launcher" "--marionette" "--remote-debugging-port" "54887" "--remote-allow-hosts" "localhost" "-no-remote" "-profile" "/tmp/rust_mozprofile1RRnjC"
Gtk-Message: 18:41:09.300: Not loading module "atk-bridge": The functionality is provided by GTK natively. Please try to not load it.
[GFX1-]: glxtest: VA-API test failed: failed to initialise VAAPI connection.
1669707669882 Marionette INFO Marionette enabled
1669707669885 Marionette INFO Listening on port 44149
Read port: 44149
WebDriver BiDi listening on ws://127.0.0.1:54887
1669707670023 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_mozprofile1RRnjC/search.json.mozlz4", (void 0)))
DevTools listening on ws://127.0.0.1:54887/devtools/browser/53a69ab2-bdb7-443e-9fbb-ffb9246962ee
1669707677374 Marionette INFO Stopped listening on port 44149
1669707706616 geckodriver INFO Listening on 127.0.0.1:34505
1669707707130 mozrunner::runner INFO Running command: "/snap/firefox/current/firefox.launcher" "--marionette" "--remote-debugging-port" "48223" "--remote-allow-hosts" "localhost" "-no-remote" "-profile" "/tmp/rust_mozprofile5lQgM2"
Gtk-Message: 18:41:47.149: Not loading module "atk-bridge": The functionality is provided by GTK natively. Please try to not load it.
[GFX1-]: glxtest: VA-API test failed: failed to initialise VAAPI connection.
1669707707780 Marionette INFO Marionette enabled
1669707707784 Marionette INFO Listening on port 40565
Read port: 40565
WebDriver BiDi listening on ws://127.0.0.1:48223
1669707707904 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_mozprofile5lQgM2/search.json.mozlz4", (void 0)))
DevTools listening on ws://127.0.0.1:48223/devtools/browser/ade5bd9f-6fec-44c1-b180-79b57e74b691
1669707714692 Marionette INFO Stopped listening on port 40565
1669707715321 geckodriver INFO Listening on 127.0.0.1:53337
1669707715830 mozrunner::runner INFO Running command: "/snap/firefox/current/firefox.launcher" "--marionette" "--remote-debugging-port" "41479" "--remote-allow-hosts" "localhost" "-no-remote" "-profile" "/tmp/rust_mozprofilec77Ou6"
Gtk-Message: 18:41:55.848: Not loading module "atk-bridge": The functionality is provided by GTK natively. Please try to not load it.
[GFX1-]: glxtest: VA-API test failed: failed to initialise VAAPI connection.
1669707716487 Marionette INFO Marionette enabled
1669707716490 Marionette INFO Listening on port 45443
Read port: 45443
WebDriver BiDi listening on ws://127.0.0.1:41479
1669707716672 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_mozprofilec77Ou6/search.json.mozlz4", (void 0)))
DevTools listening on ws://127.0.0.1:41479/devtools/browser/d45535a3-d735-42c7-a2a8-881b15843a9f
1669707726801 Marionette INFO Stopped listening on port 45443
1669707727400 geckodriver INFO Listening on 127.0.0.1:46571
1669707727886 mozrunner::runner INFO Running command: "/snap/firefox/current/firefox.launcher" "--marionette" "--remote-debugging-port" "42857" "--remote-allow-hosts" "localhost" "-no-remote" "-profile" "/tmp/rust_mozprofileOKu1hG"
Gtk-Message: 18:42:07.904: Not loading module "atk-bridge": The functionality is provided by GTK natively. Please try to not load it.
[GFX1-]: glxtest: VA-API test failed: failed to initialise VAAPI connection.
1669707728549 Marionette INFO Marionette enabled
1669707728552 Marionette INFO Listening on port 45979
Read port: 45979
WebDriver BiDi listening on ws://127.0.0.1:42857
1669707728746 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_mozprofileOKu1hG/search.json.mozlz4", (void 0)))
DevTools listening on ws://127.0.0.1:42857/devtools/browser/b0c6a8c6-9e00-4be4-a6ce-01285205fef3
1669707738229 Marionette INFO Stopped listening on port 45979
1669711211101 geckodriver INFO Listening on 127.0.0.1:52937
1669711211613 mozrunner::runner INFO Running command: "/snap/firefox/current/firefox.launcher" "--marionette" "--remote-debugging-port" "43899" "--remote-allow-hosts" "localhost" "-no-remote" "-profile" "/tmp/rust_mozprofileIf3e2C"
Gtk-Message: 19:40:11.632: Not loading module "atk-bridge": The functionality is provided by GTK natively. Please try to not load it.
[GFX1-]: glxtest: VA-API test failed: failed to initialise VAAPI connection.
1669711212196 Marionette INFO Marionette enabled
1669711212199 Marionette INFO Listening on port 39571
Read port: 39571
WebDriver BiDi listening on ws://127.0.0.1:43899
1669711212362 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_mozprofileIf3e2C/search.json.mozlz4", (void 0)))
DevTools listening on ws://127.0.0.1:43899/devtools/browser/bedb9b14-5c1a-4129-a328-0cf8d00765e8
1669711222040 Marionette INFO Stopped listening on port 39571
1669711222646 geckodriver INFO Listening on 127.0.0.1:39929
1669711223118 mozrunner::runner INFO Running command: "/snap/firefox/current/firefox.launcher" "--marionette" "--remote-debugging-port" "46649" "--remote-allow-hosts" "localhost" "-no-remote" "-profile" "/tmp/rust_mozprofileFjCjkz"
Gtk-Message: 19:40:23.136: Not loading module "atk-bridge": The functionality is provided by GTK natively. Please try to not load it.
[GFX1-]: glxtest: VA-API test failed: failed to initialise VAAPI connection.
1669711223804 Marionette INFO Marionette enabled
1669711223807 Marionette INFO Listening on port 40219
Read port: 40219
WebDriver BiDi listening on ws://127.0.0.1:46649
1669711223978 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_mozprofileFjCjkz/search.json.mozlz4", (void 0)))
DevTools listening on ws://127.0.0.1:46649/devtools/browser/9b8570c6-ba55-4ad0-8ccd-6496f09d341a
1669711231127 Marionette INFO Stopped listening on port 40219
1669711231740 geckodriver INFO Listening on 127.0.0.1:58055
1669711232241 mozrunner::runner INFO Running command: "/snap/firefox/current/firefox.launcher" "--marionette" "--remote-debugging-port" "47023" "--remote-allow-hosts" "localhost" "-no-remote" "-profile" "/tmp/rust_mozprofile1dD7hJ"
Gtk-Message: 19:40:32.260: Not loading module "atk-bridge": The functionality is provided by GTK natively. Please try to not load it.
[GFX1-]: glxtest: VA-API test failed: failed to initialise VAAPI connection.
1669711232844 Marionette INFO Marionette enabled
1669711232847 Marionette INFO Listening on port 34637
Read port: 34637
WebDriver BiDi listening on ws://127.0.0.1:47023
1669711233006 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_mozprofile1dD7hJ/search.json.mozlz4", (void 0)))
DevTools listening on ws://127.0.0.1:47023/devtools/browser/a943bbdc-d2ba-4c7f-b747-e2c249ebac3b
1669711244489 Marionette INFO Stopped listening on port 34637
1669711245072 geckodriver INFO Listening on 127.0.0.1:36653
1669711245586 mozrunner::runner INFO Running command: "/snap/firefox/current/firefox.launcher" "--marionette" "--remote-debugging-port" "33897" "--remote-allow-hosts" "localhost" "-no-remote" "-profile" "/tmp/rust_mozprofileve8gvo"
Gtk-Message: 19:40:45.605: Not loading module "atk-bridge": The functionality is provided by GTK natively. Please try to not load it.
[GFX1-]: glxtest: VA-API test failed: failed to initialise VAAPI connection.
1669711246189 Marionette INFO Marionette enabled
1669711246192 Marionette INFO Listening on port 46875
Read port: 46875
WebDriver BiDi listening on ws://127.0.0.1:33897
1669711246326 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_mozprofileve8gvo/search.json.mozlz4", (void 0)))
DevTools listening on ws://127.0.0.1:33897/devtools/browser/e1a184dc-b529-4df9-b786-9a3e1c29b82e
1669711254088 Marionette INFO Stopped listening on port 46875
1669711254702 geckodriver INFO Listening on 127.0.0.1:33855
1669711255174 mozrunner::runner INFO Running command: "/snap/firefox/current/firefox.launcher" "--marionette" "--remote-debugging-port" "59009" "--remote-allow-hosts" "localhost" "-no-remote" "-profile" "/tmp/rust_mozprofileH2gVfN"
Gtk-Message: 19:40:55.192: Not loading module "atk-bridge": The functionality is provided by GTK natively. Please try to not load it.
[GFX1-]: glxtest: VA-API test failed: failed to initialise VAAPI connection.
1669711255796 Marionette INFO Marionette enabled
1669711255799 Marionette INFO Listening on port 46509
Read port: 46509
WebDriver BiDi listening on ws://127.0.0.1:59009
1669711255932 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_mozprofileH2gVfN/search.json.mozlz4", (void 0)))
DevTools listening on ws://127.0.0.1:59009/devtools/browser/90e259e0-21cd-448a-bdf1-cb228390e827
1669711273113 Marionette INFO Stopped listening on port 46509
1669711273744 geckodriver INFO Listening on 127.0.0.1:42713
1669711274235 mozrunner::runner INFO Running command: "/snap/firefox/current/firefox.launcher" "--marionette" "--remote-debugging-port" "42003" "--remote-allow-hosts" "localhost" "-no-remote" "-profile" "/tmp/rust_mozprofile2N5kev"
Gtk-Message: 19:41:14.254: Not loading module "atk-bridge": The functionality is provided by GTK natively. Please try to not load it.
[GFX1-]: glxtest: VA-API test failed: failed to initialise VAAPI connection.
1669711274830 Marionette INFO Marionette enabled
1669711274833 Marionette INFO Listening on port 35767
Read port: 35767
WebDriver BiDi listening on ws://127.0.0.1:42003
1669711274991 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_mozprofile2N5kev/search.json.mozlz4", (void 0)))
DevTools listening on ws://127.0.0.1:42003/devtools/browser/92367a32-1ea6-421e-9b67-4854aeeeef72
1669711282408 Marionette INFO Stopped listening on port 35767
1669711283016 geckodriver INFO Listening on 127.0.0.1:49593
1669711283522 mozrunner::runner INFO Running command: "/snap/firefox/current/firefox.launcher" "--marionette" "--remote-debugging-port" "39275" "--remote-allow-hosts" "localhost" "-no-remote" "-profile" "/tmp/rust_mozprofileiScxA4"
Gtk-Message: 19:41:23.540: Not loading module "atk-bridge": The functionality is provided by GTK natively. Please try to not load it.
[GFX1-]: glxtest: VA-API test failed: failed to initialise VAAPI connection.
1669711284070 Marionette INFO Marionette enabled
1669711284073 Marionette INFO Listening on port 37213
Read port: 37213
WebDriver BiDi listening on ws://127.0.0.1:39275
1669711284235 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_mozprofileiScxA4/search.json.mozlz4", (void 0)))
DevTools listening on ws://127.0.0.1:39275/devtools/browser/6aaf110f-2dc9-4281-aa96-b58cd7a5cdb2
1669711294124 Marionette INFO Stopped listening on port 37213
1669711294766 geckodriver INFO Listening on 127.0.0.1:48199
1669711295228 mozrunner::runner INFO Running command: "/snap/firefox/current/firefox.launcher" "--marionette" "--remote-debugging-port" "44627" "--remote-allow-hosts" "localhost" "-no-remote" "-profile" "/tmp/rust_mozprofilerpLbca"
Gtk-Message: 19:41:35.249: Not loading module "atk-bridge": The functionality is provided by GTK natively. Please try to not load it.
[GFX1-]: glxtest: VA-API test failed: failed to initialise VAAPI connection.
1669711295831 Marionette INFO Marionette enabled
1669711295834 Marionette INFO Listening on port 36935
Read port: 36935
WebDriver BiDi listening on ws://127.0.0.1:44627
1669711295970 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_mozprofilerpLbca/search.json.mozlz4", (void 0)))
DevTools listening on ws://127.0.0.1:44627/devtools/browser/6504c405-b40a-4856-ac4e-2f4b1be7ee77
1669711305376 Marionette INFO Stopped listening on port 36935
1669711305871 geckodriver INFO Listening on 127.0.0.1:32819
1669711306382 mozrunner::runner INFO Running command: "/snap/firefox/current/firefox.launcher" "--marionette" "--remote-debugging-port" "47121" "--remote-allow-hosts" "localhost" "-no-remote" "-profile" "/tmp/rust_mozprofilea1WXq2"
Gtk-Message: 19:41:46.400: Not loading module "atk-bridge": The functionality is provided by GTK natively. Please try to not load it.
[GFX1-]: glxtest: VA-API test failed: failed to initialise VAAPI connection.
1669711307039 Marionette INFO Marionette enabled
1669711307042 Marionette INFO Listening on port 42593
Read port: 42593
WebDriver BiDi listening on ws://127.0.0.1:47121
1669711307178 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_mozprofilea1WXq2/search.json.mozlz4", (void 0)))
DevTools listening on ws://127.0.0.1:47121/devtools/browser/a6d1f63e-5d5d-431e-b805-959db449c150
1669711318251 Marionette INFO Stopped listening on port 42593
1669711318741 geckodriver INFO Listening on 127.0.0.1:53889
1669711319217 mozrunner::runner INFO Running command: "/snap/firefox/current/firefox.launcher" "--marionette" "--remote-debugging-port" "35037" "--remote-allow-hosts" "localhost" "-no-remote" "-profile" "/tmp/rust_mozprofile7Uf4q7"
Gtk-Message: 19:41:59.238: Not loading module "atk-bridge": The functionality is provided by GTK natively. Please try to not load it.
[GFX1-]: glxtest: VA-API test failed: failed to initialise VAAPI connection.
1669711319816 Marionette INFO Marionette enabled
1669711319819 Marionette INFO Listening on port 36783
WebDriver BiDi listening on ws://127.0.0.1:35037
Read port: 36783
1669711320018 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_mozprofile7Uf4q7/search.json.mozlz4", (void 0)))
DevTools listening on ws://127.0.0.1:35037/devtools/browser/ff862930-a1d2-40d2-bd95-ef40cf88be6d
1669711327646 Marionette INFO Stopped listening on port 36783
1669711328226 geckodriver INFO Listening on 127.0.0.1:40399
1669711328734 mozrunner::runner INFO Running command: "/snap/firefox/current/firefox.launcher" "--marionette" "--remote-debugging-port" "60099" "--remote-allow-hosts" "localhost" "-no-remote" "-profile" "/tmp/rust_mozprofile7j9ZvZ"
Gtk-Message: 19:42:08.752: Not loading module "atk-bridge": The functionality is provided by GTK natively. Please try to not load it.
[GFX1-]: glxtest: VA-API test failed: failed to initialise VAAPI connection.
1669711329392 Marionette INFO Marionette enabled
1669711329395 Marionette INFO Listening on port 45461
Read port: 45461
WebDriver BiDi listening on ws://127.0.0.1:60099
1669711329522 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_mozprofile7j9ZvZ/search.json.mozlz4", (void 0)))
DevTools listening on ws://127.0.0.1:60099/devtools/browser/578a493a-cc59-47a1-8494-99cb1d40cd7d
1669711345688 Marionette INFO Stopped listening on port 45461
1669711346314 geckodriver INFO Listening on 127.0.0.1:44017
1669711346793 mozrunner::runner INFO Running command: "/snap/firefox/current/firefox.launcher" "--marionette" "--remote-debugging-port" "46291" "--remote-allow-hosts" "localhost" "-no-remote" "-profile" "/tmp/rust_mozprofileYwIBhi"
Gtk-Message: 19:42:26.812: Not loading module "atk-bridge": The functionality is provided by GTK natively. Please try to not load it.
[GFX1-]: glxtest: VA-API test failed: failed to initialise VAAPI connection.
1669711347456 Marionette INFO Marionette enabled
1669711347459 Marionette INFO Listening on port 34813
Read port: 34813
WebDriver BiDi listening on ws://127.0.0.1:46291
1669711347579 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_mozprofileYwIBhi/search.json.mozlz4", (void 0)))
DevTools listening on ws://127.0.0.1:46291/devtools/browser/a4b65450-32ed-4452-92ff-3aabc0db164e
1669711358739 Marionette INFO Stopped listening on port 34813
1669711359340 geckodriver INFO Listening on 127.0.0.1:40983
1669711359818 mozrunner::runner INFO Running command: "/snap/firefox/current/firefox.launcher" "--marionette" "--remote-debugging-port" "46887" "--remote-allow-hosts" "localhost" "-no-remote" "-profile" "/tmp/rust_mozprofilesJqDms"
Gtk-Message: 19:42:39.836: Not loading module "atk-bridge": The functionality is provided by GTK natively. Please try to not load it.
[GFX1-]: glxtest: VA-API test failed: failed to initialise VAAPI connection.
1669711360500 Marionette INFO Marionette enabled
1669711360503 Marionette INFO Listening on port 38681
Read port: 38681
WebDriver BiDi listening on ws://127.0.0.1:46887
1669711360665 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_mozprofilesJqDms/search.json.mozlz4", (void 0)))
DevTools listening on ws://127.0.0.1:46887/devtools/browser/f8f81e57-6166-47b1-8cd6-aa16afd89af7
1669711382785 Marionette INFO Stopped listening on port 38681
1669711383363 geckodriver INFO Listening on 127.0.0.1:50153
1669711383870 mozrunner::runner INFO Running command: "/snap/firefox/current/firefox.launcher" "--marionette" "--remote-debugging-port" "60135" "--remote-allow-hosts" "localhost" "-no-remote" "-profile" "/tmp/rust_mozprofileJeRrQl"
Gtk-Message: 19:43:03.888: Not loading module "atk-bridge": The functionality is provided by GTK natively. Please try to not load it.
[GFX1-]: glxtest: VA-API test failed: failed to initialise VAAPI connection.
1669711384520 Marionette INFO Marionette enabled
1669711384523 Marionette INFO Listening on port 44923
Read port: 44923
WebDriver BiDi listening on ws://127.0.0.1:60135
1669711384638 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_mozprofileJeRrQl/search.json.mozlz4", (void 0)))
DevTools listening on ws://127.0.0.1:60135/devtools/browser/cf17e377-782f-4fa3-b704-de316613ec8b
1669711391617 Marionette INFO Stopped listening on port 44923
1669711392211 geckodriver INFO Listening on 127.0.0.1:59355
1669711392718 mozrunner::runner INFO Running command: "/snap/firefox/current/firefox.launcher" "--marionette" "--remote-debugging-port" "49307" "--remote-allow-hosts" "localhost" "-no-remote" "-profile" "/tmp/rust_mozprofile1cGZXl"
Gtk-Message: 19:43:12.736: Not loading module "atk-bridge": The functionality is provided by GTK natively. Please try to not load it.
[GFX1-]: glxtest: VA-API test failed: failed to initialise VAAPI connection.
1669711393377 Marionette INFO Marionette enabled
1669711393381 Marionette INFO Listening on port 34787
Read port: 34787
WebDriver BiDi listening on ws://127.0.0.1:49307
1669711393512 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_mozprofile1cGZXl/search.json.mozlz4", (void 0)))
DevTools listening on ws://127.0.0.1:49307/devtools/browser/a8462819-1b4e-4502-84dd-88e8da7ee244
1669711404649 Marionette INFO Stopped listening on port 34787
1669711405218 geckodriver INFO Listening on 127.0.0.1:60815
1669711405680 mozrunner::runner INFO Running command: "/snap/firefox/current/firefox.launcher" "--marionette" "--remote-debugging-port" "58389" "--remote-allow-hosts" "localhost" "-no-remote" "-profile" "/tmp/rust_mozprofile01V3oO"