-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathgeckodriver.log
3905 lines (3898 loc) · 407 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
1658490056584 geckodriver INFO Listening on 127.0.0.1:55308
1658490057086 mozrunner::runner INFO Running command: "/Applications/Firefox.app/Contents/MacOS/firefox-bin" "--marionette" "--remote-debugging-port" "55309" "--remote-allow-hosts" "localhost" "-foreground" "-no-remote" "-profile" "/var/folders/7r/wjkz58cd79j9nw8sjydfk4d40000gp/T/rust_mozprofileCOywKr"
1658490057712 Marionette INFO Marionette enabled
2022-07-22 14:40:57.737 plugin-container[44059:3760805] nil host used in call to allowsSpecificHTTPSCertificateForHost
2022-07-22 14:40:57.737 plugin-container[44059:3760805] nil host used in call to allowsAnyHTTPSCertificateForHost:
1658490057745 Marionette INFO Listening on port 55316
WebDriver BiDi listening on ws://localhost:55309
Read port: 55316
2022-07-22 14:40:57.851 plugin-container[44059:3760805] nil host used in call to allowsSpecificHTTPSCertificateForHost
2022-07-22 14:40:57.852 plugin-container[44059:3760805] nil host used in call to allowsAnyHTTPSCertificateForHost:
2022-07-22 14:40:57.869 plugin-container[44059:3760802] nil host used in call to allowsSpecificHTTPSCertificateForHost
2022-07-22 14:40:57.869 plugin-container[44059:3760802] nil host used in call to allowsAnyHTTPSCertificateForHost:
1658490057953 RemoteAgent WARN TLS certificate errors will be ignored for this session
console.warn: SearchSettings: "get: No settings file exists, new profile?" (new NotFoundError("Could not open the file at /var/folders/7r/wjkz58cd79j9nw8sjydfk4d40000gp/T/rust_mozprofileCOywKr/search.json.mozlz4", (void 0)))
DevTools listening on ws://localhost:55309/devtools/browser/9ba97186-b93f-4783-af77-e80698116fce
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
1658490075777 geckodriver INFO Listening on 127.0.0.1:55364
1658490076288 mozrunner::runner INFO Running command: "/Applications/Firefox.app/Contents/MacOS/firefox-bin" "--marionette" "--remote-debugging-port" "55365" "--remote-allow-hosts" "localhost" "-foreground" "-no-remote" "-profile" "/var/folders/7r/wjkz58cd79j9nw8sjydfk4d40000gp/T/rust_mozprofilenVzC5x"
2022-07-22 14:41:16.587 plugin-container[44073:3761329] nil host used in call to allowsSpecificHTTPSCertificateForHost
2022-07-22 14:41:16.587 plugin-container[44073:3761329] nil host used in call to allowsAnyHTTPSCertificateForHost:
2022-07-22 14:41:16.593 plugin-container[44073:3761329] nil host used in call to allowsSpecificHTTPSCertificateForHost
2022-07-22 14:41:16.593 plugin-container[44073:3761329] nil host used in call to allowsAnyHTTPSCertificateForHost:
2022-07-22 14:41:16.594 plugin-container[44073:3761334] nil host used in call to allowsSpecificHTTPSCertificateForHost
2022-07-22 14:41:16.594 plugin-container[44073:3761334] nil host used in call to allowsAnyHTTPSCertificateForHost:
1658490076596 Marionette INFO Marionette enabled
1658490076618 Marionette INFO Listening on port 55372
WebDriver BiDi listening on ws://localhost:55365
Read port: 55372
1658490076728 RemoteAgent WARN TLS certificate errors will be ignored for this session
console.warn: SearchSettings: "get: No settings file exists, new profile?" (new NotFoundError("Could not open the file at /var/folders/7r/wjkz58cd79j9nw8sjydfk4d40000gp/T/rust_mozprofilenVzC5x/search.json.mozlz4", (void 0)))
DevTools listening on ws://localhost:55365/devtools/browser/66f2c80b-2761-4a1c-9aa3-6256f17817c4
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
JavaScript warning: https://pagead2.googlesyndication.com/bg/V6DtokwJh9Fgiqydg7O-dbjnh59Yi9_n4aBMW1s9fk8.js line 2 > eval line 4753 > eval line 1 > eval line 1 > eval, line 1: WEBGL_debug_renderer_info is deprecated in Firefox and will be removed. Please use RENDERER.
1658490272677 geckodriver INFO Listening on 127.0.0.1:55488
1658490273190 mozrunner::runner INFO Running command: "/Applications/Firefox.app/Contents/MacOS/firefox-bin" "--marionette" "--remote-debugging-port" "55489" "--remote-allow-hosts" "localhost" "-foreground" "-no-remote" "-profile" "/var/folders/7r/wjkz58cd79j9nw8sjydfk4d40000gp/T/rust_mozprofileCPmraG"
1658490273606 Marionette INFO Marionette enabled
2022-07-22 14:44:33.629 plugin-container[44137:3763408] nil host used in call to allowsSpecificHTTPSCertificateForHost
2022-07-22 14:44:33.629 plugin-container[44137:3763408] nil host used in call to allowsAnyHTTPSCertificateForHost:
2022-07-22 14:44:33.635 plugin-container[44137:3763408] nil host used in call to allowsSpecificHTTPSCertificateForHost
2022-07-22 14:44:33.635 plugin-container[44137:3763408] nil host used in call to allowsAnyHTTPSCertificateForHost:
2022-07-22 14:44:33.635 plugin-container[44137:3763435] nil host used in call to allowsSpecificHTTPSCertificateForHost
2022-07-22 14:44:33.635 plugin-container[44137:3763435] nil host used in call to allowsAnyHTTPSCertificateForHost:
1658490273647 Marionette INFO Listening on port 55496
WebDriver BiDi listening on ws://localhost:55489
Read port: 55496
1658490273776 RemoteAgent WARN TLS certificate errors will be ignored for this session
console.warn: SearchSettings: "get: No settings file exists, new profile?" (new NotFoundError("Could not open the file at /var/folders/7r/wjkz58cd79j9nw8sjydfk4d40000gp/T/rust_mozprofileCPmraG/search.json.mozlz4", (void 0)))
DevTools listening on ws://localhost:55489/devtools/browser/ed6dfc44-45fe-4c55-b461-a31e0cb5bf00
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: LoginRecipes: "getRecipes: falling back to a synchronous message for:" "https://www.google.com"
JavaScript warning: https://pagead2.googlesyndication.com/bg/V6DtokwJh9Fgiqydg7O-dbjnh59Yi9_n4aBMW1s9fk8.js line 2 > eval line 1289 > eval line 1 > eval line 1 > eval, line 1: WEBGL_debug_renderer_info is deprecated in Firefox and will be removed. Please use RENDERER.
JavaScript warning: https://pagead2.googlesyndication.com/bg/V6DtokwJh9Fgiqydg7O-dbjnh59Yi9_n4aBMW1s9fk8.js line 2 > eval line 2138 > eval line 1 > eval line 1 > eval, line 1: WEBGL_debug_renderer_info is deprecated in Firefox and will be removed. Please use RENDERER.
JavaScript warning: https://pagead2.googlesyndication.com/bg/V6DtokwJh9Fgiqydg7O-dbjnh59Yi9_n4aBMW1s9fk8.js line 2 > eval line 4803 > eval line 1 > eval line 1 > eval, line 1: WEBGL_debug_renderer_info is deprecated in Firefox and will be removed. Please use RENDERER.
JavaScript warning: https://pagead2.googlesyndication.com/bg/V6DtokwJh9Fgiqydg7O-dbjnh59Yi9_n4aBMW1s9fk8.js line 2 > eval line 3593 > eval line 1 > eval line 1 > eval, line 1: WEBGL_debug_renderer_info is deprecated in Firefox and will be removed. Please use RENDERER.
JavaScript warning: https://pagead2.googlesyndication.com/bg/V6DtokwJh9Fgiqydg7O-dbjnh59Yi9_n4aBMW1s9fk8.js line 2 > eval line 973 > eval line 1 > eval line 1 > eval, line 1: WEBGL_debug_renderer_info is deprecated in Firefox and will be removed. Please use RENDERER.
1658490474938 geckodriver INFO Listening on 127.0.0.1:55822
1658490475451 mozrunner::runner INFO Running command: "/Applications/Firefox.app/Contents/MacOS/firefox-bin" "--marionette" "--remote-debugging-port" "55823" "--remote-allow-hosts" "localhost" "-foreground" "-no-remote" "-profile" "/var/folders/7r/wjkz58cd79j9nw8sjydfk4d40000gp/T/rust_mozprofilez00Az5"
1658490475854 Marionette INFO Marionette enabled
2022-07-22 14:47:55.880 plugin-container[44226:3766102] nil host used in call to allowsSpecificHTTPSCertificateForHost
2022-07-22 14:47:55.881 plugin-container[44226:3766102] nil host used in call to allowsAnyHTTPSCertificateForHost:
2022-07-22 14:47:55.888 plugin-container[44226:3766102] nil host used in call to allowsSpecificHTTPSCertificateForHost
2022-07-22 14:47:55.888 plugin-container[44226:3766102] nil host used in call to allowsAnyHTTPSCertificateForHost:
2022-07-22 14:47:55.888 plugin-container[44226:3766100] nil host used in call to allowsSpecificHTTPSCertificateForHost
2022-07-22 14:47:55.888 plugin-container[44226:3766100] nil host used in call to allowsAnyHTTPSCertificateForHost:
1658490476009 Marionette INFO Listening on port 55846
WebDriver BiDi listening on ws://localhost:55823
Read port: 55846
1658490476178 RemoteAgent WARN TLS certificate errors will be ignored for this session
console.warn: SearchSettings: "get: No settings file exists, new profile?" (new NotFoundError("Could not open the file at /var/folders/7r/wjkz58cd79j9nw8sjydfk4d40000gp/T/rust_mozprofilez00Az5/search.json.mozlz4", (void 0)))
DevTools listening on ws://localhost:55823/devtools/browser/172f9dbb-b4ba-4d2a-903a-b61d52a15be7
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
JavaScript error: , line 0: TypeError: NetworkError when attempting to fetch resource.
JavaScript warning: https://pagead2.googlesyndication.com/bg/V6DtokwJh9Fgiqydg7O-dbjnh59Yi9_n4aBMW1s9fk8.js line 2 > eval line 988 > eval line 1 > eval line 1 > eval, line 1: WEBGL_debug_renderer_info is deprecated in Firefox and will be removed. Please use RENDERER.
console.warn: LoginRecipes: "getRecipes: falling back to a synchronous message for:" "https://accounts.google.com"
console.warn: LoginRecipes: "getRecipes: falling back to a synchronous message for:" "https://accounts.google.com"
JavaScript warning: https://accounts.google.com/ServiceLogin?faa=1&rip=1&continue=https://accounts.google.com/gsi/select?client_id%3D49625052041-kgt0hghf445lmcmhijv46b715m2mpbct.apps.googleusercontent.com%26ux_mode%3Dpopup%26ui_mode%3Dcard%26as%3DdsUFn8vNS50ynAuJ5ATfeA%26channel_id%3D33ee86a3dfa5f82d09254f30d07c4d0d26d29aaf92778a886f5ad92135005d6a%26origin%3Dhttps://twitter.com line 2 > eval line 7117 > eval line 1 > eval line 1 > eval, line 1: WEBGL_debug_renderer_info is deprecated in Firefox and will be removed. Please use RENDERER.
console.warn: LoginRecipes: "getRecipes: falling back to a synchronous message for:" "https://accounts.google.com"
JavaScript error: , line 0: TypeError: NetworkError when attempting to fetch resource.
JavaScript warning: https://pagead2.googlesyndication.com/bg/V6DtokwJh9Fgiqydg7O-dbjnh59Yi9_n4aBMW1s9fk8.js line 2 > eval line 4595 > eval line 1 > eval line 1 > eval, line 1: WEBGL_debug_renderer_info is deprecated in Firefox and will be removed. Please use RENDERER.
JavaScript error: , line 0: TypeError: NetworkError when attempting to fetch resource.
JavaScript warning: https://pagead2.googlesyndication.com/bg/V6DtokwJh9Fgiqydg7O-dbjnh59Yi9_n4aBMW1s9fk8.js line 2 > eval line 6026 > eval line 1 > eval line 1 > eval, line 1: WEBGL_debug_renderer_info is deprecated in Firefox and will be removed. Please use RENDERER.
JavaScript error: , line 0: TypeError: NetworkError when attempting to fetch resource.
JavaScript warning: https://pagead2.googlesyndication.com/bg/V6DtokwJh9Fgiqydg7O-dbjnh59Yi9_n4aBMW1s9fk8.js line 2 > eval line 3067 > eval line 1 > eval line 1 > eval, line 1: WEBGL_debug_renderer_info is deprecated in Firefox and will be removed. Please use RENDERER.
JavaScript error: , line 0: TypeError: NetworkError when attempting to fetch resource.
JavaScript warning: https://pagead2.googlesyndication.com/bg/V6DtokwJh9Fgiqydg7O-dbjnh59Yi9_n4aBMW1s9fk8.js line 2 > eval line 3202 > eval line 1 > eval line 1 > eval, line 1: WEBGL_debug_renderer_info is deprecated in Firefox and will be removed. Please use RENDERER.
JavaScript error: , line 0: TypeError: NetworkError when attempting to fetch resource.
JavaScript warning: https://z.moatads.com/quantcastv2691176990399/moatad.js#moatClientLevel1=p-1RYxePXT9bCS2&moatClientLevel2=qfm&moatClientLevel3=9c271472-f715-4e83-a38a-b6c7ac81d8ee&moatClientLevel4=1ee9313b-bde2-4a62-82b0-04af2ff0e23f&uid=T2oFwV9PNdYiJy3ZSUQ932xfQ9t0aW01YO0=, line 245: WEBGL_debug_renderer_info is deprecated in Firefox and will be removed. Please use RENDERER.
JavaScript error: , line 0: TypeError: NetworkError when attempting to fetch resource.
JavaScript warning: https://pagead2.googlesyndication.com/bg/V6DtokwJh9Fgiqydg7O-dbjnh59Yi9_n4aBMW1s9fk8.js line 2 > eval line 3046 > eval line 1 > eval line 1 > eval, line 1: WEBGL_debug_renderer_info is deprecated in Firefox and will be removed. Please use RENDERER.
JavaScript error: , line 0: TypeError: NetworkError when attempting to fetch resource.
JavaScript warning: https://pagead2.googlesyndication.com/bg/V6DtokwJh9Fgiqydg7O-dbjnh59Yi9_n4aBMW1s9fk8.js line 2 > eval line 5619 > eval line 1 > eval line 1 > eval, line 1: WEBGL_debug_renderer_info is deprecated in Firefox and will be removed. Please use RENDERER.
JavaScript error: , line 0: TypeError: NetworkError when attempting to fetch resource.
JavaScript warning: https://pagead2.googlesyndication.com/bg/V6DtokwJh9Fgiqydg7O-dbjnh59Yi9_n4aBMW1s9fk8.js line 2 > eval line 578 > eval line 1 > eval line 1 > eval, line 1: WEBGL_debug_renderer_info is deprecated in Firefox and will be removed. Please use RENDERER.
JavaScript error: , line 0: TypeError: NetworkError when attempting to fetch resource.
JavaScript warning: https://pagead2.googlesyndication.com/bg/V6DtokwJh9Fgiqydg7O-dbjnh59Yi9_n4aBMW1s9fk8.js line 2 > eval line 5068 > eval line 1 > eval line 1 > eval, line 1: WEBGL_debug_renderer_info is deprecated in Firefox and will be removed. Please use RENDERER.
JavaScript error: , line 0: TypeError: NetworkError when attempting to fetch resource.
JavaScript warning: https://pagead2.googlesyndication.com/bg/V6DtokwJh9Fgiqydg7O-dbjnh59Yi9_n4aBMW1s9fk8.js line 2 > eval line 2104 > eval line 1 > eval line 1 > eval, line 1: WEBGL_debug_renderer_info is deprecated in Firefox and will be removed. Please use RENDERER.
JavaScript error: , line 0: TypeError: NetworkError when attempting to fetch resource.
JavaScript warning: https://pagead2.googlesyndication.com/bg/V6DtokwJh9Fgiqydg7O-dbjnh59Yi9_n4aBMW1s9fk8.js line 2 > eval line 5408 > eval line 1 > eval line 1 > eval, line 1: WEBGL_debug_renderer_info is deprecated in Firefox and will be removed. Please use RENDERER.
JavaScript error: , line 0: TypeError: NetworkError when attempting to fetch resource.
JavaScript warning: https://pagead2.googlesyndication.com/bg/V6DtokwJh9Fgiqydg7O-dbjnh59Yi9_n4aBMW1s9fk8.js line 2 > eval line 2518 > eval line 1 > eval line 1 > eval, line 1: WEBGL_debug_renderer_info is deprecated in Firefox and will be removed. Please use RENDERER.
JavaScript error: , line 0: TypeError: NetworkError when attempting to fetch resource.
JavaScript error: , line 0: TypeError: NetworkError when attempting to fetch resource.
JavaScript warning: https://pagead2.googlesyndication.com/bg/V6DtokwJh9Fgiqydg7O-dbjnh59Yi9_n4aBMW1s9fk8.js line 2 > eval line 1256 > eval line 1 > eval line 1 > eval, line 1: WEBGL_debug_renderer_info is deprecated in Firefox and will be removed. Please use RENDERER.
JavaScript error: , line 0: TypeError: NetworkError when attempting to fetch resource.
JavaScript warning: https://pagead2.googlesyndication.com/bg/V6DtokwJh9Fgiqydg7O-dbjnh59Yi9_n4aBMW1s9fk8.js line 2 > eval line 692 > eval line 1 > eval line 1 > eval, line 1: WEBGL_debug_renderer_info is deprecated in Firefox and will be removed. Please use RENDERER.
JavaScript error: , line 0: TypeError: NetworkError when attempting to fetch resource.
JavaScript warning: https://pagead2.googlesyndication.com/bg/V6DtokwJh9Fgiqydg7O-dbjnh59Yi9_n4aBMW1s9fk8.js line 2 > eval line 7010 > eval line 1 > eval line 1 > eval, line 1: WEBGL_debug_renderer_info is deprecated in Firefox and will be removed. Please use RENDERER.
JavaScript error: , line 0: TypeError: NetworkError when attempting to fetch resource.
JavaScript warning: https://pagead2.googlesyndication.com/bg/V6DtokwJh9Fgiqydg7O-dbjnh59Yi9_n4aBMW1s9fk8.js line 2 > eval line 4385 > eval line 1 > eval line 1 > eval, line 1: WEBGL_debug_renderer_info is deprecated in Firefox and will be removed. Please use RENDERER.
JavaScript error: , line 0: TypeError: NetworkError when attempting to fetch resource.
JavaScript warning: https://z.moatads.com/quantcastv2691176990399/moatad.js#moatClientLevel1=p-1RYxePXT9bCS2&moatClientLevel2=qfm&moatClientLevel3=d3f3ab66-28ff-45ea-8fd2-37971841ebcd&moatClientLevel4=62350121-879e-4765-a15c-47a76689ba12&uid=LiOLvz4Gu6gvP5mkAnqClxgGoKEtFgswiEg=, line 245: WEBGL_debug_renderer_info is deprecated in Firefox and will be removed. Please use RENDERER.
JavaScript error: , line 0: TypeError: NetworkError when attempting to fetch resource.
JavaScript warning: https://pagead2.googlesyndication.com/bg/V6DtokwJh9Fgiqydg7O-dbjnh59Yi9_n4aBMW1s9fk8.js line 2 > eval line 3239 > eval line 1 > eval line 1 > eval, line 1: WEBGL_debug_renderer_info is deprecated in Firefox and will be removed. Please use RENDERER.
JavaScript error: , line 0: TypeError: NetworkError when attempting to fetch resource.
JavaScript warning: https://pagead2.googlesyndication.com/bg/V6DtokwJh9Fgiqydg7O-dbjnh59Yi9_n4aBMW1s9fk8.js line 2 > eval line 5259 > eval line 1 > eval line 1 > eval, line 1: WEBGL_debug_renderer_info is deprecated in Firefox and will be removed. Please use RENDERER.
JavaScript error: , line 0: TypeError: NetworkError when attempting to fetch resource.
JavaScript warning: https://pagead2.googlesyndication.com/bg/V6DtokwJh9Fgiqydg7O-dbjnh59Yi9_n4aBMW1s9fk8.js line 2 > eval line 1533 > eval line 1 > eval line 1 > eval, line 1: WEBGL_debug_renderer_info is deprecated in Firefox and will be removed. Please use RENDERER.
JavaScript error: , line 0: TypeError: NetworkError when attempting to fetch resource.
1658491350399 geckodriver INFO Listening on 127.0.0.1:56591
1658491350909 mozrunner::runner INFO Running command: "/Applications/Firefox.app/Contents/MacOS/firefox-bin" "--marionette" "--remote-debugging-port" "56592" "--remote-allow-hosts" "localhost" "-foreground" "-no-remote" "-profile" "/var/folders/7r/wjkz58cd79j9nw8sjydfk4d40000gp/T/rust_mozprofileQigVbV"
1658491351353 Marionette INFO Marionette enabled
2022-07-22 15:02:31.378 plugin-container[44430:3774196] nil host used in call to allowsSpecificHTTPSCertificateForHost
2022-07-22 15:02:31.378 plugin-container[44430:3774196] nil host used in call to allowsAnyHTTPSCertificateForHost:
2022-07-22 15:02:31.387 plugin-container[44430:3774196] nil host used in call to allowsSpecificHTTPSCertificateForHost
2022-07-22 15:02:31.387 plugin-container[44430:3774196] nil host used in call to allowsAnyHTTPSCertificateForHost:
2022-07-22 15:02:31.387 plugin-container[44430:3774194] nil host used in call to allowsSpecificHTTPSCertificateForHost
2022-07-22 15:02:31.387 plugin-container[44430:3774194] nil host used in call to allowsAnyHTTPSCertificateForHost:
1658491351503 Marionette INFO Listening on port 56599
WebDriver BiDi listening on ws://localhost:56592
Read port: 56599
1658491351573 RemoteAgent WARN TLS certificate errors will be ignored for this session
console.warn: SearchSettings: "get: No settings file exists, new profile?" (new NotFoundError("Could not open the file at /var/folders/7r/wjkz58cd79j9nw8sjydfk4d40000gp/T/rust_mozprofileQigVbV/search.json.mozlz4", (void 0)))
DevTools listening on ws://localhost:56592/devtools/browser/9088ea3e-785a-46f4-b3b4-861d94c76afd
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
JavaScript warning: https://pagead2.googlesyndication.com/bg/V6DtokwJh9Fgiqydg7O-dbjnh59Yi9_n4aBMW1s9fk8.js line 2 > eval line 3749 > eval line 1 > eval line 1 > eval, line 1: WEBGL_debug_renderer_info is deprecated in Firefox and will be removed. Please use RENDERER.
console.warn: LoginRecipes: "getRecipes: falling back to a synchronous message for:" "https://twitter.com"
JavaScript error: , line 0: TypeError: NetworkError when attempting to fetch resource.
1658491398841 geckodriver INFO Listening on 127.0.0.1:56668
1658491399350 mozrunner::runner INFO Running command: "/Applications/Firefox.app/Contents/MacOS/firefox-bin" "--marionette" "--remote-debugging-port" "56669" "--remote-allow-hosts" "localhost" "-foreground" "-no-remote" "-profile" "/var/folders/7r/wjkz58cd79j9nw8sjydfk4d40000gp/T/rust_mozprofilehMexqA"
1658491399805 Marionette INFO Marionette enabled
2022-07-22 15:03:19.832 plugin-container[44460:3775147] nil host used in call to allowsSpecificHTTPSCertificateForHost
2022-07-22 15:03:19.832 plugin-container[44460:3775147] nil host used in call to allowsAnyHTTPSCertificateForHost:
2022-07-22 15:03:19.840 plugin-container[44460:3775147] nil host used in call to allowsSpecificHTTPSCertificateForHost
2022-07-22 15:03:19.840 plugin-container[44460:3775147] nil host used in call to allowsAnyHTTPSCertificateForHost:
2022-07-22 15:03:19.840 plugin-container[44460:3775152] nil host used in call to allowsSpecificHTTPSCertificateForHost
2022-07-22 15:03:19.840 plugin-container[44460:3775152] nil host used in call to allowsAnyHTTPSCertificateForHost:
1658491399843 Marionette INFO Listening on port 56676
WebDriver BiDi listening on ws://localhost:56669
Read port: 56676
1658491399973 RemoteAgent WARN TLS certificate errors will be ignored for this session
console.warn: SearchSettings: "get: No settings file exists, new profile?" (new NotFoundError("Could not open the file at /var/folders/7r/wjkz58cd79j9nw8sjydfk4d40000gp/T/rust_mozprofilehMexqA/search.json.mozlz4", (void 0)))
DevTools listening on ws://localhost:56669/devtools/browser/f3a9db27-8e98-48d4-8b14-3b23a4085d35
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: LoginRecipes: "getRecipes: falling back to a synchronous message for:" "https://twitter.com"
JavaScript warning: https://pagead2.googlesyndication.com/bg/V6DtokwJh9Fgiqydg7O-dbjnh59Yi9_n4aBMW1s9fk8.js line 2 > eval line 5770 > eval line 1 > eval line 1 > eval, line 1: WEBGL_debug_renderer_info is deprecated in Firefox and will be removed. Please use RENDERER.
JavaScript error: , line 0: TypeError: NetworkError when attempting to fetch resource.
JavaScript warning: https://pagead2.googlesyndication.com/bg/V6DtokwJh9Fgiqydg7O-dbjnh59Yi9_n4aBMW1s9fk8.js line 2 > eval line 593 > eval line 1 > eval line 1 > eval, line 1: WEBGL_debug_renderer_info is deprecated in Firefox and will be removed. Please use RENDERER.
1658491484764 Marionette INFO Stopped listening on port 56676
JavaScript error: , line 0: NotFoundError: No such JSWindowActor 'DevToolsFrame'
JavaScript error: , line 0: NotFoundError: No such JSWindowActor 'DevToolsFrame'
1658491486994 Marionette INFO Stopped listening on port 56599
JavaScript error: , line 0: NotFoundError: No such JSWindowActor 'DevToolsFrame'
JavaScript error: , line 0: NotFoundError: No such JSWindowActor 'DevToolsFrame'
1658491488014 Marionette INFO Stopped listening on port 55846
1658491488975 Marionette INFO Stopped listening on port 55496
JavaScript error: , line 0: NotFoundError: No such JSWindowActor 'DevToolsFrame'
JavaScript error: , line 0: NotFoundError: No such JSWindowActor 'DevToolsFrame'
JavaScript error: , line 0: TypeError: NetworkError when attempting to fetch resource.
JavaScript error: , line 0: TypeError: NetworkError when attempting to fetch resource.
JavaScript error: , line 0: TypeError: NetworkError when attempting to fetch resource.
JavaScript error: , line 0: TypeError: NetworkError when attempting to fetch resource.
JavaScript error: , line 0: TypeError: NetworkError when attempting to fetch resource.
1658491490291 Marionette INFO Stopped listening on port 55372
JavaScript error: , line 0: NotFoundError: No such JSWindowActor 'DevToolsFrame'
JavaScript error: , line 0: NotFoundError: No such JSWindowActor 'DevToolsFrame'
1658491491183 Marionette INFO Stopped listening on port 55316
1658491540382 geckodriver INFO Listening on 127.0.0.1:56780
1658491540892 mozrunner::runner INFO Running command: "/Applications/Firefox.app/Contents/MacOS/firefox-bin" "--marionette" "--remote-debugging-port" "56781" "--remote-allow-hosts" "localhost" "-foreground" "-no-remote" "-profile" "/var/folders/7r/wjkz58cd79j9nw8sjydfk4d40000gp/T/rust_mozprofilewwBRTZ"
1658491541374 Marionette INFO Marionette enabled
2022-07-22 15:05:41.386 plugin-container[44500:3777244] nil host used in call to allowsSpecificHTTPSCertificateForHost
2022-07-22 15:05:41.386 plugin-container[44500:3777244] nil host used in call to allowsAnyHTTPSCertificateForHost:
2022-07-22 15:05:41.388 plugin-container[44500:3777244] nil host used in call to allowsSpecificHTTPSCertificateForHost
2022-07-22 15:05:41.389 plugin-container[44500:3777244] nil host used in call to allowsAnyHTTPSCertificateForHost:
2022-07-22 15:05:41.389 plugin-container[44500:3777242] nil host used in call to allowsSpecificHTTPSCertificateForHost
2022-07-22 15:05:41.389 plugin-container[44500:3777242] nil host used in call to allowsAnyHTTPSCertificateForHost:
1658491541520 Marionette INFO Listening on port 56788
Read port: 56788
WebDriver BiDi listening on ws://localhost:56781
1658491541612 RemoteAgent WARN TLS certificate errors will be ignored for this session
console.warn: SearchSettings: "get: No settings file exists, new profile?" (new NotFoundError("Could not open the file at /var/folders/7r/wjkz58cd79j9nw8sjydfk4d40000gp/T/rust_mozprofilewwBRTZ/search.json.mozlz4", (void 0)))
DevTools listening on ws://localhost:56781/devtools/browser/f82f9283-d8d6-48e3-a027-efba69c7894b
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
Exiting due to channel error.
Exiting due to channel error.
Exiting due to channel error.
1658491562534 geckodriver INFO Listening on 127.0.0.1:56836
1658491562540 mozrunner::runner INFO Running command: "/Applications/Firefox.app/Contents/MacOS/firefox-bin" "--marionette" "--remote-debugging-port" "56837" "--remote-allow-hosts" "localhost" "-foreground" "-no-remote" "-profile" "/var/folders/7r/wjkz58cd79j9nw8sjydfk4d40000gp/T/rust_mozprofileYYapEt"
2022-07-22 15:06:02.849 plugin-container[44527:3777976] nil host used in call to allowsSpecificHTTPSCertificateForHost
2022-07-22 15:06:02.850 plugin-container[44527:3777976] nil host used in call to allowsAnyHTTPSCertificateForHost:
2022-07-22 15:06:02.852 plugin-container[44527:3777976] nil host used in call to allowsSpecificHTTPSCertificateForHost
2022-07-22 15:06:02.852 plugin-container[44527:3777976] nil host used in call to allowsAnyHTTPSCertificateForHost:
2022-07-22 15:06:02.852 plugin-container[44527:3777978] nil host used in call to allowsSpecificHTTPSCertificateForHost
2022-07-22 15:06:02.852 plugin-container[44527:3777978] nil host used in call to allowsAnyHTTPSCertificateForHost:
1658491562858 Marionette INFO Marionette enabled
1658491562882 Marionette INFO Listening on port 56842
WebDriver BiDi listening on ws://localhost:56837
Read port: 56842
1658491563065 RemoteAgent WARN TLS certificate errors will be ignored for this session
console.warn: SearchSettings: "get: No settings file exists, new profile?" (new NotFoundError("Could not open the file at /var/folders/7r/wjkz58cd79j9nw8sjydfk4d40000gp/T/rust_mozprofileYYapEt/search.json.mozlz4", (void 0)))
DevTools listening on ws://localhost:56837/devtools/browser/3b4057e0-fb0c-48b8-b33c-e599bbe47800
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
JavaScript warning: https://pagead2.googlesyndication.com/bg/V6DtokwJh9Fgiqydg7O-dbjnh59Yi9_n4aBMW1s9fk8.js line 2 > eval line 5508 > eval line 1 > eval line 1 > eval, line 1: WEBGL_debug_renderer_info is deprecated in Firefox and will be removed. Please use RENDERER.
1658491610045 geckodriver INFO Listening on 127.0.0.1:56920
1658491610557 mozrunner::runner INFO Running command: "/Applications/Firefox.app/Contents/MacOS/firefox-bin" "--marionette" "--remote-debugging-port" "56921" "--remote-allow-hosts" "localhost" "-foreground" "-no-remote" "-profile" "/var/folders/7r/wjkz58cd79j9nw8sjydfk4d40000gp/T/rust_mozprofile4E5GMp"
2022-07-22 15:06:50.783 plugin-container[44553:3778747] nil host used in call to allowsSpecificHTTPSCertificateForHost
2022-07-22 15:06:50.783 plugin-container[44553:3778747] nil host used in call to allowsAnyHTTPSCertificateForHost:
1658491610793 Marionette INFO Marionette enabled
2022-07-22 15:06:50.817 plugin-container[44553:3778747] nil host used in call to allowsSpecificHTTPSCertificateForHost
2022-07-22 15:06:50.817 plugin-container[44553:3778747] nil host used in call to allowsAnyHTTPSCertificateForHost:
2022-07-22 15:06:50.818 plugin-container[44553:3778745] nil host used in call to allowsSpecificHTTPSCertificateForHost
2022-07-22 15:06:50.818 plugin-container[44553:3778745] nil host used in call to allowsAnyHTTPSCertificateForHost:
1658491610833 Marionette INFO Listening on port 56928
WebDriver BiDi listening on ws://localhost:56921
Read port: 56928
1658491611047 RemoteAgent WARN TLS certificate errors will be ignored for this session
console.warn: SearchSettings: "get: No settings file exists, new profile?" (new NotFoundError("Could not open the file at /var/folders/7r/wjkz58cd79j9nw8sjydfk4d40000gp/T/rust_mozprofile4E5GMp/search.json.mozlz4", (void 0)))
DevTools listening on ws://localhost:56921/devtools/browser/b76cb649-ac1a-4b09-9e12-8be705c766e6
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
1658491646224 geckodriver INFO Listening on 127.0.0.1:56990
1658491646735 mozrunner::runner INFO Running command: "/Applications/Firefox.app/Contents/MacOS/firefox-bin" "--marionette" "--remote-debugging-port" "56991" "--remote-allow-hosts" "localhost" "-foreground" "-no-remote" "-profile" "/var/folders/7r/wjkz58cd79j9nw8sjydfk4d40000gp/T/rust_mozprofile9Nv8CT"
1658491647066 Marionette INFO Marionette enabled
2022-07-22 15:07:27.087 plugin-container[44575:3779366] nil host used in call to allowsSpecificHTTPSCertificateForHost
2022-07-22 15:07:27.087 plugin-container[44575:3779366] nil host used in call to allowsAnyHTTPSCertificateForHost:
1658491647097 Marionette INFO Listening on port 56998
2022-07-22 15:07:27.098 plugin-container[44575:3779366] nil host used in call to allowsSpecificHTTPSCertificateForHost
2022-07-22 15:07:27.098 plugin-container[44575:3779366] nil host used in call to allowsAnyHTTPSCertificateForHost:
2022-07-22 15:07:27.098 plugin-container[44575:3779371] nil host used in call to allowsSpecificHTTPSCertificateForHost
2022-07-22 15:07:27.098 plugin-container[44575:3779371] nil host used in call to allowsAnyHTTPSCertificateForHost:
WebDriver BiDi listening on ws://localhost:56991
Read port: 56998
1658491647278 RemoteAgent WARN TLS certificate errors will be ignored for this session
console.warn: SearchSettings: "get: No settings file exists, new profile?" (new NotFoundError("Could not open the file at /var/folders/7r/wjkz58cd79j9nw8sjydfk4d40000gp/T/rust_mozprofile9Nv8CT/search.json.mozlz4", (void 0)))
DevTools listening on ws://localhost:56991/devtools/browser/50ab980f-5ea4-4ba1-8daf-439fe2b15254
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
1658491663489 Marionette INFO Stopped listening on port 56998
1658491666810 geckodriver INFO Listening on 127.0.0.1:57050
1658491667320 mozrunner::runner INFO Running command: "/Applications/Firefox.app/Contents/MacOS/firefox-bin" "--marionette" "--remote-debugging-port" "57051" "--remote-allow-hosts" "localhost" "-foreground" "-no-remote" "-profile" "/var/folders/7r/wjkz58cd79j9nw8sjydfk4d40000gp/T/rust_mozprofile2VYVYk"
2022-07-22 15:07:47.629 plugin-container[44597:3779961] nil host used in call to allowsSpecificHTTPSCertificateForHost
2022-07-22 15:07:47.629 plugin-container[44597:3779961] nil host used in call to allowsAnyHTTPSCertificateForHost:
2022-07-22 15:07:47.632 plugin-container[44597:3779961] nil host used in call to allowsSpecificHTTPSCertificateForHost
2022-07-22 15:07:47.632 plugin-container[44597:3779961] nil host used in call to allowsAnyHTTPSCertificateForHost:
2022-07-22 15:07:47.632 plugin-container[44597:3779959] nil host used in call to allowsSpecificHTTPSCertificateForHost
2022-07-22 15:07:47.632 plugin-container[44597:3779959] nil host used in call to allowsAnyHTTPSCertificateForHost:
1658491667633 Marionette INFO Marionette enabled
1658491667657 Marionette INFO Listening on port 57058
WebDriver BiDi listening on ws://localhost:57051
Read port: 57058
1658491667848 RemoteAgent WARN TLS certificate errors will be ignored for this session
console.warn: SearchSettings: "get: No settings file exists, new profile?" (new NotFoundError("Could not open the file at /var/folders/7r/wjkz58cd79j9nw8sjydfk4d40000gp/T/rust_mozprofile2VYVYk/search.json.mozlz4", (void 0)))
DevTools listening on ws://localhost:57051/devtools/browser/e86e1761-56e9-447a-bb6b-3cbf828e7261
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
1658491690549 Marionette INFO Stopped listening on port 57058
1658491693697 geckodriver INFO Listening on 127.0.0.1:57114
1658491694212 mozrunner::runner INFO Running command: "/Applications/Firefox.app/Contents/MacOS/firefox-bin" "--marionette" "--remote-debugging-port" "57115" "--remote-allow-hosts" "localhost" "-foreground" "-no-remote" "-profile" "/var/folders/7r/wjkz58cd79j9nw8sjydfk4d40000gp/T/rust_mozprofileO8OVAC"
1658491694555 Marionette INFO Marionette enabled
2022-07-22 15:08:14.562 plugin-container[44620:3780535] nil host used in call to allowsSpecificHTTPSCertificateForHost
2022-07-22 15:08:14.562 plugin-container[44620:3780535] nil host used in call to allowsAnyHTTPSCertificateForHost:
2022-07-22 15:08:14.582 plugin-container[44620:3780535] nil host used in call to allowsSpecificHTTPSCertificateForHost
2022-07-22 15:08:14.582 plugin-container[44620:3780535] nil host used in call to allowsAnyHTTPSCertificateForHost:
2022-07-22 15:08:14.583 plugin-container[44620:3780542] nil host used in call to allowsSpecificHTTPSCertificateForHost
2022-07-22 15:08:14.583 plugin-container[44620:3780542] nil host used in call to allowsAnyHTTPSCertificateForHost:
1658491694584 Marionette INFO Listening on port 57122
WebDriver BiDi listening on ws://localhost:57115
Read port: 57122
1658491694775 RemoteAgent WARN TLS certificate errors will be ignored for this session
console.warn: SearchSettings: "get: No settings file exists, new profile?" (new NotFoundError("Could not open the file at /var/folders/7r/wjkz58cd79j9nw8sjydfk4d40000gp/T/rust_mozprofileO8OVAC/search.json.mozlz4", (void 0)))
DevTools listening on ws://localhost:57115/devtools/browser/62f1caf2-f707-470b-ac16-0892c7c68405
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
Exiting due to channel error.
Exiting due to channel error.
Exiting due to channel error.
1658491723495 geckodriver INFO Listening on 127.0.0.1:57172
1658491723500 mozrunner::runner INFO Running command: "/Applications/Firefox.app/Contents/MacOS/firefox-bin" "--marionette" "--remote-debugging-port" "57173" "--remote-allow-hosts" "localhost" "-foreground" "-no-remote" "-profile" "/var/folders/7r/wjkz58cd79j9nw8sjydfk4d40000gp/T/rust_mozprofilefp0VgK"
2022-07-22 15:08:43.796 plugin-container[44639:3781076] nil host used in call to allowsSpecificHTTPSCertificateForHost
2022-07-22 15:08:43.796 plugin-container[44639:3781076] nil host used in call to allowsAnyHTTPSCertificateForHost:
1658491723801 Marionette INFO Marionette enabled
2022-07-22 15:08:43.801 plugin-container[44639:3781076] nil host used in call to allowsSpecificHTTPSCertificateForHost
2022-07-22 15:08:43.801 plugin-container[44639:3781076] nil host used in call to allowsAnyHTTPSCertificateForHost:
2022-07-22 15:08:43.802 plugin-container[44639:3781074] nil host used in call to allowsSpecificHTTPSCertificateForHost
2022-07-22 15:08:43.802 plugin-container[44639:3781074] nil host used in call to allowsAnyHTTPSCertificateForHost:
1658491723819 Marionette INFO Listening on port 57178
WebDriver BiDi listening on ws://localhost:57173
Read port: 57178
1658491723995 RemoteAgent WARN TLS certificate errors will be ignored for this session
console.warn: SearchSettings: "get: No settings file exists, new profile?" (new NotFoundError("Could not open the file at /var/folders/7r/wjkz58cd79j9nw8sjydfk4d40000gp/T/rust_mozprofilefp0VgK/search.json.mozlz4", (void 0)))
DevTools listening on ws://localhost:57173/devtools/browser/d44a4f55-8ca7-4c89-9630-bed29eaff12e
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
1658491774355 geckodriver INFO Listening on 127.0.0.1:57236
1658491774868 mozrunner::runner INFO Running command: "/Applications/Firefox.app/Contents/MacOS/firefox-bin" "--marionette" "--remote-debugging-port" "57237" "--remote-allow-hosts" "localhost" "-foreground" "-no-remote" "-profile" "/var/folders/7r/wjkz58cd79j9nw8sjydfk4d40000gp/T/rust_mozprofileg2xL9j"
1658491775301 Marionette INFO Marionette enabled
2022-07-22 15:09:35.320 plugin-container[44670:3781962] nil host used in call to allowsSpecificHTTPSCertificateForHost
2022-07-22 15:09:35.320 plugin-container[44670:3781962] nil host used in call to allowsAnyHTTPSCertificateForHost:
2022-07-22 15:09:35.328 plugin-container[44670:3781962] nil host used in call to allowsSpecificHTTPSCertificateForHost
2022-07-22 15:09:35.328 plugin-container[44670:3781962] nil host used in call to allowsAnyHTTPSCertificateForHost:
2022-07-22 15:09:35.328 plugin-container[44670:3781960] nil host used in call to allowsSpecificHTTPSCertificateForHost
2022-07-22 15:09:35.328 plugin-container[44670:3781960] nil host used in call to allowsAnyHTTPSCertificateForHost:
1658491775338 Marionette INFO Listening on port 57244
WebDriver BiDi listening on ws://localhost:57237
Read port: 57244
1658491775458 RemoteAgent WARN TLS certificate errors will be ignored for this session
console.warn: SearchSettings: "get: No settings file exists, new profile?" (new NotFoundError("Could not open the file at /var/folders/7r/wjkz58cd79j9nw8sjydfk4d40000gp/T/rust_mozprofileg2xL9j/search.json.mozlz4", (void 0)))
DevTools listening on ws://localhost:57237/devtools/browser/566aec1d-4966-447b-964e-762ddb6607b3
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
1658491806270 Marionette INFO Stopped listening on port 57178
1658491810958 Marionette INFO Stopped listening on port 57244
JavaScript error: , line 0: TypeError: NetworkError when attempting to fetch resource.
1658491821354 Marionette INFO Stopped listening on port 56842
1658492034694 geckodriver INFO Listening on 127.0.0.1:57336
1658492035205 mozrunner::runner INFO Running command: "/Applications/Firefox.app/Contents/MacOS/firefox-bin" "--marionette" "--remote-debugging-port" "57337" "--remote-allow-hosts" "localhost" "-foreground" "-no-remote" "-profile" "/var/folders/7r/wjkz58cd79j9nw8sjydfk4d40000gp/T/rust_mozprofileC95DdX"
1658492035662 Marionette INFO Marionette enabled
1658492035693 Marionette INFO Listening on port 57344
WebDriver BiDi listening on ws://localhost:57337
2022-07-22 15:13:55.703 plugin-container[44761:3784463] nil host used in call to allowsSpecificHTTPSCertificateForHost
2022-07-22 15:13:55.704 plugin-container[44761:3784463] nil host used in call to allowsAnyHTTPSCertificateForHost:
2022-07-22 15:13:55.723 plugin-container[44761:3784463] nil host used in call to allowsSpecificHTTPSCertificateForHost
2022-07-22 15:13:55.723 plugin-container[44761:3784463] nil host used in call to allowsAnyHTTPSCertificateForHost:
2022-07-22 15:13:55.724 plugin-container[44761:3784490] nil host used in call to allowsSpecificHTTPSCertificateForHost
2022-07-22 15:13:55.724 plugin-container[44761:3784490] nil host used in call to allowsAnyHTTPSCertificateForHost:
Read port: 57344
1658492035849 RemoteAgent WARN TLS certificate errors will be ignored for this session
console.warn: SearchSettings: "get: No settings file exists, new profile?" (new NotFoundError("Could not open the file at /var/folders/7r/wjkz58cd79j9nw8sjydfk4d40000gp/T/rust_mozprofileC95DdX/search.json.mozlz4", (void 0)))
DevTools listening on ws://localhost:57337/devtools/browser/de915583-529e-43e1-9706-c503f28d1191
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
1658492112297 geckodriver INFO Listening on 127.0.0.1:57398
1658492112808 mozrunner::runner INFO Running command: "/Applications/Firefox.app/Contents/MacOS/firefox-bin" "--marionette" "--remote-debugging-port" "57399" "--remote-allow-hosts" "localhost" "-foreground" "-no-remote" "-profile" "/var/folders/7r/wjkz58cd79j9nw8sjydfk4d40000gp/T/rust_mozprofileQberZP"
1658492113359 Marionette INFO Marionette enabled
1658492113387 Marionette INFO Listening on port 57406
2022-07-22 15:15:13.388 plugin-container[44794:3785446] nil host used in call to allowsSpecificHTTPSCertificateForHost
2022-07-22 15:15:13.388 plugin-container[44794:3785446] nil host used in call to allowsAnyHTTPSCertificateForHost:
WebDriver BiDi listening on ws://localhost:57399
2022-07-22 15:15:13.391 plugin-container[44794:3785446] nil host used in call to allowsSpecificHTTPSCertificateForHost
2022-07-22 15:15:13.391 plugin-container[44794:3785446] nil host used in call to allowsAnyHTTPSCertificateForHost:
2022-07-22 15:15:13.391 plugin-container[44794:3785473] nil host used in call to allowsSpecificHTTPSCertificateForHost
2022-07-22 15:15:13.391 plugin-container[44794:3785473] nil host used in call to allowsAnyHTTPSCertificateForHost:
Read port: 57406
1658492113510 RemoteAgent WARN TLS certificate errors will be ignored for this session
console.warn: SearchSettings: "get: No settings file exists, new profile?" (new NotFoundError("Could not open the file at /var/folders/7r/wjkz58cd79j9nw8sjydfk4d40000gp/T/rust_mozprofileQberZP/search.json.mozlz4", (void 0)))
DevTools listening on ws://localhost:57399/devtools/browser/429e79a0-2aee-49e1-921e-2a781d06e18f
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
1658492728942 geckodriver INFO Listening on 127.0.0.1:57536
1658492729456 mozrunner::runner INFO Running command: "/Applications/Firefox.app/Contents/MacOS/firefox-bin" "--marionette" "--remote-debugging-port" "57537" "--remote-allow-hosts" "localhost" "-foreground" "-no-remote" "-profile" "/var/folders/7r/wjkz58cd79j9nw8sjydfk4d40000gp/T/rust_mozprofile0zW38a"
1658492729858 Marionette INFO Marionette enabled
2022-07-22 15:25:29.875 plugin-container[44972:3793107] nil host used in call to allowsSpecificHTTPSCertificateForHost
2022-07-22 15:25:29.875 plugin-container[44972:3793107] nil host used in call to allowsAnyHTTPSCertificateForHost:
2022-07-22 15:25:29.884 plugin-container[44972:3793107] nil host used in call to allowsSpecificHTTPSCertificateForHost
2022-07-22 15:25:29.884 plugin-container[44972:3793107] nil host used in call to allowsAnyHTTPSCertificateForHost:
2022-07-22 15:25:29.884 plugin-container[44972:3793114] nil host used in call to allowsSpecificHTTPSCertificateForHost
2022-07-22 15:25:29.884 plugin-container[44972:3793114] nil host used in call to allowsAnyHTTPSCertificateForHost:
1658492730004 Marionette INFO Listening on port 57544
WebDriver BiDi listening on ws://localhost:57537
Read port: 57544
1658492730188 RemoteAgent WARN TLS certificate errors will be ignored for this session
console.warn: SearchSettings: "get: No settings file exists, new profile?" (new NotFoundError("Could not open the file at /var/folders/7r/wjkz58cd79j9nw8sjydfk4d40000gp/T/rust_mozprofile0zW38a/search.json.mozlz4", (void 0)))
DevTools listening on ws://localhost:57537/devtools/browser/01d47080-1610-4ed4-b88f-fc5cd65f8a21
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
1658492762864 geckodriver INFO Listening on 127.0.0.1:57599
1658492763371 mozrunner::runner INFO Running command: "/Applications/Firefox.app/Contents/MacOS/firefox-bin" "--marionette" "--remote-debugging-port" "57600" "--remote-allow-hosts" "localhost" "-foreground" "-no-remote" "-profile" "/var/folders/7r/wjkz58cd79j9nw8sjydfk4d40000gp/T/rust_mozprofilethQ4uF"
2022-07-22 15:26:03.784 plugin-container[44997:3793806] nil host used in call to allowsSpecificHTTPSCertificateForHost
2022-07-22 15:26:03.784 plugin-container[44997:3793806] nil host used in call to allowsAnyHTTPSCertificateForHost:
2022-07-22 15:26:03.788 plugin-container[44997:3793806] nil host used in call to allowsSpecificHTTPSCertificateForHost
2022-07-22 15:26:03.789 plugin-container[44997:3793806] nil host used in call to allowsAnyHTTPSCertificateForHost:
2022-07-22 15:26:03.789 plugin-container[44997:3793804] nil host used in call to allowsSpecificHTTPSCertificateForHost
2022-07-22 15:26:03.789 plugin-container[44997:3793804] nil host used in call to allowsAnyHTTPSCertificateForHost:
1658492763789 Marionette INFO Marionette enabled
1658492763812 Marionette INFO Listening on port 57607
WebDriver BiDi listening on ws://localhost:57600
Read port: 57607
1658492763937 RemoteAgent WARN TLS certificate errors will be ignored for this session
console.warn: SearchSettings: "get: No settings file exists, new profile?" (new NotFoundError("Could not open the file at /var/folders/7r/wjkz58cd79j9nw8sjydfk4d40000gp/T/rust_mozprofilethQ4uF/search.json.mozlz4", (void 0)))
DevTools listening on ws://localhost:57600/devtools/browser/0f488df4-6961-4114-9074-75f1d726f9bb
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
1658494947774 Marionette INFO Stopped listening on port 57406
console.warn: TopSitesFeed: Failed to fetch data from Contile server: NetworkError when attempting to fetch resource.
1658494949561 Marionette INFO Stopped listening on port 56928
1658500012342 Marionette INFO Stopped listening on port 57344
1658500013888 Marionette INFO Stopped listening on port 57544
1658500015176 Marionette INFO Stopped listening on port 57607
1658500053396 geckodriver INFO Listening on 127.0.0.1:58023
1658500053906 mozrunner::runner INFO Running command: "/Applications/Firefox.app/Contents/MacOS/firefox-bin" "--marionette" "--remote-debugging-port" "58024" "--remote-allow-hosts" "localhost" "-foreground" "-no-remote" "-profile" "/var/folders/7r/wjkz58cd79j9nw8sjydfk4d40000gp/T/rust_mozprofileGIeDgj"
2022-07-22 17:27:34.201 plugin-container[45593:3824631] nil host used in call to allowsSpecificHTTPSCertificateForHost
2022-07-22 17:27:34.201 plugin-container[45593:3824631] nil host used in call to allowsAnyHTTPSCertificateForHost:
2022-07-22 17:27:34.204 plugin-container[45593:3824631] nil host used in call to allowsSpecificHTTPSCertificateForHost
2022-07-22 17:27:34.204 plugin-container[45593:3824631] nil host used in call to allowsAnyHTTPSCertificateForHost:
2022-07-22 17:27:34.204 plugin-container[45593:3824629] nil host used in call to allowsSpecificHTTPSCertificateForHost
2022-07-22 17:27:34.204 plugin-container[45593:3824629] nil host used in call to allowsAnyHTTPSCertificateForHost:
1658500054211 Marionette INFO Marionette enabled
1658500054239 Marionette INFO Listening on port 58031
WebDriver BiDi listening on ws://localhost:58024
Read port: 58031
1658500054365 RemoteAgent WARN TLS certificate errors will be ignored for this session
console.warn: SearchSettings: "get: No settings file exists, new profile?" (new NotFoundError("Could not open the file at /var/folders/7r/wjkz58cd79j9nw8sjydfk4d40000gp/T/rust_mozprofileGIeDgj/search.json.mozlz4", (void 0)))
DevTools listening on ws://localhost:58024/devtools/browser/7d05e080-4647-4424-8a76-b0a5162a9575
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
1658500094534 Marionette INFO Stopped listening on port 58031
1658500097649 geckodriver INFO Listening on 127.0.0.1:58091
1658500097653 mozrunner::runner INFO Running command: "/Applications/Firefox.app/Contents/MacOS/firefox-bin" "--marionette" "--remote-debugging-port" "58092" "--remote-allow-hosts" "localhost" "-foreground" "-no-remote" "-profile" "/var/folders/7r/wjkz58cd79j9nw8sjydfk4d40000gp/T/rust_mozprofileQpMR3K"
2022-07-22 17:28:17.881 plugin-container[45610:3825390] nil host used in call to allowsSpecificHTTPSCertificateForHost
2022-07-22 17:28:17.881 plugin-container[45610:3825390] nil host used in call to allowsAnyHTTPSCertificateForHost:
2022-07-22 17:28:17.883 plugin-container[45610:3825390] nil host used in call to allowsSpecificHTTPSCertificateForHost
2022-07-22 17:28:17.883 plugin-container[45610:3825390] nil host used in call to allowsAnyHTTPSCertificateForHost:
2022-07-22 17:28:17.883 plugin-container[45610:3825397] nil host used in call to allowsSpecificHTTPSCertificateForHost
2022-07-22 17:28:17.883 plugin-container[45610:3825397] nil host used in call to allowsAnyHTTPSCertificateForHost:
1658500097885 Marionette INFO Marionette enabled
1658500097908 Marionette INFO Listening on port 58097
WebDriver BiDi listening on ws://localhost:58092
Read port: 58097
1658500098066 RemoteAgent WARN TLS certificate errors will be ignored for this session
console.warn: SearchSettings: "get: No settings file exists, new profile?" (new NotFoundError("Could not open the file at /var/folders/7r/wjkz58cd79j9nw8sjydfk4d40000gp/T/rust_mozprofileQpMR3K/search.json.mozlz4", (void 0)))
DevTools listening on ws://localhost:58092/devtools/browser/bfd17296-8ba6-4c1b-9108-2796b6363d69
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
1658500214096 geckodriver INFO Listening on 127.0.0.1:58158
1658500214101 mozrunner::runner INFO Running command: "/Applications/Firefox.app/Contents/MacOS/firefox-bin" "--marionette" "--remote-debugging-port" "58159" "--remote-allow-hosts" "localhost" "-foreground" "-no-remote" "-profile" "/var/folders/7r/wjkz58cd79j9nw8sjydfk4d40000gp/T/rust_mozprofileKX3cGo"
2022-07-22 17:30:14.333 plugin-container[45640:3826425] nil host used in call to allowsSpecificHTTPSCertificateForHost
2022-07-22 17:30:14.333 plugin-container[45640:3826425] nil host used in call to allowsAnyHTTPSCertificateForHost:
2022-07-22 17:30:14.336 plugin-container[45640:3826425] nil host used in call to allowsSpecificHTTPSCertificateForHost
2022-07-22 17:30:14.336 plugin-container[45640:3826425] nil host used in call to allowsAnyHTTPSCertificateForHost:
2022-07-22 17:30:14.336 plugin-container[45640:3826423] nil host used in call to allowsSpecificHTTPSCertificateForHost
2022-07-22 17:30:14.336 plugin-container[45640:3826423] nil host used in call to allowsAnyHTTPSCertificateForHost:
1658500214337 Marionette INFO Marionette enabled
1658500214358 Marionette INFO Listening on port 58164
WebDriver BiDi listening on ws://localhost:58159
Read port: 58164
1658500214462 RemoteAgent WARN TLS certificate errors will be ignored for this session
console.warn: SearchSettings: "get: No settings file exists, new profile?" (new NotFoundError("Could not open the file at /var/folders/7r/wjkz58cd79j9nw8sjydfk4d40000gp/T/rust_mozprofileKX3cGo/search.json.mozlz4", (void 0)))
DevTools listening on ws://localhost:58159/devtools/browser/76812277-cd36-4f6a-8c34-943d8e803ec1
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
1658500377860 geckodriver INFO Listening on 127.0.0.1:58228
1658500378372 mozrunner::runner INFO Running command: "/Applications/Firefox.app/Contents/MacOS/firefox-bin" "--marionette" "--remote-debugging-port" "58229" "--remote-allow-hosts" "localhost" "-foreground" "-no-remote" "-profile" "/var/folders/7r/wjkz58cd79j9nw8sjydfk4d40000gp/T/rust_mozprofilegmdLOi"
2022-07-22 17:32:58.654 plugin-container[45675:3827538] nil host used in call to allowsSpecificHTTPSCertificateForHost
2022-07-22 17:32:58.654 plugin-container[45675:3827538] nil host used in call to allowsAnyHTTPSCertificateForHost:
2022-07-22 17:32:58.656 plugin-container[45675:3827538] nil host used in call to allowsSpecificHTTPSCertificateForHost
2022-07-22 17:32:58.656 plugin-container[45675:3827538] nil host used in call to allowsAnyHTTPSCertificateForHost:
2022-07-22 17:32:58.657 plugin-container[45675:3827543] nil host used in call to allowsSpecificHTTPSCertificateForHost
2022-07-22 17:32:58.657 plugin-container[45675:3827543] nil host used in call to allowsAnyHTTPSCertificateForHost:
1658500378658 Marionette INFO Marionette enabled
1658500378678 Marionette INFO Listening on port 58236
Read port: 58236
WebDriver BiDi listening on ws://localhost:58229
1658500378837 RemoteAgent WARN TLS certificate errors will be ignored for this session
console.warn: SearchSettings: "get: No settings file exists, new profile?" (new NotFoundError("Could not open the file at /var/folders/7r/wjkz58cd79j9nw8sjydfk4d40000gp/T/rust_mozprofilegmdLOi/search.json.mozlz4", (void 0)))
DevTools listening on ws://localhost:58229/devtools/browser/48b6e7c0-da7f-43ab-9233-bef69b22e522
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
1658500405481 geckodriver INFO Listening on 127.0.0.1:58285
1658500406002 mozrunner::runner INFO Running command: "/Applications/Firefox.app/Contents/MacOS/firefox-bin" "--marionette" "--remote-debugging-port" "58286" "--remote-allow-hosts" "localhost" "-foreground" "-no-remote" "-profile" "/var/folders/7r/wjkz58cd79j9nw8sjydfk4d40000gp/T/rust_mozprofile0yb1kx"
2022-07-22 17:33:26.362 plugin-container[45690:3828050] nil host used in call to allowsSpecificHTTPSCertificateForHost
2022-07-22 17:33:26.363 plugin-container[45690:3828050] nil host used in call to allowsAnyHTTPSCertificateForHost:
2022-07-22 17:33:26.365 plugin-container[45690:3828050] nil host used in call to allowsSpecificHTTPSCertificateForHost
2022-07-22 17:33:26.365 plugin-container[45690:3828050] nil host used in call to allowsAnyHTTPSCertificateForHost:
2022-07-22 17:33:26.365 plugin-container[45690:3828048] nil host used in call to allowsSpecificHTTPSCertificateForHost
2022-07-22 17:33:26.365 plugin-container[45690:3828048] nil host used in call to allowsAnyHTTPSCertificateForHost:
1658500406367 Marionette INFO Marionette enabled
1658500406391 Marionette INFO Listening on port 58293
WebDriver BiDi listening on ws://localhost:58286
Read port: 58293
1658500406498 RemoteAgent WARN TLS certificate errors will be ignored for this session
console.warn: SearchSettings: "get: No settings file exists, new profile?" (new NotFoundError("Could not open the file at /var/folders/7r/wjkz58cd79j9nw8sjydfk4d40000gp/T/rust_mozprofile0yb1kx/search.json.mozlz4", (void 0)))
DevTools listening on ws://localhost:58286/devtools/browser/a3bb2838-f824-4695-9617-5797190bbe16
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
1658500478835 Marionette INFO Stopped listening on port 58293
1658500480109 Marionette INFO Stopped listening on port 58236
1658500481179 Marionette INFO Stopped listening on port 58164
JavaScript error: , line 0: NotFoundError: No such JSWindowActor 'DevToolsFrame'
JavaScript error: , line 0: NotFoundError: No such JSWindowActor 'DevToolsFrame'
1658500482940 Marionette INFO Stopped listening on port 58097
1658500539577 geckodriver INFO Listening on 127.0.0.1:58430
1658500540088 mozrunner::runner INFO Running command: "/Applications/Firefox.app/Contents/MacOS/firefox-bin" "--marionette" "--remote-debugging-port" "58431" "--remote-allow-hosts" "localhost" "-foreground" "-no-remote" "-profile" "/var/folders/7r/wjkz58cd79j9nw8sjydfk4d40000gp/T/rust_mozprofileV1iydl"
2022-07-22 17:35:40.329 plugin-container[45771:3830218] nil host used in call to allowsSpecificHTTPSCertificateForHost
2022-07-22 17:35:40.330 plugin-container[45771:3830218] nil host used in call to allowsAnyHTTPSCertificateForHost:
1658500540332 Marionette INFO Marionette enabled
2022-07-22 17:35:40.349 plugin-container[45771:3830218] nil host used in call to allowsSpecificHTTPSCertificateForHost
2022-07-22 17:35:40.349 plugin-container[45771:3830218] nil host used in call to allowsAnyHTTPSCertificateForHost:
2022-07-22 17:35:40.349 plugin-container[45771:3830225] nil host used in call to allowsSpecificHTTPSCertificateForHost
2022-07-22 17:35:40.349 plugin-container[45771:3830225] nil host used in call to allowsAnyHTTPSCertificateForHost:
1658500540352 Marionette INFO Listening on port 58438
WebDriver BiDi listening on ws://localhost:58431
Read port: 58438
1658500540505 RemoteAgent WARN TLS certificate errors will be ignored for this session
console.warn: SearchSettings: "get: No settings file exists, new profile?" (new NotFoundError("Could not open the file at /var/folders/7r/wjkz58cd79j9nw8sjydfk4d40000gp/T/rust_mozprofileV1iydl/search.json.mozlz4", (void 0)))
DevTools listening on ws://localhost:58431/devtools/browser/01d0ce52-058d-4859-8116-242ecb35dc4f
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
1658500910077 geckodriver INFO Listening on 127.0.0.1:58518
1658500910589 mozrunner::runner INFO Running command: "/Applications/Firefox.app/Contents/MacOS/firefox-bin" "--marionette" "--remote-debugging-port" "58519" "--remote-allow-hosts" "localhost" "-foreground" "-no-remote" "-profile" "/var/folders/7r/wjkz58cd79j9nw8sjydfk4d40000gp/T/rust_mozprofiley58ntU"
2022-07-22 17:41:50.866 plugin-container[45832:3832914] nil host used in call to allowsSpecificHTTPSCertificateForHost
2022-07-22 17:41:50.866 plugin-container[45832:3832914] nil host used in call to allowsAnyHTTPSCertificateForHost:
1658500910869 Marionette INFO Marionette enabled
2022-07-22 17:41:50.886 plugin-container[45832:3832914] nil host used in call to allowsSpecificHTTPSCertificateForHost
2022-07-22 17:41:50.886 plugin-container[45832:3832914] nil host used in call to allowsAnyHTTPSCertificateForHost:
2022-07-22 17:41:50.886 plugin-container[45832:3832941] nil host used in call to allowsSpecificHTTPSCertificateForHost
2022-07-22 17:41:50.886 plugin-container[45832:3832941] nil host used in call to allowsAnyHTTPSCertificateForHost:
1658500910889 Marionette INFO Listening on port 58526
WebDriver BiDi listening on ws://localhost:58519
Read port: 58526
1658500911052 RemoteAgent WARN TLS certificate errors will be ignored for this session
console.warn: SearchSettings: "get: No settings file exists, new profile?" (new NotFoundError("Could not open the file at /var/folders/7r/wjkz58cd79j9nw8sjydfk4d40000gp/T/rust_mozprofiley58ntU/search.json.mozlz4", (void 0)))
DevTools listening on ws://localhost:58519/devtools/browser/02a2871d-c38c-4785-b388-4da830042c37
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: LoginRecipes: "getRecipes: falling back to a synchronous message for:" "https://twitter.com"
1658500987077 geckodriver INFO Listening on 127.0.0.1:58598
1658500987591 mozrunner::runner INFO Running command: "/Applications/Firefox.app/Contents/MacOS/firefox-bin" "--marionette" "--remote-debugging-port" "58599" "--remote-allow-hosts" "localhost" "-foreground" "-no-remote" "-profile" "/var/folders/7r/wjkz58cd79j9nw8sjydfk4d40000gp/T/rust_mozprofilegfy4OS"
2022-07-22 17:43:07.843 plugin-container[45862:3834458] nil host used in call to allowsSpecificHTTPSCertificateForHost
2022-07-22 17:43:07.843 plugin-container[45862:3834458] nil host used in call to allowsAnyHTTPSCertificateForHost:
2022-07-22 17:43:07.845 plugin-container[45862:3834458] nil host used in call to allowsSpecificHTTPSCertificateForHost
2022-07-22 17:43:07.845 plugin-container[45862:3834458] nil host used in call to allowsAnyHTTPSCertificateForHost:
2022-07-22 17:43:07.845 plugin-container[45862:3834455] nil host used in call to allowsSpecificHTTPSCertificateForHost
2022-07-22 17:43:07.845 plugin-container[45862:3834455] nil host used in call to allowsAnyHTTPSCertificateForHost:
1658500987846 Marionette INFO Marionette enabled
1658500987865 Marionette INFO Listening on port 58606
WebDriver BiDi listening on ws://localhost:58599
Read port: 58606
1658500988019 RemoteAgent WARN TLS certificate errors will be ignored for this session
console.warn: SearchSettings: "get: No settings file exists, new profile?" (new NotFoundError("Could not open the file at /var/folders/7r/wjkz58cd79j9nw8sjydfk4d40000gp/T/rust_mozprofilegfy4OS/search.json.mozlz4", (void 0)))
DevTools listening on ws://localhost:58599/devtools/browser/a3635148-6eec-4b5c-8cde-6d281b0e12ca
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
1658501166138 geckodriver INFO Listening on 127.0.0.1:58679
1658501166649 mozrunner::runner INFO Running command: "/Applications/Firefox.app/Contents/MacOS/firefox-bin" "--marionette" "--remote-debugging-port" "58680" "--remote-allow-hosts" "localhost" "-foreground" "-no-remote" "-profile" "/var/folders/7r/wjkz58cd79j9nw8sjydfk4d40000gp/T/rust_mozprofileHXmuD7"
2022-07-22 17:46:06.922 plugin-container[45918:3836376] nil host used in call to allowsSpecificHTTPSCertificateForHost
2022-07-22 17:46:06.923 plugin-container[45918:3836376] nil host used in call to allowsAnyHTTPSCertificateForHost:
2022-07-22 17:46:06.925 plugin-container[45918:3836376] nil host used in call to allowsSpecificHTTPSCertificateForHost
2022-07-22 17:46:06.925 plugin-container[45918:3836376] nil host used in call to allowsAnyHTTPSCertificateForHost:
2022-07-22 17:46:06.925 plugin-container[45918:3836399] nil host used in call to allowsSpecificHTTPSCertificateForHost
2022-07-22 17:46:06.925 plugin-container[45918:3836399] nil host used in call to allowsAnyHTTPSCertificateForHost:
1658501166926 Marionette INFO Marionette enabled
1658501166949 Marionette INFO Listening on port 58687
WebDriver BiDi listening on ws://localhost:58680
Read port: 58687
1658501167106 RemoteAgent WARN TLS certificate errors will be ignored for this session
console.warn: SearchSettings: "get: No settings file exists, new profile?" (new NotFoundError("Could not open the file at /var/folders/7r/wjkz58cd79j9nw8sjydfk4d40000gp/T/rust_mozprofileHXmuD7/search.json.mozlz4", (void 0)))
DevTools listening on ws://localhost:58680/devtools/browser/8f08fa5e-437d-42b9-805c-1d08605dd009
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
1658501751127 Marionette INFO Stopped listening on port 58438
1658501752476 Marionette INFO Stopped listening on port 58526
JavaScript error: , line 0: NotFoundError: No such JSWindowActor 'DevToolsFrame'
1658501753660 Marionette INFO Stopped listening on port 58606
JavaScript error: , line 0: NotFoundError: No such JSWindowActor 'DevToolsFrame'
1658501754713 Marionette INFO Stopped listening on port 58687
1658501776926 geckodriver INFO Listening on 127.0.0.1:58851
1658501777435 mozrunner::runner INFO Running command: "/Applications/Firefox.app/Contents/MacOS/firefox-bin" "--marionette" "--remote-debugging-port" "58852" "--remote-allow-hosts" "localhost" "-foreground" "-no-remote" "-profile" "/var/folders/7r/wjkz58cd79j9nw8sjydfk4d40000gp/T/rust_mozprofilej2t1pc"
2022-07-22 17:56:17.711 plugin-container[46033:3843993] nil host used in call to allowsSpecificHTTPSCertificateForHost
2022-07-22 17:56:17.712 plugin-container[46033:3843993] nil host used in call to allowsAnyHTTPSCertificateForHost:
1658501777715 Marionette INFO Marionette enabled
2022-07-22 17:56:17.731 plugin-container[46033:3843993] nil host used in call to allowsSpecificHTTPSCertificateForHost
2022-07-22 17:56:17.731 plugin-container[46033:3843993] nil host used in call to allowsAnyHTTPSCertificateForHost:
2022-07-22 17:56:17.731 plugin-container[46033:3843991] nil host used in call to allowsSpecificHTTPSCertificateForHost
2022-07-22 17:56:17.731 plugin-container[46033:3843991] nil host used in call to allowsAnyHTTPSCertificateForHost:
1658501777734 Marionette INFO Listening on port 58859
WebDriver BiDi listening on ws://localhost:58852
Read port: 58859
1658501777889 RemoteAgent WARN TLS certificate errors will be ignored for this session
console.warn: SearchSettings: "get: No settings file exists, new profile?" (new NotFoundError("Could not open the file at /var/folders/7r/wjkz58cd79j9nw8sjydfk4d40000gp/T/rust_mozprofilej2t1pc/search.json.mozlz4", (void 0)))
DevTools listening on ws://localhost:58852/devtools/browser/1f9088a7-697a-4f87-b307-b76e1c01d78c
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: LoginRecipes: "getRecipes: falling back to a synchronous message for:" "https://twitter.com"
2022-07-22 15:00:25.554 plugin-container[46074:3845441] nil host used in call to allowsSpecificHTTPSCertificateForHost
2022-07-22 15:00:25.554 plugin-container[46074:3845441] nil host used in call to allowsAnyHTTPSCertificateForHost:
2022-07-22 15:00:25.556 plugin-container[46074:3845441] nil host used in call to allowsSpecificHTTPSCertificateForHost
2022-07-22 15:00:25.556 plugin-container[46074:3845441] nil host used in call to allowsAnyHTTPSCertificateForHost:
2022-07-22 15:00:25.557 plugin-container[46074:3845442] nil host used in call to allowsSpecificHTTPSCertificateForHost
2022-07-22 15:00:25.557 plugin-container[46074:3845442] nil host used in call to allowsAnyHTTPSCertificateForHost:
1658502035674 geckodriver INFO Listening on 127.0.0.1:58960
1658502036186 mozrunner::runner INFO Running command: "/Applications/Firefox.app/Contents/MacOS/firefox-bin" "--marionette" "--remote-debugging-port" "58961" "--remote-allow-hosts" "localhost" "-foreground" "-no-remote" "-profile" "/var/folders/7r/wjkz58cd79j9nw8sjydfk4d40000gp/T/rust_mozprofilem5xBLd"
1658502036380 Marionette INFO Marionette enabled
2022-07-22 18:00:36.395 plugin-container[46080:3845619] nil host used in call to allowsSpecificHTTPSCertificateForHost
2022-07-22 18:00:36.396 plugin-container[46080:3845619] nil host used in call to allowsAnyHTTPSCertificateForHost:
2022-07-22 18:00:36.398 plugin-container[46080:3845619] nil host used in call to allowsSpecificHTTPSCertificateForHost
2022-07-22 18:00:36.398 plugin-container[46080:3845619] nil host used in call to allowsAnyHTTPSCertificateForHost:
2022-07-22 18:00:36.398 plugin-container[46080:3845621] nil host used in call to allowsSpecificHTTPSCertificateForHost
2022-07-22 18:00:36.398 plugin-container[46080:3845621] nil host used in call to allowsAnyHTTPSCertificateForHost:
1658502036408 Marionette INFO Listening on port 58968
WebDriver BiDi listening on ws://localhost:58961
Read port: 58968
1658502036593 RemoteAgent WARN TLS certificate errors will be ignored for this session
console.warn: SearchSettings: "get: No settings file exists, new profile?" (new NotFoundError("Could not open the file at /var/folders/7r/wjkz58cd79j9nw8sjydfk4d40000gp/T/rust_mozprofilem5xBLd/search.json.mozlz4", (void 0)))
DevTools listening on ws://localhost:58961/devtools/browser/c2399bd0-b1ed-45ab-85a8-9a63241e9686
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: LoginRecipes: "getRecipes: falling back to a synchronous message for:" "https://twitter.com"
2022-07-22 15:00:51.423 plugin-container[46090:3846017] nil host used in call to allowsSpecificHTTPSCertificateForHost
2022-07-22 15:00:51.423 plugin-container[46090:3846017] nil host used in call to allowsAnyHTTPSCertificateForHost:
2022-07-22 15:00:51.425 plugin-container[46090:3846017] nil host used in call to allowsSpecificHTTPSCertificateForHost
2022-07-22 15:00:51.425 plugin-container[46090:3846017] nil host used in call to allowsAnyHTTPSCertificateForHost:
2022-07-22 15:00:51.425 plugin-container[46090:3846018] nil host used in call to allowsSpecificHTTPSCertificateForHost
2022-07-22 15:00:51.426 plugin-container[46090:3846018] nil host used in call to allowsAnyHTTPSCertificateForHost:
console.warn: LoginRecipes: "getRecipes: falling back to a synchronous message for:" "https://twitter.com"
console.warn: LoginRecipes: "getRecipes: falling back to a synchronous message for:" "https://twitter.com"
console.warn: LoginRecipes: "getRecipes: falling back to a synchronous message for:" "https://twitter.com"
1658502643174 geckodriver INFO Listening on 127.0.0.1:59100
1658502643689 mozrunner::runner INFO Running command: "/Applications/Firefox.app/Contents/MacOS/firefox-bin" "--marionette" "--remote-debugging-port" "59101" "--remote-allow-hosts" "localhost" "-foreground" "-no-remote" "-profile" "/var/folders/7r/wjkz58cd79j9nw8sjydfk4d40000gp/T/rust_mozprofileEQWuak"
2022-07-22 18:10:43.995 plugin-container[46202:3849982] nil host used in call to allowsSpecificHTTPSCertificateForHost
2022-07-22 18:10:43.996 plugin-container[46202:3849982] nil host used in call to allowsAnyHTTPSCertificateForHost:
1658502643999 Marionette INFO Marionette enabled
1658502644021 Marionette INFO Listening on port 59108
2022-07-22 18:10:44.023 plugin-container[46202:3849982] nil host used in call to allowsSpecificHTTPSCertificateForHost
2022-07-22 18:10:44.023 plugin-container[46202:3849982] nil host used in call to allowsAnyHTTPSCertificateForHost:
2022-07-22 18:10:44.023 plugin-container[46202:3849980] nil host used in call to allowsSpecificHTTPSCertificateForHost
2022-07-22 18:10:44.023 plugin-container[46202:3849980] nil host used in call to allowsAnyHTTPSCertificateForHost:
WebDriver BiDi listening on ws://localhost:59101
Read port: 59108
1658502644179 RemoteAgent WARN TLS certificate errors will be ignored for this session
console.warn: SearchSettings: "get: No settings file exists, new profile?" (new NotFoundError("Could not open the file at /var/folders/7r/wjkz58cd79j9nw8sjydfk4d40000gp/T/rust_mozprofileEQWuak/search.json.mozlz4", (void 0)))
DevTools listening on ws://localhost:59101/devtools/browser/0994b9c5-c86b-44c9-acf2-0a2b413ab44e
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: LoginRecipes: "getRecipes: falling back to a synchronous message for:" "https://twitter.com"
JavaScript error: https://abs.twimg.com/responsive-web/client-web/main.6ec68638.js, line 17: Error: ApiError: https://twitter.com/i/api/1.1/account/settings.json HTTP-403 codes:[353] trace_ids:[null]
2022-07-22 15:10:56.786 plugin-container[46213:3850398] nil host used in call to allowsSpecificHTTPSCertificateForHost
2022-07-22 15:10:56.786 plugin-container[46213:3850398] nil host used in call to allowsAnyHTTPSCertificateForHost:
2022-07-22 15:10:56.788 plugin-container[46213:3850398] nil host used in call to allowsSpecificHTTPSCertificateForHost
2022-07-22 15:10:56.788 plugin-container[46213:3850398] nil host used in call to allowsAnyHTTPSCertificateForHost:
2022-07-22 15:10:56.788 plugin-container[46213:3850400] nil host used in call to allowsSpecificHTTPSCertificateForHost
2022-07-22 15:10:56.788 plugin-container[46213:3850400] nil host used in call to allowsAnyHTTPSCertificateForHost:
console.warn: LoginRecipes: "getRecipes: falling back to a synchronous message for:" "https://twitter.com"
console.warn: LoginRecipes: "getRecipes: falling back to a synchronous message for:" "https://twitter.com"
console.warn: LoginRecipes: "getRecipes: falling back to a synchronous message for:" "https://twitter.com"
1658502750510 geckodriver INFO Listening on 127.0.0.1:59177
1658502751021 mozrunner::runner INFO Running command: "/Applications/Firefox.app/Contents/MacOS/firefox-bin" "--marionette" "--remote-debugging-port" "59178" "--remote-allow-hosts" "localhost" "-foreground" "-no-remote" "-profile" "/var/folders/7r/wjkz58cd79j9nw8sjydfk4d40000gp/T/rust_mozprofileGIgVoY"
1658502751389 Marionette INFO Marionette enabled
2022-07-22 18:12:31.406 plugin-container[46233:3851292] nil host used in call to allowsSpecificHTTPSCertificateForHost
2022-07-22 18:12:31.406 plugin-container[46233:3851292] nil host used in call to allowsAnyHTTPSCertificateForHost:
2022-07-22 18:12:31.413 plugin-container[46233:3851292] nil host used in call to allowsSpecificHTTPSCertificateForHost
2022-07-22 18:12:31.413 plugin-container[46233:3851292] nil host used in call to allowsAnyHTTPSCertificateForHost:
2022-07-22 18:12:31.413 plugin-container[46233:3851290] nil host used in call to allowsSpecificHTTPSCertificateForHost
2022-07-22 18:12:31.413 plugin-container[46233:3851290] nil host used in call to allowsAnyHTTPSCertificateForHost:
1658502751519 Marionette INFO Listening on port 59185
WebDriver BiDi listening on ws://localhost:59178
Read port: 59185
1658502751593 RemoteAgent WARN TLS certificate errors will be ignored for this session
console.warn: SearchSettings: "get: No settings file exists, new profile?" (new NotFoundError("Could not open the file at /var/folders/7r/wjkz58cd79j9nw8sjydfk4d40000gp/T/rust_mozprofileGIgVoY/search.json.mozlz4", (void 0)))
DevTools listening on ws://localhost:59178/devtools/browser/70701680-9f4a-42cc-ac4e-1338dd4bac53
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: LoginRecipes: "getRecipes: falling back to a synchronous message for:" "https://twitter.com"
console.warn: LoginRecipes: "getRecipes: falling back to a synchronous message for:" "https://twitter.com"
console.warn: LoginRecipes: "getRecipes: falling back to a synchronous message for:" "https://twitter.com"
2022-07-22 15:12:44.066 plugin-container[46244:3851736] nil host used in call to allowsSpecificHTTPSCertificateForHost
2022-07-22 15:12:44.066 plugin-container[46244:3851736] nil host used in call to allowsAnyHTTPSCertificateForHost:
2022-07-22 15:12:44.070 plugin-container[46244:3851736] nil host used in call to allowsSpecificHTTPSCertificateForHost
2022-07-22 15:12:44.070 plugin-container[46244:3851736] nil host used in call to allowsAnyHTTPSCertificateForHost:
2022-07-22 15:12:44.070 plugin-container[46244:3851737] nil host used in call to allowsSpecificHTTPSCertificateForHost
2022-07-22 15:12:44.070 plugin-container[46244:3851737] nil host used in call to allowsAnyHTTPSCertificateForHost:
console.warn: LoginRecipes: "getRecipes: falling back to a synchronous message for:" "https://twitter.com"
console.warn: LoginRecipes: "getRecipes: falling back to a synchronous message for:" "https://twitter.com"
console.warn: LoginRecipes: "getRecipes: falling back to a synchronous message for:" "https://twitter.com"
console.warn: LoginRecipes: "getRecipes: falling back to a synchronous message for:" "https://twitter.com"
console.error: (new TypeError("parent is null", "resource://devtools/client/inspector/shared/style-change-tracker.js", 67))
TypeError: parent is null: canMutationImpactCurrentStyles@resource://devtools/client/inspector/shared/style-change-tracker.js:67:24
onMutations@resource://devtools/client/inspector/shared/style-change-tracker.js:84:41
_emit@resource://devtools/shared/event-emitter.js:242:32
emit@resource://devtools/shared/event-emitter.js:186:18
emit@resource://devtools/shared/event-emitter.js:330:18
getMutations@resource://devtools/client/fronts/walker.js:312:10
console.error: (new TypeError("container.node.targetFront is null", "resource://devtools/client/inspector/markup/markup.js", 2320))
JavaScript warning: https://pagead2.googlesyndication.com/bg/V6DtokwJh9Fgiqydg7O-dbjnh59Yi9_n4aBMW1s9fk8.js line 2 > eval line 7220 > eval line 1 > eval line 1 > eval, line 1: WEBGL_debug_renderer_info is deprecated in Firefox and will be removed. Please use RENDERER.
JavaScript warning: https://pagead2.googlesyndication.com/bg/V6DtokwJh9Fgiqydg7O-dbjnh59Yi9_n4aBMW1s9fk8.js line 2 > eval line 5124 > eval line 1 > eval line 1 > eval, line 1: WEBGL_debug_renderer_info is deprecated in Firefox and will be removed. Please use RENDERER.
JavaScript warning: https://pagead2.googlesyndication.com/bg/V6DtokwJh9Fgiqydg7O-dbjnh59Yi9_n4aBMW1s9fk8.js line 2 > eval line 4560 > eval line 1 > eval line 1 > eval, line 1: WEBGL_debug_renderer_info is deprecated in Firefox and will be removed. Please use RENDERER.
JavaScript warning: https://pagead2.googlesyndication.com/bg/V6DtokwJh9Fgiqydg7O-dbjnh59Yi9_n4aBMW1s9fk8.js line 2 > eval line 5148 > eval line 1 > eval line 1 > eval, line 1: WEBGL_debug_renderer_info is deprecated in Firefox and will be removed. Please use RENDERER.
JavaScript warning: https://pagead2.googlesyndication.com/bg/V6DtokwJh9Fgiqydg7O-dbjnh59Yi9_n4aBMW1s9fk8.js line 2 > eval line 2630 > eval line 1 > eval line 1 > eval, line 1: WEBGL_debug_renderer_info is deprecated in Firefox and will be removed. Please use RENDERER.
JavaScript warning: https://pagead2.googlesyndication.com/bg/V6DtokwJh9Fgiqydg7O-dbjnh59Yi9_n4aBMW1s9fk8.js line 2 > eval line 2224 > eval line 1 > eval line 1 > eval, line 1: WEBGL_debug_renderer_info is deprecated in Firefox and will be removed. Please use RENDERER.
JavaScript error: , line 0: TypeError: NetworkError when attempting to fetch resource.
JavaScript error: , line 0: TypeError: NetworkError when attempting to fetch resource.
JavaScript error: , line 0: TypeError: NetworkError when attempting to fetch resource.
JavaScript warning: https://pagead2.googlesyndication.com/bg/V6DtokwJh9Fgiqydg7O-dbjnh59Yi9_n4aBMW1s9fk8.js line 2 > eval line 651 > eval line 1 > eval line 1 > eval, line 1: WEBGL_debug_renderer_info is deprecated in Firefox and will be removed. Please use RENDERER.
JavaScript warning: https://pagead2.googlesyndication.com/bg/V6DtokwJh9Fgiqydg7O-dbjnh59Yi9_n4aBMW1s9fk8.js line 2 > eval line 2592 > eval line 1 > eval line 1 > eval, line 1: WEBGL_debug_renderer_info is deprecated in Firefox and will be removed. Please use RENDERER.
JavaScript warning: https://pagead2.googlesyndication.com/bg/V6DtokwJh9Fgiqydg7O-dbjnh59Yi9_n4aBMW1s9fk8.js line 2 > eval line 4030 > eval line 1 > eval line 1 > eval, line 1: WEBGL_debug_renderer_info is deprecated in Firefox and will be removed. Please use RENDERER.
1658502888551 geckodriver INFO Listening on 127.0.0.1:59855
1658502889059 mozrunner::runner INFO Running command: "/Applications/Firefox.app/Contents/MacOS/firefox-bin" "--marionette" "--remote-debugging-port" "59856" "--remote-allow-hosts" "localhost" "-foreground" "-no-remote" "-profile" "/var/folders/7r/wjkz58cd79j9nw8sjydfk4d40000gp/T/rust_mozprofilekrpvvU"
1658502889465 Marionette INFO Marionette enabled
2022-07-22 18:14:49.485 plugin-container[46277:3853244] nil host used in call to allowsSpecificHTTPSCertificateForHost
2022-07-22 18:14:49.485 plugin-container[46277:3853244] nil host used in call to allowsAnyHTTPSCertificateForHost:
2022-07-22 18:14:49.495 plugin-container[46277:3853244] nil host used in call to allowsSpecificHTTPSCertificateForHost
2022-07-22 18:14:49.495 plugin-container[46277:3853244] nil host used in call to allowsAnyHTTPSCertificateForHost:
2022-07-22 18:14:49.495 plugin-container[46277:3853242] nil host used in call to allowsSpecificHTTPSCertificateForHost
2022-07-22 18:14:49.495 plugin-container[46277:3853242] nil host used in call to allowsAnyHTTPSCertificateForHost:
1658502889504 Marionette INFO Listening on port 59863
WebDriver BiDi listening on ws://localhost:59856
Read port: 59863
1658502889621 RemoteAgent WARN TLS certificate errors will be ignored for this session
console.warn: SearchSettings: "get: No settings file exists, new profile?" (new NotFoundError("Could not open the file at /var/folders/7r/wjkz58cd79j9nw8sjydfk4d40000gp/T/rust_mozprofilekrpvvU/search.json.mozlz4", (void 0)))
DevTools listening on ws://localhost:59856/devtools/browser/6e94e6ba-5e19-44ed-b5a9-4ec0c0d54b82
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
JavaScript error: , line 0: TypeError: NetworkError when attempting to fetch resource.
JavaScript error: , line 0: TypeError: NetworkError when attempting to fetch resource.
JavaScript error: , line 0: TypeError: NetworkError when attempting to fetch resource.
JavaScript warning: https://pagead2.googlesyndication.com/bg/V6DtokwJh9Fgiqydg7O-dbjnh59Yi9_n4aBMW1s9fk8.js line 2 > eval line 1024 > eval line 1 > eval line 1 > eval, line 1: WEBGL_debug_renderer_info is deprecated in Firefox and will be removed. Please use RENDERER.
JavaScript warning: https://pagead2.googlesyndication.com/bg/V6DtokwJh9Fgiqydg7O-dbjnh59Yi9_n4aBMW1s9fk8.js line 2 > eval line 7058 > eval line 1 > eval line 1 > eval, line 1: WEBGL_debug_renderer_info is deprecated in Firefox and will be removed. Please use RENDERER.
console.warn: LoginRecipes: "getRecipes: falling back to a synchronous message for:" "https://twitter.com"
console.warn: LoginRecipes: "getRecipes: falling back to a synchronous message for:" "https://twitter.com"
console.warn: LoginRecipes: "getRecipes: falling back to a synchronous message for:" "https://twitter.com"
console.warn: LoginRecipes: "getRecipes: falling back to a synchronous message for:" "https://twitter.com"
console.warn: LoginRecipes: "getRecipes: falling back to a synchronous message for:" "https://twitter.com"
console.warn: LoginRecipes: "getRecipes: falling back to a synchronous message for:" "https://twitter.com"
console.warn: LoginRecipes: "getRecipes: falling back to a synchronous message for:" "https://twitter.com"
2022-07-22 15:15:04.329 plugin-container[46294:3853796] nil host used in call to allowsSpecificHTTPSCertificateForHost
2022-07-22 15:15:04.329 plugin-container[46294:3853796] nil host used in call to allowsAnyHTTPSCertificateForHost:
2022-07-22 15:15:04.332 plugin-container[46294:3853796] nil host used in call to allowsSpecificHTTPSCertificateForHost
2022-07-22 15:15:04.332 plugin-container[46294:3853796] nil host used in call to allowsAnyHTTPSCertificateForHost:
2022-07-22 15:15:04.332 plugin-container[46294:3853797] nil host used in call to allowsSpecificHTTPSCertificateForHost
2022-07-22 15:15:04.332 plugin-container[46294:3853797] nil host used in call to allowsAnyHTTPSCertificateForHost:
console.error: (new TypeError("currentNode is null", "resource://devtools/client/inspector/shared/style-change-tracker.js", 66))
TypeError: currentNode is null: canMutationImpactCurrentStyles@resource://devtools/client/inspector/shared/style-change-tracker.js:66:20
onMutations@resource://devtools/client/inspector/shared/style-change-tracker.js:84:41
_emit@resource://devtools/shared/event-emitter.js:242:32
emit@resource://devtools/shared/event-emitter.js:186:18
emit@resource://devtools/shared/event-emitter.js:330:18
getMutations@resource://devtools/client/fronts/walker.js:312:10
JavaScript error: , line 0: TypeError: NetworkError when attempting to fetch resource.
JavaScript error: , line 0: TypeError: NetworkError when attempting to fetch resource.
JavaScript warning: https://z.moatads.com/quantcastv2691176990399/moatad.js#moatClientLevel1=p-1RYxePXT9bCS2&moatClientLevel2=qfm&moatClientLevel3=9c271472-f715-4e83-a38a-b6c7ac81d8ee&moatClientLevel4=1ee9313b-bde2-4a62-82b0-04af2ff0e23f&uid=fSG8T2AyjFZKAYRbQWCYXHUyoFNPFNtZnDU=, line 245: WEBGL_debug_renderer_info is deprecated in Firefox and will be removed. Please use RENDERER.
JavaScript warning: https://z.moatads.com/quantcastv2691176990399/moatad.js#moatClientLevel1=p-1RYxePXT9bCS2&moatClientLevel2=qfm&moatClientLevel3=9c271472-f715-4e83-a38a-b6c7ac81d8ee&moatClientLevel4=1ee9313b-bde2-4a62-82b0-04af2ff0e23f&uid=zWT40Mxo_IeCZKmBy3H70p9p4o7OaK2blz3_g55s_oPJPfyFNqZV1g==, line 245: WEBGL_debug_renderer_info is deprecated in Firefox and will be removed. Please use RENDERER.
JavaScript warning: https://pagead2.googlesyndication.com/bg/V6DtokwJh9Fgiqydg7O-dbjnh59Yi9_n4aBMW1s9fk8.js line 2 > eval line 3747 > eval line 1 > eval line 1 > eval, line 1: WEBGL_debug_renderer_info is deprecated in Firefox and will be removed. Please use RENDERER.
JavaScript warning: https://pagead2.googlesyndication.com/bg/V6DtokwJh9Fgiqydg7O-dbjnh59Yi9_n4aBMW1s9fk8.js line 2 > eval line 6263 > eval line 1 > eval line 1 > eval, line 1: WEBGL_debug_renderer_info is deprecated in Firefox and will be removed. Please use RENDERER.
JavaScript error: , line 0: uncaught exception: 7
JavaScript error: , line 0: uncaught exception: 7
JavaScript error: , line 0: TypeError: NetworkError when attempting to fetch resource.
JavaScript error: , line 0: TypeError: NetworkError when attempting to fetch resource.
console.error: "Unable to find target with innerWindowId:4294967298"
console.error: "Unable to find target with innerWindowId:4294967298"
JavaScript error: , line 0: TypeError: NetworkError when attempting to fetch resource.
JavaScript error: , line 0: TypeError: NetworkError when attempting to fetch resource.
JavaScript warning: https://pagead2.googlesyndication.com/bg/V6DtokwJh9Fgiqydg7O-dbjnh59Yi9_n4aBMW1s9fk8.js line 2 > eval line 6635 > eval line 1 > eval line 1 > eval, line 1: WEBGL_debug_renderer_info is deprecated in Firefox and will be removed. Please use RENDERER.
JavaScript warning: https://pagead2.googlesyndication.com/bg/V6DtokwJh9Fgiqydg7O-dbjnh59Yi9_n4aBMW1s9fk8.js line 2 > eval line 3891 > eval line 1 > eval line 1 > eval, line 1: WEBGL_debug_renderer_info is deprecated in Firefox and will be removed. Please use RENDERER.
JavaScript warning: https://pagead2.googlesyndication.com/bg/V6DtokwJh9Fgiqydg7O-dbjnh59Yi9_n4aBMW1s9fk8.js line 2 > eval line 7374 > eval line 1 > eval line 1 > eval, line 1: WEBGL_debug_renderer_info is deprecated in Firefox and will be removed. Please use RENDERER.
JavaScript error: , line 0: TypeError: NetworkError when attempting to fetch resource.
JavaScript error: , line 0: TypeError: NetworkError when attempting to fetch resource.
console.error: (new TypeError("parent is null", "resource://devtools/client/inspector/shared/style-change-tracker.js", 67))
TypeError: parent is null: canMutationImpactCurrentStyles@resource://devtools/client/inspector/shared/style-change-tracker.js:67:24
onMutations@resource://devtools/client/inspector/shared/style-change-tracker.js:84:41
_emit@resource://devtools/shared/event-emitter.js:242:32
emit@resource://devtools/shared/event-emitter.js:186:18
emit@resource://devtools/shared/event-emitter.js:330:18
getMutations@resource://devtools/client/fronts/walker.js:312:10
JavaScript error: , line 0: TypeError: NetworkError when attempting to fetch resource.
JavaScript error: https://script.crazyegg.com/pages/scripts/0085/1990.js, line 1: Error: CE: multiple userscripts installed
console.warn: LoginRecipes: "getRecipes: falling back to a synchronous message for:" "https://www.google.com"
JavaScript warning: https://pagead2.googlesyndication.com/bg/V6DtokwJh9Fgiqydg7O-dbjnh59Yi9_n4aBMW1s9fk8.js line 2 > eval line 2375 > eval line 1 > eval line 1 > eval, line 1: WEBGL_debug_renderer_info is deprecated in Firefox and will be removed. Please use RENDERER.
JavaScript warning: https://pagead2.googlesyndication.com/bg/V6DtokwJh9Fgiqydg7O-dbjnh59Yi9_n4aBMW1s9fk8.js line 2 > eval line 7318 > eval line 1 > eval line 1 > eval, line 1: WEBGL_debug_renderer_info is deprecated in Firefox and will be removed. Please use RENDERER.
JavaScript warning: https://pagead2.googlesyndication.com/bg/V6DtokwJh9Fgiqydg7O-dbjnh59Yi9_n4aBMW1s9fk8.js line 2 > eval line 4550 > eval line 1 > eval line 1 > eval, line 1: WEBGL_debug_renderer_info is deprecated in Firefox and will be removed. Please use RENDERER.
JavaScript warning: https://pagead2.googlesyndication.com/bg/V6DtokwJh9Fgiqydg7O-dbjnh59Yi9_n4aBMW1s9fk8.js line 2 > eval line 1442 > eval line 1 > eval line 1 > eval, line 1: WEBGL_debug_renderer_info is deprecated in Firefox and will be removed. Please use RENDERER.
1658503188940 geckodriver INFO Listening on 127.0.0.1:60476
1658503189450 mozrunner::runner INFO Running command: "/Applications/Firefox.app/Contents/MacOS/firefox-bin" "--marionette" "--remote-debugging-port" "60477" "--remote-allow-hosts" "localhost" "-foreground" "-no-remote" "-profile" "/var/folders/7r/wjkz58cd79j9nw8sjydfk4d40000gp/T/rust_mozprofileqLpxui"
1658503189830 Marionette INFO Marionette enabled
2022-07-22 18:19:49.850 plugin-container[46396:3858229] nil host used in call to allowsSpecificHTTPSCertificateForHost
2022-07-22 18:19:49.850 plugin-container[46396:3858229] nil host used in call to allowsAnyHTTPSCertificateForHost:
2022-07-22 18:19:49.856 plugin-container[46396:3858229] nil host used in call to allowsSpecificHTTPSCertificateForHost
2022-07-22 18:19:49.856 plugin-container[46396:3858229] nil host used in call to allowsAnyHTTPSCertificateForHost:
2022-07-22 18:19:49.857 plugin-container[46396:3858255] nil host used in call to allowsSpecificHTTPSCertificateForHost
2022-07-22 18:19:49.857 plugin-container[46396:3858255] nil host used in call to allowsAnyHTTPSCertificateForHost:
1658503189968 Marionette INFO Listening on port 60484
WebDriver BiDi listening on ws://localhost:60477
Read port: 60484
1658503190040 RemoteAgent WARN TLS certificate errors will be ignored for this session
console.warn: SearchSettings: "get: No settings file exists, new profile?" (new NotFoundError("Could not open the file at /var/folders/7r/wjkz58cd79j9nw8sjydfk4d40000gp/T/rust_mozprofileqLpxui/search.json.mozlz4", (void 0)))
DevTools listening on ws://localhost:60477/devtools/browser/e482148b-756b-4273-aebf-2f8313f2cb47
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
JavaScript error: , line 0: TypeError: NetworkError when attempting to fetch resource.
JavaScript error: , line 0: TypeError: NetworkError when attempting to fetch resource.
JavaScript error: , line 0: TypeError: NetworkError when attempting to fetch resource.
console.warn: LoginRecipes: "getRecipes: falling back to a synchronous message for:" "https://twitter.com"
console.warn: LoginRecipes: "getRecipes: falling back to a synchronous message for:" "https://twitter.com"
console.warn: LoginRecipes: "getRecipes: falling back to a synchronous message for:" "https://twitter.com"
console.warn: LoginRecipes: "getRecipes: falling back to a synchronous message for:" "https://twitter.com"
console.warn: LoginRecipes: "getRecipes: falling back to a synchronous message for:" "https://twitter.com"
console.warn: LoginRecipes: "getRecipes: falling back to a synchronous message for:" "https://twitter.com"
console.warn: LoginRecipes: "getRecipes: falling back to a synchronous message for:" "https://twitter.com"
2022-07-22 15:20:04.223 plugin-container[46408:3858673] nil host used in call to allowsSpecificHTTPSCertificateForHost
2022-07-22 15:20:04.223 plugin-container[46408:3858673] nil host used in call to allowsAnyHTTPSCertificateForHost:
2022-07-22 15:20:04.226 plugin-container[46408:3858673] nil host used in call to allowsSpecificHTTPSCertificateForHost
2022-07-22 15:20:04.226 plugin-container[46408:3858673] nil host used in call to allowsAnyHTTPSCertificateForHost:
2022-07-22 15:20:04.226 plugin-container[46408:3858674] nil host used in call to allowsSpecificHTTPSCertificateForHost
2022-07-22 15:20:04.226 plugin-container[46408:3858674] nil host used in call to allowsAnyHTTPSCertificateForHost:
1658503219904 geckodriver INFO Listening on 127.0.0.1:60566
1658503220412 mozrunner::runner INFO Running command: "/Applications/Firefox.app/Contents/MacOS/firefox-bin" "--marionette" "--remote-debugging-port" "60567" "--remote-allow-hosts" "localhost" "-foreground" "-no-remote" "-profile" "/var/folders/7r/wjkz58cd79j9nw8sjydfk4d40000gp/T/rust_mozprofileENBC5t"
2022-07-22 18:20:20.721 plugin-container[46417:3858902] nil host used in call to allowsSpecificHTTPSCertificateForHost
2022-07-22 18:20:20.721 plugin-container[46417:3858902] nil host used in call to allowsAnyHTTPSCertificateForHost:
2022-07-22 18:20:20.723 plugin-container[46417:3858902] nil host used in call to allowsSpecificHTTPSCertificateForHost
2022-07-22 18:20:20.723 plugin-container[46417:3858902] nil host used in call to allowsAnyHTTPSCertificateForHost:
2022-07-22 18:20:20.724 plugin-container[46417:3858904] nil host used in call to allowsSpecificHTTPSCertificateForHost
2022-07-22 18:20:20.724 plugin-container[46417:3858904] nil host used in call to allowsAnyHTTPSCertificateForHost:
1658503220724 Marionette INFO Marionette enabled
1658503220746 Marionette INFO Listening on port 60574
WebDriver BiDi listening on ws://localhost:60567
Read port: 60574
1658503220928 RemoteAgent WARN TLS certificate errors will be ignored for this session
console.warn: SearchSettings: "get: No settings file exists, new profile?" (new NotFoundError("Could not open the file at /var/folders/7r/wjkz58cd79j9nw8sjydfk4d40000gp/T/rust_mozprofileENBC5t/search.json.mozlz4", (void 0)))
DevTools listening on ws://localhost:60567/devtools/browser/7fa798ec-42ef-4d87-9109-422f5e062dab
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: LoginRecipes: "getRecipes: falling back to a synchronous message for:" "https://twitter.com"
console.warn: LoginRecipes: "getRecipes: falling back to a synchronous message for:" "https://twitter.com"
console.warn: LoginRecipes: "getRecipes: falling back to a synchronous message for:" "https://twitter.com"
console.warn: LoginRecipes: "getRecipes: falling back to a synchronous message for:" "https://twitter.com"
console.warn: LoginRecipes: "getRecipes: falling back to a synchronous message for:" "https://twitter.com"
console.warn: LoginRecipes: "getRecipes: falling back to a synchronous message for:" "https://twitter.com"
console.warn: LoginRecipes: "getRecipes: falling back to a synchronous message for:" "https://twitter.com"
2022-07-22 15:20:35.156 plugin-container[46427:3859356] nil host used in call to allowsSpecificHTTPSCertificateForHost
2022-07-22 15:20:35.156 plugin-container[46427:3859356] nil host used in call to allowsAnyHTTPSCertificateForHost:
2022-07-22 15:20:35.159 plugin-container[46427:3859356] nil host used in call to allowsSpecificHTTPSCertificateForHost
2022-07-22 15:20:35.159 plugin-container[46427:3859356] nil host used in call to allowsAnyHTTPSCertificateForHost:
2022-07-22 15:20:35.160 plugin-container[46427:3859358] nil host used in call to allowsSpecificHTTPSCertificateForHost
2022-07-22 15:20:35.160 plugin-container[46427:3859358] nil host used in call to allowsAnyHTTPSCertificateForHost:
1658503255392 geckodriver INFO Listening on 127.0.0.1:60658
1658503255900 mozrunner::runner INFO Running command: "/Applications/Firefox.app/Contents/MacOS/firefox-bin" "--marionette" "--remote-debugging-port" "60659" "--remote-allow-hosts" "localhost" "-foreground" "-no-remote" "-profile" "/var/folders/7r/wjkz58cd79j9nw8sjydfk4d40000gp/T/rust_mozprofileiFgDrY"
1658503256226 Marionette INFO Marionette enabled
2022-07-22 18:20:56.254 plugin-container[46434:3859616] nil host used in call to allowsSpecificHTTPSCertificateForHost
2022-07-22 18:20:56.254 plugin-container[46434:3859616] nil host used in call to allowsAnyHTTPSCertificateForHost:
1658503256255 Marionette INFO Listening on port 60668
WebDriver BiDi listening on ws://localhost:60659
2022-07-22 18:20:56.277 plugin-container[46434:3859616] nil host used in call to allowsSpecificHTTPSCertificateForHost
2022-07-22 18:20:56.277 plugin-container[46434:3859616] nil host used in call to allowsAnyHTTPSCertificateForHost:
2022-07-22 18:20:56.277 plugin-container[46434:3859618] nil host used in call to allowsSpecificHTTPSCertificateForHost
2022-07-22 18:20:56.277 plugin-container[46434:3859618] nil host used in call to allowsAnyHTTPSCertificateForHost:
Read port: 60668
1658503256426 RemoteAgent WARN TLS certificate errors will be ignored for this session
JavaScript warning: https://pagead2.googlesyndication.com/bg/V6DtokwJh9Fgiqydg7O-dbjnh59Yi9_n4aBMW1s9fk8.js line 2 > eval line 6422 > eval line 1 > eval line 1 > eval, line 1: WEBGL_debug_renderer_info is deprecated in Firefox and will be removed. Please use RENDERER.
console.warn: SearchSettings: "get: No settings file exists, new profile?" (new NotFoundError("Could not open the file at /var/folders/7r/wjkz58cd79j9nw8sjydfk4d40000gp/T/rust_mozprofileiFgDrY/search.json.mozlz4", (void 0)))
DevTools listening on ws://localhost:60659/devtools/browser/ea9fcbdc-20ec-4607-b803-3898ab7df425
JavaScript warning: https://pagead2.googlesyndication.com/bg/V6DtokwJh9Fgiqydg7O-dbjnh59Yi9_n4aBMW1s9fk8.js line 2 > eval line 6934 > eval line 1 > eval line 1 > eval, line 1: WEBGL_debug_renderer_info is deprecated in Firefox and will be removed. Please use RENDERER.
JavaScript warning: https://pagead2.googlesyndication.com/bg/V6DtokwJh9Fgiqydg7O-dbjnh59Yi9_n4aBMW1s9fk8.js line 2 > eval line 225 > eval line 1 > eval line 1 > eval, line 1: WEBGL_debug_renderer_info is deprecated in Firefox and will be removed. Please use RENDERER.
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: LoginRecipes: "getRecipes: falling back to a synchronous message for:" "https://twitter.com"
console.warn: LoginRecipes: "getRecipes: falling back to a synchronous message for:" "https://twitter.com"
console.warn: LoginRecipes: "getRecipes: falling back to a synchronous message for:" "https://twitter.com"
console.warn: LoginRecipes: "getRecipes: falling back to a synchronous message for:" "https://twitter.com"
console.warn: LoginRecipes: "getRecipes: falling back to a synchronous message for:" "https://twitter.com"
console.warn: LoginRecipes: "getRecipes: falling back to a synchronous message for:" "https://twitter.com"
console.warn: LoginRecipes: "getRecipes: falling back to a synchronous message for:" "https://twitter.com"
1658503267985 Marionette INFO Stopped listening on port 58859
1658503270285 Marionette INFO Stopped listening on port 58968
JavaScript error: , line 0: NotFoundError: No such JSWindowActor 'DevToolsFrame'
2022-07-22 15:21:11.031 plugin-container[46450:3860303] nil host used in call to allowsSpecificHTTPSCertificateForHost
2022-07-22 15:21:11.031 plugin-container[46450:3860303] nil host used in call to allowsAnyHTTPSCertificateForHost:
2022-07-22 15:21:11.036 plugin-container[46450:3860303] nil host used in call to allowsSpecificHTTPSCertificateForHost
2022-07-22 15:21:11.036 plugin-container[46450:3860303] nil host used in call to allowsAnyHTTPSCertificateForHost:
2022-07-22 15:21:11.036 plugin-container[46450:3860305] nil host used in call to allowsSpecificHTTPSCertificateForHost
2022-07-22 15:21:11.036 plugin-container[46450:3860305] nil host used in call to allowsAnyHTTPSCertificateForHost:
1658503271958 Marionette INFO Stopped listening on port 59108
JavaScript error: , line 0: NotFoundError: No such JSWindowActor 'DevToolsFrame'
1658503273349 Marionette INFO Stopped listening on port 59185
JavaScript error: , line 0: NotFoundError: No such JSWindowActor 'DevToolsFrame'
JavaScript error: , line 0: TypeError: NetworkError when attempting to fetch resource.
JavaScript error: , line 0: TypeError: NetworkError when attempting to fetch resource.
JavaScript error: , line 0: TypeError: NetworkError when attempting to fetch resource.
JavaScript error: , line 0: TypeError: NetworkError when attempting to fetch resource.
JavaScript error: , line 0: TypeError: NetworkError when attempting to fetch resource.
1658503274555 Marionette INFO Stopped listening on port 59863
JavaScript error: , line 0: NotFoundError: No such JSWindowActor 'DevToolsFrame'
JavaScript error: , line 0: NotFoundError: No such JSWindowActor 'DevToolsFrame'
JavaScript error: , line 0: NotFoundError: No such JSWindowActor 'DevToolsFrame'
JavaScript error: , line 0: NotFoundError: No such JSWindowActor 'DevToolsFrame'
1658503288723 Marionette INFO Stopped listening on port 60484
1658503289905 Marionette INFO Stopped listening on port 60574
1658503291003 Marionette INFO Stopped listening on port 60668
1658503702486 geckodriver INFO Listening on 127.0.0.1:60835
1658503702995 mozrunner::runner INFO Running command: "/Applications/Firefox.app/Contents/MacOS/firefox-bin" "--marionette" "--remote-debugging-port" "60836" "--remote-allow-hosts" "localhost" "-foreground" "-no-remote" "-profile" "/var/folders/7r/wjkz58cd79j9nw8sjydfk4d40000gp/T/rust_mozprofile8BN5TP"
1658503703310 Marionette INFO Marionette enabled
2022-07-22 18:28:23.328 plugin-container[46588:3863199] nil host used in call to allowsSpecificHTTPSCertificateForHost
2022-07-22 18:28:23.329 plugin-container[46588:3863199] nil host used in call to allowsAnyHTTPSCertificateForHost:
2022-07-22 18:28:23.340 plugin-container[46588:3863199] nil host used in call to allowsSpecificHTTPSCertificateForHost
2022-07-22 18:28:23.340 plugin-container[46588:3863199] nil host used in call to allowsAnyHTTPSCertificateForHost:
2022-07-22 18:28:23.340 plugin-container[46588:3863225] nil host used in call to allowsSpecificHTTPSCertificateForHost
2022-07-22 18:28:23.340 plugin-container[46588:3863225] nil host used in call to allowsAnyHTTPSCertificateForHost:
1658503703444 Marionette INFO Listening on port 60843
WebDriver BiDi listening on ws://localhost:60836
Read port: 60843
1658503703615 RemoteAgent WARN TLS certificate errors will be ignored for this session
console.warn: SearchSettings: "get: No settings file exists, new profile?" (new NotFoundError("Could not open the file at /var/folders/7r/wjkz58cd79j9nw8sjydfk4d40000gp/T/rust_mozprofile8BN5TP/search.json.mozlz4", (void 0)))
DevTools listening on ws://localhost:60836/devtools/browser/09d3440b-1960-4891-abc5-d17856ff3e44
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: LoginRecipes: "getRecipes: falling back to a synchronous message for:" "https://twitter.com"
console.warn: LoginRecipes: "getRecipes: falling back to a synchronous message for:" "https://twitter.com"
console.warn: LoginRecipes: "getRecipes: falling back to a synchronous message for:" "https://twitter.com"
console.warn: LoginRecipes: "getRecipes: falling back to a synchronous message for:" "https://twitter.com"
console.warn: LoginRecipes: "getRecipes: falling back to a synchronous message for:" "https://twitter.com"
console.warn: LoginRecipes: "getRecipes: falling back to a synchronous message for:" "https://twitter.com"
console.warn: LoginRecipes: "getRecipes: falling back to a synchronous message for:" "https://twitter.com"
1658503765311 geckodriver INFO Listening on 127.0.0.1:60903
1658503765822 mozrunner::runner INFO Running command: "/Applications/Firefox.app/Contents/MacOS/firefox-bin" "--marionette" "--remote-debugging-port" "60904" "--remote-allow-hosts" "localhost" "-foreground" "-no-remote" "-profile" "/var/folders/7r/wjkz58cd79j9nw8sjydfk4d40000gp/T/rust_mozprofileJSOkAR"
2022-07-22 18:29:26.187 plugin-container[46625:3864012] nil host used in call to allowsSpecificHTTPSCertificateForHost
2022-07-22 18:29:26.187 plugin-container[46625:3864012] nil host used in call to allowsAnyHTTPSCertificateForHost:
1658503766187 Marionette INFO Marionette enabled
2022-07-22 18:29:26.203 plugin-container[46625:3864012] nil host used in call to allowsSpecificHTTPSCertificateForHost
2022-07-22 18:29:26.203 plugin-container[46625:3864012] nil host used in call to allowsAnyHTTPSCertificateForHost:
2022-07-22 18:29:26.204 plugin-container[46625:3864038] nil host used in call to allowsSpecificHTTPSCertificateForHost
2022-07-22 18:29:26.204 plugin-container[46625:3864038] nil host used in call to allowsAnyHTTPSCertificateForHost:
1658503766206 Marionette INFO Listening on port 60911
WebDriver BiDi listening on ws://localhost:60904
Read port: 60911
1658503766305 RemoteAgent WARN TLS certificate errors will be ignored for this session
console.warn: SearchSettings: "get: No settings file exists, new profile?" (new NotFoundError("Could not open the file at /var/folders/7r/wjkz58cd79j9nw8sjydfk4d40000gp/T/rust_mozprofileJSOkAR/search.json.mozlz4", (void 0)))
DevTools listening on ws://localhost:60904/devtools/browser/3487c6a8-5c41-48ad-8a09-587ce24b2e41
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: LoginRecipes: "getRecipes: falling back to a synchronous message for:" "https://twitter.com"
console.warn: LoginRecipes: "getRecipes: falling back to a synchronous message for:" "https://twitter.com"
console.warn: LoginRecipes: "getRecipes: falling back to a synchronous message for:" "https://twitter.com"
console.warn: LoginRecipes: "getRecipes: falling back to a synchronous message for:" "https://twitter.com"
console.warn: LoginRecipes: "getRecipes: falling back to a synchronous message for:" "https://twitter.com"
console.warn: LoginRecipes: "getRecipes: falling back to a synchronous message for:" "https://twitter.com"
console.warn: LoginRecipes: "getRecipes: falling back to a synchronous message for:" "https://twitter.com"
2022-07-22 15:29:40.712 plugin-container[46635:3864466] nil host used in call to allowsSpecificHTTPSCertificateForHost
2022-07-22 15:29:40.712 plugin-container[46635:3864466] nil host used in call to allowsAnyHTTPSCertificateForHost:
2022-07-22 15:29:40.714 plugin-container[46635:3864466] nil host used in call to allowsSpecificHTTPSCertificateForHost
2022-07-22 15:29:40.714 plugin-container[46635:3864466] nil host used in call to allowsAnyHTTPSCertificateForHost:
2022-07-22 15:29:40.714 plugin-container[46635:3864470] nil host used in call to allowsSpecificHTTPSCertificateForHost
2022-07-22 15:29:40.714 plugin-container[46635:3864470] nil host used in call to allowsAnyHTTPSCertificateForHost:
1658503852551 geckodriver INFO Listening on 127.0.0.1:60992
1658503853054 mozrunner::runner INFO Running command: "/Applications/Firefox.app/Contents/MacOS/firefox-bin" "--marionette" "--remote-debugging-port" "60993" "--remote-allow-hosts" "localhost" "-foreground" "-no-remote" "-profile" "/var/folders/7r/wjkz58cd79j9nw8sjydfk4d40000gp/T/rust_mozprofile8yaYqM"
2022-07-22 18:30:53.249 plugin-container[46660:3865193] nil host used in call to allowsSpecificHTTPSCertificateForHost
2022-07-22 18:30:53.249 plugin-container[46660:3865193] nil host used in call to allowsAnyHTTPSCertificateForHost:
2022-07-22 18:30:53.253 plugin-container[46660:3865193] nil host used in call to allowsSpecificHTTPSCertificateForHost
2022-07-22 18:30:53.253 plugin-container[46660:3865193] nil host used in call to allowsAnyHTTPSCertificateForHost:
2022-07-22 18:30:53.253 plugin-container[46660:3865199] nil host used in call to allowsSpecificHTTPSCertificateForHost
2022-07-22 18:30:53.253 plugin-container[46660:3865199] nil host used in call to allowsAnyHTTPSCertificateForHost:
1658503853256 Marionette INFO Marionette enabled
1658503853284 Marionette INFO Listening on port 61000
WebDriver BiDi listening on ws://localhost:60993
Read port: 61000
1658503853477 RemoteAgent WARN TLS certificate errors will be ignored for this session
console.warn: SearchSettings: "get: No settings file exists, new profile?" (new NotFoundError("Could not open the file at /var/folders/7r/wjkz58cd79j9nw8sjydfk4d40000gp/T/rust_mozprofile8yaYqM/search.json.mozlz4", (void 0)))
DevTools listening on ws://localhost:60993/devtools/browser/85b75ddc-a557-4226-b524-6fee53bdadb8
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: LoginRecipes: "getRecipes: falling back to a synchronous message for:" "https://twitter.com"
2022-07-22 15:31:08.157 plugin-container[46671:3865661] nil host used in call to allowsSpecificHTTPSCertificateForHost
2022-07-22 15:31:08.157 plugin-container[46671:3865661] nil host used in call to allowsAnyHTTPSCertificateForHost:
2022-07-22 15:31:08.161 plugin-container[46671:3865661] nil host used in call to allowsSpecificHTTPSCertificateForHost
2022-07-22 15:31:08.161 plugin-container[46671:3865661] nil host used in call to allowsAnyHTTPSCertificateForHost:
2022-07-22 15:31:08.161 plugin-container[46671:3865663] nil host used in call to allowsSpecificHTTPSCertificateForHost
2022-07-22 15:31:08.161 plugin-container[46671:3865663] nil host used in call to allowsAnyHTTPSCertificateForHost:
1658503895162 geckodriver INFO Listening on 127.0.0.1:61074
1658503895671 mozrunner::runner INFO Running command: "/Applications/Firefox.app/Contents/MacOS/firefox-bin" "--marionette" "--remote-debugging-port" "61075" "--remote-allow-hosts" "localhost" "-foreground" "-no-remote" "-profile" "/var/folders/7r/wjkz58cd79j9nw8sjydfk4d40000gp/T/rust_mozprofileCwzMg0"
2022-07-22 18:31:35.936 plugin-container[46679:3865975] nil host used in call to allowsSpecificHTTPSCertificateForHost
2022-07-22 18:31:35.936 plugin-container[46679:3865975] nil host used in call to allowsAnyHTTPSCertificateForHost:
2022-07-22 18:31:35.939 plugin-container[46679:3865975] nil host used in call to allowsSpecificHTTPSCertificateForHost
2022-07-22 18:31:35.939 plugin-container[46679:3865975] nil host used in call to allowsAnyHTTPSCertificateForHost:
2022-07-22 18:31:35.939 plugin-container[46679:3865981] nil host used in call to allowsSpecificHTTPSCertificateForHost
2022-07-22 18:31:35.939 plugin-container[46679:3865981] nil host used in call to allowsAnyHTTPSCertificateForHost:
1658503895942 Marionette INFO Marionette enabled
1658503895963 Marionette INFO Listening on port 61082
WebDriver BiDi listening on ws://localhost:61075
Read port: 61082
1658503896126 RemoteAgent WARN TLS certificate errors will be ignored for this session
console.warn: SearchSettings: "get: No settings file exists, new profile?" (new NotFoundError("Could not open the file at /var/folders/7r/wjkz58cd79j9nw8sjydfk4d40000gp/T/rust_mozprofileCwzMg0/search.json.mozlz4", (void 0)))
DevTools listening on ws://localhost:61075/devtools/browser/b07307ec-6fdc-4d3c-bd1b-888f920fc767
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
1658503898576 Marionette INFO Stopped listening on port 60843
JavaScript error: , line 0: NotFoundError: No such JSWindowActor 'DevToolsFrame'
1658503900518 Marionette INFO Stopped listening on port 60911
1658503902485 Marionette INFO Stopped listening on port 61000
console.warn: LoginRecipes: "getRecipes: falling back to a synchronous message for:" "https://twitter.com"
console.warn: LoginRecipes: "getRecipes: falling back to a synchronous message for:" "https://twitter.com"
console.warn: LoginRecipes: "getRecipes: falling back to a synchronous message for:" "https://twitter.com"
2022-07-22 15:31:57.530 plugin-container[46690:3866446] nil host used in call to allowsSpecificHTTPSCertificateForHost
2022-07-22 15:31:57.530 plugin-container[46690:3866446] nil host used in call to allowsAnyHTTPSCertificateForHost:
2022-07-22 15:31:57.532 plugin-container[46690:3866446] nil host used in call to allowsSpecificHTTPSCertificateForHost
2022-07-22 15:31:57.532 plugin-container[46690:3866446] nil host used in call to allowsAnyHTTPSCertificateForHost:
2022-07-22 15:31:57.533 plugin-container[46690:3866449] nil host used in call to allowsSpecificHTTPSCertificateForHost
2022-07-22 15:31:57.533 plugin-container[46690:3866449] nil host used in call to allowsAnyHTTPSCertificateForHost:
console.warn: LoginRecipes: "getRecipes: falling back to a synchronous message for:" "https://twitter.com"
console.warn: LoginRecipes: "getRecipes: falling back to a synchronous message for:" "https://twitter.com"
console.warn: LoginRecipes: "getRecipes: falling back to a synchronous message for:" "https://twitter.com"
console.warn: LoginRecipes: "getRecipes: falling back to a synchronous message for:" "https://twitter.com"
1658503934737 geckodriver INFO Listening on 127.0.0.1:61139
1658503934741 mozrunner::runner INFO Running command: "/Applications/Firefox.app/Contents/MacOS/firefox-bin" "--marionette" "--remote-debugging-port" "61140" "--remote-allow-hosts" "localhost" "-foreground" "-no-remote" "-profile" "/var/folders/7r/wjkz58cd79j9nw8sjydfk4d40000gp/T/rust_mozprofileVZauFJ"
2022-07-22 18:32:14.973 plugin-container[46699:3866634] nil host used in call to allowsSpecificHTTPSCertificateForHost
2022-07-22 18:32:14.973 plugin-container[46699:3866634] nil host used in call to allowsAnyHTTPSCertificateForHost:
2022-07-22 18:32:14.975 plugin-container[46699:3866634] nil host used in call to allowsSpecificHTTPSCertificateForHost
2022-07-22 18:32:14.976 plugin-container[46699:3866634] nil host used in call to allowsAnyHTTPSCertificateForHost:
2022-07-22 18:32:14.976 plugin-container[46699:3866659] nil host used in call to allowsSpecificHTTPSCertificateForHost
2022-07-22 18:32:14.976 plugin-container[46699:3866659] nil host used in call to allowsAnyHTTPSCertificateForHost:
1658503934977 Marionette INFO Marionette enabled
1658503934999 Marionette INFO Listening on port 61145
WebDriver BiDi listening on ws://localhost:61140
Read port: 61145
1658503935167 RemoteAgent WARN TLS certificate errors will be ignored for this session
console.warn: SearchSettings: "get: No settings file exists, new profile?" (new NotFoundError("Could not open the file at /var/folders/7r/wjkz58cd79j9nw8sjydfk4d40000gp/T/rust_mozprofileVZauFJ/search.json.mozlz4", (void 0)))
DevTools listening on ws://localhost:61140/devtools/browser/5e83f114-ddab-4afe-a094-d74d6e562994
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: LoginRecipes: "getRecipes: falling back to a synchronous message for:" "https://twitter.com"
2022-07-22 15:32:28.130 plugin-container[46709:3866997] nil host used in call to allowsSpecificHTTPSCertificateForHost
2022-07-22 15:32:28.130 plugin-container[46709:3866997] nil host used in call to allowsAnyHTTPSCertificateForHost:
2022-07-22 15:32:28.132 plugin-container[46709:3866997] nil host used in call to allowsSpecificHTTPSCertificateForHost
2022-07-22 15:32:28.132 plugin-container[46709:3866997] nil host used in call to allowsAnyHTTPSCertificateForHost:
2022-07-22 15:32:28.132 plugin-container[46709:3867001] nil host used in call to allowsSpecificHTTPSCertificateForHost
2022-07-22 15:32:28.132 plugin-container[46709:3867001] nil host used in call to allowsAnyHTTPSCertificateForHost:
console.warn: LoginRecipes: "getRecipes: falling back to a synchronous message for:" "https://twitter.com"
console.warn: LoginRecipes: "getRecipes: falling back to a synchronous message for:" "https://twitter.com"
console.warn: LoginRecipes: "getRecipes: falling back to a synchronous message for:" "https://twitter.com"
console.warn: LoginRecipes: "getRecipes: falling back to a synchronous message for:" "https://twitter.com"
console.warn: LoginRecipes: "getRecipes: falling back to a synchronous message for:" "https://twitter.com"
console.warn: LoginRecipes: "getRecipes: falling back to a synchronous message for:" "https://twitter.com"
console.error: (new TypeError("parent is null", "resource://devtools/client/inspector/shared/style-change-tracker.js", 67))
TypeError: parent is null: canMutationImpactCurrentStyles@resource://devtools/client/inspector/shared/style-change-tracker.js:67:24