-
Notifications
You must be signed in to change notification settings - Fork 0
/
geckodriver.log
9002 lines (9002 loc) · 869 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
1667294252245 geckodriver INFO Listening on 127.0.0.1:52981
1667294252331 mozrunner::runner INFO Running command: "/Applications/Firefox.app/Contents/MacOS/firefox-bin" "--marionette" "--remote-debugging-port" "52982" "--remote-allow-hosts" "localhost" "-foreground" "-no-remote" "-profile" "/var/folders/jt/x8hyslhx72l01gmb45h2dmm40000gn/T/rust_mozprofileaAVRuY"
2022-11-01 18:17:34.938 plugin-container[43334:4108564] nil host used in call to allowsSpecificHTTPSCertificateForHost
2022-11-01 18:17:34.938 plugin-container[43334:4108564] nil host used in call to allowsAnyHTTPSCertificateForHost:
2022-11-01 18:17:35.053 plugin-container[43334:4108564] nil host used in call to allowsSpecificHTTPSCertificateForHost
2022-11-01 18:17:35.053 plugin-container[43334:4108564] nil host used in call to allowsAnyHTTPSCertificateForHost:
2022-11-01 18:17:35.054 plugin-container[43334:4108607] nil host used in call to allowsSpecificHTTPSCertificateForHost
2022-11-01 18:17:35.054 plugin-container[43334:4108607] nil host used in call to allowsAnyHTTPSCertificateForHost:
WebDriver BiDi listening on ws://127.0.0.1:52982
UNSUPPORTED (log once): POSSIBLE ISSUE: unit 1 GLD_TEXTURE_INDEX_2D is unloadable and bound to sampler type (Float) - using zero texture because texture unloadable
DevTools listening on ws://127.0.0.1:52982/devtools/browser/d9e1b4f3-17c8-4949-b459-fa1db80e5439
1667294280739 geckodriver INFO Listening on 127.0.0.1:53268
1667294281144 mozrunner::runner INFO Running command: "/Applications/Firefox.app/Contents/MacOS/firefox-bin" "--marionette" "--remote-debugging-port" "53269" "--remote-allow-hosts" "localhost" "-foreground" "-no-remote" "-profile" "/var/folders/jt/x8hyslhx72l01gmb45h2dmm40000gn/T/rust_mozprofileOwBNd9"
2022-11-01 18:18:01.411 plugin-container[43398:4109534] nil host used in call to allowsSpecificHTTPSCertificateForHost
2022-11-01 18:18:01.411 plugin-container[43398:4109534] nil host used in call to allowsAnyHTTPSCertificateForHost:
2022-11-01 18:18:01.414 plugin-container[43398:4109534] nil host used in call to allowsSpecificHTTPSCertificateForHost
2022-11-01 18:18:01.414 plugin-container[43398:4109534] nil host used in call to allowsAnyHTTPSCertificateForHost:
2022-11-01 18:18:01.414 plugin-container[43398:4109532] nil host used in call to allowsSpecificHTTPSCertificateForHost
2022-11-01 18:18:01.414 plugin-container[43398:4109532] nil host used in call to allowsAnyHTTPSCertificateForHost:
1667294281422 Marionette INFO Marionette enabled
1667294281440 Marionette INFO Listening on port 53283
Read port: 53283
WebDriver BiDi listening on ws://127.0.0.1:53269
1667294281570 RemoteAgent WARN TLS certificate errors will be ignored for this session
UNSUPPORTED (log once): POSSIBLE ISSUE: unit 1 GLD_TEXTURE_INDEX_2D is unloadable and bound to sampler type (Float) - using zero texture because texture unloadable
console.warn: SearchSettings: "get: No settings file exists, new profile?" (new NotFoundError("Could not open the file at /var/folders/jt/x8hyslhx72l01gmb45h2dmm40000gn/T/rust_mozprofileOwBNd9/search.json.mozlz4", (void 0)))
DevTools listening on ws://127.0.0.1:53269/devtools/browser/cac11002-d7f2-4e4e-ae94-aeb0107f6b88
1667294283674 Marionette INFO Stopped listening on port 53283
[2022-11-01T09:18:19Z ERROR viaduct::backend::ffi] Missing HTTP status
[2022-11-01T09:18:19Z ERROR viaduct::backend::ffi] Missing HTTP status
[2022-11-01T09:18:19Z ERROR viaduct::backend::ffi] Missing HTTP status
1667294305120 geckodriver INFO Listening on 127.0.0.1:53380
1667294305566 mozrunner::runner INFO Running command: "/Applications/Firefox.app/Contents/MacOS/firefox-bin" "--marionette" "--remote-debugging-port" "53381" "--remote-allow-hosts" "localhost" "-foreground" "-no-remote" "-profile" "/var/folders/jt/x8hyslhx72l01gmb45h2dmm40000gn/T/rust_mozprofile14F8qc"
2022-11-01 18:18:25.867 plugin-container[43463:4110418] nil host used in call to allowsSpecificHTTPSCertificateForHost
2022-11-01 18:18:25.868 plugin-container[43463:4110418] nil host used in call to allowsAnyHTTPSCertificateForHost:
2022-11-01 18:18:25.870 plugin-container[43463:4110418] nil host used in call to allowsSpecificHTTPSCertificateForHost
2022-11-01 18:18:25.870 plugin-container[43463:4110418] nil host used in call to allowsAnyHTTPSCertificateForHost:
2022-11-01 18:18:25.870 plugin-container[43463:4110426] nil host used in call to allowsSpecificHTTPSCertificateForHost
2022-11-01 18:18:25.870 plugin-container[43463:4110426] nil host used in call to allowsAnyHTTPSCertificateForHost:
1667294305876 Marionette INFO Marionette enabled
1667294305893 Marionette INFO Listening on port 53388
Read port: 53388
WebDriver BiDi listening on ws://127.0.0.1:53381
1667294306023 RemoteAgent WARN TLS certificate errors will be ignored for this session
UNSUPPORTED (log once): POSSIBLE ISSUE: unit 1 GLD_TEXTURE_INDEX_2D is unloadable and bound to sampler type (Float) - using zero texture because texture unloadable
console.warn: SearchSettings: "get: No settings file exists, new profile?" (new NotFoundError("Could not open the file at /var/folders/jt/x8hyslhx72l01gmb45h2dmm40000gn/T/rust_mozprofile14F8qc/search.json.mozlz4", (void 0)))
DevTools listening on ws://127.0.0.1:53381/devtools/browser/d59f67c6-808c-4348-bbf4-64280f1e15b3
1667294307819 Marionette INFO Stopped listening on port 53388
1667294353937 geckodriver INFO Listening on 127.0.0.1:53448
1667294354343 mozrunner::runner INFO Running command: "/Applications/Firefox.app/Contents/MacOS/firefox-bin" "--marionette" "--remote-debugging-port" "53449" "--remote-allow-hosts" "localhost" "-foreground" "-no-remote" "-profile" "/var/folders/jt/x8hyslhx72l01gmb45h2dmm40000gn/T/rust_mozprofile7Vtq5S"
1667294354647 Marionette INFO Marionette enabled
2022-11-01 18:19:14.647 plugin-container[43571:4111513] nil host used in call to allowsSpecificHTTPSCertificateForHost
2022-11-01 18:19:14.647 plugin-container[43571:4111513] nil host used in call to allowsAnyHTTPSCertificateForHost:
2022-11-01 18:19:14.649 plugin-container[43571:4111513] nil host used in call to allowsSpecificHTTPSCertificateForHost
2022-11-01 18:19:14.649 plugin-container[43571:4111513] nil host used in call to allowsAnyHTTPSCertificateForHost:
2022-11-01 18:19:14.649 plugin-container[43571:4111535] nil host used in call to allowsSpecificHTTPSCertificateForHost
2022-11-01 18:19:14.649 plugin-container[43571:4111535] nil host used in call to allowsAnyHTTPSCertificateForHost:
1667294354669 Marionette INFO Listening on port 53457
Read port: 53457
WebDriver BiDi listening on ws://127.0.0.1:53449
1667294354793 RemoteAgent WARN TLS certificate errors will be ignored for this session
UNSUPPORTED (log once): POSSIBLE ISSUE: unit 1 GLD_TEXTURE_INDEX_2D is unloadable and bound to sampler type (Float) - using zero texture because texture unloadable
console.warn: SearchSettings: "get: No settings file exists, new profile?" (new NotFoundError("Could not open the file at /var/folders/jt/x8hyslhx72l01gmb45h2dmm40000gn/T/rust_mozprofile7Vtq5S/search.json.mozlz4", (void 0)))
DevTools listening on ws://127.0.0.1:53449/devtools/browser/8025c8ff-d254-4ea4-9967-46aeff96b7c0
1667294357695 Marionette INFO Stopped listening on port 53457
1667294450636 geckodriver INFO Listening on 127.0.0.1:53539
1667294451051 mozrunner::runner INFO Running command: "/Applications/Firefox.app/Contents/MacOS/firefox-bin" "--marionette" "--remote-debugging-port" "53540" "--remote-allow-hosts" "localhost" "-foreground" "-no-remote" "-profile" "/var/folders/jt/x8hyslhx72l01gmb45h2dmm40000gn/T/rust_mozprofileOA4IWi"
2022-11-01 18:20:51.309 plugin-container[43746:4113139] nil host used in call to allowsSpecificHTTPSCertificateForHost
2022-11-01 18:20:51.310 plugin-container[43746:4113139] nil host used in call to allowsAnyHTTPSCertificateForHost:
2022-11-01 18:20:51.311 plugin-container[43746:4113139] nil host used in call to allowsSpecificHTTPSCertificateForHost
2022-11-01 18:20:51.311 plugin-container[43746:4113139] nil host used in call to allowsAnyHTTPSCertificateForHost:
2022-11-01 18:20:51.312 plugin-container[43746:4113163] nil host used in call to allowsSpecificHTTPSCertificateForHost
2022-11-01 18:20:51.312 plugin-container[43746:4113163] nil host used in call to allowsAnyHTTPSCertificateForHost:
1667294451313 Marionette INFO Marionette enabled
1667294451330 Marionette INFO Listening on port 53547
Read port: 53547
WebDriver BiDi listening on ws://127.0.0.1:53540
1667294451447 RemoteAgent WARN TLS certificate errors will be ignored for this session
UNSUPPORTED (log once): POSSIBLE ISSUE: unit 1 GLD_TEXTURE_INDEX_2D is unloadable and bound to sampler type (Float) - using zero texture because texture unloadable
console.warn: SearchSettings: "get: No settings file exists, new profile?" (new NotFoundError("Could not open the file at /var/folders/jt/x8hyslhx72l01gmb45h2dmm40000gn/T/rust_mozprofileOA4IWi/search.json.mozlz4", (void 0)))
DevTools listening on ws://127.0.0.1:53540/devtools/browser/ead0e158-e560-449e-a31a-df1f9825d307
1667294453545 Marionette INFO Stopped listening on port 53547
1667299991329 geckodriver INFO Listening on 127.0.0.1:54221
1667299991745 mozrunner::runner INFO Running command: "/Applications/Firefox.app/Contents/MacOS/firefox-bin" "--marionette" "--remote-debugging-port" "54222" "--remote-allow-hosts" "localhost" "-foreground" "-no-remote" "-profile" "/var/folders/jt/x8hyslhx72l01gmb45h2dmm40000gn/T/rust_mozprofilefeSG7N"
2022-11-01 19:53:12.034 plugin-container[46821:4136835] nil host used in call to allowsSpecificHTTPSCertificateForHost
2022-11-01 19:53:12.034 plugin-container[46821:4136835] nil host used in call to allowsAnyHTTPSCertificateForHost:
1667299992036 Marionette INFO Marionette enabled
2022-11-01 19:53:12.057 plugin-container[46821:4136835] nil host used in call to allowsSpecificHTTPSCertificateForHost
2022-11-01 19:53:12.057 plugin-container[46821:4136835] nil host used in call to allowsAnyHTTPSCertificateForHost:
2022-11-01 19:53:12.057 plugin-container[46821:4136857] nil host used in call to allowsSpecificHTTPSCertificateForHost
2022-11-01 19:53:12.057 plugin-container[46821:4136857] nil host used in call to allowsAnyHTTPSCertificateForHost:
1667299992214 Marionette INFO Listening on port 54229
WebDriver BiDi listening on ws://127.0.0.1:54222
Read port: 54229
1667299992353 RemoteAgent WARN TLS certificate errors will be ignored for this session
UNSUPPORTED (log once): POSSIBLE ISSUE: unit 1 GLD_TEXTURE_INDEX_2D is unloadable and bound to sampler type (Float) - using zero texture because texture unloadable
console.warn: SearchSettings: "get: No settings file exists, new profile?" (new NotFoundError("Could not open the file at /var/folders/jt/x8hyslhx72l01gmb45h2dmm40000gn/T/rust_mozprofilefeSG7N/search.json.mozlz4", (void 0)))
DevTools listening on ws://127.0.0.1:54222/devtools/browser/5a88b98f-ce1b-47e8-bf0e-4cc16c129ffb
1667299995154 Marionette INFO Stopped listening on port 54229
1667300189910 geckodriver INFO Listening on 127.0.0.1:54367
1667300190325 mozrunner::runner INFO Running command: "/Applications/Firefox.app/Contents/MacOS/firefox-bin" "--marionette" "--remote-debugging-port" "54368" "--remote-allow-hosts" "localhost" "-foreground" "-no-remote" "-profile" "/var/folders/jt/x8hyslhx72l01gmb45h2dmm40000gn/T/rust_mozprofileG4htKN"
1667300190578 Marionette INFO Marionette enabled
2022-11-01 19:56:30.581 plugin-container[47197:4140051] nil host used in call to allowsSpecificHTTPSCertificateForHost
2022-11-01 19:56:30.581 plugin-container[47197:4140051] nil host used in call to allowsAnyHTTPSCertificateForHost:
2022-11-01 19:56:30.600 plugin-container[47197:4140051] nil host used in call to allowsSpecificHTTPSCertificateForHost
2022-11-01 19:56:30.600 plugin-container[47197:4140051] nil host used in call to allowsAnyHTTPSCertificateForHost:
2022-11-01 19:56:30.600 plugin-container[47197:4140074] nil host used in call to allowsSpecificHTTPSCertificateForHost
2022-11-01 19:56:30.600 plugin-container[47197:4140074] nil host used in call to allowsAnyHTTPSCertificateForHost:
1667300190757 Marionette INFO Listening on port 54375
WebDriver BiDi listening on ws://127.0.0.1:54368
Read port: 54375
1667300190895 RemoteAgent WARN TLS certificate errors will be ignored for this session
UNSUPPORTED (log once): POSSIBLE ISSUE: unit 1 GLD_TEXTURE_INDEX_2D is unloadable and bound to sampler type (Float) - using zero texture because texture unloadable
console.warn: SearchSettings: "get: No settings file exists, new profile?" (new NotFoundError("Could not open the file at /var/folders/jt/x8hyslhx72l01gmb45h2dmm40000gn/T/rust_mozprofileG4htKN/search.json.mozlz4", (void 0)))
DevTools listening on ws://127.0.0.1:54368/devtools/browser/0dbdaafb-151a-4ec5-9a26-0a9a495a8fbd
1667300193867 Marionette INFO Stopped listening on port 54375
1667300204369 geckodriver INFO Listening on 127.0.0.1:54426
1667300204789 mozrunner::runner INFO Running command: "/Applications/Firefox.app/Contents/MacOS/firefox-bin" "--marionette" "--remote-debugging-port" "54427" "--remote-allow-hosts" "localhost" "-foreground" "-no-remote" "-profile" "/var/folders/jt/x8hyslhx72l01gmb45h2dmm40000gn/T/rust_mozprofileogQy7e"
1667300205046 Marionette INFO Marionette enabled
2022-11-01 19:56:45.053 plugin-container[47256:4140758] nil host used in call to allowsSpecificHTTPSCertificateForHost
2022-11-01 19:56:45.053 plugin-container[47256:4140758] nil host used in call to allowsAnyHTTPSCertificateForHost:
2022-11-01 19:56:45.056 plugin-container[47256:4140758] nil host used in call to allowsSpecificHTTPSCertificateForHost
2022-11-01 19:56:45.056 plugin-container[47256:4140758] nil host used in call to allowsAnyHTTPSCertificateForHost:
2022-11-01 19:56:45.057 plugin-container[47256:4140783] nil host used in call to allowsSpecificHTTPSCertificateForHost
2022-11-01 19:56:45.057 plugin-container[47256:4140783] nil host used in call to allowsAnyHTTPSCertificateForHost:
1667300205064 Marionette INFO Listening on port 54454
Read port: 54454
WebDriver BiDi listening on ws://127.0.0.1:54427
1667300205293 RemoteAgent WARN TLS certificate errors will be ignored for this session
UNSUPPORTED (log once): POSSIBLE ISSUE: unit 1 GLD_TEXTURE_INDEX_2D is unloadable and bound to sampler type (Float) - using zero texture because texture unloadable
console.warn: SearchSettings: "get: No settings file exists, new profile?" (new NotFoundError("Could not open the file at /var/folders/jt/x8hyslhx72l01gmb45h2dmm40000gn/T/rust_mozprofileogQy7e/search.json.mozlz4", (void 0)))
DevTools listening on ws://127.0.0.1:54427/devtools/browser/ae7fba17-60d4-4633-80f8-2753ef665f29
1667300208252 Marionette INFO Stopped listening on port 54454
1667300279718 geckodriver INFO Listening on 127.0.0.1:54567
1667300280143 mozrunner::runner INFO Running command: "/Applications/Firefox.app/Contents/MacOS/firefox-bin" "--marionette" "--remote-debugging-port" "54568" "--remote-allow-hosts" "localhost" "-foreground" "-no-remote" "-profile" "/var/folders/jt/x8hyslhx72l01gmb45h2dmm40000gn/T/rust_mozprofile7twLI5"
1667300280401 Marionette INFO Marionette enabled
2022-11-01 19:58:00.403 plugin-container[47625:4143591] nil host used in call to allowsSpecificHTTPSCertificateForHost
2022-11-01 19:58:00.403 plugin-container[47625:4143591] nil host used in call to allowsAnyHTTPSCertificateForHost:
2022-11-01 19:58:00.404 plugin-container[47625:4143591] nil host used in call to allowsSpecificHTTPSCertificateForHost
2022-11-01 19:58:00.404 plugin-container[47625:4143591] nil host used in call to allowsAnyHTTPSCertificateForHost:
2022-11-01 19:58:00.405 plugin-container[47625:4143589] nil host used in call to allowsSpecificHTTPSCertificateForHost
2022-11-01 19:58:00.405 plugin-container[47625:4143589] nil host used in call to allowsAnyHTTPSCertificateForHost:
1667300280420 Marionette INFO Listening on port 54578
Read port: 54578
WebDriver BiDi listening on ws://127.0.0.1:54568
1667300280547 RemoteAgent WARN TLS certificate errors will be ignored for this session
UNSUPPORTED (log once): POSSIBLE ISSUE: unit 1 GLD_TEXTURE_INDEX_2D is unloadable and bound to sampler type (Float) - using zero texture because texture unloadable
console.warn: SearchSettings: "get: No settings file exists, new profile?" (new NotFoundError("Could not open the file at /var/folders/jt/x8hyslhx72l01gmb45h2dmm40000gn/T/rust_mozprofile7twLI5/search.json.mozlz4", (void 0)))
DevTools listening on ws://127.0.0.1:54568/devtools/browser/adc5f902-5811-4f01-8d27-98110d708fa0
1667300283510 Marionette INFO Stopped listening on port 54578
1667300608510 geckodriver INFO Listening on 127.0.0.1:55219
1667300608922 mozrunner::runner INFO Running command: "/Applications/Firefox.app/Contents/MacOS/firefox-bin" "--marionette" "--remote-debugging-port" "55220" "--remote-allow-hosts" "localhost" "-foreground" "-no-remote" "-profile" "/var/folders/jt/x8hyslhx72l01gmb45h2dmm40000gn/T/rust_mozprofile6SNaaE"
2022-11-01 20:03:29.175 plugin-container[48520:4150377] nil host used in call to allowsSpecificHTTPSCertificateForHost
2022-11-01 20:03:29.175 plugin-container[48520:4150377] nil host used in call to allowsAnyHTTPSCertificateForHost:
2022-11-01 20:03:29.177 plugin-container[48520:4150377] nil host used in call to allowsSpecificHTTPSCertificateForHost
2022-11-01 20:03:29.177 plugin-container[48520:4150377] nil host used in call to allowsAnyHTTPSCertificateForHost:
2022-11-01 20:03:29.177 plugin-container[48520:4150379] nil host used in call to allowsSpecificHTTPSCertificateForHost
2022-11-01 20:03:29.177 plugin-container[48520:4150379] nil host used in call to allowsAnyHTTPSCertificateForHost:
1667300609178 Marionette INFO Marionette enabled
1667300609196 Marionette INFO Listening on port 55231
Read port: 55231
WebDriver BiDi listening on ws://127.0.0.1:55220
1667300609319 RemoteAgent WARN TLS certificate errors will be ignored for this session
UNSUPPORTED (log once): POSSIBLE ISSUE: unit 1 GLD_TEXTURE_INDEX_2D is unloadable and bound to sampler type (Float) - using zero texture because texture unloadable
console.warn: SearchSettings: "get: No settings file exists, new profile?" (new NotFoundError("Could not open the file at /var/folders/jt/x8hyslhx72l01gmb45h2dmm40000gn/T/rust_mozprofile6SNaaE/search.json.mozlz4", (void 0)))
DevTools listening on ws://127.0.0.1:55220/devtools/browser/5251e6ad-6298-4c5a-8912-969d0322d1cb
1667300798753 geckodriver INFO Listening on 127.0.0.1:56092
1667300799170 mozrunner::runner INFO Running command: "/Applications/Firefox.app/Contents/MacOS/firefox-bin" "--marionette" "--remote-debugging-port" "56093" "--remote-allow-hosts" "localhost" "-foreground" "-no-remote" "-profile" "/var/folders/jt/x8hyslhx72l01gmb45h2dmm40000gn/T/rust_mozprofile7zqyjv"
1667300799421 Marionette INFO Marionette enabled
2022-11-01 20:06:39.439 plugin-container[49566:4157153] nil host used in call to allowsSpecificHTTPSCertificateForHost
2022-11-01 20:06:39.439 plugin-container[49566:4157153] nil host used in call to allowsAnyHTTPSCertificateForHost:
2022-11-01 20:06:39.448 plugin-container[49566:4157153] nil host used in call to allowsSpecificHTTPSCertificateForHost
2022-11-01 20:06:39.448 plugin-container[49566:4157153] nil host used in call to allowsAnyHTTPSCertificateForHost:
2022-11-01 20:06:39.448 plugin-container[49566:4157182] nil host used in call to allowsSpecificHTTPSCertificateForHost
2022-11-01 20:06:39.448 plugin-container[49566:4157182] nil host used in call to allowsAnyHTTPSCertificateForHost:
1667300799599 Marionette INFO Listening on port 56104
WebDriver BiDi listening on ws://127.0.0.1:56093
Read port: 56104
1667300799741 RemoteAgent WARN TLS certificate errors will be ignored for this session
UNSUPPORTED (log once): POSSIBLE ISSUE: unit 1 GLD_TEXTURE_INDEX_2D is unloadable and bound to sampler type (Float) - using zero texture because texture unloadable
console.warn: SearchSettings: "get: No settings file exists, new profile?" (new NotFoundError("Could not open the file at /var/folders/jt/x8hyslhx72l01gmb45h2dmm40000gn/T/rust_mozprofile7zqyjv/search.json.mozlz4", (void 0)))
DevTools listening on ws://127.0.0.1:56093/devtools/browser/5c5eb441-db6a-4023-a513-92cad3d82e03
1667310052128 geckodriver INFO Listening on 127.0.0.1:62600
1667310052562 mozrunner::runner INFO Running command: "/Applications/Firefox.app/Contents/MacOS/firefox-bin" "--marionette" "--remote-debugging-port" "62601" "--remote-allow-hosts" "localhost" "-foreground" "-no-remote" "-profile" "/var/folders/jt/x8hyslhx72l01gmb45h2dmm40000gn/T/rust_mozprofile6TauDP"
1667310052858 Marionette INFO Marionette enabled
1667310052881 Marionette INFO Listening on port 62608
2022-11-01 22:40:52.884 plugin-container[94437:4436426] nil host used in call to allowsSpecificHTTPSCertificateForHost
2022-11-01 22:40:52.884 plugin-container[94437:4436426] nil host used in call to allowsAnyHTTPSCertificateForHost:
2022-11-01 22:40:52.927 plugin-container[94437:4436426] nil host used in call to allowsSpecificHTTPSCertificateForHost
2022-11-01 22:40:52.927 plugin-container[94437:4436426] nil host used in call to allowsAnyHTTPSCertificateForHost:
2022-11-01 22:40:52.928 plugin-container[94437:4436468] nil host used in call to allowsSpecificHTTPSCertificateForHost
2022-11-01 22:40:52.928 plugin-container[94437:4436468] nil host used in call to allowsAnyHTTPSCertificateForHost:
WebDriver BiDi listening on ws://127.0.0.1:62601
Read port: 62608
1667310053070 RemoteAgent WARN TLS certificate errors will be ignored for this session
UNSUPPORTED (log once): POSSIBLE ISSUE: unit 1 GLD_TEXTURE_INDEX_2D is unloadable and bound to sampler type (Float) - using zero texture because texture unloadable
console.warn: SearchSettings: "get: No settings file exists, new profile?" (new NotFoundError("Could not open the file at /var/folders/jt/x8hyslhx72l01gmb45h2dmm40000gn/T/rust_mozprofile6TauDP/search.json.mozlz4", (void 0)))
DevTools listening on ws://127.0.0.1:62601/devtools/browser/b9991858-1458-43fe-89eb-6630d5269367
1667310872897 geckodriver INFO Listening on 127.0.0.1:49856
1667310873325 mozrunner::runner INFO Running command: "/Applications/Firefox.app/Contents/MacOS/firefox-bin" "--marionette" "--remote-debugging-port" "49857" "--remote-allow-hosts" "localhost" "-foreground" "-no-remote" "-profile" "/var/folders/jt/x8hyslhx72l01gmb45h2dmm40000gn/T/rust_mozprofile1yNGjn"
1667310873592 Marionette INFO Marionette enabled
2022-11-01 22:54:33.610 plugin-container[98151:4460573] nil host used in call to allowsSpecificHTTPSCertificateForHost
2022-11-01 22:54:33.610 plugin-container[98151:4460573] nil host used in call to allowsAnyHTTPSCertificateForHost:
1667310873613 Marionette INFO Listening on port 49868
2022-11-01 22:54:33.616 plugin-container[98151:4460573] nil host used in call to allowsSpecificHTTPSCertificateForHost
2022-11-01 22:54:33.616 plugin-container[98151:4460573] nil host used in call to allowsAnyHTTPSCertificateForHost:
2022-11-01 22:54:33.616 plugin-container[98151:4460571] nil host used in call to allowsSpecificHTTPSCertificateForHost
2022-11-01 22:54:33.616 plugin-container[98151:4460571] nil host used in call to allowsAnyHTTPSCertificateForHost:
Read port: 49868
WebDriver BiDi listening on ws://127.0.0.1:49857
1667310873788 RemoteAgent WARN TLS certificate errors will be ignored for this session
UNSUPPORTED (log once): POSSIBLE ISSUE: unit 1 GLD_TEXTURE_INDEX_2D is unloadable and bound to sampler type (Float) - using zero texture because texture unloadable
console.warn: SearchSettings: "get: No settings file exists, new profile?" (new NotFoundError("Could not open the file at /var/folders/jt/x8hyslhx72l01gmb45h2dmm40000gn/T/rust_mozprofile1yNGjn/search.json.mozlz4", (void 0)))
DevTools listening on ws://127.0.0.1:49857/devtools/browser/d9644836-3da9-4e1d-943c-c261e1f1cd42
1667310891045 Marionette INFO Stopped listening on port 49868
1667310892165 Marionette INFO Stopped listening on port 62608
console.warn: TopSitesFeed: Failed to fetch data from Contile server: NetworkError when attempting to fetch resource.
1667310893557 Marionette INFO Stopped listening on port 56104
1667310894545 Marionette INFO Stopped listening on port 55231
console.warn: TopSitesFeed: Failed to fetch data from Contile server: NetworkError when attempting to fetch resource.
1667311178932 geckodriver INFO Listening on 127.0.0.1:51336
1667311179373 mozrunner::runner INFO Running command: "/Applications/Firefox.app/Contents/MacOS/firefox-bin" "--marionette" "--remote-debugging-port" "51337" "--remote-allow-hosts" "localhost" "-foreground" "-no-remote" "-profile" "/var/folders/jt/x8hyslhx72l01gmb45h2dmm40000gn/T/rust_mozprofileQIhEB7"
1667311179626 Marionette INFO Marionette enabled
2022-11-01 22:59:39.630 plugin-container[99354:4469089] nil host used in call to allowsSpecificHTTPSCertificateForHost
2022-11-01 22:59:39.631 plugin-container[99354:4469089] nil host used in call to allowsAnyHTTPSCertificateForHost:
2022-11-01 22:59:39.644 plugin-container[99354:4469089] nil host used in call to allowsSpecificHTTPSCertificateForHost
2022-11-01 22:59:39.644 plugin-container[99354:4469089] nil host used in call to allowsAnyHTTPSCertificateForHost:
2022-11-01 22:59:39.644 plugin-container[99354:4469091] nil host used in call to allowsSpecificHTTPSCertificateForHost
2022-11-01 22:59:39.644 plugin-container[99354:4469091] nil host used in call to allowsAnyHTTPSCertificateForHost:
1667311179647 Marionette INFO Listening on port 51345
Read port: 51345
WebDriver BiDi listening on ws://127.0.0.1:51337
1667311179842 RemoteAgent WARN TLS certificate errors will be ignored for this session
UNSUPPORTED (log once): POSSIBLE ISSUE: unit 1 GLD_TEXTURE_INDEX_2D is unloadable and bound to sampler type (Float) - using zero texture because texture unloadable
console.warn: SearchSettings: "get: No settings file exists, new profile?" (new NotFoundError("Could not open the file at /var/folders/jt/x8hyslhx72l01gmb45h2dmm40000gn/T/rust_mozprofileQIhEB7/search.json.mozlz4", (void 0)))
DevTools listening on ws://127.0.0.1:51337/devtools/browser/88874812-6b72-436c-9851-985125de7693
1667311357843 geckodriver INFO Listening on 127.0.0.1:52418
1667311358267 mozrunner::runner INFO Running command: "/Applications/Firefox.app/Contents/MacOS/firefox-bin" "--marionette" "--remote-debugging-port" "52419" "--remote-allow-hosts" "localhost" "-foreground" "-no-remote" "-profile" "/var/folders/jt/x8hyslhx72l01gmb45h2dmm40000gn/T/rust_mozprofileMQzv8p"
2022-11-01 23:02:38.524 plugin-container[491:4476014] nil host used in call to allowsSpecificHTTPSCertificateForHost
2022-11-01 23:02:38.524 plugin-container[491:4476014] nil host used in call to allowsAnyHTTPSCertificateForHost:
1667311358527 Marionette INFO Marionette enabled
2022-11-01 23:02:38.545 plugin-container[491:4476014] nil host used in call to allowsSpecificHTTPSCertificateForHost
2022-11-01 23:02:38.545 plugin-container[491:4476014] nil host used in call to allowsAnyHTTPSCertificateForHost:
2022-11-01 23:02:38.545 plugin-container[491:4476043] nil host used in call to allowsSpecificHTTPSCertificateForHost
2022-11-01 23:02:38.545 plugin-container[491:4476043] nil host used in call to allowsAnyHTTPSCertificateForHost:
1667311358545 Marionette INFO Listening on port 52431
Read port: 52431
WebDriver BiDi listening on ws://127.0.0.1:52419
1667311358761 RemoteAgent WARN TLS certificate errors will be ignored for this session
UNSUPPORTED (log once): POSSIBLE ISSUE: unit 1 GLD_TEXTURE_INDEX_2D is unloadable and bound to sampler type (Float) - using zero texture because texture unloadable
console.warn: SearchSettings: "get: No settings file exists, new profile?" (new NotFoundError("Could not open the file at /var/folders/jt/x8hyslhx72l01gmb45h2dmm40000gn/T/rust_mozprofileMQzv8p/search.json.mozlz4", (void 0)))
DevTools listening on ws://127.0.0.1:52419/devtools/browser/0442f26d-97e8-436a-b1fc-296d63315865
console.error: (new TypeError("topBrowsingContext is null", "resource://devtools/server/actors/watcher/browsing-context-helpers.sys.mjs", 387))
1667311380458 Marionette INFO Stopped listening on port 52431
1667311381716 Marionette INFO Stopped listening on port 51345
console.warn: TopSitesFeed: Failed to fetch data from Contile server: NetworkError when attempting to fetch resource.
1667311663904 geckodriver INFO Listening on 127.0.0.1:54183
1667311664335 mozrunner::runner INFO Running command: "/Applications/Firefox.app/Contents/MacOS/firefox-bin" "--marionette" "--remote-debugging-port" "54184" "--remote-allow-hosts" "localhost" "-foreground" "-no-remote" "-profile" "/var/folders/jt/x8hyslhx72l01gmb45h2dmm40000gn/T/rust_mozprofileNZxtCP"
1667311664596 Marionette INFO Marionette enabled
1667311664614 Marionette INFO Listening on port 54195
2022-11-01 23:07:44.616 plugin-container[2601:4490283] nil host used in call to allowsSpecificHTTPSCertificateForHost
2022-11-01 23:07:44.616 plugin-container[2601:4490283] nil host used in call to allowsAnyHTTPSCertificateForHost:
2022-11-01 23:07:44.618 plugin-container[2601:4490283] nil host used in call to allowsSpecificHTTPSCertificateForHost
2022-11-01 23:07:44.618 plugin-container[2601:4490283] nil host used in call to allowsAnyHTTPSCertificateForHost:
2022-11-01 23:07:44.618 plugin-container[2601:4490281] nil host used in call to allowsSpecificHTTPSCertificateForHost
2022-11-01 23:07:44.618 plugin-container[2601:4490281] nil host used in call to allowsAnyHTTPSCertificateForHost:
Read port: 54195
WebDriver BiDi listening on ws://127.0.0.1:54184
1667311664818 RemoteAgent WARN TLS certificate errors will be ignored for this session
UNSUPPORTED (log once): POSSIBLE ISSUE: unit 1 GLD_TEXTURE_INDEX_2D is unloadable and bound to sampler type (Float) - using zero texture because texture unloadable
console.warn: SearchSettings: "get: No settings file exists, new profile?" (new NotFoundError("Could not open the file at /var/folders/jt/x8hyslhx72l01gmb45h2dmm40000gn/T/rust_mozprofileNZxtCP/search.json.mozlz4", (void 0)))
DevTools listening on ws://127.0.0.1:54184/devtools/browser/3326b2a1-c186-4e0e-895b-290a688525cc
1667311717230 Marionette INFO Stopped listening on port 54195
1667311807043 geckodriver INFO Listening on 127.0.0.1:55062
1667311807474 mozrunner::runner INFO Running command: "/Applications/Firefox.app/Contents/MacOS/firefox-bin" "--marionette" "--remote-debugging-port" "55063" "--remote-allow-hosts" "localhost" "-foreground" "-no-remote" "-profile" "/var/folders/jt/x8hyslhx72l01gmb45h2dmm40000gn/T/rust_mozprofileICJshF"
1667311807765 Marionette INFO Marionette enabled
2022-11-01 23:10:07.776 plugin-container[5752:4502932] nil host used in call to allowsSpecificHTTPSCertificateForHost
2022-11-01 23:10:07.776 plugin-container[5752:4502932] nil host used in call to allowsAnyHTTPSCertificateForHost:
1667311807790 Marionette INFO Listening on port 55074
Read port: 55074
2022-11-01 23:10:07.822 plugin-container[5752:4502932] nil host used in call to allowsSpecificHTTPSCertificateForHost
2022-11-01 23:10:07.822 plugin-container[5752:4502932] nil host used in call to allowsAnyHTTPSCertificateForHost:
2022-11-01 23:10:07.822 plugin-container[5752:4502934] nil host used in call to allowsSpecificHTTPSCertificateForHost
2022-11-01 23:10:07.822 plugin-container[5752:4502934] nil host used in call to allowsAnyHTTPSCertificateForHost:
WebDriver BiDi listening on ws://127.0.0.1:55063
1667311807988 RemoteAgent WARN TLS certificate errors will be ignored for this session
UNSUPPORTED (log once): POSSIBLE ISSUE: unit 1 GLD_TEXTURE_INDEX_2D is unloadable and bound to sampler type (Float) - using zero texture because texture unloadable
console.warn: SearchSettings: "get: No settings file exists, new profile?" (new NotFoundError("Could not open the file at /var/folders/jt/x8hyslhx72l01gmb45h2dmm40000gn/T/rust_mozprofileICJshF/search.json.mozlz4", (void 0)))
DevTools listening on ws://127.0.0.1:55063/devtools/browser/b7cd2f82-fffc-499e-acf6-4caabe654fba
1667311827701 Marionette INFO Stopped listening on port 55074
1667311854698 geckodriver INFO Listening on 127.0.0.1:55497
1667311855150 mozrunner::runner INFO Running command: "/Applications/Firefox.app/Contents/MacOS/firefox-bin" "--marionette" "--remote-debugging-port" "55498" "--remote-allow-hosts" "localhost" "-foreground" "-no-remote" "-profile" "/var/folders/jt/x8hyslhx72l01gmb45h2dmm40000gn/T/rust_mozprofile5AvDI3"
2022-11-01 23:10:55.385 plugin-container[6642:4506862] nil host used in call to allowsSpecificHTTPSCertificateForHost
2022-11-01 23:10:55.386 plugin-container[6642:4506862] nil host used in call to allowsAnyHTTPSCertificateForHost:
2022-11-01 23:10:55.388 plugin-container[6642:4506862] nil host used in call to allowsSpecificHTTPSCertificateForHost
2022-11-01 23:10:55.388 plugin-container[6642:4506862] nil host used in call to allowsAnyHTTPSCertificateForHost:
2022-11-01 23:10:55.389 plugin-container[6642:4506868] nil host used in call to allowsSpecificHTTPSCertificateForHost
2022-11-01 23:10:55.389 plugin-container[6642:4506868] nil host used in call to allowsAnyHTTPSCertificateForHost:
1667311855389 Marionette INFO Marionette enabled
1667311855408 Marionette INFO Listening on port 55510
WebDriver BiDi listening on ws://127.0.0.1:55498
Read port: 55510
1667311855588 RemoteAgent WARN TLS certificate errors will be ignored for this session
UNSUPPORTED (log once): POSSIBLE ISSUE: unit 1 GLD_TEXTURE_INDEX_2D is unloadable and bound to sampler type (Float) - using zero texture because texture unloadable
console.warn: SearchSettings: "get: No settings file exists, new profile?" (new NotFoundError("Could not open the file at /var/folders/jt/x8hyslhx72l01gmb45h2dmm40000gn/T/rust_mozprofile5AvDI3/search.json.mozlz4", (void 0)))
DevTools listening on ws://127.0.0.1:55498/devtools/browser/e90ed908-2853-4f63-a948-680af7e08952
1667311929726 geckodriver INFO Listening on 127.0.0.1:56254
1667311930151 mozrunner::runner INFO Running command: "/Applications/Firefox.app/Contents/MacOS/firefox-bin" "--marionette" "--remote-debugging-port" "56255" "--remote-allow-hosts" "localhost" "-foreground" "-no-remote" "-profile" "/var/folders/jt/x8hyslhx72l01gmb45h2dmm40000gn/T/rust_mozprofile8bCkag"
1667311930406 Marionette INFO Marionette enabled
1667311930424 Marionette INFO Listening on port 56263
2022-11-01 23:12:10.426 plugin-container[7156:4511153] nil host used in call to allowsSpecificHTTPSCertificateForHost
2022-11-01 23:12:10.426 plugin-container[7156:4511153] nil host used in call to allowsAnyHTTPSCertificateForHost:
2022-11-01 23:12:10.428 plugin-container[7156:4511153] nil host used in call to allowsSpecificHTTPSCertificateForHost
2022-11-01 23:12:10.428 plugin-container[7156:4511153] nil host used in call to allowsAnyHTTPSCertificateForHost:
2022-11-01 23:12:10.428 plugin-container[7156:4511151] nil host used in call to allowsSpecificHTTPSCertificateForHost
2022-11-01 23:12:10.428 plugin-container[7156:4511151] nil host used in call to allowsAnyHTTPSCertificateForHost:
WebDriver BiDi listening on ws://127.0.0.1:56255
Read port: 56263
1667311930587 RemoteAgent WARN TLS certificate errors will be ignored for this session
UNSUPPORTED (log once): POSSIBLE ISSUE: unit 1 GLD_TEXTURE_INDEX_2D is unloadable and bound to sampler type (Float) - using zero texture because texture unloadable
console.warn: SearchSettings: "get: No settings file exists, new profile?" (new NotFoundError("Could not open the file at /var/folders/jt/x8hyslhx72l01gmb45h2dmm40000gn/T/rust_mozprofile8bCkag/search.json.mozlz4", (void 0)))
DevTools listening on ws://127.0.0.1:56255/devtools/browser/5ba82190-017b-403e-880e-b0b406c5fc77
JavaScript error: , line 0: NotFoundError: No such JSWindowActor 'DevToolsFrame'
1667312108003 Marionette INFO Stopped listening on port 56263
console.warn: TopSitesFeed: Failed to fetch data from Contile server: NetworkError when attempting to fetch resource.
1667312109042 Marionette INFO Stopped listening on port 55510
console.warn: TopSitesFeed: Failed to fetch data from Contile server: NetworkError when attempting to fetch resource.
1667312220159 geckodriver INFO Listening on 127.0.0.1:57205
1667312220589 mozrunner::runner INFO Running command: "/Applications/Firefox.app/Contents/MacOS/firefox-bin" "--marionette" "--remote-debugging-port" "57206" "--remote-allow-hosts" "localhost" "-foreground" "-no-remote" "-profile" "/var/folders/jt/x8hyslhx72l01gmb45h2dmm40000gn/T/rust_mozprofileVGH9fV"
2022-11-01 23:17:02.905 plugin-container[9442:4525083] nil host used in call to allowsSpecificHTTPSCertificateForHost
2022-11-01 23:17:02.905 plugin-container[9442:4525083] nil host used in call to allowsAnyHTTPSCertificateForHost:
1667312222919 geckodriver INFO Listening on 127.0.0.1:57217
2022-11-01 23:17:03.005 plugin-container[9442:4525083] nil host used in call to allowsSpecificHTTPSCertificateForHost
2022-11-01 23:17:03.005 plugin-container[9442:4525083] nil host used in call to allowsAnyHTTPSCertificateForHost:
2022-11-01 23:17:03.005 plugin-container[9442:4525090] nil host used in call to allowsSpecificHTTPSCertificateForHost
2022-11-01 23:17:03.005 plugin-container[9442:4525090] nil host used in call to allowsAnyHTTPSCertificateForHost:
WebDriver BiDi listening on ws://127.0.0.1:57206
1667312223374 mozrunner::runner INFO Running command: "/Applications/Firefox.app/Contents/MacOS/firefox-bin" "--marionette" "--remote-debugging-port" "57218" "--remote-allow-hosts" "localhost" "-foreground" "-no-remote" "-profile" "/var/folders/jt/x8hyslhx72l01gmb45h2dmm40000gn/T/rust_mozprofileyHfIbR"
UNSUPPORTED (log once): POSSIBLE ISSUE: unit 1 GLD_TEXTURE_INDEX_2D is unloadable and bound to sampler type (Float) - using zero texture because texture unloadable
2022-11-01 23:17:03.660 plugin-container[9447:4525346] nil host used in call to allowsSpecificHTTPSCertificateForHost
2022-11-01 23:17:03.661 plugin-container[9447:4525346] nil host used in call to allowsAnyHTTPSCertificateForHost:
1667312223668 Marionette INFO Marionette enabled
2022-11-01 23:17:03.672 plugin-container[9447:4525346] nil host used in call to allowsSpecificHTTPSCertificateForHost
2022-11-01 23:17:03.672 plugin-container[9447:4525346] nil host used in call to allowsAnyHTTPSCertificateForHost:
2022-11-01 23:17:03.673 plugin-container[9447:4525352] nil host used in call to allowsSpecificHTTPSCertificateForHost
2022-11-01 23:17:03.673 plugin-container[9447:4525352] nil host used in call to allowsAnyHTTPSCertificateForHost:
1667312223684 Marionette INFO Listening on port 57229
Read port: 57229
WebDriver BiDi listening on ws://127.0.0.1:57218
DevTools listening on ws://127.0.0.1:57206/devtools/browser/6ff8a371-ef9c-48a5-92a4-9de84839f651
1667312223894 RemoteAgent WARN TLS certificate errors will be ignored for this session
UNSUPPORTED (log once): POSSIBLE ISSUE: unit 1 GLD_TEXTURE_INDEX_2D is unloadable and bound to sampler type (Float) - using zero texture because texture unloadable
console.warn: SearchSettings: "get: No settings file exists, new profile?" (new NotFoundError("Could not open the file at /var/folders/jt/x8hyslhx72l01gmb45h2dmm40000gn/T/rust_mozprofileyHfIbR/search.json.mozlz4", (void 0)))
DevTools listening on ws://127.0.0.1:57218/devtools/browser/ae9eb465-bc4d-407a-8688-53c39d056b8e
1667312245985 geckodriver INFO Listening on 127.0.0.1:57796
1667312246433 mozrunner::runner INFO Running command: "/Applications/Firefox.app/Contents/MacOS/firefox-bin" "--marionette" "--remote-debugging-port" "57797" "--remote-allow-hosts" "localhost" "-foreground" "-no-remote" "-profile" "/var/folders/jt/x8hyslhx72l01gmb45h2dmm40000gn/T/rust_mozprofileTZyLH2"
2022-11-01 23:17:26.694 plugin-container[9617:4526947] nil host used in call to allowsSpecificHTTPSCertificateForHost
2022-11-01 23:17:26.694 plugin-container[9617:4526947] nil host used in call to allowsAnyHTTPSCertificateForHost:
2022-11-01 23:17:26.696 plugin-container[9617:4526947] nil host used in call to allowsSpecificHTTPSCertificateForHost
2022-11-01 23:17:26.696 plugin-container[9617:4526947] nil host used in call to allowsAnyHTTPSCertificateForHost:
2022-11-01 23:17:26.696 plugin-container[9617:4526973] nil host used in call to allowsSpecificHTTPSCertificateForHost
2022-11-01 23:17:26.696 plugin-container[9617:4526973] nil host used in call to allowsAnyHTTPSCertificateForHost:
1667312246704 Marionette INFO Marionette enabled
1667312246727 Marionette INFO Listening on port 57817
Read port: 57817
WebDriver BiDi listening on ws://127.0.0.1:57797
1667312246843 RemoteAgent WARN TLS certificate errors will be ignored for this session
UNSUPPORTED (log once): POSSIBLE ISSUE: unit 1 GLD_TEXTURE_INDEX_2D is unloadable and bound to sampler type (Float) - using zero texture because texture unloadable
console.warn: SearchSettings: "get: No settings file exists, new profile?" (new NotFoundError("Could not open the file at /var/folders/jt/x8hyslhx72l01gmb45h2dmm40000gn/T/rust_mozprofileTZyLH2/search.json.mozlz4", (void 0)))
DevTools listening on ws://127.0.0.1:57797/devtools/browser/86ca1d98-f8a5-41d2-9817-8ff69c321f4c
1667312375046 geckodriver INFO Listening on 127.0.0.1:58234
1667312375481 mozrunner::runner INFO Running command: "/Applications/Firefox.app/Contents/MacOS/firefox-bin" "--marionette" "--remote-debugging-port" "58235" "--remote-allow-hosts" "localhost" "-foreground" "-no-remote" "-profile" "/var/folders/jt/x8hyslhx72l01gmb45h2dmm40000gn/T/rust_mozprofileLXdWSj"
2022-11-01 23:19:35.760 plugin-container[9969:4530033] nil host used in call to allowsSpecificHTTPSCertificateForHost
2022-11-01 23:19:35.760 plugin-container[9969:4530033] nil host used in call to allowsAnyHTTPSCertificateForHost:
2022-11-01 23:19:35.762 plugin-container[9969:4530033] nil host used in call to allowsSpecificHTTPSCertificateForHost
2022-11-01 23:19:35.762 plugin-container[9969:4530033] nil host used in call to allowsAnyHTTPSCertificateForHost:
2022-11-01 23:19:35.762 plugin-container[9969:4530031] nil host used in call to allowsSpecificHTTPSCertificateForHost
2022-11-01 23:19:35.762 plugin-container[9969:4530031] nil host used in call to allowsAnyHTTPSCertificateForHost:
1667312375768 Marionette INFO Marionette enabled
1667312375944 Marionette INFO Listening on port 58242
WebDriver BiDi listening on ws://127.0.0.1:58235
Read port: 58242
1667312376087 RemoteAgent WARN TLS certificate errors will be ignored for this session
UNSUPPORTED (log once): POSSIBLE ISSUE: unit 1 GLD_TEXTURE_INDEX_2D is unloadable and bound to sampler type (Float) - using zero texture because texture unloadable
console.warn: SearchSettings: "get: No settings file exists, new profile?" (new NotFoundError("Could not open the file at /var/folders/jt/x8hyslhx72l01gmb45h2dmm40000gn/T/rust_mozprofileLXdWSj/search.json.mozlz4", (void 0)))
DevTools listening on ws://127.0.0.1:58235/devtools/browser/6e93a7c4-63b7-4b91-bcbb-590eb4b03d37
1667312399312 Marionette INFO Stopped listening on port 57817
console.warn: TopSitesFeed: Failed to fetch data from Contile server: NetworkError when attempting to fetch resource.
1667312399783 Marionette INFO Stopped listening on port 57229
console.warn: TopSitesFeed: Failed to fetch data from Contile server: NetworkError when attempting to fetch resource.
[2022-11-01T14:20:00Z ERROR viaduct::backend::ffi] Missing HTTP status
[2022-11-01T14:20:00Z ERROR viaduct::backend::ffi] Missing HTTP status
[2022-11-01T14:20:00Z ERROR viaduct::backend::ffi] Missing HTTP status
1667312401182 Marionette INFO Stopped listening on port 58242
1667356066501 geckodriver INFO Listening on 127.0.0.1:49462
1667356066924 mozrunner::runner INFO Running command: "/Applications/Firefox.app/Contents/MacOS/firefox-bin" "--marionette" "--remote-debugging-port" "49463" "--remote-allow-hosts" "localhost" "-foreground" "-no-remote" "-profile" "/var/folders/jt/x8hyslhx72l01gmb45h2dmm40000gn/T/rust_mozprofileijqIS4"
1667356067254 Marionette INFO Marionette enabled
2022-11-02 11:27:47.274 plugin-container[84716:5040519] nil host used in call to allowsSpecificHTTPSCertificateForHost
2022-11-02 11:27:47.274 plugin-container[84716:5040519] nil host used in call to allowsAnyHTTPSCertificateForHost:
1667356067286 Marionette INFO Listening on port 49470
2022-11-02 11:27:47.317 plugin-container[84716:5040519] nil host used in call to allowsSpecificHTTPSCertificateForHost
2022-11-02 11:27:47.317 plugin-container[84716:5040519] nil host used in call to allowsAnyHTTPSCertificateForHost:
2022-11-02 11:27:47.317 plugin-container[84716:5040542] nil host used in call to allowsSpecificHTTPSCertificateForHost
2022-11-02 11:27:47.317 plugin-container[84716:5040542] nil host used in call to allowsAnyHTTPSCertificateForHost:
Read port: 49470
WebDriver BiDi listening on ws://127.0.0.1:49463
1667356067482 RemoteAgent WARN TLS certificate errors will be ignored for this session
UNSUPPORTED (log once): POSSIBLE ISSUE: unit 1 GLD_TEXTURE_INDEX_2D is unloadable and bound to sampler type (Float) - using zero texture because texture unloadable
console.warn: SearchSettings: "get: No settings file exists, new profile?" (new NotFoundError("Could not open the file at /var/folders/jt/x8hyslhx72l01gmb45h2dmm40000gn/T/rust_mozprofileijqIS4/search.json.mozlz4", (void 0)))
DevTools listening on ws://127.0.0.1:49463/devtools/browser/7b31cb7e-5d49-49f6-8173-5d42903b8d2d
1667356276415 geckodriver INFO Listening on 127.0.0.1:49788
1667356276845 mozrunner::runner INFO Running command: "/Applications/Firefox.app/Contents/MacOS/firefox-bin" "--marionette" "--remote-debugging-port" "49789" "--remote-allow-hosts" "localhost" "-foreground" "-no-remote" "-profile" "/var/folders/jt/x8hyslhx72l01gmb45h2dmm40000gn/T/rust_mozprofileKoCZF3"
2022-11-02 11:31:17.098 plugin-container[85120:5043934] nil host used in call to allowsSpecificHTTPSCertificateForHost
2022-11-02 11:31:17.099 plugin-container[85120:5043934] nil host used in call to allowsAnyHTTPSCertificateForHost:
1667356277107 Marionette INFO Marionette enabled
2022-11-02 11:31:17.127 plugin-container[85120:5043934] nil host used in call to allowsSpecificHTTPSCertificateForHost
2022-11-02 11:31:17.127 plugin-container[85120:5043934] nil host used in call to allowsAnyHTTPSCertificateForHost:
2022-11-02 11:31:17.127 plugin-container[85120:5043932] nil host used in call to allowsSpecificHTTPSCertificateForHost
2022-11-02 11:31:17.127 plugin-container[85120:5043932] nil host used in call to allowsAnyHTTPSCertificateForHost:
1667356277280 Marionette INFO Listening on port 49797
WebDriver BiDi listening on ws://127.0.0.1:49789
Read port: 49797
1667356277437 RemoteAgent WARN TLS certificate errors will be ignored for this session
UNSUPPORTED (log once): POSSIBLE ISSUE: unit 1 GLD_TEXTURE_INDEX_2D is unloadable and bound to sampler type (Float) - using zero texture because texture unloadable
console.warn: SearchSettings: "get: No settings file exists, new profile?" (new NotFoundError("Could not open the file at /var/folders/jt/x8hyslhx72l01gmb45h2dmm40000gn/T/rust_mozprofileKoCZF3/search.json.mozlz4", (void 0)))
DevTools listening on ws://127.0.0.1:49789/devtools/browser/c7c8044e-043e-4ece-8cb5-ab8f29ccd2fd
1667356300702 Marionette INFO Stopped listening on port 49797
1667356494070 geckodriver INFO Listening on 127.0.0.1:50305
1667356494498 mozrunner::runner INFO Running command: "/Applications/Firefox.app/Contents/MacOS/firefox-bin" "--marionette" "--remote-debugging-port" "50306" "--remote-allow-hosts" "localhost" "-foreground" "-no-remote" "-profile" "/var/folders/jt/x8hyslhx72l01gmb45h2dmm40000gn/T/rust_mozprofilerAFXyU"
2022-11-02 11:34:54.750 plugin-container[85492:5048015] nil host used in call to allowsSpecificHTTPSCertificateForHost
2022-11-02 11:34:54.750 plugin-container[85492:5048015] nil host used in call to allowsAnyHTTPSCertificateForHost:
1667356494758 Marionette INFO Marionette enabled
2022-11-02 11:34:54.775 plugin-container[85492:5048015] nil host used in call to allowsSpecificHTTPSCertificateForHost
2022-11-02 11:34:54.775 plugin-container[85492:5048015] nil host used in call to allowsAnyHTTPSCertificateForHost:
2022-11-02 11:34:54.775 plugin-container[85492:5048023] nil host used in call to allowsSpecificHTTPSCertificateForHost
2022-11-02 11:34:54.775 plugin-container[85492:5048023] nil host used in call to allowsAnyHTTPSCertificateForHost:
1667356494930 Marionette INFO Listening on port 50313
WebDriver BiDi listening on ws://127.0.0.1:50306
Read port: 50313
1667356495087 RemoteAgent WARN TLS certificate errors will be ignored for this session
UNSUPPORTED (log once): POSSIBLE ISSUE: unit 1 GLD_TEXTURE_INDEX_2D is unloadable and bound to sampler type (Float) - using zero texture because texture unloadable
console.warn: SearchSettings: "get: No settings file exists, new profile?" (new NotFoundError("Could not open the file at /var/folders/jt/x8hyslhx72l01gmb45h2dmm40000gn/T/rust_mozprofilerAFXyU/search.json.mozlz4", (void 0)))
DevTools listening on ws://127.0.0.1:50306/devtools/browser/3923bd8e-2ca0-4eb1-8768-9bb29117ec17
1667356503128 Marionette INFO Stopped listening on port 50313
1667356639352 geckodriver INFO Listening on 127.0.0.1:50542
1667356639797 mozrunner::runner INFO Running command: "/Applications/Firefox.app/Contents/MacOS/firefox-bin" "--marionette" "--remote-debugging-port" "50543" "--remote-allow-hosts" "localhost" "-foreground" "-no-remote" "-profile" "/var/folders/jt/x8hyslhx72l01gmb45h2dmm40000gn/T/rust_mozprofilel4m5rZ"
2022-11-02 11:37:20.057 plugin-container[85744:5050632] nil host used in call to allowsSpecificHTTPSCertificateForHost
2022-11-02 11:37:20.057 plugin-container[85744:5050632] nil host used in call to allowsAnyHTTPSCertificateForHost:
1667356640065 Marionette INFO Marionette enabled
2022-11-02 11:37:20.081 plugin-container[85744:5050632] nil host used in call to allowsSpecificHTTPSCertificateForHost
2022-11-02 11:37:20.081 plugin-container[85744:5050632] nil host used in call to allowsAnyHTTPSCertificateForHost:
2022-11-02 11:37:20.082 plugin-container[85744:5050637] nil host used in call to allowsSpecificHTTPSCertificateForHost
2022-11-02 11:37:20.082 plugin-container[85744:5050637] nil host used in call to allowsAnyHTTPSCertificateForHost:
1667356640239 Marionette INFO Listening on port 50550
WebDriver BiDi listening on ws://127.0.0.1:50543
Read port: 50550
1667356640393 RemoteAgent WARN TLS certificate errors will be ignored for this session
UNSUPPORTED (log once): POSSIBLE ISSUE: unit 1 GLD_TEXTURE_INDEX_2D is unloadable and bound to sampler type (Float) - using zero texture because texture unloadable
console.warn: SearchSettings: "get: No settings file exists, new profile?" (new NotFoundError("Could not open the file at /var/folders/jt/x8hyslhx72l01gmb45h2dmm40000gn/T/rust_mozprofilel4m5rZ/search.json.mozlz4", (void 0)))
DevTools listening on ws://127.0.0.1:50543/devtools/browser/485857ca-d671-4cab-8c96-16557ab56c1c
1667356648934 Marionette INFO Stopped listening on port 50550
1667356681349 geckodriver INFO Listening on 127.0.0.1:50718
1667356681798 mozrunner::runner INFO Running command: "/Applications/Firefox.app/Contents/MacOS/firefox-bin" "--marionette" "--remote-debugging-port" "50719" "--remote-allow-hosts" "localhost" "-foreground" "-no-remote" "-profile" "/var/folders/jt/x8hyslhx72l01gmb45h2dmm40000gn/T/rust_mozprofilewFAgoN"
2022-11-02 11:38:02.044 plugin-container[85859:5051646] nil host used in call to allowsSpecificHTTPSCertificateForHost
2022-11-02 11:38:02.044 plugin-container[85859:5051646] nil host used in call to allowsAnyHTTPSCertificateForHost:
1667356682051 Marionette INFO Marionette enabled
2022-11-02 11:38:02.068 plugin-container[85859:5051646] nil host used in call to allowsSpecificHTTPSCertificateForHost
2022-11-02 11:38:02.068 plugin-container[85859:5051646] nil host used in call to allowsAnyHTTPSCertificateForHost:
2022-11-02 11:38:02.068 plugin-container[85859:5051648] nil host used in call to allowsSpecificHTTPSCertificateForHost
2022-11-02 11:38:02.068 plugin-container[85859:5051648] nil host used in call to allowsAnyHTTPSCertificateForHost:
1667356682072 Marionette INFO Listening on port 50727
Read port: 50727
WebDriver BiDi listening on ws://127.0.0.1:50719
1667356682291 RemoteAgent WARN TLS certificate errors will be ignored for this session
UNSUPPORTED (log once): POSSIBLE ISSUE: unit 1 GLD_TEXTURE_INDEX_2D is unloadable and bound to sampler type (Float) - using zero texture because texture unloadable
console.warn: SearchSettings: "get: No settings file exists, new profile?" (new NotFoundError("Could not open the file at /var/folders/jt/x8hyslhx72l01gmb45h2dmm40000gn/T/rust_mozprofilewFAgoN/search.json.mozlz4", (void 0)))
DevTools listening on ws://127.0.0.1:50719/devtools/browser/9628bebc-5dce-4254-bf81-9e81c859a48f
1667356690040 Marionette INFO Stopped listening on port 50727
1667356783850 geckodriver INFO Listening on 127.0.0.1:50907
1667356784279 mozrunner::runner INFO Running command: "/Applications/Firefox.app/Contents/MacOS/firefox-bin" "--marionette" "--remote-debugging-port" "50908" "--remote-allow-hosts" "localhost" "-foreground" "-no-remote" "-profile" "/var/folders/jt/x8hyslhx72l01gmb45h2dmm40000gn/T/rust_mozprofileVKwgwN"
2022-11-02 11:39:44.526 plugin-container[86037:5053601] nil host used in call to allowsSpecificHTTPSCertificateForHost
2022-11-02 11:39:44.526 plugin-container[86037:5053601] nil host used in call to allowsAnyHTTPSCertificateForHost:
1667356784535 Marionette INFO Marionette enabled
2022-11-02 11:39:44.551 plugin-container[86037:5053601] nil host used in call to allowsSpecificHTTPSCertificateForHost
2022-11-02 11:39:44.551 plugin-container[86037:5053601] nil host used in call to allowsAnyHTTPSCertificateForHost:
2022-11-02 11:39:44.551 plugin-container[86037:5053602] nil host used in call to allowsSpecificHTTPSCertificateForHost
2022-11-02 11:39:44.551 plugin-container[86037:5053602] nil host used in call to allowsAnyHTTPSCertificateForHost:
1667356784708 Marionette INFO Listening on port 50916
WebDriver BiDi listening on ws://127.0.0.1:50908
Read port: 50916
1667356784861 RemoteAgent WARN TLS certificate errors will be ignored for this session
UNSUPPORTED (log once): POSSIBLE ISSUE: unit 1 GLD_TEXTURE_INDEX_2D is unloadable and bound to sampler type (Float) - using zero texture because texture unloadable
console.warn: SearchSettings: "get: No settings file exists, new profile?" (new NotFoundError("Could not open the file at /var/folders/jt/x8hyslhx72l01gmb45h2dmm40000gn/T/rust_mozprofileVKwgwN/search.json.mozlz4", (void 0)))
DevTools listening on ws://127.0.0.1:50908/devtools/browser/cf6af3c4-e6ec-4696-b2d0-df578a85baeb
1667356793234 Marionette INFO Stopped listening on port 50916
1667356850154 geckodriver INFO Listening on 127.0.0.1:51097
1667356850605 mozrunner::runner INFO Running command: "/Applications/Firefox.app/Contents/MacOS/firefox-bin" "--marionette" "--remote-debugging-port" "51098" "--remote-allow-hosts" "localhost" "-foreground" "-no-remote" "-profile" "/var/folders/jt/x8hyslhx72l01gmb45h2dmm40000gn/T/rust_mozprofiley2Wv5U"
2022-11-02 11:40:50.841 plugin-container[86178:5055027] nil host used in call to allowsSpecificHTTPSCertificateForHost
2022-11-02 11:40:50.841 plugin-container[86178:5055027] nil host used in call to allowsAnyHTTPSCertificateForHost:
1667356850850 Marionette INFO Marionette enabled
2022-11-02 11:40:50.866 plugin-container[86178:5055027] nil host used in call to allowsSpecificHTTPSCertificateForHost
2022-11-02 11:40:50.866 plugin-container[86178:5055027] nil host used in call to allowsAnyHTTPSCertificateForHost:
2022-11-02 11:40:50.866 plugin-container[86178:5055030] nil host used in call to allowsSpecificHTTPSCertificateForHost
2022-11-02 11:40:50.866 plugin-container[86178:5055030] nil host used in call to allowsAnyHTTPSCertificateForHost:
1667356851023 Marionette INFO Listening on port 51105
Read port: 51105
WebDriver BiDi listening on ws://127.0.0.1:51098
1667356851077 RemoteAgent WARN TLS certificate errors will be ignored for this session
UNSUPPORTED (log once): POSSIBLE ISSUE: unit 1 GLD_TEXTURE_INDEX_2D is unloadable and bound to sampler type (Float) - using zero texture because texture unloadable
console.warn: SearchSettings: "get: No settings file exists, new profile?" (new NotFoundError("Could not open the file at /var/folders/jt/x8hyslhx72l01gmb45h2dmm40000gn/T/rust_mozprofiley2Wv5U/search.json.mozlz4", (void 0)))
DevTools listening on ws://127.0.0.1:51098/devtools/browser/a0d63be6-b7f0-440d-a223-9183fb3cc742
1667356859035 Marionette INFO Stopped listening on port 51105
1667356921439 geckodriver INFO Listening on 127.0.0.1:51439
1667356921883 mozrunner::runner INFO Running command: "/Applications/Firefox.app/Contents/MacOS/firefox-bin" "--marionette" "--remote-debugging-port" "51440" "--remote-allow-hosts" "localhost" "-foreground" "-no-remote" "-profile" "/var/folders/jt/x8hyslhx72l01gmb45h2dmm40000gn/T/rust_mozprofileTTBBj9"
2022-11-02 11:42:02.137 plugin-container[86351:5057236] nil host used in call to allowsSpecificHTTPSCertificateForHost
2022-11-02 11:42:02.137 plugin-container[86351:5057236] nil host used in call to allowsAnyHTTPSCertificateForHost:
1667356922150 Marionette INFO Marionette enabled
2022-11-02 11:42:02.165 plugin-container[86351:5057236] nil host used in call to allowsSpecificHTTPSCertificateForHost
2022-11-02 11:42:02.165 plugin-container[86351:5057236] nil host used in call to allowsAnyHTTPSCertificateForHost:
2022-11-02 11:42:02.165 plugin-container[86351:5057243] nil host used in call to allowsSpecificHTTPSCertificateForHost
2022-11-02 11:42:02.165 plugin-container[86351:5057243] nil host used in call to allowsAnyHTTPSCertificateForHost:
1667356922167 Marionette INFO Listening on port 51447
Read port: 51447
WebDriver BiDi listening on ws://127.0.0.1:51440
1667356922288 RemoteAgent WARN TLS certificate errors will be ignored for this session
UNSUPPORTED (log once): POSSIBLE ISSUE: unit 1 GLD_TEXTURE_INDEX_2D is unloadable and bound to sampler type (Float) - using zero texture because texture unloadable
console.warn: SearchSettings: "get: No settings file exists, new profile?" (new NotFoundError("Could not open the file at /var/folders/jt/x8hyslhx72l01gmb45h2dmm40000gn/T/rust_mozprofileTTBBj9/search.json.mozlz4", (void 0)))
DevTools listening on ws://127.0.0.1:51440/devtools/browser/70db6ff6-9935-478f-9a1f-ef7a3fda9b29
1667356930804 Marionette INFO Stopped listening on port 51447
console.error: (new TypeError("topBrowsingContext is null", "resource://devtools/server/actors/watcher/browsing-context-helpers.sys.mjs", 387))
1667357073953 geckodriver INFO Listening on 127.0.0.1:51745
1667357074364 mozrunner::runner INFO Running command: "/Applications/Firefox.app/Contents/MacOS/firefox-bin" "--marionette" "--remote-debugging-port" "51746" "--remote-allow-hosts" "localhost" "-foreground" "-no-remote" "-profile" "/var/folders/jt/x8hyslhx72l01gmb45h2dmm40000gn/T/rust_mozprofileL6wbfT"
1667357074642 Marionette INFO Marionette enabled
1667357074664 Marionette INFO Listening on port 51753
2022-11-02 11:44:34.666 plugin-container[86625:5060291] nil host used in call to allowsSpecificHTTPSCertificateForHost
2022-11-02 11:44:34.666 plugin-container[86625:5060291] nil host used in call to allowsAnyHTTPSCertificateForHost:
2022-11-02 11:44:34.671 plugin-container[86625:5060291] nil host used in call to allowsSpecificHTTPSCertificateForHost
2022-11-02 11:44:34.671 plugin-container[86625:5060291] nil host used in call to allowsAnyHTTPSCertificateForHost:
2022-11-02 11:44:34.671 plugin-container[86625:5060287] nil host used in call to allowsSpecificHTTPSCertificateForHost
2022-11-02 11:44:34.671 plugin-container[86625:5060287] nil host used in call to allowsAnyHTTPSCertificateForHost:
Read port: 51753
WebDriver BiDi listening on ws://127.0.0.1:51746
1667357074788 RemoteAgent WARN TLS certificate errors will be ignored for this session
UNSUPPORTED (log once): POSSIBLE ISSUE: unit 1 GLD_TEXTURE_INDEX_2D is unloadable and bound to sampler type (Float) - using zero texture because texture unloadable
console.warn: SearchSettings: "get: No settings file exists, new profile?" (new NotFoundError("Could not open the file at /var/folders/jt/x8hyslhx72l01gmb45h2dmm40000gn/T/rust_mozprofileL6wbfT/search.json.mozlz4", (void 0)))
DevTools listening on ws://127.0.0.1:51746/devtools/browser/8159a82b-3302-4aa5-a3a6-723469fb48d2
1667357084156 Marionette INFO Stopped listening on port 51753
1667357106736 geckodriver INFO Listening on 127.0.0.1:51944
1667357107187 mozrunner::runner INFO Running command: "/Applications/Firefox.app/Contents/MacOS/firefox-bin" "--marionette" "--remote-debugging-port" "51945" "--remote-allow-hosts" "localhost" "-foreground" "-no-remote" "-profile" "/var/folders/jt/x8hyslhx72l01gmb45h2dmm40000gn/T/rust_mozprofile1myeiF"
2022-11-02 11:45:07.430 plugin-container[86708:5061484] nil host used in call to allowsSpecificHTTPSCertificateForHost
2022-11-02 11:45:07.431 plugin-container[86708:5061484] nil host used in call to allowsAnyHTTPSCertificateForHost:
2022-11-02 11:45:07.433 plugin-container[86708:5061484] nil host used in call to allowsSpecificHTTPSCertificateForHost
2022-11-02 11:45:07.433 plugin-container[86708:5061484] nil host used in call to allowsAnyHTTPSCertificateForHost:
2022-11-02 11:45:07.434 plugin-container[86708:5061491] nil host used in call to allowsSpecificHTTPSCertificateForHost
2022-11-02 11:45:07.434 plugin-container[86708:5061491] nil host used in call to allowsAnyHTTPSCertificateForHost:
1667357107437 Marionette INFO Marionette enabled
1667357107457 Marionette INFO Listening on port 51952
Read port: 51952
WebDriver BiDi listening on ws://127.0.0.1:51945
1667357107595 RemoteAgent WARN TLS certificate errors will be ignored for this session
UNSUPPORTED (log once): POSSIBLE ISSUE: unit 1 GLD_TEXTURE_INDEX_2D is unloadable and bound to sampler type (Float) - using zero texture because texture unloadable
console.warn: SearchSettings: "get: No settings file exists, new profile?" (new NotFoundError("Could not open the file at /var/folders/jt/x8hyslhx72l01gmb45h2dmm40000gn/T/rust_mozprofile1myeiF/search.json.mozlz4", (void 0)))
DevTools listening on ws://127.0.0.1:51945/devtools/browser/6b862e59-c90e-4e53-abc2-832b221fc1f8
1667357116838 Marionette INFO Stopped listening on port 51952
1667357190118 geckodriver INFO Listening on 127.0.0.1:52159
1667357190540 mozrunner::runner INFO Running command: "/Applications/Firefox.app/Contents/MacOS/firefox-bin" "--marionette" "--remote-debugging-port" "52160" "--remote-allow-hosts" "localhost" "-foreground" "-no-remote" "-profile" "/var/folders/jt/x8hyslhx72l01gmb45h2dmm40000gn/T/rust_mozprofile29TKJB"
2022-11-02 11:46:30.784 plugin-container[86888:5063404] nil host used in call to allowsSpecificHTTPSCertificateForHost
2022-11-02 11:46:30.785 plugin-container[86888:5063404] nil host used in call to allowsAnyHTTPSCertificateForHost:
2022-11-02 11:46:30.789 plugin-container[86888:5063404] nil host used in call to allowsSpecificHTTPSCertificateForHost
2022-11-02 11:46:30.789 plugin-container[86888:5063404] nil host used in call to allowsAnyHTTPSCertificateForHost:
2022-11-02 11:46:30.790 plugin-container[86888:5063400] nil host used in call to allowsSpecificHTTPSCertificateForHost
2022-11-02 11:46:30.790 plugin-container[86888:5063400] nil host used in call to allowsAnyHTTPSCertificateForHost:
1667357190792 Marionette INFO Marionette enabled
1667357190815 Marionette INFO Listening on port 52167
Read port: 52167
WebDriver BiDi listening on ws://127.0.0.1:52160
1667357190950 RemoteAgent WARN TLS certificate errors will be ignored for this session
UNSUPPORTED (log once): POSSIBLE ISSUE: unit 1 GLD_TEXTURE_INDEX_2D is unloadable and bound to sampler type (Float) - using zero texture because texture unloadable
console.warn: SearchSettings: "get: No settings file exists, new profile?" (new NotFoundError("Could not open the file at /var/folders/jt/x8hyslhx72l01gmb45h2dmm40000gn/T/rust_mozprofile29TKJB/search.json.mozlz4", (void 0)))
DevTools listening on ws://127.0.0.1:52160/devtools/browser/965eb803-b1a5-40ed-9dc0-e41476f141f6
1667357252675 Marionette INFO Stopped listening on port 49470
console.warn: TopSitesFeed: Failed to fetch data from Contile server: NetworkError when attempting to fetch resource.
1667357253544 Marionette INFO Stopped listening on port 52167
1667357330810 geckodriver INFO Listening on 127.0.0.1:52446
1667357331238 mozrunner::runner INFO Running command: "/Applications/Firefox.app/Contents/MacOS/firefox-bin" "--marionette" "--remote-debugging-port" "52447" "--remote-allow-hosts" "localhost" "-foreground" "-no-remote" "-profile" "/var/folders/jt/x8hyslhx72l01gmb45h2dmm40000gn/T/rust_mozprofile1ypXHd"
1667357331520 Marionette INFO Marionette enabled
1667357331544 Marionette INFO Listening on port 52455
2022-11-02 11:48:51.546 plugin-container[87140:5066755] nil host used in call to allowsSpecificHTTPSCertificateForHost
2022-11-02 11:48:51.546 plugin-container[87140:5066755] nil host used in call to allowsAnyHTTPSCertificateForHost:
Read port: 52455
2022-11-02 11:48:51.549 plugin-container[87140:5066755] nil host used in call to allowsSpecificHTTPSCertificateForHost
2022-11-02 11:48:51.549 plugin-container[87140:5066755] nil host used in call to allowsAnyHTTPSCertificateForHost:
2022-11-02 11:48:51.549 plugin-container[87140:5066760] nil host used in call to allowsSpecificHTTPSCertificateForHost
2022-11-02 11:48:51.549 plugin-container[87140:5066760] nil host used in call to allowsAnyHTTPSCertificateForHost:
WebDriver BiDi listening on ws://127.0.0.1:52447
1667357331752 RemoteAgent WARN TLS certificate errors will be ignored for this session
UNSUPPORTED (log once): POSSIBLE ISSUE: unit 1 GLD_TEXTURE_INDEX_2D is unloadable and bound to sampler type (Float) - using zero texture because texture unloadable
console.warn: SearchSettings: "get: No settings file exists, new profile?" (new NotFoundError("Could not open the file at /var/folders/jt/x8hyslhx72l01gmb45h2dmm40000gn/T/rust_mozprofile1ypXHd/search.json.mozlz4", (void 0)))
DevTools listening on ws://127.0.0.1:52447/devtools/browser/f53da4a0-d553-43de-ae46-7737c44989d3
1667357383383 geckodriver INFO Listening on 127.0.0.1:52576
1667357383831 mozrunner::runner INFO Running command: "/Applications/Firefox.app/Contents/MacOS/firefox-bin" "--marionette" "--remote-debugging-port" "52577" "--remote-allow-hosts" "localhost" "-foreground" "-no-remote" "-profile" "/var/folders/jt/x8hyslhx72l01gmb45h2dmm40000gn/T/rust_mozprofilekdimuW"
2022-11-02 11:49:44.087 plugin-container[87257:5067900] nil host used in call to allowsSpecificHTTPSCertificateForHost
2022-11-02 11:49:44.087 plugin-container[87257:5067900] nil host used in call to allowsAnyHTTPSCertificateForHost:
2022-11-02 11:49:44.089 plugin-container[87257:5067900] nil host used in call to allowsSpecificHTTPSCertificateForHost
1667357384089 Marionette INFO Marionette enabled
2022-11-02 11:49:44.089 plugin-container[87257:5067900] nil host used in call to allowsAnyHTTPSCertificateForHost:
2022-11-02 11:49:44.090 plugin-container[87257:5067908] nil host used in call to allowsSpecificHTTPSCertificateForHost
2022-11-02 11:49:44.090 plugin-container[87257:5067908] nil host used in call to allowsAnyHTTPSCertificateForHost:
1667357384109 Marionette INFO Listening on port 52584
Read port: 52584
WebDriver BiDi listening on ws://127.0.0.1:52577
1667357384231 RemoteAgent WARN TLS certificate errors will be ignored for this session
UNSUPPORTED (log once): POSSIBLE ISSUE: unit 1 GLD_TEXTURE_INDEX_2D is unloadable and bound to sampler type (Float) - using zero texture because texture unloadable
console.warn: SearchSettings: "get: No settings file exists, new profile?" (new NotFoundError("Could not open the file at /var/folders/jt/x8hyslhx72l01gmb45h2dmm40000gn/T/rust_mozprofilekdimuW/search.json.mozlz4", (void 0)))
DevTools listening on ws://127.0.0.1:52577/devtools/browser/8bd62eeb-5ad3-4806-980b-fc05b82832ba
1667357410406 Marionette INFO Stopped listening on port 52455
console.warn: TopSitesFeed: Failed to fetch data from Contile server: NetworkError when attempting to fetch resource.
1667357412528 Marionette INFO Stopped listening on port 52584
1667357429141 geckodriver INFO Listening on 127.0.0.1:52714
1667357429591 mozrunner::runner INFO Running command: "/Applications/Firefox.app/Contents/MacOS/firefox-bin" "--marionette" "--remote-debugging-port" "52715" "--remote-allow-hosts" "localhost" "-foreground" "-no-remote" "-profile" "/var/folders/jt/x8hyslhx72l01gmb45h2dmm40000gn/T/rust_mozprofileyDgjZP"
2022-11-02 11:50:29.837 plugin-container[87370:5069057] nil host used in call to allowsSpecificHTTPSCertificateForHost
2022-11-02 11:50:29.837 plugin-container[87370:5069057] nil host used in call to allowsAnyHTTPSCertificateForHost:
1667357429839 Marionette INFO Marionette enabled
2022-11-02 11:50:29.841 plugin-container[87370:5069057] nil host used in call to allowsSpecificHTTPSCertificateForHost
2022-11-02 11:50:29.841 plugin-container[87370:5069057] nil host used in call to allowsAnyHTTPSCertificateForHost:
2022-11-02 11:50:29.841 plugin-container[87370:5069055] nil host used in call to allowsSpecificHTTPSCertificateForHost
2022-11-02 11:50:29.841 plugin-container[87370:5069055] nil host used in call to allowsAnyHTTPSCertificateForHost:
1667357429859 Marionette INFO Listening on port 52725
WebDriver BiDi listening on ws://127.0.0.1:52715
Read port: 52725
1667357430006 RemoteAgent WARN TLS certificate errors will be ignored for this session
UNSUPPORTED (log once): POSSIBLE ISSUE: unit 1 GLD_TEXTURE_INDEX_2D is unloadable and bound to sampler type (Float) - using zero texture because texture unloadable
console.warn: SearchSettings: "get: No settings file exists, new profile?" (new NotFoundError("Could not open the file at /var/folders/jt/x8hyslhx72l01gmb45h2dmm40000gn/T/rust_mozprofileyDgjZP/search.json.mozlz4", (void 0)))
DevTools listening on ws://127.0.0.1:52715/devtools/browser/0308696c-5544-47bb-9735-5677eeb04166
1667357504537 geckodriver INFO Listening on 127.0.0.1:52875
1667357504981 mozrunner::runner INFO Running command: "/Applications/Firefox.app/Contents/MacOS/firefox-bin" "--marionette" "--remote-debugging-port" "52876" "--remote-allow-hosts" "localhost" "-foreground" "-no-remote" "-profile" "/var/folders/jt/x8hyslhx72l01gmb45h2dmm40000gn/T/rust_mozprofileQWaKKe"
2022-11-02 11:51:45.238 plugin-container[87515:5070546] nil host used in call to allowsSpecificHTTPSCertificateForHost
2022-11-02 11:51:45.238 plugin-container[87515:5070546] nil host used in call to allowsAnyHTTPSCertificateForHost:
2022-11-02 11:51:45.240 plugin-container[87515:5070546] nil host used in call to allowsSpecificHTTPSCertificateForHost
2022-11-02 11:51:45.240 plugin-container[87515:5070546] nil host used in call to allowsAnyHTTPSCertificateForHost:
2022-11-02 11:51:45.240 plugin-container[87515:5070551] nil host used in call to allowsSpecificHTTPSCertificateForHost
2022-11-02 11:51:45.240 plugin-container[87515:5070551] nil host used in call to allowsAnyHTTPSCertificateForHost:
1667357505242 Marionette INFO Marionette enabled
1667357505260 Marionette INFO Listening on port 52883
Read port: 52883
WebDriver BiDi listening on ws://127.0.0.1:52876
1667357505460 RemoteAgent WARN TLS certificate errors will be ignored for this session
UNSUPPORTED (log once): POSSIBLE ISSUE: unit 1 GLD_TEXTURE_INDEX_2D is unloadable and bound to sampler type (Float) - using zero texture because texture unloadable
console.warn: SearchSettings: "get: No settings file exists, new profile?" (new NotFoundError("Could not open the file at /var/folders/jt/x8hyslhx72l01gmb45h2dmm40000gn/T/rust_mozprofileQWaKKe/search.json.mozlz4", (void 0)))
DevTools listening on ws://127.0.0.1:52876/devtools/browser/c1817f32-c601-46a0-aa58-9acee3b928b9
1667357517982 Marionette INFO Stopped listening on port 52883
1667357580833 geckodriver INFO Listening on 127.0.0.1:53013
1667357581270 mozrunner::runner INFO Running command: "/Applications/Firefox.app/Contents/MacOS/firefox-bin" "--marionette" "--remote-debugging-port" "53014" "--remote-allow-hosts" "localhost" "-foreground" "-no-remote" "-profile" "/var/folders/jt/x8hyslhx72l01gmb45h2dmm40000gn/T/rust_mozprofileB3e6ad"
2022-11-02 11:53:01.527 plugin-container[87661:5071932] nil host used in call to allowsSpecificHTTPSCertificateForHost
2022-11-02 11:53:01.527 plugin-container[87661:5071932] nil host used in call to allowsAnyHTTPSCertificateForHost:
2022-11-02 11:53:01.529 plugin-container[87661:5071932] nil host used in call to allowsSpecificHTTPSCertificateForHost
2022-11-02 11:53:01.529 plugin-container[87661:5071932] nil host used in call to allowsAnyHTTPSCertificateForHost:
2022-11-02 11:53:01.529 plugin-container[87661:5071956] nil host used in call to allowsSpecificHTTPSCertificateForHost
2022-11-02 11:53:01.529 plugin-container[87661:5071956] nil host used in call to allowsAnyHTTPSCertificateForHost:
1667357581531 Marionette INFO Marionette enabled
1667357581551 Marionette INFO Listening on port 53021
Read port: 53021
WebDriver BiDi listening on ws://127.0.0.1:53014
1667357581752 RemoteAgent WARN TLS certificate errors will be ignored for this session
UNSUPPORTED (log once): POSSIBLE ISSUE: unit 1 GLD_TEXTURE_INDEX_2D is unloadable and bound to sampler type (Float) - using zero texture because texture unloadable
console.warn: SearchSettings: "get: No settings file exists, new profile?" (new NotFoundError("Could not open the file at /var/folders/jt/x8hyslhx72l01gmb45h2dmm40000gn/T/rust_mozprofileB3e6ad/search.json.mozlz4", (void 0)))
DevTools listening on ws://127.0.0.1:53014/devtools/browser/f527b7ce-6ad4-441f-a8a8-e9d27bcf369c
1667357593310 Marionette INFO Stopped listening on port 53021
console.error: (new TypeError("container.node.targetFront is null", "resource://devtools/client/inspector/markup/markup.js", 2351))
console.error: (new TypeError("container.node.targetFront is null", "resource://devtools/client/inspector/markup/markup.js", 2351))
console.error: (new TypeError("container.node.targetFront is null", "resource://devtools/client/inspector/markup/markup.js", 2351))
console.error: (new TypeError("container.node.targetFront is null", "resource://devtools/client/inspector/markup/markup.js", 2351))
console.error: (new TypeError("container.node.targetFront is null", "resource://devtools/client/inspector/markup/markup.js", 2351))
1667357640720 geckodriver INFO Listening on 127.0.0.1:53146
1667357641152 mozrunner::runner INFO Running command: "/Applications/Firefox.app/Contents/MacOS/firefox-bin" "--marionette" "--remote-debugging-port" "53147" "--remote-allow-hosts" "localhost" "-foreground" "-no-remote" "-profile" "/var/folders/jt/x8hyslhx72l01gmb45h2dmm40000gn/T/rust_mozprofileTUqeKR"
2022-11-02 11:54:01.425 plugin-container[87784:5073172] nil host used in call to allowsSpecificHTTPSCertificateForHost
2022-11-02 11:54:01.425 plugin-container[87784:5073172] nil host used in call to allowsAnyHTTPSCertificateForHost:
2022-11-02 11:54:01.427 plugin-container[87784:5073172] nil host used in call to allowsSpecificHTTPSCertificateForHost
2022-11-02 11:54:01.427 plugin-container[87784:5073172] nil host used in call to allowsAnyHTTPSCertificateForHost:
2022-11-02 11:54:01.427 plugin-container[87784:5073174] nil host used in call to allowsSpecificHTTPSCertificateForHost
2022-11-02 11:54:01.427 plugin-container[87784:5073174] nil host used in call to allowsAnyHTTPSCertificateForHost:
1667357641434 Marionette INFO Marionette enabled
1667357641455 Marionette INFO Listening on port 53155
Read port: 53155
WebDriver BiDi listening on ws://127.0.0.1:53147
1667357641578 RemoteAgent WARN TLS certificate errors will be ignored for this session
UNSUPPORTED (log once): POSSIBLE ISSUE: unit 1 GLD_TEXTURE_INDEX_2D is unloadable and bound to sampler type (Float) - using zero texture because texture unloadable
console.warn: SearchSettings: "get: No settings file exists, new profile?" (new NotFoundError("Could not open the file at /var/folders/jt/x8hyslhx72l01gmb45h2dmm40000gn/T/rust_mozprofileTUqeKR/search.json.mozlz4", (void 0)))
DevTools listening on ws://127.0.0.1:53147/devtools/browser/d9d96281-30d7-4868-ae67-7c6f3787aef6
1667357654964 Marionette INFO Stopped listening on port 53155
1667357985853 geckodriver INFO Listening on 127.0.0.1:53357
1667357986300 mozrunner::runner INFO Running command: "/Applications/Firefox.app/Contents/MacOS/firefox-bin" "--marionette" "--remote-debugging-port" "53358" "--remote-allow-hosts" "localhost" "-foreground" "-no-remote" "-profile" "/var/folders/jt/x8hyslhx72l01gmb45h2dmm40000gn/T/rust_mozprofileqBs0DO"
2022-11-02 11:59:46.553 plugin-container[88316:5077976] nil host used in call to allowsSpecificHTTPSCertificateForHost
2022-11-02 11:59:46.554 plugin-container[88316:5077976] nil host used in call to allowsAnyHTTPSCertificateForHost:
1667357986558 Marionette INFO Marionette enabled
2022-11-02 11:59:46.575 plugin-container[88316:5077976] nil host used in call to allowsSpecificHTTPSCertificateForHost
2022-11-02 11:59:46.575 plugin-container[88316:5077976] nil host used in call to allowsAnyHTTPSCertificateForHost:
2022-11-02 11:59:46.575 plugin-container[88316:5077974] nil host used in call to allowsSpecificHTTPSCertificateForHost
2022-11-02 11:59:46.575 plugin-container[88316:5077974] nil host used in call to allowsAnyHTTPSCertificateForHost:
1667357986577 Marionette INFO Listening on port 53365
Read port: 53365
WebDriver BiDi listening on ws://127.0.0.1:53358
1667357986774 RemoteAgent WARN TLS certificate errors will be ignored for this session
UNSUPPORTED (log once): POSSIBLE ISSUE: unit 1 GLD_TEXTURE_INDEX_2D is unloadable and bound to sampler type (Float) - using zero texture because texture unloadable
console.warn: SearchSettings: "get: No settings file exists, new profile?" (new NotFoundError("Could not open the file at /var/folders/jt/x8hyslhx72l01gmb45h2dmm40000gn/T/rust_mozprofileqBs0DO/search.json.mozlz4", (void 0)))
DevTools listening on ws://127.0.0.1:53358/devtools/browser/620a2209-6140-43fe-b57b-a96e6f927e2f
1667358154359 geckodriver INFO Listening on 127.0.0.1:53529
1667358154785 mozrunner::runner INFO Running command: "/Applications/Firefox.app/Contents/MacOS/firefox-bin" "--marionette" "--remote-debugging-port" "53530" "--remote-allow-hosts" "localhost" "-foreground" "-no-remote" "-profile" "/var/folders/jt/x8hyslhx72l01gmb45h2dmm40000gn/T/rust_mozprofileQpNjiK"
1667358155059 Marionette INFO Marionette enabled
2022-11-02 12:02:35.082 plugin-container[88602:5080726] nil host used in call to allowsSpecificHTTPSCertificateForHost
2022-11-02 12:02:35.083 plugin-container[88602:5080726] nil host used in call to allowsAnyHTTPSCertificateForHost:
2022-11-02 12:02:35.089 plugin-container[88602:5080726] nil host used in call to allowsSpecificHTTPSCertificateForHost
2022-11-02 12:02:35.089 plugin-container[88602:5080726] nil host used in call to allowsAnyHTTPSCertificateForHost:
2022-11-02 12:02:35.089 plugin-container[88602:5080728] nil host used in call to allowsSpecificHTTPSCertificateForHost
2022-11-02 12:02:35.089 plugin-container[88602:5080728] nil host used in call to allowsAnyHTTPSCertificateForHost:
1667358155237 Marionette INFO Listening on port 53537
WebDriver BiDi listening on ws://127.0.0.1:53530
Read port: 53537
1667358155408 RemoteAgent WARN TLS certificate errors will be ignored for this session
UNSUPPORTED (log once): POSSIBLE ISSUE: unit 1 GLD_TEXTURE_INDEX_2D is unloadable and bound to sampler type (Float) - using zero texture because texture unloadable
console.warn: SearchSettings: "get: No settings file exists, new profile?" (new NotFoundError("Could not open the file at /var/folders/jt/x8hyslhx72l01gmb45h2dmm40000gn/T/rust_mozprofileQpNjiK/search.json.mozlz4", (void 0)))
DevTools listening on ws://127.0.0.1:53530/devtools/browser/65c1574b-3b8d-4cfa-9849-92fa70b71ae4
1667358169332 Marionette INFO Stopped listening on port 53537
1667358173336 Marionette INFO Stopped listening on port 53365
1667358205541 geckodriver INFO Listening on 127.0.0.1:53697
1667358205967 mozrunner::runner INFO Running command: "/Applications/Firefox.app/Contents/MacOS/firefox-bin" "--marionette" "--remote-debugging-port" "53698" "--remote-allow-hosts" "localhost" "-foreground" "-no-remote" "-profile" "/var/folders/jt/x8hyslhx72l01gmb45h2dmm40000gn/T/rust_mozprofileX6KaHj"
2022-11-02 12:03:26.221 plugin-container[88721:5081870] nil host used in call to allowsSpecificHTTPSCertificateForHost
2022-11-02 12:03:26.221 plugin-container[88721:5081870] nil host used in call to allowsAnyHTTPSCertificateForHost:
2022-11-02 12:03:26.223 plugin-container[88721:5081870] nil host used in call to allowsSpecificHTTPSCertificateForHost
2022-11-02 12:03:26.223 plugin-container[88721:5081870] nil host used in call to allowsAnyHTTPSCertificateForHost:
2022-11-02 12:03:26.224 plugin-container[88721:5081868] nil host used in call to allowsSpecificHTTPSCertificateForHost
2022-11-02 12:03:26.224 plugin-container[88721:5081868] nil host used in call to allowsAnyHTTPSCertificateForHost:
1667358206226 Marionette INFO Marionette enabled
1667358206245 Marionette INFO Listening on port 53705
Read port: 53705
WebDriver BiDi listening on ws://127.0.0.1:53698
1667358206444 RemoteAgent WARN TLS certificate errors will be ignored for this session
UNSUPPORTED (log once): POSSIBLE ISSUE: unit 1 GLD_TEXTURE_INDEX_2D is unloadable and bound to sampler type (Float) - using zero texture because texture unloadable
console.warn: SearchSettings: "get: No settings file exists, new profile?" (new NotFoundError("Could not open the file at /var/folders/jt/x8hyslhx72l01gmb45h2dmm40000gn/T/rust_mozprofileX6KaHj/search.json.mozlz4", (void 0)))
DevTools listening on ws://127.0.0.1:53698/devtools/browser/e5b696b1-647f-4151-b6e0-e53ec15b71c7
1667358230539 Marionette INFO Stopped listening on port 53705
1667363191468 geckodriver INFO Listening on 127.0.0.1:55389
1667363191911 mozrunner::runner INFO Running command: "/Applications/Firefox.app/Contents/MacOS/firefox-bin" "--marionette" "--remote-debugging-port" "55390" "--remote-allow-hosts" "localhost" "-foreground" "-no-remote" "-profile" "/var/folders/jt/x8hyslhx72l01gmb45h2dmm40000gn/T/rust_mozprofilejPw021"
1667363192176 Marionette INFO Marionette enabled
1667363192198 Marionette INFO Listening on port 55397
2022-11-02 13:26:32.204 plugin-container[95519:5137086] nil host used in call to allowsSpecificHTTPSCertificateForHost
2022-11-02 13:26:32.204 plugin-container[95519:5137086] nil host used in call to allowsAnyHTTPSCertificateForHost:
2022-11-02 13:26:32.206 plugin-container[95519:5137086] nil host used in call to allowsSpecificHTTPSCertificateForHost
2022-11-02 13:26:32.206 plugin-container[95519:5137086] nil host used in call to allowsAnyHTTPSCertificateForHost:
2022-11-02 13:26:32.207 plugin-container[95519:5137084] nil host used in call to allowsSpecificHTTPSCertificateForHost
2022-11-02 13:26:32.207 plugin-container[95519:5137084] nil host used in call to allowsAnyHTTPSCertificateForHost:
Read port: 55397
WebDriver BiDi listening on ws://127.0.0.1:55390
1667363192398 RemoteAgent WARN TLS certificate errors will be ignored for this session
UNSUPPORTED (log once): POSSIBLE ISSUE: unit 1 GLD_TEXTURE_INDEX_2D is unloadable and bound to sampler type (Float) - using zero texture because texture unloadable
console.warn: SearchSettings: "get: No settings file exists, new profile?" (new NotFoundError("Could not open the file at /var/folders/jt/x8hyslhx72l01gmb45h2dmm40000gn/T/rust_mozprofilejPw021/search.json.mozlz4", (void 0)))
DevTools listening on ws://127.0.0.1:55390/devtools/browser/5b509a2e-eedf-4459-ada6-6a84ac14d8d2
1667363217149 geckodriver INFO Listening on 127.0.0.1:55481
1667363217592 mozrunner::runner INFO Running command: "/Applications/Firefox.app/Contents/MacOS/firefox-bin" "--marionette" "--remote-debugging-port" "55482" "--remote-allow-hosts" "localhost" "-foreground" "-no-remote" "-profile" "/var/folders/jt/x8hyslhx72l01gmb45h2dmm40000gn/T/rust_mozprofileohEF71"
2022-11-02 13:26:57.843 plugin-container[95607:5137848] nil host used in call to allowsSpecificHTTPSCertificateForHost
2022-11-02 13:26:57.843 plugin-container[95607:5137848] nil host used in call to allowsAnyHTTPSCertificateForHost:
2022-11-02 13:26:57.845 plugin-container[95607:5137848] nil host used in call to allowsSpecificHTTPSCertificateForHost
2022-11-02 13:26:57.845 plugin-container[95607:5137848] nil host used in call to allowsAnyHTTPSCertificateForHost:
2022-11-02 13:26:57.845 plugin-container[95607:5137876] nil host used in call to allowsSpecificHTTPSCertificateForHost
2022-11-02 13:26:57.845 plugin-container[95607:5137876] nil host used in call to allowsAnyHTTPSCertificateForHost:
1667363217846 Marionette INFO Marionette enabled
1667363217864 Marionette INFO Listening on port 55489
Read port: 55489
WebDriver BiDi listening on ws://127.0.0.1:55482
1667363218069 RemoteAgent WARN TLS certificate errors will be ignored for this session
UNSUPPORTED (log once): POSSIBLE ISSUE: unit 1 GLD_TEXTURE_INDEX_2D is unloadable and bound to sampler type (Float) - using zero texture because texture unloadable
console.warn: SearchSettings: "get: No settings file exists, new profile?" (new NotFoundError("Could not open the file at /var/folders/jt/x8hyslhx72l01gmb45h2dmm40000gn/T/rust_mozprofileohEF71/search.json.mozlz4", (void 0)))
DevTools listening on ws://127.0.0.1:55482/devtools/browser/5007c605-4cca-4592-9dae-5e21efbc2379
1667363233842 Marionette INFO Stopped listening on port 55489
1667363236980 Marionette INFO Stopped listening on port 55397
1667363274097 geckodriver INFO Listening on 127.0.0.1:55600
1667363274530 mozrunner::runner INFO Running command: "/Applications/Firefox.app/Contents/MacOS/firefox-bin" "--marionette" "--remote-debugging-port" "55601" "--remote-allow-hosts" "localhost" "-foreground" "-no-remote" "-profile" "/var/folders/jt/x8hyslhx72l01gmb45h2dmm40000gn/T/rust_mozprofileG3FxVE"
2022-11-02 13:27:54.785 plugin-container[95753:5139078] nil host used in call to allowsSpecificHTTPSCertificateForHost
2022-11-02 13:27:54.785 plugin-container[95753:5139078] nil host used in call to allowsAnyHTTPSCertificateForHost:
2022-11-02 13:27:54.787 plugin-container[95753:5139078] nil host used in call to allowsSpecificHTTPSCertificateForHost
2022-11-02 13:27:54.787 plugin-container[95753:5139078] nil host used in call to allowsAnyHTTPSCertificateForHost:
2022-11-02 13:27:54.788 plugin-container[95753:5139102] nil host used in call to allowsSpecificHTTPSCertificateForHost
2022-11-02 13:27:54.788 plugin-container[95753:5139102] nil host used in call to allowsAnyHTTPSCertificateForHost:
1667363274788 Marionette INFO Marionette enabled
1667363274805 Marionette INFO Listening on port 55608
Read port: 55608
WebDriver BiDi listening on ws://127.0.0.1:55601
1667363274977 RemoteAgent WARN TLS certificate errors will be ignored for this session
UNSUPPORTED (log once): POSSIBLE ISSUE: unit 1 GLD_TEXTURE_INDEX_2D is unloadable and bound to sampler type (Float) - using zero texture because texture unloadable
console.warn: SearchSettings: "get: No settings file exists, new profile?" (new NotFoundError("Could not open the file at /var/folders/jt/x8hyslhx72l01gmb45h2dmm40000gn/T/rust_mozprofileG3FxVE/search.json.mozlz4", (void 0)))
DevTools listening on ws://127.0.0.1:55601/devtools/browser/0a498785-1277-47c3-92eb-a276f17c8d47
1667363364264 Marionette INFO Stopped listening on port 55608
JavaScript error: , line 0: NotFoundError: No such JSWindowActor 'DevToolsFrame'
1667363444813 geckodriver INFO Listening on 127.0.0.1:55935
1667363445243 mozrunner::runner INFO Running command: "/Applications/Firefox.app/Contents/MacOS/firefox-bin" "--marionette" "--remote-debugging-port" "55936" "--remote-allow-hosts" "localhost" "-foreground" "-no-remote" "-profile" "/var/folders/jt/x8hyslhx72l01gmb45h2dmm40000gn/T/rust_mozprofile3N7NdX"
1667363445509 Marionette INFO Marionette enabled
1667363445533 Marionette INFO Listening on port 55943
2022-11-02 13:30:45.535 plugin-container[96155:5142875] nil host used in call to allowsSpecificHTTPSCertificateForHost
2022-11-02 13:30:45.535 plugin-container[96155:5142875] nil host used in call to allowsAnyHTTPSCertificateForHost:
2022-11-02 13:30:45.543 plugin-container[96155:5142875] nil host used in call to allowsSpecificHTTPSCertificateForHost
2022-11-02 13:30:45.543 plugin-container[96155:5142875] nil host used in call to allowsAnyHTTPSCertificateForHost:
2022-11-02 13:30:45.543 plugin-container[96155:5142903] nil host used in call to allowsSpecificHTTPSCertificateForHost
2022-11-02 13:30:45.543 plugin-container[96155:5142903] nil host used in call to allowsAnyHTTPSCertificateForHost:
Read port: 55943
WebDriver BiDi listening on ws://127.0.0.1:55936
1667363445729 RemoteAgent WARN TLS certificate errors will be ignored for this session
UNSUPPORTED (log once): POSSIBLE ISSUE: unit 1 GLD_TEXTURE_INDEX_2D is unloadable and bound to sampler type (Float) - using zero texture because texture unloadable
console.warn: SearchSettings: "get: No settings file exists, new profile?" (new NotFoundError("Could not open the file at /var/folders/jt/x8hyslhx72l01gmb45h2dmm40000gn/T/rust_mozprofile3N7NdX/search.json.mozlz4", (void 0)))
DevTools listening on ws://127.0.0.1:55936/devtools/browser/a3c02022-4bd1-4cd5-b9ff-6c056ca2d39a
1667363454611 Marionette INFO Stopped listening on port 55943
1667363663823 geckodriver INFO Listening on 127.0.0.1:56184
1667363664258 mozrunner::runner INFO Running command: "/Applications/Firefox.app/Contents/MacOS/firefox-bin" "--marionette" "--remote-debugging-port" "56185" "--remote-allow-hosts" "localhost" "-foreground" "-no-remote" "-profile" "/var/folders/jt/x8hyslhx72l01gmb45h2dmm40000gn/T/rust_mozprofile3hNyBo"
2022-11-02 13:34:24.525 plugin-container[96640:5146503] nil host used in call to allowsSpecificHTTPSCertificateForHost
2022-11-02 13:34:24.525 plugin-container[96640:5146503] nil host used in call to allowsAnyHTTPSCertificateForHost:
1667363664529 Marionette INFO Marionette enabled
1667363664548 Marionette INFO Listening on port 56193
2022-11-02 13:34:24.549 plugin-container[96640:5146503] nil host used in call to allowsSpecificHTTPSCertificateForHost
2022-11-02 13:34:24.549 plugin-container[96640:5146503] nil host used in call to allowsAnyHTTPSCertificateForHost:
2022-11-02 13:34:24.549 plugin-container[96640:5146501] nil host used in call to allowsSpecificHTTPSCertificateForHost
2022-11-02 13:34:24.549 plugin-container[96640:5146501] nil host used in call to allowsAnyHTTPSCertificateForHost:
Read port: 56193
WebDriver BiDi listening on ws://127.0.0.1:56185
1667363664760 RemoteAgent WARN TLS certificate errors will be ignored for this session
UNSUPPORTED (log once): POSSIBLE ISSUE: unit 1 GLD_TEXTURE_INDEX_2D is unloadable and bound to sampler type (Float) - using zero texture because texture unloadable
console.warn: SearchSettings: "get: No settings file exists, new profile?" (new NotFoundError("Could not open the file at /var/folders/jt/x8hyslhx72l01gmb45h2dmm40000gn/T/rust_mozprofile3hNyBo/search.json.mozlz4", (void 0)))
DevTools listening on ws://127.0.0.1:56185/devtools/browser/331f8989-8bbf-4ff5-bdbe-efc6cd1afe48
1667363721092 geckodriver INFO Listening on 127.0.0.1:56278
1667363721532 mozrunner::runner INFO Running command: "/Applications/Firefox.app/Contents/MacOS/firefox-bin" "--marionette" "--remote-debugging-port" "56279" "--remote-allow-hosts" "localhost" "-foreground" "-no-remote" "-profile" "/var/folders/jt/x8hyslhx72l01gmb45h2dmm40000gn/T/rust_mozprofilebm0tKD"
2022-11-02 13:35:21.783 plugin-container[96778:5147744] nil host used in call to allowsSpecificHTTPSCertificateForHost
2022-11-02 13:35:21.783 plugin-container[96778:5147744] nil host used in call to allowsAnyHTTPSCertificateForHost:
1667363721786 Marionette INFO Marionette enabled
2022-11-02 13:35:21.787 plugin-container[96778:5147744] nil host used in call to allowsSpecificHTTPSCertificateForHost
2022-11-02 13:35:21.787 plugin-container[96778:5147744] nil host used in call to allowsAnyHTTPSCertificateForHost:
2022-11-02 13:35:21.787 plugin-container[96778:5147768] nil host used in call to allowsSpecificHTTPSCertificateForHost
2022-11-02 13:35:21.787 plugin-container[96778:5147768] nil host used in call to allowsAnyHTTPSCertificateForHost:
1667363721805 Marionette INFO Listening on port 56305
Read port: 56305
WebDriver BiDi listening on ws://127.0.0.1:56279
1667363722010 RemoteAgent WARN TLS certificate errors will be ignored for this session
UNSUPPORTED (log once): POSSIBLE ISSUE: unit 1 GLD_TEXTURE_INDEX_2D is unloadable and bound to sampler type (Float) - using zero texture because texture unloadable
console.warn: SearchSettings: "get: No settings file exists, new profile?" (new NotFoundError("Could not open the file at /var/folders/jt/x8hyslhx72l01gmb45h2dmm40000gn/T/rust_mozprofilebm0tKD/search.json.mozlz4", (void 0)))
DevTools listening on ws://127.0.0.1:56279/devtools/browser/d68a50b9-e59c-4027-a07c-2d34445864aa
1667363728503 Marionette INFO Stopped listening on port 56305
1667363745641 geckodriver INFO Listening on 127.0.0.1:56418
1667363746078 mozrunner::runner INFO Running command: "/Applications/Firefox.app/Contents/MacOS/firefox-bin" "--marionette" "--remote-debugging-port" "56419" "--remote-allow-hosts" "localhost" "-foreground" "-no-remote" "-profile" "/var/folders/jt/x8hyslhx72l01gmb45h2dmm40000gn/T/rust_mozprofilehVXBzd"
1667363746259 Marionette INFO Marionette enabled
2022-11-02 13:35:46.261 plugin-container[96863:5148474] nil host used in call to allowsSpecificHTTPSCertificateForHost
2022-11-02 13:35:46.261 plugin-container[96863:5148474] nil host used in call to allowsAnyHTTPSCertificateForHost:
2022-11-02 13:35:46.264 plugin-container[96863:5148474] nil host used in call to allowsSpecificHTTPSCertificateForHost
2022-11-02 13:35:46.264 plugin-container[96863:5148474] nil host used in call to allowsAnyHTTPSCertificateForHost:
2022-11-02 13:35:46.264 plugin-container[96863:5148479] nil host used in call to allowsSpecificHTTPSCertificateForHost
2022-11-02 13:35:46.264 plugin-container[96863:5148479] nil host used in call to allowsAnyHTTPSCertificateForHost:
1667363746280 Marionette INFO Listening on port 56427
Read port: 56427
WebDriver BiDi listening on ws://127.0.0.1:56419
1667363746540 RemoteAgent WARN TLS certificate errors will be ignored for this session
UNSUPPORTED (log once): POSSIBLE ISSUE: unit 1 GLD_TEXTURE_INDEX_2D is unloadable and bound to sampler type (Float) - using zero texture because texture unloadable
console.warn: SearchSettings: "get: No settings file exists, new profile?" (new NotFoundError("Could not open the file at /var/folders/jt/x8hyslhx72l01gmb45h2dmm40000gn/T/rust_mozprofilehVXBzd/search.json.mozlz4", (void 0)))
DevTools listening on ws://127.0.0.1:56419/devtools/browser/a9ab11bb-10d5-4fc9-bccd-3351f7120235
1667363752842 Marionette INFO Stopped listening on port 56427
1667363767842 geckodriver INFO Listening on 127.0.0.1:56532
1667363768281 mozrunner::runner INFO Running command: "/Applications/Firefox.app/Contents/MacOS/firefox-bin" "--marionette" "--remote-debugging-port" "56533" "--remote-allow-hosts" "localhost" "-foreground" "-no-remote" "-profile" "/var/folders/jt/x8hyslhx72l01gmb45h2dmm40000gn/T/rust_mozprofile61RPX5"
2022-11-02 13:36:08.538 plugin-container[96945:5149223] nil host used in call to allowsSpecificHTTPSCertificateForHost
2022-11-02 13:36:08.538 plugin-container[96945:5149223] nil host used in call to allowsAnyHTTPSCertificateForHost:
2022-11-02 13:36:08.540 plugin-container[96945:5149223] nil host used in call to allowsSpecificHTTPSCertificateForHost
2022-11-02 13:36:08.540 plugin-container[96945:5149223] nil host used in call to allowsAnyHTTPSCertificateForHost:
2022-11-02 13:36:08.540 plugin-container[96945:5149249] nil host used in call to allowsSpecificHTTPSCertificateForHost
2022-11-02 13:36:08.540 plugin-container[96945:5149249] nil host used in call to allowsAnyHTTPSCertificateForHost:
1667363768541 Marionette INFO Marionette enabled
1667363768559 Marionette INFO Listening on port 56540
Read port: 56540
WebDriver BiDi listening on ws://127.0.0.1:56533
1667363768778 RemoteAgent WARN TLS certificate errors will be ignored for this session
UNSUPPORTED (log once): POSSIBLE ISSUE: unit 1 GLD_TEXTURE_INDEX_2D is unloadable and bound to sampler type (Float) - using zero texture because texture unloadable
console.warn: SearchSettings: "get: No settings file exists, new profile?" (new NotFoundError("Could not open the file at /var/folders/jt/x8hyslhx72l01gmb45h2dmm40000gn/T/rust_mozprofile61RPX5/search.json.mozlz4", (void 0)))
DevTools listening on ws://127.0.0.1:56533/devtools/browser/c2f02255-e701-4792-9854-98052af896d4
1667363774091 Marionette INFO Stopped listening on port 56540
1667363806090 geckodriver INFO Listening on 127.0.0.1:56637
1667363806538 mozrunner::runner INFO Running command: "/Applications/Firefox.app/Contents/MacOS/firefox-bin" "--marionette" "--remote-debugging-port" "56638" "--remote-allow-hosts" "localhost" "-foreground" "-no-remote" "-profile" "/var/folders/jt/x8hyslhx72l01gmb45h2dmm40000gn/T/rust_mozprofileWko1Hb"
2022-11-02 13:36:46.769 plugin-container[97062:5150134] nil host used in call to allowsSpecificHTTPSCertificateForHost
2022-11-02 13:36:46.770 plugin-container[97062:5150134] nil host used in call to allowsAnyHTTPSCertificateForHost:
1667363806772 Marionette INFO Marionette enabled
2022-11-02 13:36:46.772 plugin-container[97062:5150134] nil host used in call to allowsSpecificHTTPSCertificateForHost
2022-11-02 13:36:46.772 plugin-container[97062:5150134] nil host used in call to allowsAnyHTTPSCertificateForHost:
2022-11-02 13:36:46.773 plugin-container[97062:5150139] nil host used in call to allowsSpecificHTTPSCertificateForHost
2022-11-02 13:36:46.773 plugin-container[97062:5150139] nil host used in call to allowsAnyHTTPSCertificateForHost:
1667363806789 Marionette INFO Listening on port 56645
WebDriver BiDi listening on ws://127.0.0.1:56638
Read port: 56645
1667363807054 RemoteAgent WARN TLS certificate errors will be ignored for this session
UNSUPPORTED (log once): POSSIBLE ISSUE: unit 1 GLD_TEXTURE_INDEX_2D is unloadable and bound to sampler type (Float) - using zero texture because texture unloadable
console.warn: SearchSettings: "get: No settings file exists, new profile?" (new NotFoundError("Could not open the file at /var/folders/jt/x8hyslhx72l01gmb45h2dmm40000gn/T/rust_mozprofileWko1Hb/search.json.mozlz4", (void 0)))
DevTools listening on ws://127.0.0.1:56638/devtools/browser/633430cd-7f9d-444e-b288-9cc1d5e2d91d
1667363812954 Marionette INFO Stopped listening on port 56645
JavaScript error: resource://gre/modules/Sqlite.jsm, line 1108: Error: Sqlite.jsm has been shutdown. Cannot open connection to: /var/folders/jt/x8hyslhx72l01gmb45h2dmm40000gn/T/rust_mozprofileWko1Hb/protections.sqlite
1667364028580 Marionette INFO Stopped listening on port 56193
1667364091614 geckodriver INFO Listening on 127.0.0.1:56838
1667364092030 mozrunner::runner INFO Running command: "/Applications/Firefox.app/Contents/MacOS/firefox-bin" "--marionette" "--remote-debugging-port" "56839" "--remote-allow-hosts" "localhost" "-foreground" "-no-remote" "-profile" "/var/folders/jt/x8hyslhx72l01gmb45h2dmm40000gn/T/rust_mozprofileXKH3qo"
1667364092274 Marionette INFO Marionette enabled
2022-11-02 13:41:32.303 plugin-container[97682:5154281] nil host used in call to allowsSpecificHTTPSCertificateForHost
2022-11-02 13:41:32.303 plugin-container[97682:5154281] nil host used in call to allowsAnyHTTPSCertificateForHost:
2022-11-02 13:41:32.311 plugin-container[97682:5154281] nil host used in call to allowsSpecificHTTPSCertificateForHost
2022-11-02 13:41:32.311 plugin-container[97682:5154281] nil host used in call to allowsAnyHTTPSCertificateForHost:
2022-11-02 13:41:32.311 plugin-container[97682:5154283] nil host used in call to allowsSpecificHTTPSCertificateForHost
2022-11-02 13:41:32.311 plugin-container[97682:5154283] nil host used in call to allowsAnyHTTPSCertificateForHost:
1667364092460 Marionette INFO Listening on port 56846
WebDriver BiDi listening on ws://127.0.0.1:56839
Read port: 56846
1667364092607 RemoteAgent WARN TLS certificate errors will be ignored for this session
UNSUPPORTED (log once): POSSIBLE ISSUE: unit 1 GLD_TEXTURE_INDEX_2D is unloadable and bound to sampler type (Float) - using zero texture because texture unloadable
console.warn: SearchSettings: "get: No settings file exists, new profile?" (new NotFoundError("Could not open the file at /var/folders/jt/x8hyslhx72l01gmb45h2dmm40000gn/T/rust_mozprofileXKH3qo/search.json.mozlz4", (void 0)))
DevTools listening on ws://127.0.0.1:56839/devtools/browser/39556c23-bd5b-45d6-bbde-6fdd1845413f
1667364098407 Marionette INFO Stopped listening on port 56846
1667365437026 Marionette INFO Stopped listening on port 52725
JavaScript error: , line 0: NotFoundError: No such JSWindowActor 'DevToolsFrame'
1667366554031 geckodriver INFO Listening on 127.0.0.1:58353
1667366554479 mozrunner::runner INFO Running command: "/Applications/Firefox.app/Contents/MacOS/firefox-bin" "--marionette" "--remote-debugging-port" "58354" "--remote-allow-hosts" "localhost" "-foreground" "-no-remote" "-profile" "/var/folders/jt/x8hyslhx72l01gmb45h2dmm40000gn/T/rust_mozprofileKRmBwx"
1667366554777 Marionette INFO Marionette enabled
2022-11-02 14:22:34.807 plugin-container[2942:5188088] nil host used in call to allowsSpecificHTTPSCertificateForHost
2022-11-02 14:22:34.808 plugin-container[2942:5188088] nil host used in call to allowsAnyHTTPSCertificateForHost:
2022-11-02 14:22:34.810 plugin-container[2942:5188088] nil host used in call to allowsSpecificHTTPSCertificateForHost
2022-11-02 14:22:34.810 plugin-container[2942:5188088] nil host used in call to allowsAnyHTTPSCertificateForHost:
2022-11-02 14:22:34.811 plugin-container[2942:5188112] nil host used in call to allowsSpecificHTTPSCertificateForHost
2022-11-02 14:22:34.811 plugin-container[2942:5188112] nil host used in call to allowsAnyHTTPSCertificateForHost:
1667366554955 Marionette INFO Listening on port 58362
WebDriver BiDi listening on ws://127.0.0.1:58354
Read port: 58362
1667366555037 RemoteAgent WARN TLS certificate errors will be ignored for this session
UNSUPPORTED (log once): POSSIBLE ISSUE: unit 1 GLD_TEXTURE_INDEX_2D is unloadable and bound to sampler type (Float) - using zero texture because texture unloadable
console.warn: SearchSettings: "get: No settings file exists, new profile?" (new NotFoundError("Could not open the file at /var/folders/jt/x8hyslhx72l01gmb45h2dmm40000gn/T/rust_mozprofileKRmBwx/search.json.mozlz4", (void 0)))
DevTools listening on ws://127.0.0.1:58354/devtools/browser/6a40bdd8-b4a8-4e5d-b7d9-84e22dc9cd41
1667366582265 geckodriver INFO Listening on 127.0.0.1:58723
1667366582701 mozrunner::runner INFO Running command: "/Applications/Firefox.app/Contents/MacOS/firefox-bin" "--marionette" "--remote-debugging-port" "58724" "--remote-allow-hosts" "localhost" "-foreground" "-no-remote" "-profile" "/var/folders/jt/x8hyslhx72l01gmb45h2dmm40000gn/T/rust_mozprofilenqVgLm"
2022-11-02 14:23:02.938 plugin-container[3040:5189014] nil host used in call to allowsSpecificHTTPSCertificateForHost
2022-11-02 14:23:02.938 plugin-container[3040:5189014] nil host used in call to allowsAnyHTTPSCertificateForHost:
1667366582943 Marionette INFO Marionette enabled
1667366582959 Marionette INFO Listening on port 58739
2022-11-02 14:23:02.961 plugin-container[3040:5189014] nil host used in call to allowsSpecificHTTPSCertificateForHost
2022-11-02 14:23:02.961 plugin-container[3040:5189014] nil host used in call to allowsAnyHTTPSCertificateForHost:
2022-11-02 14:23:02.961 plugin-container[3040:5189042] nil host used in call to allowsSpecificHTTPSCertificateForHost
2022-11-02 14:23:02.961 plugin-container[3040:5189042] nil host used in call to allowsAnyHTTPSCertificateForHost:
WebDriver BiDi listening on ws://127.0.0.1:58724
Read port: 58739
1667366583090 RemoteAgent WARN TLS certificate errors will be ignored for this session
UNSUPPORTED (log once): POSSIBLE ISSUE: unit 1 GLD_TEXTURE_INDEX_2D is unloadable and bound to sampler type (Float) - using zero texture because texture unloadable
console.warn: SearchSettings: "get: No settings file exists, new profile?" (new NotFoundError("Could not open the file at /var/folders/jt/x8hyslhx72l01gmb45h2dmm40000gn/T/rust_mozprofilenqVgLm/search.json.mozlz4", (void 0)))
DevTools listening on ws://127.0.0.1:58724/devtools/browser/58d56466-697c-490b-b351-a8f1988381a4
1667366619524 Marionette INFO Stopped listening on port 58362
1667366620746 Marionette INFO Stopped listening on port 58739
console.warn: TopSitesFeed: Failed to fetch data from Contile server: NetworkError when attempting to fetch resource.
1667366623782 geckodriver INFO Listening on 127.0.0.1:58996
1667366624211 mozrunner::runner INFO Running command: "/Applications/Firefox.app/Contents/MacOS/firefox-bin" "--marionette" "--remote-debugging-port" "58997" "--remote-allow-hosts" "localhost" "-foreground" "-no-remote" "-profile" "/var/folders/jt/x8hyslhx72l01gmb45h2dmm40000gn/T/rust_mozprofileEbscAk"
2022-11-02 14:23:44.470 plugin-container[3162:5190136] nil host used in call to allowsSpecificHTTPSCertificateForHost
2022-11-02 14:23:44.470 plugin-container[3162:5190136] nil host used in call to allowsAnyHTTPSCertificateForHost:
2022-11-02 14:23:44.472 plugin-container[3162:5190136] nil host used in call to allowsSpecificHTTPSCertificateForHost
2022-11-02 14:23:44.472 plugin-container[3162:5190136] nil host used in call to allowsAnyHTTPSCertificateForHost:
2022-11-02 14:23:44.472 plugin-container[3162:5190134] nil host used in call to allowsSpecificHTTPSCertificateForHost
2022-11-02 14:23:44.472 plugin-container[3162:5190134] nil host used in call to allowsAnyHTTPSCertificateForHost:
1667366624474 Marionette INFO Marionette enabled
1667366624490 Marionette INFO Listening on port 59004
Read port: 59004
WebDriver BiDi listening on ws://127.0.0.1:58997
1667366624623 RemoteAgent WARN TLS certificate errors will be ignored for this session
UNSUPPORTED (log once): POSSIBLE ISSUE: unit 1 GLD_TEXTURE_INDEX_2D is unloadable and bound to sampler type (Float) - using zero texture because texture unloadable
console.warn: SearchSettings: "get: No settings file exists, new profile?" (new NotFoundError("Could not open the file at /var/folders/jt/x8hyslhx72l01gmb45h2dmm40000gn/T/rust_mozprofileEbscAk/search.json.mozlz4", (void 0)))
DevTools listening on ws://127.0.0.1:58997/devtools/browser/0e20c038-0ed5-43ef-ae71-54c093d62567
1667366629730 Marionette INFO Stopped listening on port 59004
1667367629793 geckodriver INFO Listening on 127.0.0.1:59742
1667367630215 mozrunner::runner INFO Running command: "/Applications/Firefox.app/Contents/MacOS/firefox-bin" "--marionette" "--headless" "--remote-debugging-port" "59743" "--remote-allow-hosts" "localhost" "-foreground" "-no-remote" "-profile" "/var/folders/jt/x8hyslhx72l01gmb45h2dmm40000gn/T/rust_mozprofileJneqCD"
*** You are running in headless mode.
1667367630457 Marionette INFO Marionette enabled
1667367630464 Marionette INFO Listening on port 59750
2022-11-02 14:40:30.472 plugin-container[10507:5214956] nil host used in call to allowsSpecificHTTPSCertificateForHost
2022-11-02 14:40:30.472 plugin-container[10507:5214956] nil host used in call to allowsAnyHTTPSCertificateForHost:
2022-11-02 14:40:30.512 plugin-container[10507:5214956] nil host used in call to allowsSpecificHTTPSCertificateForHost
2022-11-02 14:40:30.512 plugin-container[10507:5214956] nil host used in call to allowsAnyHTTPSCertificateForHost:
2022-11-02 14:40:30.512 plugin-container[10507:5214988] nil host used in call to allowsSpecificHTTPSCertificateForHost
2022-11-02 14:40:30.512 plugin-container[10507:5214988] nil host used in call to allowsAnyHTTPSCertificateForHost:
Read port: 59750
WebDriver BiDi listening on ws://127.0.0.1:59743
1667367630639 RemoteAgent WARN TLS certificate errors will be ignored for this session
[GFX1-]: RenderCompositorSWGL failed mapping default framebuffer, no dt
console.warn: SearchSettings: "get: No settings file exists, new profile?" (new NotFoundError("Could not open the file at /var/folders/jt/x8hyslhx72l01gmb45h2dmm40000gn/T/rust_mozprofileJneqCD/search.json.mozlz4", (void 0)))
DevTools listening on ws://127.0.0.1:59743/devtools/browser/c1469a1f-8e82-42a1-a63e-98285cf7aa50
1667367635788 Marionette INFO Stopped listening on port 59750
1667367725936 geckodriver INFO Listening on 127.0.0.1:59874
1667367726384 mozrunner::runner INFO Running command: "/Applications/Firefox.app/Contents/MacOS/firefox-bin" "--marionette" "--headless" "--remote-debugging-port" "59875" "--remote-allow-hosts" "localhost" "-foreground" "-no-remote" "-profile" "/var/folders/jt/x8hyslhx72l01gmb45h2dmm40000gn/T/rust_mozprofilei6vbg0"
*** You are running in headless mode.
1667367726581 Marionette INFO Marionette enabled
2022-11-02 14:42:06.586 plugin-container[10756:5217018] nil host used in call to allowsSpecificHTTPSCertificateForHost
2022-11-02 14:42:06.586 plugin-container[10756:5217018] nil host used in call to allowsAnyHTTPSCertificateForHost:
2022-11-02 14:42:06.588 plugin-container[10756:5217018] nil host used in call to allowsSpecificHTTPSCertificateForHost
2022-11-02 14:42:06.588 plugin-container[10756:5217018] nil host used in call to allowsAnyHTTPSCertificateForHost:
2022-11-02 14:42:06.588 plugin-container[10756:5217044] nil host used in call to allowsSpecificHTTPSCertificateForHost
2022-11-02 14:42:06.588 plugin-container[10756:5217044] nil host used in call to allowsAnyHTTPSCertificateForHost:
1667367726611 Marionette INFO Listening on port 59884
WebDriver BiDi listening on ws://127.0.0.1:59875
Read port: 59884
1667367726750 RemoteAgent WARN TLS certificate errors will be ignored for this session
[GFX1-]: RenderCompositorSWGL failed mapping default framebuffer, no dt