-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathgeckodriver.log
3399 lines (3146 loc) · 483 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
1649363370891 geckodriver INFO Listening on 127.0.0.1:56631
1649363371912 mozrunner::runner INFO Running command: "/Applications/Firefox.app/Contents/MacOS/firefox-bin" "--marionette" "-foreground" "-no-remote" "-profile" "/var/folders/qv/mx8r2xd1351082qj3zpbx7fc0000gn/T/rust_mozprofileGET83u"
1649363373069 Marionette INFO Marionette enabled
2022-04-07 22:29:33.113 plugin-container[45210:11639460] nil host used in call to allowsSpecificHTTPSCertificateForHost
2022-04-07 22:29:33.113 plugin-container[45210:11639460] nil host used in call to allowsAnyHTTPSCertificateForHost:
2022-04-07 22:29:33.194 plugin-container[45210:11639460] nil host used in call to allowsSpecificHTTPSCertificateForHost
2022-04-07 22:29:33.194 plugin-container[45210:11639460] nil host used in call to allowsAnyHTTPSCertificateForHost:
2022-04-07 22:29:33.194 plugin-container[45210:11639463] nil host used in call to allowsSpecificHTTPSCertificateForHost
2022-04-07 22:29:33.194 plugin-container[45210:11639463] nil host used in call to allowsAnyHTTPSCertificateForHost:
2022-04-07 22:29:34.014 firefox-bin[45205:11639339] Warning: Expected min height of view: (<NSButton: 0x12fef1400>) to be less than or equal to 30 but got a height of 32.000000. This error will be logged once per view in violation.
2022-04-07 22:29:34.015 firefox-bin[45205:11639339] Warning: Expected min height of view: (<NSButton: 0x130132800>) to be less than or equal to 30 but got a height of 32.000000. This error will be logged once per view in violation.
2022-04-07 22:29:34.015 firefox-bin[45205:11639339] Warning: Expected min height of view: (<NSButton: 0x13012e000>) to be less than or equal to 30 but got a height of 32.000000. This error will be logged once per view in violation.
2022-04-07 22:29:34.016 firefox-bin[45205:11639339] Warning: Expected min height of view: (<NSButton: 0x13012d000>) to be less than or equal to 30 but got a height of 32.000000. This error will be logged once per view in violation.
2022-04-07 22:29:34.016 firefox-bin[45205:11639339] Warning: Expected min height of view: (<NSButton: 0x13012ec00>) to be less than or equal to 30 but got a height of 32.000000. This error will be logged once per view in violation.
console.warn: SearchSettings: "get: No settings file exists, new profile?" (new NotFoundError("Could not open the file at /var/folders/qv/mx8r2xd1351082qj3zpbx7fc0000gn/T/rust_mozprofileGET83u/search.json.mozlz4", (void 0)))
console.error: BackgroundUpdate:
_reasonsToNotScheduleUpdates: Failed to check for Maintenance Service Registry Key: [Exception... "Component returned failure code: 0x80004001 (NS_ERROR_NOT_IMPLEMENTED) [nsIUpdateProcessor.getServiceRegKeyExists]" nsresult: "0x80004001 (NS_ERROR_NOT_IMPLEMENTED)" location: "JS frame :: resource://gre/modules/BackgroundUpdate.jsm :: _reasonsToNotScheduleUpdates :: line 241" data: no]
1649363375290 Marionette INFO Listening on port 56642
1649363375368 RemoteAgent WARN TLS certificate errors will be ignored for this session
1649363386793 geckodriver INFO Listening on 127.0.0.1:56717
1649363386804 mozrunner::runner INFO Running command: "/Applications/Firefox.app/Contents/MacOS/firefox-bin" "--marionette" "-foreground" "-no-remote" "-profile" "/var/folders/qv/mx8r2xd1351082qj3zpbx7fc0000gn/T/rust_mozprofileLKR9HI"
2022-04-07 22:29:47.252 plugin-container[45228:11639956] nil host used in call to allowsSpecificHTTPSCertificateForHost
2022-04-07 22:29:47.253 plugin-container[45228:11639956] nil host used in call to allowsAnyHTTPSCertificateForHost:
2022-04-07 22:29:47.257 plugin-container[45228:11639956] nil host used in call to allowsSpecificHTTPSCertificateForHost
2022-04-07 22:29:47.257 plugin-container[45228:11639956] nil host used in call to allowsAnyHTTPSCertificateForHost:
2022-04-07 22:29:47.257 plugin-container[45228:11639964] nil host used in call to allowsSpecificHTTPSCertificateForHost
2022-04-07 22:29:47.257 plugin-container[45228:11639964] nil host used in call to allowsAnyHTTPSCertificateForHost:
1649363387259 Marionette INFO Marionette enabled
2022-04-07 22:29:47.975 firefox-bin[45227:11639885] Warning: Expected min height of view: (<NSButton: 0x11f364000>) to be less than or equal to 30 but got a height of 32.000000. This error will be logged once per view in violation.
2022-04-07 22:29:47.975 firefox-bin[45227:11639885] Warning: Expected min height of view: (<NSButton: 0x12e7cd800>) to be less than or equal to 30 but got a height of 32.000000. This error will be logged once per view in violation.
2022-04-07 22:29:47.976 firefox-bin[45227:11639885] Warning: Expected min height of view: (<NSButton: 0x12e7cac00>) to be less than or equal to 30 but got a height of 32.000000. This error will be logged once per view in violation.
2022-04-07 22:29:47.976 firefox-bin[45227:11639885] Warning: Expected min height of view: (<NSButton: 0x12e7c9000>) to be less than or equal to 30 but got a height of 32.000000. This error will be logged once per view in violation.
2022-04-07 22:29:47.977 firefox-bin[45227:11639885] Warning: Expected min height of view: (<NSButton: 0x12e7cd400>) to be less than or equal to 30 but got a height of 32.000000. This error will be logged once per view in violation.
console.warn: SearchSettings: "get: No settings file exists, new profile?" (new NotFoundError("Could not open the file at /var/folders/qv/mx8r2xd1351082qj3zpbx7fc0000gn/T/rust_mozprofileLKR9HI/search.json.mozlz4", (void 0)))
console.error: BackgroundUpdate:
_reasonsToNotScheduleUpdates: Failed to check for Maintenance Service Registry Key: [Exception... "Component returned failure code: 0x80004001 (NS_ERROR_NOT_IMPLEMENTED) [nsIUpdateProcessor.getServiceRegKeyExists]" nsresult: "0x80004001 (NS_ERROR_NOT_IMPLEMENTED)" location: "JS frame :: resource://gre/modules/BackgroundUpdate.jsm :: _reasonsToNotScheduleUpdates :: line 241" data: no]
1649363388991 Marionette INFO Listening on port 56726
1649363389091 RemoteAgent WARN TLS certificate errors will be ignored for this session
1649363398667 Marionette INFO Stopped listening on port 56642
1649363472688 geckodriver INFO Listening on 127.0.0.1:56817
1649363473712 mozrunner::runner INFO Running command: "/Applications/Firefox.app/Contents/MacOS/firefox-bin" "--marionette" "-foreground" "-no-remote" "-profile" "/var/folders/qv/mx8r2xd1351082qj3zpbx7fc0000gn/T/rust_mozprofileCeHSds"
2022-04-07 22:31:14.153 plugin-container[45289:11641302] nil host used in call to allowsSpecificHTTPSCertificateForHost
2022-04-07 22:31:14.153 plugin-container[45289:11641302] nil host used in call to allowsAnyHTTPSCertificateForHost:
2022-04-07 22:31:14.157 plugin-container[45289:11641302] nil host used in call to allowsSpecificHTTPSCertificateForHost
2022-04-07 22:31:14.157 plugin-container[45289:11641302] nil host used in call to allowsAnyHTTPSCertificateForHost:
2022-04-07 22:31:14.158 plugin-container[45289:11641303] nil host used in call to allowsSpecificHTTPSCertificateForHost
2022-04-07 22:31:14.158 plugin-container[45289:11641303] nil host used in call to allowsAnyHTTPSCertificateForHost:
1649363474164 Marionette INFO Marionette enabled
2022-04-07 22:31:14.842 firefox-bin[45286:11641235] Warning: Expected min height of view: (<NSButton: 0x12de4f800>) to be less than or equal to 30 but got a height of 32.000000. This error will be logged once per view in violation.
2022-04-07 22:31:14.842 firefox-bin[45286:11641235] Warning: Expected min height of view: (<NSButton: 0x12deb2800>) to be less than or equal to 30 but got a height of 32.000000. This error will be logged once per view in violation.
2022-04-07 22:31:14.843 firefox-bin[45286:11641235] Warning: Expected min height of view: (<NSButton: 0x12deb1000>) to be less than or equal to 30 but got a height of 32.000000. This error will be logged once per view in violation.
2022-04-07 22:31:14.843 firefox-bin[45286:11641235] Warning: Expected min height of view: (<NSButton: 0x12deb4800>) to be less than or equal to 30 but got a height of 32.000000. This error will be logged once per view in violation.
2022-04-07 22:31:14.844 firefox-bin[45286:11641235] Warning: Expected min height of view: (<NSButton: 0x12deb1400>) to be less than or equal to 30 but got a height of 32.000000. This error will be logged once per view in violation.
console.warn: SearchSettings: "get: No settings file exists, new profile?" (new NotFoundError("Could not open the file at /var/folders/qv/mx8r2xd1351082qj3zpbx7fc0000gn/T/rust_mozprofileCeHSds/search.json.mozlz4", (void 0)))
console.error: BackgroundUpdate:
_reasonsToNotScheduleUpdates: Failed to check for Maintenance Service Registry Key: [Exception... "Component returned failure code: 0x80004001 (NS_ERROR_NOT_IMPLEMENTED) [nsIUpdateProcessor.getServiceRegKeyExists]" nsresult: "0x80004001 (NS_ERROR_NOT_IMPLEMENTED)" location: "JS frame :: resource://gre/modules/BackgroundUpdate.jsm :: _reasonsToNotScheduleUpdates :: line 241" data: no]
1649363475800 Marionette INFO Listening on port 56829
1649363475887 RemoteAgent WARN TLS certificate errors will be ignored for this session
1649363604522 geckodriver INFO Listening on 127.0.0.1:56928
1649363605543 mozrunner::runner INFO Running command: "/Applications/Firefox.app/Contents/MacOS/firefox-bin" "--marionette" "-foreground" "-no-remote" "-profile" "/var/folders/qv/mx8r2xd1351082qj3zpbx7fc0000gn/T/rust_mozprofileLMyEld"
2022-04-07 22:33:26.011 plugin-container[45360:11643288] nil host used in call to allowsSpecificHTTPSCertificateForHost
2022-04-07 22:33:26.011 plugin-container[45360:11643288] nil host used in call to allowsAnyHTTPSCertificateForHost:
2022-04-07 22:33:26.018 plugin-container[45360:11643288] nil host used in call to allowsSpecificHTTPSCertificateForHost
2022-04-07 22:33:26.018 plugin-container[45360:11643288] nil host used in call to allowsAnyHTTPSCertificateForHost:
2022-04-07 22:33:26.018 plugin-container[45360:11643296] nil host used in call to allowsSpecificHTTPSCertificateForHost
2022-04-07 22:33:26.018 plugin-container[45360:11643296] nil host used in call to allowsAnyHTTPSCertificateForHost:
1649363606024 Marionette INFO Marionette enabled
2022-04-07 22:33:26.723 firefox-bin[45359:11643214] Warning: Expected min height of view: (<NSButton: 0x12a753000>) to be less than or equal to 30 but got a height of 32.000000. This error will be logged once per view in violation.
2022-04-07 22:33:26.723 firefox-bin[45359:11643214] Warning: Expected min height of view: (<NSButton: 0x12a9c0c00>) to be less than or equal to 30 but got a height of 32.000000. This error will be logged once per view in violation.
2022-04-07 22:33:26.724 firefox-bin[45359:11643214] Warning: Expected min height of view: (<NSButton: 0x12a9c5800>) to be less than or equal to 30 but got a height of 32.000000. This error will be logged once per view in violation.
2022-04-07 22:33:26.724 firefox-bin[45359:11643214] Warning: Expected min height of view: (<NSButton: 0x12a9c5c00>) to be less than or equal to 30 but got a height of 32.000000. This error will be logged once per view in violation.
2022-04-07 22:33:26.725 firefox-bin[45359:11643214] Warning: Expected min height of view: (<NSButton: 0x12a9bf800>) to be less than or equal to 30 but got a height of 32.000000. This error will be logged once per view in violation.
console.warn: SearchSettings: "get: No settings file exists, new profile?" (new NotFoundError("Could not open the file at /var/folders/qv/mx8r2xd1351082qj3zpbx7fc0000gn/T/rust_mozprofileLMyEld/search.json.mozlz4", (void 0)))
console.error: BackgroundUpdate:
_reasonsToNotScheduleUpdates: Failed to check for Maintenance Service Registry Key: [Exception... "Component returned failure code: 0x80004001 (NS_ERROR_NOT_IMPLEMENTED) [nsIUpdateProcessor.getServiceRegKeyExists]" nsresult: "0x80004001 (NS_ERROR_NOT_IMPLEMENTED)" location: "JS frame :: resource://gre/modules/BackgroundUpdate.jsm :: _reasonsToNotScheduleUpdates :: line 241" data: no]
1649363607853 Marionette INFO Listening on port 56939
1649363607933 RemoteAgent WARN TLS certificate errors will be ignored for this session
JavaScript warning: https://www.amazon.de/ line 1988 > injectedScript, line 1: WEBGL_debug_renderer_info is deprecated in Firefox and will be removed. Please use RENDERER.
JavaScript warning: https://www.amazon.de/ap/signin?openid.pape.max_auth_age=0&openid.return_to=https%3A%2F%2Fwww.amazon.de%2F%3Fref_%3Dnav_custrec_signin&openid.identity=http%3A%2F%2Fspecs.openid.net%2Fauth%2F2.0%2Fidentifier_select&openid.assoc_handle=deflex&openid.mode=checkid_setup&openid.claimed_id=http%3A%2F%2Fspecs.openid.net%2Fauth%2F2.0%2Fidentifier_select&openid.ns=http%3A%2F%2Fspecs.openid.net%2Fauth%2F2.0& line 756 > injectedScript, line 1: WEBGL_debug_renderer_info is deprecated in Firefox and will be removed. Please use RENDERER.
JavaScript warning: https://images-eu.ssl-images-amazon.com/images/I/81UNYn554pL.js?AUIClients/FWCIMAssets, line 289: WEBGL_debug_renderer_info is deprecated in Firefox and will be removed. Please use RENDERER.
JavaScript warning: https://images-eu.ssl-images-amazon.com/images/I/81UNYn554pL.js?AUIClients/FWCIMAssets, line 289: WEBGL_debug_renderer_info is deprecated in Firefox and will be removed. Please use RENDERER.
1649363679095 geckodriver INFO Listening on 127.0.0.1:57055
1649363680107 mozrunner::runner INFO Running command: "/Applications/Firefox.app/Contents/MacOS/firefox-bin" "--marionette" "-foreground" "-no-remote" "-profile" "/var/folders/qv/mx8r2xd1351082qj3zpbx7fc0000gn/T/rust_mozprofilew8Z4xd"
2022-04-07 22:34:40.601 plugin-container[45386:11644483] nil host used in call to allowsSpecificHTTPSCertificateForHost
2022-04-07 22:34:40.601 plugin-container[45386:11644483] nil host used in call to allowsAnyHTTPSCertificateForHost:
2022-04-07 22:34:40.606 plugin-container[45386:11644483] nil host used in call to allowsSpecificHTTPSCertificateForHost
2022-04-07 22:34:40.606 plugin-container[45386:11644483] nil host used in call to allowsAnyHTTPSCertificateForHost:
2022-04-07 22:34:40.606 plugin-container[45386:11644488] nil host used in call to allowsSpecificHTTPSCertificateForHost
2022-04-07 22:34:40.606 plugin-container[45386:11644488] nil host used in call to allowsAnyHTTPSCertificateForHost:
1649363680613 Marionette INFO Marionette enabled
2022-04-07 22:34:41.386 firefox-bin[45384:11644394] Warning: Expected min height of view: (<NSButton: 0x12328b000>) to be less than or equal to 30 but got a height of 32.000000. This error will be logged once per view in violation.
2022-04-07 22:34:41.387 firefox-bin[45384:11644394] Warning: Expected min height of view: (<NSButton: 0x1234ba400>) to be less than or equal to 30 but got a height of 32.000000. This error will be logged once per view in violation.
2022-04-07 22:34:41.387 firefox-bin[45384:11644394] Warning: Expected min height of view: (<NSButton: 0x1234bbc00>) to be less than or equal to 30 but got a height of 32.000000. This error will be logged once per view in violation.
2022-04-07 22:34:41.388 firefox-bin[45384:11644394] Warning: Expected min height of view: (<NSButton: 0x1234b8c00>) to be less than or equal to 30 but got a height of 32.000000. This error will be logged once per view in violation.
2022-04-07 22:34:41.388 firefox-bin[45384:11644394] Warning: Expected min height of view: (<NSButton: 0x1234b7800>) to be less than or equal to 30 but got a height of 32.000000. This error will be logged once per view in violation.
console.warn: SearchSettings: "get: No settings file exists, new profile?" (new NotFoundError("Could not open the file at /var/folders/qv/mx8r2xd1351082qj3zpbx7fc0000gn/T/rust_mozprofilew8Z4xd/search.json.mozlz4", (void 0)))
console.error: BackgroundUpdate:
_reasonsToNotScheduleUpdates: Failed to check for Maintenance Service Registry Key: [Exception... "Component returned failure code: 0x80004001 (NS_ERROR_NOT_IMPLEMENTED) [nsIUpdateProcessor.getServiceRegKeyExists]" nsresult: "0x80004001 (NS_ERROR_NOT_IMPLEMENTED)" location: "JS frame :: resource://gre/modules/BackgroundUpdate.jsm :: _reasonsToNotScheduleUpdates :: line 241" data: no]
1649363682531 Marionette INFO Listening on port 57066
1649363682598 RemoteAgent WARN TLS certificate errors will be ignored for this session
JavaScript warning: https://www.amazon.de/ line 1986 > injectedScript, line 1: WEBGL_debug_renderer_info is deprecated in Firefox and will be removed. Please use RENDERER.
JavaScript warning: https://images-eu.ssl-images-amazon.com/images/I/7175vaFom2L.js?AUIClients/FWCIMAssets, line 289: WEBGL_debug_renderer_info is deprecated in Firefox and will be removed. Please use RENDERER.
JavaScript warning: https://www.amazon.de/ line 1988 > injectedScript, 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://www.amazon.de"
JavaScript warning: https://images-eu.ssl-images-amazon.com/images/I/7175vaFom2L.js?AUIClients/FWCIMAssets, line 289: WEBGL_debug_renderer_info is deprecated in Firefox and will be removed. Please use RENDERER.
1649364117727 geckodriver INFO Listening on 127.0.0.1:57272
1649364118747 mozrunner::runner INFO Running command: "/Applications/Firefox.app/Contents/MacOS/firefox-bin" "--marionette" "-foreground" "-no-remote" "-profile" "/var/folders/qv/mx8r2xd1351082qj3zpbx7fc0000gn/T/rust_mozprofileOsOSyU"
2022-04-07 22:41:59.282 plugin-container[45451:11649047] nil host used in call to allowsSpecificHTTPSCertificateForHost
2022-04-07 22:41:59.282 plugin-container[45451:11649047] nil host used in call to allowsAnyHTTPSCertificateForHost:
1649364119284 Marionette INFO Marionette enabled
2022-04-07 22:41:59.345 plugin-container[45451:11649047] nil host used in call to allowsSpecificHTTPSCertificateForHost
2022-04-07 22:41:59.345 plugin-container[45451:11649047] nil host used in call to allowsAnyHTTPSCertificateForHost:
2022-04-07 22:41:59.345 plugin-container[45451:11649073] nil host used in call to allowsSpecificHTTPSCertificateForHost
2022-04-07 22:41:59.345 plugin-container[45451:11649073] nil host used in call to allowsAnyHTTPSCertificateForHost:
2022-04-07 22:42:00.013 firefox-bin[45450:11648964] Warning: Expected min height of view: (<NSButton: 0x11e880800>) to be less than or equal to 30 but got a height of 32.000000. This error will be logged once per view in violation.
2022-04-07 22:42:00.014 firefox-bin[45450:11648964] Warning: Expected min height of view: (<NSButton: 0x1259cd000>) to be less than or equal to 30 but got a height of 32.000000. This error will be logged once per view in violation.
2022-04-07 22:42:00.014 firefox-bin[45450:11648964] Warning: Expected min height of view: (<NSButton: 0x1259cf800>) to be less than or equal to 30 but got a height of 32.000000. This error will be logged once per view in violation.
2022-04-07 22:42:00.015 firefox-bin[45450:11648964] Warning: Expected min height of view: (<NSButton: 0x1259ca800>) to be less than or equal to 30 but got a height of 32.000000. This error will be logged once per view in violation.
2022-04-07 22:42:00.015 firefox-bin[45450:11648964] Warning: Expected min height of view: (<NSButton: 0x1259d0800>) to be less than or equal to 30 but got a height of 32.000000. This error will be logged once per view in violation.
console.warn: SearchSettings: "get: No settings file exists, new profile?" (new NotFoundError("Could not open the file at /var/folders/qv/mx8r2xd1351082qj3zpbx7fc0000gn/T/rust_mozprofileOsOSyU/search.json.mozlz4", (void 0)))
console.error: BackgroundUpdate:
_reasonsToNotScheduleUpdates: Failed to check for Maintenance Service Registry Key: [Exception... "Component returned failure code: 0x80004001 (NS_ERROR_NOT_IMPLEMENTED) [nsIUpdateProcessor.getServiceRegKeyExists]" nsresult: "0x80004001 (NS_ERROR_NOT_IMPLEMENTED)" location: "JS frame :: resource://gre/modules/BackgroundUpdate.jsm :: _reasonsToNotScheduleUpdates :: line 241" data: no]
1649364121167 Marionette INFO Listening on port 57283
1649364121235 RemoteAgent WARN TLS certificate errors will be ignored for this session
JavaScript warning: https://www.amazon.de/ line 1977 > injectedScript, 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://www.amazon.de"
console.error: (new TypeError("topBrowsingContext is null", "resource://devtools/server/actors/watcher/browsing-context-helpers.jsm", 352))
###!!! [Parent][PContentParent] Error: Send(msgname=PContent::Msg_DestroyBrowsingContextGroup) Closed channel: cannot send/recv
1649365540606 geckodriver INFO Listening on 127.0.0.1:57660
1649365541637 mozrunner::runner INFO Running command: "/Applications/Firefox.app/Contents/MacOS/firefox-bin" "--marionette" "-foreground" "-no-remote" "-profile" "/var/folders/qv/mx8r2xd1351082qj3zpbx7fc0000gn/T/rust_mozprofileENONHg"
2022-04-07 23:05:42.162 plugin-container[45599:11661221] nil host used in call to allowsSpecificHTTPSCertificateForHost
2022-04-07 23:05:42.162 plugin-container[45599:11661221] nil host used in call to allowsAnyHTTPSCertificateForHost:
1649365542171 Marionette INFO Marionette enabled
2022-04-07 23:05:42.215 plugin-container[45599:11661221] nil host used in call to allowsSpecificHTTPSCertificateForHost
2022-04-07 23:05:42.215 plugin-container[45599:11661221] nil host used in call to allowsAnyHTTPSCertificateForHost:
2022-04-07 23:05:42.216 plugin-container[45599:11661248] nil host used in call to allowsSpecificHTTPSCertificateForHost
2022-04-07 23:05:42.216 plugin-container[45599:11661248] nil host used in call to allowsAnyHTTPSCertificateForHost:
2022-04-07 23:05:42.883 firefox-bin[45598:11661136] Warning: Expected min height of view: (<NSButton: 0x1188a3c00>) to be less than or equal to 30 but got a height of 32.000000. This error will be logged once per view in violation.
2022-04-07 23:05:42.884 firefox-bin[45598:11661136] Warning: Expected min height of view: (<NSButton: 0x11a8a4000>) to be less than or equal to 30 but got a height of 32.000000. This error will be logged once per view in violation.
2022-04-07 23:05:42.884 firefox-bin[45598:11661136] Warning: Expected min height of view: (<NSButton: 0x11a8a6400>) to be less than or equal to 30 but got a height of 32.000000. This error will be logged once per view in violation.
2022-04-07 23:05:42.885 firefox-bin[45598:11661136] Warning: Expected min height of view: (<NSButton: 0x11a8a1c00>) to be less than or equal to 30 but got a height of 32.000000. This error will be logged once per view in violation.
2022-04-07 23:05:42.885 firefox-bin[45598:11661136] Warning: Expected min height of view: (<NSButton: 0x11a8a6000>) to be less than or equal to 30 but got a height of 32.000000. This error will be logged once per view in violation.
console.warn: SearchSettings: "get: No settings file exists, new profile?" (new NotFoundError("Could not open the file at /var/folders/qv/mx8r2xd1351082qj3zpbx7fc0000gn/T/rust_mozprofileENONHg/search.json.mozlz4", (void 0)))
console.error: BackgroundUpdate:
_reasonsToNotScheduleUpdates: Failed to check for Maintenance Service Registry Key: [Exception... "Component returned failure code: 0x80004001 (NS_ERROR_NOT_IMPLEMENTED) [nsIUpdateProcessor.getServiceRegKeyExists]" nsresult: "0x80004001 (NS_ERROR_NOT_IMPLEMENTED)" location: "JS frame :: resource://gre/modules/BackgroundUpdate.jsm :: _reasonsToNotScheduleUpdates :: line 241" data: no]
1649365544116 Marionette INFO Listening on port 57671
1649365544221 RemoteAgent WARN TLS certificate errors will be ignored for this session
JavaScript warning: https://www.amazon.de/ line 1969 > injectedScript, line 1: WEBGL_debug_renderer_info is deprecated in Firefox and will be removed. Please use RENDERER.
1649365869871 geckodriver INFO Listening on 127.0.0.1:57811
1649365870898 mozrunner::runner INFO Running command: "/Applications/Firefox.app/Contents/MacOS/firefox-bin" "--marionette" "-foreground" "-no-remote" "-profile" "/var/folders/qv/mx8r2xd1351082qj3zpbx7fc0000gn/T/rust_mozprofilePRgxbd"
2022-04-07 23:11:11.394 plugin-container[45646:11665109] nil host used in call to allowsSpecificHTTPSCertificateForHost
2022-04-07 23:11:11.394 plugin-container[45646:11665109] nil host used in call to allowsAnyHTTPSCertificateForHost:
1649365871404 Marionette INFO Marionette enabled
2022-04-07 23:11:11.420 plugin-container[45646:11665109] nil host used in call to allowsSpecificHTTPSCertificateForHost
2022-04-07 23:11:11.420 plugin-container[45646:11665109] nil host used in call to allowsAnyHTTPSCertificateForHost:
2022-04-07 23:11:11.420 plugin-container[45646:11665114] nil host used in call to allowsSpecificHTTPSCertificateForHost
2022-04-07 23:11:11.420 plugin-container[45646:11665114] nil host used in call to allowsAnyHTTPSCertificateForHost:
2022-04-07 23:11:12.111 firefox-bin[45645:11665028] Warning: Expected min height of view: (<NSButton: 0x127847c00>) to be less than or equal to 30 but got a height of 32.000000. This error will be logged once per view in violation.
2022-04-07 23:11:12.112 firefox-bin[45645:11665028] Warning: Expected min height of view: (<NSButton: 0x1070d6c00>) to be less than or equal to 30 but got a height of 32.000000. This error will be logged once per view in violation.
2022-04-07 23:11:12.112 firefox-bin[45645:11665028] Warning: Expected min height of view: (<NSButton: 0x1278a8400>) to be less than or equal to 30 but got a height of 32.000000. This error will be logged once per view in violation.
2022-04-07 23:11:12.113 firefox-bin[45645:11665028] Warning: Expected min height of view: (<NSButton: 0x1278a8c00>) to be less than or equal to 30 but got a height of 32.000000. This error will be logged once per view in violation.
2022-04-07 23:11:12.113 firefox-bin[45645:11665028] Warning: Expected min height of view: (<NSButton: 0x1278b0000>) to be less than or equal to 30 but got a height of 32.000000. This error will be logged once per view in violation.
console.warn: SearchSettings: "get: No settings file exists, new profile?" (new NotFoundError("Could not open the file at /var/folders/qv/mx8r2xd1351082qj3zpbx7fc0000gn/T/rust_mozprofilePRgxbd/search.json.mozlz4", (void 0)))
console.error: BackgroundUpdate:
_reasonsToNotScheduleUpdates: Failed to check for Maintenance Service Registry Key: [Exception... "Component returned failure code: 0x80004001 (NS_ERROR_NOT_IMPLEMENTED) [nsIUpdateProcessor.getServiceRegKeyExists]" nsresult: "0x80004001 (NS_ERROR_NOT_IMPLEMENTED)" location: "JS frame :: resource://gre/modules/BackgroundUpdate.jsm :: _reasonsToNotScheduleUpdates :: line 241" data: no]
1649365873364 Marionette INFO Listening on port 57822
1649365873482 RemoteAgent WARN TLS certificate errors will be ignored for this session
JavaScript warning: https://www.amazon.de/ line 2002 > injectedScript, line 1: WEBGL_debug_renderer_info is deprecated in Firefox and will be removed. Please use RENDERER.
console.error: (new TypeError("topBrowsingContext is null", "resource://devtools/server/actors/watcher/browsing-context-helpers.jsm", 352))
1649366019293 geckodriver INFO Listening on 127.0.0.1:57943
1649366020313 mozrunner::runner INFO Running command: "/Applications/Firefox.app/Contents/MacOS/firefox-bin" "--marionette" "-foreground" "-no-remote" "-profile" "/var/folders/qv/mx8r2xd1351082qj3zpbx7fc0000gn/T/rust_mozprofilexpxvlI"
2022-04-07 23:13:40.885 plugin-container[45689:11666968] nil host used in call to allowsSpecificHTTPSCertificateForHost
2022-04-07 23:13:40.885 plugin-container[45689:11666968] nil host used in call to allowsAnyHTTPSCertificateForHost:
1649366020892 Marionette INFO Marionette enabled
2022-04-07 23:13:40.909 plugin-container[45689:11666968] nil host used in call to allowsSpecificHTTPSCertificateForHost
2022-04-07 23:13:40.909 plugin-container[45689:11666968] nil host used in call to allowsAnyHTTPSCertificateForHost:
2022-04-07 23:13:40.909 plugin-container[45689:11666976] nil host used in call to allowsSpecificHTTPSCertificateForHost
2022-04-07 23:13:40.909 plugin-container[45689:11666976] nil host used in call to allowsAnyHTTPSCertificateForHost:
2022-04-07 23:13:41.607 firefox-bin[45688:11666853] Warning: Expected min height of view: (<NSButton: 0x113287400>) to be less than or equal to 30 but got a height of 32.000000. This error will be logged once per view in violation.
2022-04-07 23:13:41.607 firefox-bin[45688:11666853] Warning: Expected min height of view: (<NSButton: 0x115baa000>) to be less than or equal to 30 but got a height of 32.000000. This error will be logged once per view in violation.
2022-04-07 23:13:41.608 firefox-bin[45688:11666853] Warning: Expected min height of view: (<NSButton: 0x115bacc00>) to be less than or equal to 30 but got a height of 32.000000. This error will be logged once per view in violation.
2022-04-07 23:13:41.608 firefox-bin[45688:11666853] Warning: Expected min height of view: (<NSButton: 0x115bac800>) to be less than or equal to 30 but got a height of 32.000000. This error will be logged once per view in violation.
2022-04-07 23:13:41.609 firefox-bin[45688:11666853] Warning: Expected min height of view: (<NSButton: 0x115ba8c00>) to be less than or equal to 30 but got a height of 32.000000. This error will be logged once per view in violation.
console.warn: SearchSettings: "get: No settings file exists, new profile?" (new NotFoundError("Could not open the file at /var/folders/qv/mx8r2xd1351082qj3zpbx7fc0000gn/T/rust_mozprofilexpxvlI/search.json.mozlz4", (void 0)))
console.error: BackgroundUpdate:
_reasonsToNotScheduleUpdates: Failed to check for Maintenance Service Registry Key: [Exception... "Component returned failure code: 0x80004001 (NS_ERROR_NOT_IMPLEMENTED) [nsIUpdateProcessor.getServiceRegKeyExists]" nsresult: "0x80004001 (NS_ERROR_NOT_IMPLEMENTED)" location: "JS frame :: resource://gre/modules/BackgroundUpdate.jsm :: _reasonsToNotScheduleUpdates :: line 241" data: no]
1649366022760 Marionette INFO Listening on port 57954
1649366022804 RemoteAgent WARN TLS certificate errors will be ignored for this session
JavaScript warning: https://www.amazon.de/ line 2013 > injectedScript, line 1: WEBGL_debug_renderer_info is deprecated in Firefox and will be removed. Please use RENDERER.
1649366032570 geckodriver INFO Listening on 127.0.0.1:58056
1649366032582 mozrunner::runner INFO Running command: "/Applications/Firefox.app/Contents/MacOS/firefox-bin" "--marionette" "-foreground" "-no-remote" "-profile" "/var/folders/qv/mx8r2xd1351082qj3zpbx7fc0000gn/T/rust_mozprofile3681UZ"
2022-04-07 23:13:53.087 plugin-container[45706:11667528] nil host used in call to allowsSpecificHTTPSCertificateForHost
2022-04-07 23:13:53.087 plugin-container[45706:11667528] nil host used in call to allowsAnyHTTPSCertificateForHost:
2022-04-07 23:13:53.092 plugin-container[45706:11667528] nil host used in call to allowsSpecificHTTPSCertificateForHost
2022-04-07 23:13:53.092 plugin-container[45706:11667528] nil host used in call to allowsAnyHTTPSCertificateForHost:
2022-04-07 23:13:53.092 plugin-container[45706:11667526] nil host used in call to allowsSpecificHTTPSCertificateForHost
2022-04-07 23:13:53.092 plugin-container[45706:11667526] nil host used in call to allowsAnyHTTPSCertificateForHost:
1649366033098 Marionette INFO Marionette enabled
2022-04-07 23:13:53.837 firefox-bin[45705:11667439] Warning: Expected min height of view: (<NSButton: 0x1209f8800>) to be less than or equal to 30 but got a height of 32.000000. This error will be logged once per view in violation.
2022-04-07 23:13:53.838 firefox-bin[45705:11667439] Warning: Expected min height of view: (<NSButton: 0x127bc8800>) to be less than or equal to 30 but got a height of 32.000000. This error will be logged once per view in violation.
2022-04-07 23:13:53.838 firefox-bin[45705:11667439] Warning: Expected min height of view: (<NSButton: 0x127bce800>) to be less than or equal to 30 but got a height of 32.000000. This error will be logged once per view in violation.
2022-04-07 23:13:53.839 firefox-bin[45705:11667439] Warning: Expected min height of view: (<NSButton: 0x127bcc400>) to be less than or equal to 30 but got a height of 32.000000. This error will be logged once per view in violation.
2022-04-07 23:13:53.839 firefox-bin[45705:11667439] Warning: Expected min height of view: (<NSButton: 0x127bc9000>) to be less than or equal to 30 but got a height of 32.000000. This error will be logged once per view in violation.
console.warn: SearchSettings: "get: No settings file exists, new profile?" (new NotFoundError("Could not open the file at /var/folders/qv/mx8r2xd1351082qj3zpbx7fc0000gn/T/rust_mozprofile3681UZ/search.json.mozlz4", (void 0)))
console.error: BackgroundUpdate:
_reasonsToNotScheduleUpdates: Failed to check for Maintenance Service Registry Key: [Exception... "Component returned failure code: 0x80004001 (NS_ERROR_NOT_IMPLEMENTED) [nsIUpdateProcessor.getServiceRegKeyExists]" nsresult: "0x80004001 (NS_ERROR_NOT_IMPLEMENTED)" location: "JS frame :: resource://gre/modules/BackgroundUpdate.jsm :: _reasonsToNotScheduleUpdates :: line 241" data: no]
1649366035040 Marionette INFO Listening on port 58065
1649366035152 RemoteAgent WARN TLS certificate errors will be ignored for this session
JavaScript warning: https://www.amazon.de/ line 2029 > injectedScript, line 1: WEBGL_debug_renderer_info is deprecated in Firefox and will be removed. Please use RENDERER.
JavaScript warning: https://images-eu.ssl-images-amazon.com/images/I/7175vaFom2L.js?AUIClients/FWCIMAssets, line 289: WEBGL_debug_renderer_info is deprecated in Firefox and will be removed. Please use RENDERER.
JavaScript warning: https://www.amazon.de/cookieprefs?ref_=portal_banner_cpp line 2372 > injectedScript, line 1: WEBGL_debug_renderer_info is deprecated in Firefox and will be removed. Please use RENDERER.
JavaScript warning: https://www.amazon.de/ line 2029 > injectedScript, line 1: WEBGL_debug_renderer_info is deprecated in Firefox and will be removed. Please use RENDERER.
JavaScript warning: https://images-eu.ssl-images-amazon.com/images/I/7175vaFom2L.js?AUIClients/FWCIMAssets, line 289: WEBGL_debug_renderer_info is deprecated in Firefox and will be removed. Please use RENDERER.
1649366103255 geckodriver INFO Listening on 127.0.0.1:58179
1649366104277 mozrunner::runner INFO Running command: "/Applications/Firefox.app/Contents/MacOS/firefox-bin" "--marionette" "-foreground" "-no-remote" "-profile" "/var/folders/qv/mx8r2xd1351082qj3zpbx7fc0000gn/T/rust_mozprofileXS5wsc"
2022-04-07 23:15:04.860 plugin-container[45729:11668986] nil host used in call to allowsSpecificHTTPSCertificateForHost
2022-04-07 23:15:04.861 plugin-container[45729:11668986] nil host used in call to allowsAnyHTTPSCertificateForHost:
1649366104867 Marionette INFO Marionette enabled
2022-04-07 23:15:04.883 plugin-container[45729:11668986] nil host used in call to allowsSpecificHTTPSCertificateForHost
2022-04-07 23:15:04.883 plugin-container[45729:11668986] nil host used in call to allowsAnyHTTPSCertificateForHost:
2022-04-07 23:15:04.884 plugin-container[45729:11668993] nil host used in call to allowsSpecificHTTPSCertificateForHost
2022-04-07 23:15:04.884 plugin-container[45729:11668993] nil host used in call to allowsAnyHTTPSCertificateForHost:
2022-04-07 23:15:05.609 firefox-bin[45728:11668866] Warning: Expected min height of view: (<NSButton: 0x1223f2400>) to be less than or equal to 30 but got a height of 32.000000. This error will be logged once per view in violation.
2022-04-07 23:15:05.609 firefox-bin[45728:11668866] Warning: Expected min height of view: (<NSButton: 0x129a52c00>) to be less than or equal to 30 but got a height of 32.000000. This error will be logged once per view in violation.
2022-04-07 23:15:05.610 firefox-bin[45728:11668866] Warning: Expected min height of view: (<NSButton: 0x129a4d400>) to be less than or equal to 30 but got a height of 32.000000. This error will be logged once per view in violation.
2022-04-07 23:15:05.610 firefox-bin[45728:11668866] Warning: Expected min height of view: (<NSButton: 0x129a4bc00>) to be less than or equal to 30 but got a height of 32.000000. This error will be logged once per view in violation.
2022-04-07 23:15:05.611 firefox-bin[45728:11668866] Warning: Expected min height of view: (<NSButton: 0x129a50c00>) to be less than or equal to 30 but got a height of 32.000000. This error will be logged once per view in violation.
console.warn: SearchSettings: "get: No settings file exists, new profile?" (new NotFoundError("Could not open the file at /var/folders/qv/mx8r2xd1351082qj3zpbx7fc0000gn/T/rust_mozprofileXS5wsc/search.json.mozlz4", (void 0)))
console.error: BackgroundUpdate:
_reasonsToNotScheduleUpdates: Failed to check for Maintenance Service Registry Key: [Exception... "Component returned failure code: 0x80004001 (NS_ERROR_NOT_IMPLEMENTED) [nsIUpdateProcessor.getServiceRegKeyExists]" nsresult: "0x80004001 (NS_ERROR_NOT_IMPLEMENTED)" location: "JS frame :: resource://gre/modules/BackgroundUpdate.jsm :: _reasonsToNotScheduleUpdates :: line 241" data: no]
1649366106907 Marionette INFO Listening on port 58190
1649366106963 RemoteAgent WARN TLS certificate errors will be ignored for this session
JavaScript warning: https://www.amazon.de/ line 1977 > injectedScript, line 1: WEBGL_debug_renderer_info is deprecated in Firefox and will be removed. Please use RENDERER.
console.error: (new TypeError("topBrowsingContext is null", "resource://devtools/server/actors/watcher/browsing-context-helpers.jsm", 352))
###!!! [Parent][PContentParent] Error: Send(msgname=PContent::Msg_DestroyBrowsingContextGroup) Closed channel: cannot send/recv
1649366165967 geckodriver INFO Listening on 127.0.0.1:58290
1649366166988 mozrunner::runner INFO Running command: "/Applications/Firefox.app/Contents/MacOS/firefox-bin" "--marionette" "-foreground" "-no-remote" "-profile" "/var/folders/qv/mx8r2xd1351082qj3zpbx7fc0000gn/T/rust_mozprofileDCGmUE"
1649366167621 Marionette INFO Marionette enabled
2022-04-07 23:16:07.682 plugin-container[45750:11670130] nil host used in call to allowsSpecificHTTPSCertificateForHost
2022-04-07 23:16:07.682 plugin-container[45750:11670130] nil host used in call to allowsAnyHTTPSCertificateForHost:
2022-04-07 23:16:07.697 plugin-container[45750:11670130] nil host used in call to allowsSpecificHTTPSCertificateForHost
2022-04-07 23:16:07.697 plugin-container[45750:11670130] nil host used in call to allowsAnyHTTPSCertificateForHost:
2022-04-07 23:16:07.697 plugin-container[45750:11670152] nil host used in call to allowsSpecificHTTPSCertificateForHost
2022-04-07 23:16:07.697 plugin-container[45750:11670152] nil host used in call to allowsAnyHTTPSCertificateForHost:
2022-04-07 23:16:08.497 firefox-bin[45749:11670012] Warning: Expected min height of view: (<NSButton: 0x123092800>) to be less than or equal to 30 but got a height of 32.000000. This error will be logged once per view in violation.
2022-04-07 23:16:08.497 firefox-bin[45749:11670012] Warning: Expected min height of view: (<NSButton: 0x1230eb000>) to be less than or equal to 30 but got a height of 32.000000. This error will be logged once per view in violation.
2022-04-07 23:16:08.498 firefox-bin[45749:11670012] Warning: Expected min height of view: (<NSButton: 0x1230ee800>) to be less than or equal to 30 but got a height of 32.000000. This error will be logged once per view in violation.
2022-04-07 23:16:08.498 firefox-bin[45749:11670012] Warning: Expected min height of view: (<NSButton: 0x1230eb400>) to be less than or equal to 30 but got a height of 32.000000. This error will be logged once per view in violation.
2022-04-07 23:16:08.499 firefox-bin[45749:11670012] Warning: Expected min height of view: (<NSButton: 0x1230e9800>) to be less than or equal to 30 but got a height of 32.000000. This error will be logged once per view in violation.
console.warn: SearchSettings: "get: No settings file exists, new profile?" (new NotFoundError("Could not open the file at /var/folders/qv/mx8r2xd1351082qj3zpbx7fc0000gn/T/rust_mozprofileDCGmUE/search.json.mozlz4", (void 0)))
console.error: BackgroundUpdate:
_reasonsToNotScheduleUpdates: Failed to check for Maintenance Service Registry Key: [Exception... "Component returned failure code: 0x80004001 (NS_ERROR_NOT_IMPLEMENTED) [nsIUpdateProcessor.getServiceRegKeyExists]" nsresult: "0x80004001 (NS_ERROR_NOT_IMPLEMENTED)" location: "JS frame :: resource://gre/modules/BackgroundUpdate.jsm :: _reasonsToNotScheduleUpdates :: line 241" data: no]
1649366169674 Marionette INFO Listening on port 58304
1649366169755 RemoteAgent WARN TLS certificate errors will be ignored for this session
JavaScript warning: https://www.amazon.de/ line 1986 > injectedScript, line 1: WEBGL_debug_renderer_info is deprecated in Firefox and will be removed. Please use RENDERER.
JavaScript warning: https://images-eu.ssl-images-amazon.com/images/I/7175vaFom2L.js?AUIClients/FWCIMAssets, line 289: WEBGL_debug_renderer_info is deprecated in Firefox and will be removed. Please use RENDERER.
1649366239805 geckodriver INFO Listening on 127.0.0.1:58446
1649366240829 mozrunner::runner INFO Running command: "/Applications/Firefox.app/Contents/MacOS/firefox-bin" "--marionette" "-foreground" "-no-remote" "-profile" "/var/folders/qv/mx8r2xd1351082qj3zpbx7fc0000gn/T/rust_mozprofile6cTSSg"
1649366241511 Marionette INFO Marionette enabled
2022-04-07 23:17:21.531 plugin-container[45785:11671480] nil host used in call to allowsSpecificHTTPSCertificateForHost
2022-04-07 23:17:21.532 plugin-container[45785:11671480] nil host used in call to allowsAnyHTTPSCertificateForHost:
2022-04-07 23:17:21.571 plugin-container[45785:11671480] nil host used in call to allowsSpecificHTTPSCertificateForHost
2022-04-07 23:17:21.571 plugin-container[45785:11671480] nil host used in call to allowsAnyHTTPSCertificateForHost:
2022-04-07 23:17:21.573 plugin-container[45785:11671482] nil host used in call to allowsSpecificHTTPSCertificateForHost
2022-04-07 23:17:21.573 plugin-container[45785:11671482] nil host used in call to allowsAnyHTTPSCertificateForHost:
2022-04-07 23:17:22.234 firefox-bin[45784:11671365] Warning: Expected min height of view: (<NSButton: 0x119d98000>) to be less than or equal to 30 but got a height of 32.000000. This error will be logged once per view in violation.
2022-04-07 23:17:22.234 firefox-bin[45784:11671365] Warning: Expected min height of view: (<NSButton: 0x128faec00>) to be less than or equal to 30 but got a height of 32.000000. This error will be logged once per view in violation.
2022-04-07 23:17:22.235 firefox-bin[45784:11671365] Warning: Expected min height of view: (<NSButton: 0x128fb1800>) to be less than or equal to 30 but got a height of 32.000000. This error will be logged once per view in violation.
2022-04-07 23:17:22.235 firefox-bin[45784:11671365] Warning: Expected min height of view: (<NSButton: 0x128fb1c00>) to be less than or equal to 30 but got a height of 32.000000. This error will be logged once per view in violation.
2022-04-07 23:17:22.236 firefox-bin[45784:11671365] Warning: Expected min height of view: (<NSButton: 0x128fae000>) to be less than or equal to 30 but got a height of 32.000000. This error will be logged once per view in violation.
console.warn: SearchSettings: "get: No settings file exists, new profile?" (new NotFoundError("Could not open the file at /var/folders/qv/mx8r2xd1351082qj3zpbx7fc0000gn/T/rust_mozprofile6cTSSg/search.json.mozlz4", (void 0)))
console.error: BackgroundUpdate:
_reasonsToNotScheduleUpdates: Failed to check for Maintenance Service Registry Key: [Exception... "Component returned failure code: 0x80004001 (NS_ERROR_NOT_IMPLEMENTED) [nsIUpdateProcessor.getServiceRegKeyExists]" nsresult: "0x80004001 (NS_ERROR_NOT_IMPLEMENTED)" location: "JS frame :: resource://gre/modules/BackgroundUpdate.jsm :: _reasonsToNotScheduleUpdates :: line 241" data: no]
1649366243476 Marionette INFO Listening on port 58457
1649366243516 RemoteAgent WARN TLS certificate errors will be ignored for this session
JavaScript warning: https://www.amazon.de/ line 2038 > injectedScript, line 1: WEBGL_debug_renderer_info is deprecated in Firefox and will be removed. Please use RENDERER.
JavaScript warning: https://images-eu.ssl-images-amazon.com/images/I/7175vaFom2L.js?AUIClients/FWCIMAssets, line 289: 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://www.amazon.de"
console.warn: LoginRecipes: "getRecipes: falling back to a synchronous message for:" "https://www.amazon.de"
console.error: (new TypeError("topBrowsingContext is null", "resource://devtools/server/actors/watcher/browsing-context-helpers.jsm", 352))
JavaScript error: , line 0: TypeError: NetworkError when attempting to fetch resource.
###!!! [Child][PContentChild] Error: Send(msgname=PHttpChannel::Msg___delete__) Channel closing: too late to send/recv, messages will be lost
1649366877217 geckodriver INFO Listening on 127.0.0.1:58822
1649366878239 mozrunner::runner INFO Running command: "/Applications/Firefox.app/Contents/MacOS/firefox-bin" "--marionette" "-foreground" "-no-remote" "-profile" "/var/folders/qv/mx8r2xd1351082qj3zpbx7fc0000gn/T/rust_mozprofileUCXzjO"
1649366878931 Marionette INFO Marionette enabled
2022-04-07 23:27:59.009 plugin-container[45885:11679249] nil host used in call to allowsSpecificHTTPSCertificateForHost
2022-04-07 23:27:59.009 plugin-container[45885:11679249] nil host used in call to allowsAnyHTTPSCertificateForHost:
2022-04-07 23:27:59.023 plugin-container[45885:11679249] nil host used in call to allowsSpecificHTTPSCertificateForHost
2022-04-07 23:27:59.023 plugin-container[45885:11679249] nil host used in call to allowsAnyHTTPSCertificateForHost:
2022-04-07 23:27:59.023 plugin-container[45885:11679255] nil host used in call to allowsSpecificHTTPSCertificateForHost
2022-04-07 23:27:59.023 plugin-container[45885:11679255] nil host used in call to allowsAnyHTTPSCertificateForHost:
2022-04-07 23:27:59.810 firefox-bin[45884:11679143] Warning: Expected min height of view: (<NSButton: 0x12156b400>) to be less than or equal to 30 but got a height of 32.000000. This error will be logged once per view in violation.
2022-04-07 23:27:59.811 firefox-bin[45884:11679143] Warning: Expected min height of view: (<NSButton: 0x1215d0c00>) to be less than or equal to 30 but got a height of 32.000000. This error will be logged once per view in violation.
2022-04-07 23:27:59.811 firefox-bin[45884:11679143] Warning: Expected min height of view: (<NSButton: 0x1215cfc00>) to be less than or equal to 30 but got a height of 32.000000. This error will be logged once per view in violation.
2022-04-07 23:27:59.812 firefox-bin[45884:11679143] Warning: Expected min height of view: (<NSButton: 0x1215cd400>) to be less than or equal to 30 but got a height of 32.000000. This error will be logged once per view in violation.
2022-04-07 23:27:59.812 firefox-bin[45884:11679143] Warning: Expected min height of view: (<NSButton: 0x1215d1000>) to be less than or equal to 30 but got a height of 32.000000. This error will be logged once per view in violation.
console.warn: SearchSettings: "get: No settings file exists, new profile?" (new NotFoundError("Could not open the file at /var/folders/qv/mx8r2xd1351082qj3zpbx7fc0000gn/T/rust_mozprofileUCXzjO/search.json.mozlz4", (void 0)))
console.error: BackgroundUpdate:
_reasonsToNotScheduleUpdates: Failed to check for Maintenance Service Registry Key: [Exception... "Component returned failure code: 0x80004001 (NS_ERROR_NOT_IMPLEMENTED) [nsIUpdateProcessor.getServiceRegKeyExists]" nsresult: "0x80004001 (NS_ERROR_NOT_IMPLEMENTED)" location: "JS frame :: resource://gre/modules/BackgroundUpdate.jsm :: _reasonsToNotScheduleUpdates :: line 241" data: no]
1649366881035 Marionette INFO Listening on port 58833
1649366881122 RemoteAgent WARN TLS certificate errors will be ignored for this session
JavaScript warning: https://www.amazon.de/ line 2039 > injectedScript, line 1: WEBGL_debug_renderer_info is deprecated in Firefox and will be removed. Please use RENDERER.
JavaScript warning: https://images-eu.ssl-images-amazon.com/images/I/7175vaFom2L.js?AUIClients/FWCIMAssets, line 289: WEBGL_debug_renderer_info is deprecated in Firefox and will be removed. Please use RENDERER.
1649366922369 geckodriver INFO Listening on 127.0.0.1:58929
1649366923394 mozrunner::runner INFO Running command: "/Applications/Firefox.app/Contents/MacOS/firefox-bin" "--marionette" "-foreground" "-no-remote" "-profile" "/var/folders/qv/mx8r2xd1351082qj3zpbx7fc0000gn/T/rust_mozprofilecfTxIx"
1649366924069 Marionette INFO Marionette enabled
2022-04-07 23:28:44.092 plugin-container[45905:11680081] nil host used in call to allowsSpecificHTTPSCertificateForHost
2022-04-07 23:28:44.105 plugin-container[45905:11680081] nil host used in call to allowsAnyHTTPSCertificateForHost:
2022-04-07 23:28:44.124 plugin-container[45905:11680081] nil host used in call to allowsSpecificHTTPSCertificateForHost
2022-04-07 23:28:44.124 plugin-container[45905:11680081] nil host used in call to allowsAnyHTTPSCertificateForHost:
2022-04-07 23:28:44.125 plugin-container[45905:11680110] nil host used in call to allowsSpecificHTTPSCertificateForHost
2022-04-07 23:28:44.125 plugin-container[45905:11680110] nil host used in call to allowsAnyHTTPSCertificateForHost:
2022-04-07 23:28:44.810 firefox-bin[45904:11679957] Warning: Expected min height of view: (<NSButton: 0x11fec5400>) to be less than or equal to 30 but got a height of 32.000000. This error will be logged once per view in violation.
2022-04-07 23:28:44.811 firefox-bin[45904:11679957] Warning: Expected min height of view: (<NSButton: 0x12d6a4800>) to be less than or equal to 30 but got a height of 32.000000. This error will be logged once per view in violation.
2022-04-07 23:28:44.811 firefox-bin[45904:11679957] Warning: Expected min height of view: (<NSButton: 0x12d6a1800>) to be less than or equal to 30 but got a height of 32.000000. This error will be logged once per view in violation.
2022-04-07 23:28:44.812 firefox-bin[45904:11679957] Warning: Expected min height of view: (<NSButton: 0x12d69e400>) to be less than or equal to 30 but got a height of 32.000000. This error will be logged once per view in violation.
2022-04-07 23:28:44.813 firefox-bin[45904:11679957] Warning: Expected min height of view: (<NSButton: 0x12d6a4c00>) to be less than or equal to 30 but got a height of 32.000000. This error will be logged once per view in violation.
console.warn: SearchSettings: "get: No settings file exists, new profile?" (new NotFoundError("Could not open the file at /var/folders/qv/mx8r2xd1351082qj3zpbx7fc0000gn/T/rust_mozprofilecfTxIx/search.json.mozlz4", (void 0)))
console.error: BackgroundUpdate:
_reasonsToNotScheduleUpdates: Failed to check for Maintenance Service Registry Key: [Exception... "Component returned failure code: 0x80004001 (NS_ERROR_NOT_IMPLEMENTED) [nsIUpdateProcessor.getServiceRegKeyExists]" nsresult: "0x80004001 (NS_ERROR_NOT_IMPLEMENTED)" location: "JS frame :: resource://gre/modules/BackgroundUpdate.jsm :: _reasonsToNotScheduleUpdates :: line 241" data: no]
1649366926055 Marionette INFO Listening on port 58940
1649366926104 RemoteAgent WARN TLS certificate errors will be ignored for this session
1649366926139 geckodriver INFO Listening on 127.0.0.1:58985
1649366927158 mozrunner::runner INFO Running command: "/Applications/Firefox.app/Contents/MacOS/firefox-bin" "--marionette" "-foreground" "-no-remote" "-profile" "/var/folders/qv/mx8r2xd1351082qj3zpbx7fc0000gn/T/rust_mozprofileEiJ7yW"
2022-04-07 23:28:47.535 plugin-container[45914:11680410] nil host used in call to allowsSpecificHTTPSCertificateForHost
2022-04-07 23:28:47.535 plugin-container[45914:11680410] nil host used in call to allowsAnyHTTPSCertificateForHost:
2022-04-07 23:28:47.539 plugin-container[45914:11680410] nil host used in call to allowsSpecificHTTPSCertificateForHost
2022-04-07 23:28:47.539 plugin-container[45914:11680410] nil host used in call to allowsAnyHTTPSCertificateForHost:
2022-04-07 23:28:47.539 plugin-container[45914:11680434] nil host used in call to allowsSpecificHTTPSCertificateForHost
2022-04-07 23:28:47.539 plugin-container[45914:11680434] nil host used in call to allowsAnyHTTPSCertificateForHost:
1649366927546 Marionette INFO Marionette enabled
2022-04-07 23:28:48.335 firefox-bin[45913:11680364] Warning: Expected min height of view: (<NSButton: 0x12c056000>) to be less than or equal to 30 but got a height of 32.000000. This error will be logged once per view in violation.
2022-04-07 23:28:48.336 firefox-bin[45913:11680364] Warning: Expected min height of view: (<NSButton: 0x12c0bfc00>) to be less than or equal to 30 but got a height of 32.000000. This error will be logged once per view in violation.
2022-04-07 23:28:48.336 firefox-bin[45913:11680364] Warning: Expected min height of view: (<NSButton: 0x12c0c2800>) to be less than or equal to 30 but got a height of 32.000000. This error will be logged once per view in violation.
2022-04-07 23:28:48.337 firefox-bin[45913:11680364] Warning: Expected min height of view: (<NSButton: 0x12c0be800>) to be less than or equal to 30 but got a height of 32.000000. This error will be logged once per view in violation.
2022-04-07 23:28:48.337 firefox-bin[45913:11680364] Warning: Expected min height of view: (<NSButton: 0x12c0c1400>) to be less than or equal to 30 but got a height of 32.000000. This error will be logged once per view in violation.
console.warn: SearchSettings: "get: No settings file exists, new profile?" (new NotFoundError("Could not open the file at /var/folders/qv/mx8r2xd1351082qj3zpbx7fc0000gn/T/rust_mozprofileEiJ7yW/search.json.mozlz4", (void 0)))
console.error: BackgroundUpdate:
_reasonsToNotScheduleUpdates: Failed to check for Maintenance Service Registry Key: [Exception... "Component returned failure code: 0x80004001 (NS_ERROR_NOT_IMPLEMENTED) [nsIUpdateProcessor.getServiceRegKeyExists]" nsresult: "0x80004001 (NS_ERROR_NOT_IMPLEMENTED)" location: "JS frame :: resource://gre/modules/BackgroundUpdate.jsm :: _reasonsToNotScheduleUpdates :: line 241" data: no]
1649366929419 Marionette INFO Listening on port 59006
1649366929529 RemoteAgent WARN TLS certificate errors will be ignored for this session
JavaScript warning: https://www.amazon.de/ line 2010 > injectedScript, line 1: WEBGL_debug_renderer_info is deprecated in Firefox and will be removed. Please use RENDERER.
JavaScript warning: https://images-eu.ssl-images-amazon.com/images/I/7175vaFom2L.js?AUIClients/FWCIMAssets, line 289: 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://www.amazon.de"
1649367059945 geckodriver INFO Listening on 127.0.0.1:59167
1649367060955 mozrunner::runner INFO Running command: "/Applications/Firefox.app/Contents/MacOS/firefox-bin" "--marionette" "-foreground" "-no-remote" "-profile" "/var/folders/qv/mx8r2xd1351082qj3zpbx7fc0000gn/T/rust_mozprofileQEYNrN"
1649367061643 Marionette INFO Marionette enabled
2022-04-07 23:31:01.748 plugin-container[45964:11682329] nil host used in call to allowsSpecificHTTPSCertificateForHost
2022-04-07 23:31:01.748 plugin-container[45964:11682329] nil host used in call to allowsAnyHTTPSCertificateForHost:
2022-04-07 23:31:01.793 plugin-container[45964:11682329] nil host used in call to allowsSpecificHTTPSCertificateForHost
2022-04-07 23:31:01.793 plugin-container[45964:11682329] nil host used in call to allowsAnyHTTPSCertificateForHost:
2022-04-07 23:31:01.794 plugin-container[45964:11682359] nil host used in call to allowsSpecificHTTPSCertificateForHost
2022-04-07 23:31:01.794 plugin-container[45964:11682359] nil host used in call to allowsAnyHTTPSCertificateForHost:
2022-04-07 23:31:02.540 firefox-bin[45962:11682200] Warning: Expected min height of view: (<NSButton: 0x11d6d3400>) to be less than or equal to 30 but got a height of 32.000000. This error will be logged once per view in violation.
2022-04-07 23:31:02.540 firefox-bin[45962:11682200] Warning: Expected min height of view: (<NSButton: 0x12c9e8000>) to be less than or equal to 30 but got a height of 32.000000. This error will be logged once per view in violation.
2022-04-07 23:31:02.541 firefox-bin[45962:11682200] Warning: Expected min height of view: (<NSButton: 0x12c9e8c00>) to be less than or equal to 30 but got a height of 32.000000. This error will be logged once per view in violation.
2022-04-07 23:31:02.541 firefox-bin[45962:11682200] Warning: Expected min height of view: (<NSButton: 0x12c9e9000>) to be less than or equal to 30 but got a height of 32.000000. This error will be logged once per view in violation.
2022-04-07 23:31:02.542 firefox-bin[45962:11682200] Warning: Expected min height of view: (<NSButton: 0x12c9ecc00>) to be less than or equal to 30 but got a height of 32.000000. This error will be logged once per view in violation.
console.warn: SearchSettings: "get: No settings file exists, new profile?" (new NotFoundError("Could not open the file at /var/folders/qv/mx8r2xd1351082qj3zpbx7fc0000gn/T/rust_mozprofileQEYNrN/search.json.mozlz4", (void 0)))
console.error: BackgroundUpdate:
_reasonsToNotScheduleUpdates: Failed to check for Maintenance Service Registry Key: [Exception... "Component returned failure code: 0x80004001 (NS_ERROR_NOT_IMPLEMENTED) [nsIUpdateProcessor.getServiceRegKeyExists]" nsresult: "0x80004001 (NS_ERROR_NOT_IMPLEMENTED)" location: "JS frame :: resource://gre/modules/BackgroundUpdate.jsm :: _reasonsToNotScheduleUpdates :: line 241" data: no]
1649367064404 Marionette INFO Listening on port 59178
1649367064562 RemoteAgent WARN TLS certificate errors will be ignored for this session
1649367064782 geckodriver INFO Listening on 127.0.0.1:59235
1649367064816 mozrunner::runner INFO Running command: "/Applications/Firefox.app/Contents/MacOS/firefox-bin" "--marionette" "-foreground" "-no-remote" "-profile" "/var/folders/qv/mx8r2xd1351082qj3zpbx7fc0000gn/T/rust_mozprofileQEpryc"
2022-04-07 23:31:05.629 plugin-container[45973:11682808] nil host used in call to allowsSpecificHTTPSCertificateForHost
1649367065636 Marionette INFO Marionette enabled
2022-04-07 23:31:05.644 plugin-container[45973:11682808] nil host used in call to allowsAnyHTTPSCertificateForHost:
2022-04-07 23:31:05.671 plugin-container[45973:11682808] nil host used in call to allowsSpecificHTTPSCertificateForHost
2022-04-07 23:31:05.671 plugin-container[45973:11682808] nil host used in call to allowsAnyHTTPSCertificateForHost:
2022-04-07 23:31:05.672 plugin-container[45973:11682814] nil host used in call to allowsSpecificHTTPSCertificateForHost
2022-04-07 23:31:05.672 plugin-container[45973:11682814] nil host used in call to allowsAnyHTTPSCertificateForHost:
2022-04-07 23:31:06.487 firefox-bin[45972:11682674] Warning: Expected min height of view: (<NSButton: 0x126b99400>) to be less than or equal to 30 but got a height of 32.000000. This error will be logged once per view in violation.
2022-04-07 23:31:06.487 firefox-bin[45972:11682674] Warning: Expected min height of view: (<NSButton: 0x12de1ec00>) to be less than or equal to 30 but got a height of 32.000000. This error will be logged once per view in violation.
2022-04-07 23:31:06.488 firefox-bin[45972:11682674] Warning: Expected min height of view: (<NSButton: 0x12de23c00>) to be less than or equal to 30 but got a height of 32.000000. This error will be logged once per view in violation.
2022-04-07 23:31:06.489 firefox-bin[45972:11682674] Warning: Expected min height of view: (<NSButton: 0x12de22c00>) to be less than or equal to 30 but got a height of 32.000000. This error will be logged once per view in violation.
2022-04-07 23:31:06.489 firefox-bin[45972:11682674] Warning: Expected min height of view: (<NSButton: 0x12de1d800>) to be less than or equal to 30 but got a height of 32.000000. This error will be logged once per view in violation.
console.warn: SearchSettings: "get: No settings file exists, new profile?" (new NotFoundError("Could not open the file at /var/folders/qv/mx8r2xd1351082qj3zpbx7fc0000gn/T/rust_mozprofileQEpryc/search.json.mozlz4", (void 0)))
console.error: BackgroundUpdate:
_reasonsToNotScheduleUpdates: Failed to check for Maintenance Service Registry Key: [Exception... "Component returned failure code: 0x80004001 (NS_ERROR_NOT_IMPLEMENTED) [nsIUpdateProcessor.getServiceRegKeyExists]" nsresult: "0x80004001 (NS_ERROR_NOT_IMPLEMENTED)" location: "JS frame :: resource://gre/modules/BackgroundUpdate.jsm :: _reasonsToNotScheduleUpdates :: line 241" data: no]
1649367067570 Marionette INFO Listening on port 59246
1649367067630 RemoteAgent WARN TLS certificate errors will be ignored for this session
JavaScript warning: https://www.amazon.de/ line 1956 > injectedScript, line 1: WEBGL_debug_renderer_info is deprecated in Firefox and will be removed. Please use RENDERER.
JavaScript warning: https://images-eu.ssl-images-amazon.com/images/I/7175vaFom2L.js?AUIClients/FWCIMAssets, line 289: WEBGL_debug_renderer_info is deprecated in Firefox and will be removed. Please use RENDERER.
1649367136242 geckodriver INFO Listening on 127.0.0.1:59374
1649367137263 mozrunner::runner INFO Running command: "/Applications/Firefox.app/Contents/MacOS/firefox-bin" "--marionette" "-foreground" "-no-remote" "-profile" "/var/folders/qv/mx8r2xd1351082qj3zpbx7fc0000gn/T/rust_mozprofile5A7MCJ"
1649367138249 Marionette INFO Marionette enabled
2022-04-07 23:32:18.292 plugin-container[46026:11684234] nil host used in call to allowsSpecificHTTPSCertificateForHost
2022-04-07 23:32:18.293 plugin-container[46026:11684234] nil host used in call to allowsAnyHTTPSCertificateForHost:
2022-04-07 23:32:18.335 plugin-container[46026:11684234] nil host used in call to allowsSpecificHTTPSCertificateForHost
2022-04-07 23:32:18.335 plugin-container[46026:11684234] nil host used in call to allowsAnyHTTPSCertificateForHost:
2022-04-07 23:32:18.336 plugin-container[46026:11684266] nil host used in call to allowsSpecificHTTPSCertificateForHost
2022-04-07 23:32:18.336 plugin-container[46026:11684266] nil host used in call to allowsAnyHTTPSCertificateForHost:
2022-04-07 23:32:19.098 firefox-bin[46025:11684114] Warning: Expected min height of view: (<NSButton: 0x1239c6800>) to be less than or equal to 30 but got a height of 32.000000. This error will be logged once per view in violation.
2022-04-07 23:32:19.099 firefox-bin[46025:11684114] Warning: Expected min height of view: (<NSButton: 0x123af3000>) to be less than or equal to 30 but got a height of 32.000000. This error will be logged once per view in violation.
2022-04-07 23:32:19.100 firefox-bin[46025:11684114] Warning: Expected min height of view: (<NSButton: 0x123af0800>) to be less than or equal to 30 but got a height of 32.000000. This error will be logged once per view in violation.
2022-04-07 23:32:19.100 firefox-bin[46025:11684114] Warning: Expected min height of view: (<NSButton: 0x123af0400>) to be less than or equal to 30 but got a height of 32.000000. This error will be logged once per view in violation.
2022-04-07 23:32:19.101 firefox-bin[46025:11684114] Warning: Expected min height of view: (<NSButton: 0x123af5c00>) to be less than or equal to 30 but got a height of 32.000000. This error will be logged once per view in violation.
console.warn: SearchSettings: "get: No settings file exists, new profile?" (new NotFoundError("Could not open the file at /var/folders/qv/mx8r2xd1351082qj3zpbx7fc0000gn/T/rust_mozprofile5A7MCJ/search.json.mozlz4", (void 0)))
console.error: BackgroundUpdate:
_reasonsToNotScheduleUpdates: Failed to check for Maintenance Service Registry Key: [Exception... "Component returned failure code: 0x80004001 (NS_ERROR_NOT_IMPLEMENTED) [nsIUpdateProcessor.getServiceRegKeyExists]" nsresult: "0x80004001 (NS_ERROR_NOT_IMPLEMENTED)" location: "JS frame :: resource://gre/modules/BackgroundUpdate.jsm :: _reasonsToNotScheduleUpdates :: line 241" data: no]
1649367141146 Marionette INFO Listening on port 59385
1649367141262 RemoteAgent WARN TLS certificate errors will be ignored for this session
1649367141413 geckodriver INFO Listening on 127.0.0.1:59444
1649367141433 mozrunner::runner INFO Running command: "/Applications/Firefox.app/Contents/MacOS/firefox-bin" "--marionette" "-foreground" "-no-remote" "-profile" "/var/folders/qv/mx8r2xd1351082qj3zpbx7fc0000gn/T/rust_mozprofilenV5s8n"
2022-04-07 23:32:22.049 plugin-container[46039:11684676] nil host used in call to allowsSpecificHTTPSCertificateForHost
2022-04-07 23:32:22.049 plugin-container[46039:11684676] nil host used in call to allowsAnyHTTPSCertificateForHost:
1649367142061 Marionette INFO Marionette enabled
2022-04-07 23:32:22.067 plugin-container[46039:11684676] nil host used in call to allowsSpecificHTTPSCertificateForHost
2022-04-07 23:32:22.067 plugin-container[46039:11684676] nil host used in call to allowsAnyHTTPSCertificateForHost:
2022-04-07 23:32:22.068 plugin-container[46039:11684674] nil host used in call to allowsSpecificHTTPSCertificateForHost
2022-04-07 23:32:22.068 plugin-container[46039:11684674] nil host used in call to allowsAnyHTTPSCertificateForHost:
2022-04-07 23:32:22.870 firefox-bin[46038:11684612] Warning: Expected min height of view: (<NSButton: 0x121f94c00>) to be less than or equal to 30 but got a height of 32.000000. This error will be logged once per view in violation.
2022-04-07 23:32:22.871 firefox-bin[46038:11684612] Warning: Expected min height of view: (<NSButton: 0x121ff5400>) to be less than or equal to 30 but got a height of 32.000000. This error will be logged once per view in violation.
2022-04-07 23:32:22.872 firefox-bin[46038:11684612] Warning: Expected min height of view: (<NSButton: 0x121fef400>) to be less than or equal to 30 but got a height of 32.000000. This error will be logged once per view in violation.
2022-04-07 23:32:22.873 firefox-bin[46038:11684612] Warning: Expected min height of view: (<NSButton: 0x121ff4000>) to be less than or equal to 30 but got a height of 32.000000. This error will be logged once per view in violation.
2022-04-07 23:32:22.874 firefox-bin[46038:11684612] Warning: Expected min height of view: (<NSButton: 0x121ff5800>) to be less than or equal to 30 but got a height of 32.000000. This error will be logged once per view in violation.
console.warn: SearchSettings: "get: No settings file exists, new profile?" (new NotFoundError("Could not open the file at /var/folders/qv/mx8r2xd1351082qj3zpbx7fc0000gn/T/rust_mozprofilenV5s8n/search.json.mozlz4", (void 0)))
console.error: BackgroundUpdate:
_reasonsToNotScheduleUpdates: Failed to check for Maintenance Service Registry Key: [Exception... "Component returned failure code: 0x80004001 (NS_ERROR_NOT_IMPLEMENTED) [nsIUpdateProcessor.getServiceRegKeyExists]" nsresult: "0x80004001 (NS_ERROR_NOT_IMPLEMENTED)" location: "JS frame :: resource://gre/modules/BackgroundUpdate.jsm :: _reasonsToNotScheduleUpdates :: line 241" data: no]
1649367144047 Marionette INFO Listening on port 59456
1649367144138 RemoteAgent WARN TLS certificate errors will be ignored for this session
JavaScript warning: https://www.amazon.de/ line 2021 > injectedScript, line 1: WEBGL_debug_renderer_info is deprecated in Firefox and will be removed. Please use RENDERER.
1649367169267 geckodriver INFO Listening on 127.0.0.1:59572
1649367170290 mozrunner::runner INFO Running command: "/Applications/Firefox.app/Contents/MacOS/firefox-bin" "--marionette" "-foreground" "-no-remote" "-profile" "/var/folders/qv/mx8r2xd1351082qj3zpbx7fc0000gn/T/rust_mozprofileQyi5M8"
2022-04-07 23:32:50.902 plugin-container[46085:11685889] nil host used in call to allowsSpecificHTTPSCertificateForHost
2022-04-07 23:32:50.902 plugin-container[46085:11685889] nil host used in call to allowsAnyHTTPSCertificateForHost:
2022-04-07 23:32:50.908 plugin-container[46085:11685889] nil host used in call to allowsSpecificHTTPSCertificateForHost
2022-04-07 23:32:50.908 plugin-container[46085:11685889] nil host used in call to allowsAnyHTTPSCertificateForHost:
2022-04-07 23:32:50.908 plugin-container[46085:11685913] nil host used in call to allowsSpecificHTTPSCertificateForHost
2022-04-07 23:32:50.908 plugin-container[46085:11685913] nil host used in call to allowsAnyHTTPSCertificateForHost:
1649367170911 Marionette INFO Marionette enabled
2022-04-07 23:32:51.749 firefox-bin[46083:11685782] Warning: Expected min height of view: (<NSButton: 0x1128b6800>) to be less than or equal to 30 but got a height of 32.000000. This error will be logged once per view in violation.
2022-04-07 23:32:51.752 firefox-bin[46083:11685782] Warning: Expected min height of view: (<NSButton: 0x1219cf400>) to be less than or equal to 30 but got a height of 32.000000. This error will be logged once per view in violation.
2022-04-07 23:32:51.752 firefox-bin[46083:11685782] Warning: Expected min height of view: (<NSButton: 0x1219cf800>) to be less than or equal to 30 but got a height of 32.000000. This error will be logged once per view in violation.
2022-04-07 23:32:51.753 firefox-bin[46083:11685782] Warning: Expected min height of view: (<NSButton: 0x1219d2400>) to be less than or equal to 30 but got a height of 32.000000. This error will be logged once per view in violation.
2022-04-07 23:32:51.753 firefox-bin[46083:11685782] Warning: Expected min height of view: (<NSButton: 0x1219cfc00>) to be less than or equal to 30 but got a height of 32.000000. This error will be logged once per view in violation.
console.warn: SearchSettings: "get: No settings file exists, new profile?" (new NotFoundError("Could not open the file at /var/folders/qv/mx8r2xd1351082qj3zpbx7fc0000gn/T/rust_mozprofileQyi5M8/search.json.mozlz4", (void 0)))
console.error: BackgroundUpdate:
_reasonsToNotScheduleUpdates: Failed to check for Maintenance Service Registry Key: [Exception... "Component returned failure code: 0x80004001 (NS_ERROR_NOT_IMPLEMENTED) [nsIUpdateProcessor.getServiceRegKeyExists]" nsresult: "0x80004001 (NS_ERROR_NOT_IMPLEMENTED)" location: "JS frame :: resource://gre/modules/BackgroundUpdate.jsm :: _reasonsToNotScheduleUpdates :: line 241" data: no]
1649367173257 Marionette INFO Listening on port 59583
1649367173371 RemoteAgent WARN TLS certificate errors will be ignored for this session
JavaScript warning: https://www.amazon.de/ line 2010 > injectedScript, line 1: WEBGL_debug_renderer_info is deprecated in Firefox and will be removed. Please use RENDERER.
###!!! [Child][PContentChild] Error: RunMessage(msgname=PContent::Reply_DiscardBrowsingContext) Channel closing: too late to send/recv, messages will be lost
###!!! [Child][PContentChild] Error: RunMessage(msgname=PContent::Reply_DiscardBrowsingContext) Channel closing: too late to send/recv, messages will be lost
###!!! [Parent][PContentParent] Error: Send(msgname=PContent::Msg_DestroyBrowsingContextGroup) Closed channel: cannot send/recv
1649417693768 geckodriver INFO Listening on 127.0.0.1:49888
1649417693796 mozrunner::runner INFO Running command: "/Applications/Firefox.app/Contents/MacOS/firefox-bin" "--marionette" "-foreground" "-no-remote" "-profile" "/var/folders/qv/mx8r2xd1351082qj3zpbx7fc0000gn/T/rust_mozprofileMtGBPY"
2022-04-08 13:34:58.229 plugin-container[1385:26512] nil host used in call to allowsSpecificHTTPSCertificateForHost
2022-04-08 13:34:58.229 plugin-container[1385:26512] nil host used in call to allowsAnyHTTPSCertificateForHost:
1649417698266 Marionette INFO Marionette enabled
2022-04-08 13:34:58.459 plugin-container[1385:26512] nil host used in call to allowsSpecificHTTPSCertificateForHost
2022-04-08 13:34:58.459 plugin-container[1385:26512] nil host used in call to allowsAnyHTTPSCertificateForHost:
2022-04-08 13:34:58.459 plugin-container[1385:26515] nil host used in call to allowsSpecificHTTPSCertificateForHost
2022-04-08 13:34:58.459 plugin-container[1385:26515] nil host used in call to allowsAnyHTTPSCertificateForHost:
2022-04-08 13:34:59.099 firefox-bin[1383:26401] Warning: Expected min height of view: (<NSButton: 0x128782c00>) to be less than or equal to 30 but got a height of 32.000000. This error will be logged once per view in violation.
2022-04-08 13:34:59.099 firefox-bin[1383:26401] Warning: Expected min height of view: (<NSButton: 0x12efa6400>) to be less than or equal to 30 but got a height of 32.000000. This error will be logged once per view in violation.
2022-04-08 13:34:59.100 firefox-bin[1383:26401] Warning: Expected min height of view: (<NSButton: 0x12efa6800>) to be less than or equal to 30 but got a height of 32.000000. This error will be logged once per view in violation.
2022-04-08 13:34:59.100 firefox-bin[1383:26401] Warning: Expected min height of view: (<NSButton: 0x12efa7000>) to be less than or equal to 30 but got a height of 32.000000. This error will be logged once per view in violation.
2022-04-08 13:34:59.101 firefox-bin[1383:26401] Warning: Expected min height of view: (<NSButton: 0x12efa4800>) to be less than or equal to 30 but got a height of 32.000000. This error will be logged once per view in violation.
console.warn: SearchSettings: "get: No settings file exists, new profile?" (new NotFoundError("Could not open the file at /var/folders/qv/mx8r2xd1351082qj3zpbx7fc0000gn/T/rust_mozprofileMtGBPY/search.json.mozlz4", (void 0)))
console.error: BackgroundUpdate:
_reasonsToNotScheduleUpdates: Failed to check for Maintenance Service Registry Key: [Exception... "Component returned failure code: 0x80004001 (NS_ERROR_NOT_IMPLEMENTED) [nsIUpdateProcessor.getServiceRegKeyExists]" nsresult: "0x80004001 (NS_ERROR_NOT_IMPLEMENTED)" location: "JS frame :: resource://gre/modules/BackgroundUpdate.jsm :: _reasonsToNotScheduleUpdates :: line 241" data: no]
1649417700111 Marionette INFO Listening on port 49897
1649417819482 geckodriver INFO Listening on 127.0.0.1:49940
1649417820500 mozrunner::runner INFO Running command: "/Applications/Firefox.app/Contents/MacOS/firefox-bin" "--marionette" "-foreground" "-no-remote" "-profile" "/var/folders/qv/mx8r2xd1351082qj3zpbx7fc0000gn/T/rust_mozprofileVbYcbx"
2022-04-08 13:37:00.909 plugin-container[1408:27775] nil host used in call to allowsSpecificHTTPSCertificateForHost
2022-04-08 13:37:00.910 plugin-container[1408:27775] nil host used in call to allowsAnyHTTPSCertificateForHost:
2022-04-08 13:37:00.913 plugin-container[1408:27775] nil host used in call to allowsSpecificHTTPSCertificateForHost
2022-04-08 13:37:00.914 plugin-container[1408:27775] nil host used in call to allowsAnyHTTPSCertificateForHost:
2022-04-08 13:37:00.914 plugin-container[1408:27773] nil host used in call to allowsSpecificHTTPSCertificateForHost
2022-04-08 13:37:00.914 plugin-container[1408:27773] nil host used in call to allowsAnyHTTPSCertificateForHost:
1649417820923 Marionette INFO Marionette enabled
2022-04-08 13:37:01.588 firefox-bin[1407:27689] Warning: Expected min height of view: (<NSButton: 0x127a9d400>) to be less than or equal to 30 but got a height of 32.000000. This error will be logged once per view in violation.
2022-04-08 13:37:01.588 firefox-bin[1407:27689] Warning: Expected min height of view: (<NSButton: 0x12ebcec00>) to be less than or equal to 30 but got a height of 32.000000. This error will be logged once per view in violation.
2022-04-08 13:37:01.589 firefox-bin[1407:27689] Warning: Expected min height of view: (<NSButton: 0x12ebcf800>) to be less than or equal to 30 but got a height of 32.000000. This error will be logged once per view in violation.
2022-04-08 13:37:01.589 firefox-bin[1407:27689] Warning: Expected min height of view: (<NSButton: 0x12ebd1000>) to be less than or equal to 30 but got a height of 32.000000. This error will be logged once per view in violation.
2022-04-08 13:37:01.590 firefox-bin[1407:27689] Warning: Expected min height of view: (<NSButton: 0x12ebcdc00>) to be less than or equal to 30 but got a height of 32.000000. This error will be logged once per view in violation.
console.warn: SearchSettings: "get: No settings file exists, new profile?" (new NotFoundError("Could not open the file at /var/folders/qv/mx8r2xd1351082qj3zpbx7fc0000gn/T/rust_mozprofileVbYcbx/search.json.mozlz4", (void 0)))
console.error: BackgroundUpdate:
_reasonsToNotScheduleUpdates: Failed to check for Maintenance Service Registry Key: [Exception... "Component returned failure code: 0x80004001 (NS_ERROR_NOT_IMPLEMENTED) [nsIUpdateProcessor.getServiceRegKeyExists]" nsresult: "0x80004001 (NS_ERROR_NOT_IMPLEMENTED)" location: "JS frame :: resource://gre/modules/BackgroundUpdate.jsm :: _reasonsToNotScheduleUpdates :: line 241" data: no]
1649417822541 Marionette INFO Listening on port 49951
1649417822570 RemoteAgent WARN TLS certificate errors will be ignored for this session
JavaScript warning: https://www.amazon.de/ line 2004 > injectedScript, 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://www.amazon.de"
JavaScript warning: https://www.amazon.de/ line 1993 > injectedScript, line 1: WEBGL_debug_renderer_info is deprecated in Firefox and will be removed. Please use RENDERER.
1649417838654 geckodriver INFO Listening on 127.0.0.1:50102
1649417838664 mozrunner::runner INFO Running command: "/Applications/Firefox.app/Contents/MacOS/firefox-bin" "--marionette" "-foreground" "-no-remote" "-profile" "/var/folders/qv/mx8r2xd1351082qj3zpbx7fc0000gn/T/rust_mozprofileoJJ1AU"
2022-04-08 13:37:19.068 plugin-container[1425:28392] nil host used in call to allowsSpecificHTTPSCertificateForHost
2022-04-08 13:37:19.068 plugin-container[1425:28392] nil host used in call to allowsAnyHTTPSCertificateForHost:
2022-04-08 13:37:19.072 plugin-container[1425:28392] nil host used in call to allowsSpecificHTTPSCertificateForHost
2022-04-08 13:37:19.072 plugin-container[1425:28392] nil host used in call to allowsAnyHTTPSCertificateForHost:
2022-04-08 13:37:19.073 plugin-container[1425:28397] nil host used in call to allowsSpecificHTTPSCertificateForHost
2022-04-08 13:37:19.073 plugin-container[1425:28397] nil host used in call to allowsAnyHTTPSCertificateForHost:
1649417839078 Marionette INFO Marionette enabled
2022-04-08 13:37:19.739 firefox-bin[1424:28317] Warning: Expected min height of view: (<NSButton: 0x11cb64400>) to be less than or equal to 30 but got a height of 32.000000. This error will be logged once per view in violation.
2022-04-08 13:37:19.739 firefox-bin[1424:28317] Warning: Expected min height of view: (<NSButton: 0x123d92000>) to be less than or equal to 30 but got a height of 32.000000. This error will be logged once per view in violation.
2022-04-08 13:37:19.740 firefox-bin[1424:28317] Warning: Expected min height of view: (<NSButton: 0x123d91800>) to be less than or equal to 30 but got a height of 32.000000. This error will be logged once per view in violation.
2022-04-08 13:37:19.740 firefox-bin[1424:28317] Warning: Expected min height of view: (<NSButton: 0x123d8e800>) to be less than or equal to 30 but got a height of 32.000000. This error will be logged once per view in violation.
2022-04-08 13:37:19.741 firefox-bin[1424:28317] Warning: Expected min height of view: (<NSButton: 0x123d8f400>) to be less than or equal to 30 but got a height of 32.000000. This error will be logged once per view in violation.
console.warn: SearchSettings: "get: No settings file exists, new profile?" (new NotFoundError("Could not open the file at /var/folders/qv/mx8r2xd1351082qj3zpbx7fc0000gn/T/rust_mozprofileoJJ1AU/search.json.mozlz4", (void 0)))
console.error: BackgroundUpdate:
_reasonsToNotScheduleUpdates: Failed to check for Maintenance Service Registry Key: [Exception... "Component returned failure code: 0x80004001 (NS_ERROR_NOT_IMPLEMENTED) [nsIUpdateProcessor.getServiceRegKeyExists]" nsresult: "0x80004001 (NS_ERROR_NOT_IMPLEMENTED)" location: "JS frame :: resource://gre/modules/BackgroundUpdate.jsm :: _reasonsToNotScheduleUpdates :: line 241" data: no]
1649417840797 Marionette INFO Listening on port 50111
1649417840853 RemoteAgent WARN TLS certificate errors will be ignored for this session
JavaScript warning: https://www.amazon.de/ line 2004 > injectedScript, 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://www.amazon.de"
1649417867417 geckodriver INFO Listening on 127.0.0.1:50200
1649417868437 mozrunner::runner INFO Running command: "/Applications/Firefox.app/Contents/MacOS/firefox-bin" "--marionette" "-foreground" "-no-remote" "-profile" "/var/folders/qv/mx8r2xd1351082qj3zpbx7fc0000gn/T/rust_mozprofileS7ZOZX"
2022-04-08 13:37:48.891 plugin-container[1444:29062] nil host used in call to allowsSpecificHTTPSCertificateForHost
2022-04-08 13:37:48.891 plugin-container[1444:29062] nil host used in call to allowsAnyHTTPSCertificateForHost:
1649417868901 Marionette INFO Marionette enabled
2022-04-08 13:37:48.908 plugin-container[1444:29062] nil host used in call to allowsSpecificHTTPSCertificateForHost
2022-04-08 13:37:48.908 plugin-container[1444:29062] nil host used in call to allowsAnyHTTPSCertificateForHost:
2022-04-08 13:37:48.908 plugin-container[1444:29064] nil host used in call to allowsSpecificHTTPSCertificateForHost
2022-04-08 13:37:48.908 plugin-container[1444:29064] nil host used in call to allowsAnyHTTPSCertificateForHost:
2022-04-08 13:37:49.561 firefox-bin[1443:28981] Warning: Expected min height of view: (<NSButton: 0x117b90000>) to be less than or equal to 30 but got a height of 32.000000. This error will be logged once per view in violation.
2022-04-08 13:37:49.562 firefox-bin[1443:28981] Warning: Expected min height of view: (<NSButton: 0x126f9c000>) to be less than or equal to 30 but got a height of 32.000000. This error will be logged once per view in violation.
2022-04-08 13:37:49.562 firefox-bin[1443:28981] Warning: Expected min height of view: (<NSButton: 0x126fa1800>) to be less than or equal to 30 but got a height of 32.000000. This error will be logged once per view in violation.
2022-04-08 13:37:49.563 firefox-bin[1443:28981] Warning: Expected min height of view: (<NSButton: 0x126f9bc00>) to be less than or equal to 30 but got a height of 32.000000. This error will be logged once per view in violation.
2022-04-08 13:37:49.563 firefox-bin[1443:28981] Warning: Expected min height of view: (<NSButton: 0x126f9b400>) to be less than or equal to 30 but got a height of 32.000000. This error will be logged once per view in violation.
console.warn: SearchSettings: "get: No settings file exists, new profile?" (new NotFoundError("Could not open the file at /var/folders/qv/mx8r2xd1351082qj3zpbx7fc0000gn/T/rust_mozprofileS7ZOZX/search.json.mozlz4", (void 0)))
console.error: BackgroundUpdate:
_reasonsToNotScheduleUpdates: Failed to check for Maintenance Service Registry Key: [Exception... "Component returned failure code: 0x80004001 (NS_ERROR_NOT_IMPLEMENTED) [nsIUpdateProcessor.getServiceRegKeyExists]" nsresult: "0x80004001 (NS_ERROR_NOT_IMPLEMENTED)" location: "JS frame :: resource://gre/modules/BackgroundUpdate.jsm :: _reasonsToNotScheduleUpdates :: line 241" data: no]
1649417870632 Marionette INFO Listening on port 50207
1649417870709 RemoteAgent WARN TLS certificate errors will be ignored for this session
JavaScript warning: https://www.amazon.de/ line 1966 > injectedScript, line 1: WEBGL_debug_renderer_info is deprecated in Firefox and will be removed. Please use RENDERER.
JavaScript warning: https://images-eu.ssl-images-amazon.com/images/I/7175vaFom2L.js?AUIClients/FWCIMAssets, line 289: 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://www.amazon.de"
1649418023611 geckodriver INFO Listening on 127.0.0.1:50331
1649418024636 mozrunner::runner INFO Running command: "/Applications/Firefox.app/Contents/MacOS/firefox-bin" "--marionette" "-foreground" "-no-remote" "-profile" "/var/folders/qv/mx8r2xd1351082qj3zpbx7fc0000gn/T/rust_mozprofileyTvci7"
2022-04-08 13:40:25.117 plugin-container[1469:30571] nil host used in call to allowsSpecificHTTPSCertificateForHost
2022-04-08 13:40:25.118 plugin-container[1469:30571] nil host used in call to allowsAnyHTTPSCertificateForHost:
1649418025125 Marionette INFO Marionette enabled
2022-04-08 13:40:25.133 plugin-container[1469:30571] nil host used in call to allowsSpecificHTTPSCertificateForHost
2022-04-08 13:40:25.133 plugin-container[1469:30571] nil host used in call to allowsAnyHTTPSCertificateForHost:
2022-04-08 13:40:25.133 plugin-container[1469:30573] nil host used in call to allowsSpecificHTTPSCertificateForHost
2022-04-08 13:40:25.133 plugin-container[1469:30573] nil host used in call to allowsAnyHTTPSCertificateForHost:
2022-04-08 13:40:25.803 firefox-bin[1468:30492] Warning: Expected min height of view: (<NSButton: 0x11d230c00>) to be less than or equal to 30 but got a height of 32.000000. This error will be logged once per view in violation.
2022-04-08 13:40:25.804 firefox-bin[1468:30492] Warning: Expected min height of view: (<NSButton: 0x123d9bc00>) to be less than or equal to 30 but got a height of 32.000000. This error will be logged once per view in violation.
2022-04-08 13:40:25.805 firefox-bin[1468:30492] Warning: Expected min height of view: (<NSButton: 0x123d99c00>) to be less than or equal to 30 but got a height of 32.000000. This error will be logged once per view in violation.
2022-04-08 13:40:25.806 firefox-bin[1468:30492] Warning: Expected min height of view: (<NSButton: 0x123d9c000>) to be less than or equal to 30 but got a height of 32.000000. This error will be logged once per view in violation.
2022-04-08 13:40:25.806 firefox-bin[1468:30492] Warning: Expected min height of view: (<NSButton: 0x123d9c400>) to be less than or equal to 30 but got a height of 32.000000. This error will be logged once per view in violation.
console.warn: SearchSettings: "get: No settings file exists, new profile?" (new NotFoundError("Could not open the file at /var/folders/qv/mx8r2xd1351082qj3zpbx7fc0000gn/T/rust_mozprofileyTvci7/search.json.mozlz4", (void 0)))
console.error: BackgroundUpdate:
_reasonsToNotScheduleUpdates: Failed to check for Maintenance Service Registry Key: [Exception... "Component returned failure code: 0x80004001 (NS_ERROR_NOT_IMPLEMENTED) [nsIUpdateProcessor.getServiceRegKeyExists]" nsresult: "0x80004001 (NS_ERROR_NOT_IMPLEMENTED)" location: "JS frame :: resource://gre/modules/BackgroundUpdate.jsm :: _reasonsToNotScheduleUpdates :: line 241" data: no]
1649418026734 Marionette INFO Listening on port 50338
1649418026812 RemoteAgent WARN TLS certificate errors will be ignored for this session
JavaScript warning: https://www.amazon.de/ line 2013 > injectedScript, line 1: WEBGL_debug_renderer_info is deprecated in Firefox and will be removed. Please use RENDERER.
JavaScript warning: https://images-eu.ssl-images-amazon.com/images/I/7175vaFom2L.js?AUIClients/FWCIMAssets, line 289: 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://www.amazon.de"
JavaScript warning: https://www.amazon.de/ap/signin?openid.pape.max_auth_age=0&openid.return_to=https%3A%2F%2Fwww.amazon.de%2F%3Fref_%3Dnav_ya_signin&openid.identity=http%3A%2F%2Fspecs.openid.net%2Fauth%2F2.0%2Fidentifier_select&openid.assoc_handle=deflex&openid.mode=checkid_setup&openid.claimed_id=http%3A%2F%2Fspecs.openid.net%2Fauth%2F2.0%2Fidentifier_select&openid.ns=http%3A%2F%2Fspecs.openid.net%2Fauth%2F2.0& line 756 > injectedScript, line 1: WEBGL_debug_renderer_info is deprecated in Firefox and will be removed. Please use RENDERER.
JavaScript warning: https://images-eu.ssl-images-amazon.com/images/I/81UNYn554pL.js?AUIClients/FWCIMAssets, line 289: WEBGL_debug_renderer_info is deprecated in Firefox and will be removed. Please use RENDERER.
JavaScript warning: https://images-eu.ssl-images-amazon.com/images/I/81UNYn554pL.js?AUIClients/FWCIMAssets, line 289: WEBGL_debug_renderer_info is deprecated in Firefox and will be removed. Please use RENDERER.
1649418439010 geckodriver INFO Listening on 127.0.0.1:50555
1649418440035 mozrunner::runner INFO Running command: "/Applications/Firefox.app/Contents/MacOS/firefox-bin" "--marionette" "-foreground" "-no-remote" "-profile" "/var/folders/qv/mx8r2xd1351082qj3zpbx7fc0000gn/T/rust_mozprofileYzgvQr"
2022-04-08 13:47:20.488 plugin-container[1542:35186] nil host used in call to allowsSpecificHTTPSCertificateForHost
2022-04-08 13:47:20.489 plugin-container[1542:35186] nil host used in call to allowsAnyHTTPSCertificateForHost:
2022-04-08 13:47:20.493 plugin-container[1542:35186] nil host used in call to allowsSpecificHTTPSCertificateForHost
2022-04-08 13:47:20.493 plugin-container[1542:35186] nil host used in call to allowsAnyHTTPSCertificateForHost:
2022-04-08 13:47:20.493 plugin-container[1542:35209] nil host used in call to allowsSpecificHTTPSCertificateForHost
2022-04-08 13:47:20.493 plugin-container[1542:35209] nil host used in call to allowsAnyHTTPSCertificateForHost:
1649418440497 Marionette INFO Marionette enabled
2022-04-08 13:47:21.203 firefox-bin[1541:35105] Warning: Expected min height of view: (<NSButton: 0x12ab5dc00>) to be less than or equal to 30 but got a height of 32.000000. This error will be logged once per view in violation.
2022-04-08 13:47:21.203 firefox-bin[1541:35105] Warning: Expected min height of view: (<NSButton: 0x12abbf400>) to be less than or equal to 30 but got a height of 32.000000. This error will be logged once per view in violation.
2022-04-08 13:47:21.204 firefox-bin[1541:35105] Warning: Expected min height of view: (<NSButton: 0x12abbfc00>) to be less than or equal to 30 but got a height of 32.000000. This error will be logged once per view in violation.
2022-04-08 13:47:21.205 firefox-bin[1541:35105] Warning: Expected min height of view: (<NSButton: 0x12abbd000>) to be less than or equal to 30 but got a height of 32.000000. This error will be logged once per view in violation.
2022-04-08 13:47:21.205 firefox-bin[1541:35105] Warning: Expected min height of view: (<NSButton: 0x12abc1000>) to be less than or equal to 30 but got a height of 32.000000. This error will be logged once per view in violation.
console.warn: SearchSettings: "get: No settings file exists, new profile?" (new NotFoundError("Could not open the file at /var/folders/qv/mx8r2xd1351082qj3zpbx7fc0000gn/T/rust_mozprofileYzgvQr/search.json.mozlz4", (void 0)))
console.error: BackgroundUpdate:
_reasonsToNotScheduleUpdates: Failed to check for Maintenance Service Registry Key: [Exception... "Component returned failure code: 0x80004001 (NS_ERROR_NOT_IMPLEMENTED) [nsIUpdateProcessor.getServiceRegKeyExists]" nsresult: "0x80004001 (NS_ERROR_NOT_IMPLEMENTED)" location: "JS frame :: resource://gre/modules/BackgroundUpdate.jsm :: _reasonsToNotScheduleUpdates :: line 241" data: no]
1649418442208 Marionette INFO Listening on port 50562
1649418442302 RemoteAgent WARN TLS certificate errors will be ignored for this session
JavaScript warning: https://www.amazon.de/ line 2034 > injectedScript, 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://www.amazon.de"
JavaScript warning: https://www.amazon.de/ap/signin?openid.pape.max_auth_age=0&openid.return_to=https%3A%2F%2Fwww.amazon.de%2F%3Fref_%3Dnav_ya_signin&openid.identity=http%3A%2F%2Fspecs.openid.net%2Fauth%2F2.0%2Fidentifier_select&openid.assoc_handle=deflex&openid.mode=checkid_setup&openid.claimed_id=http%3A%2F%2Fspecs.openid.net%2Fauth%2F2.0%2Fidentifier_select&openid.ns=http%3A%2F%2Fspecs.openid.net%2Fauth%2F2.0& line 756 > injectedScript, line 1: WEBGL_debug_renderer_info is deprecated in Firefox and will be removed. Please use RENDERER.
###!!! [Child][PContentChild] Error: RunMessage(msgname=PContent::Msg_DiscardWindowContext) Channel closing: too late to send/recv, messages will be lost
console.warn: LoginRecipes: "getRecipes: falling back to a synchronous message for:" "https://www.amazon.de"
console.warn: LoginRecipes: "getRecipes: falling back to a synchronous message for:" "https://www.amazon.de"
JavaScript warning: https://www.amazon.de/ap/signin line 741 > injectedScript, 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://www.amazon.de"
console.warn: LoginRecipes: "getRecipes: falling back to a synchronous message for:" "https://www.amazon.de"
JavaScript error: resource://gre/modules/LoginManagerParent.jsm, line 136: TypeError: gRecipeManager is null
console.warn: LoginRecipes: "getRecipes: falling back to a synchronous message for:" "https://www.amazon.de"
JavaScript error: resource://gre/modules/LoginManagerParent.jsm, line 136: TypeError: gRecipeManager is null
console.warn: LoginRecipes: "getRecipes: falling back to a synchronous message for:" "https://www.amazon.de"
JavaScript error: resource://gre/modules/LoginManagerParent.jsm, line 136: TypeError: gRecipeManager is null
JavaScript warning: https://www.amazon.de/ap/accountfixup?arb=3f4af239-cc67-41ba-b9ff-f37416497e7b&openid.pape.max_auth_age=900&openid.return_to=https%3A%2F%2Fwww.amazon.de%2F%3Fref_%3Dnav_ya_signin&openid.identity=http%3A%2F%2Fspecs.openid.net%2Fauth%2F2.0%2Fidentifier_select&openid.assoc_handle=deflex&openid.mode=checkid_setup&openid.claimed_id=http%3A%2F%2Fspecs.openid.net%2Fauth%2F2.0%2Fidentifier_select&pageId=deflex&openid.ns=http%3A%2F%2Fspecs.openid.net%2Fauth%2F2.0 line 2263 > injectedScript, line 1: WEBGL_debug_renderer_info is deprecated in Firefox and will be removed. Please use RENDERER.
JavaScript warning: https://images-eu.ssl-images-amazon.com/images/I/81UNYn554pL.js?AUIClients/FWCIMAssets, line 289: WEBGL_debug_renderer_info is deprecated in Firefox and will be removed. Please use RENDERER.
JavaScript warning: https://images-eu.ssl-images-amazon.com/images/I/81UNYn554pL.js?AUIClients/FWCIMAssets, line 289: WEBGL_debug_renderer_info is deprecated in Firefox and will be removed. Please use RENDERER.
1649418769303 geckodriver INFO Listening on 127.0.0.1:50812
1649418770321 mozrunner::runner INFO Running command: "/Applications/Firefox.app/Contents/MacOS/firefox-bin" "--marionette" "-foreground" "-no-remote" "-profile" "/var/folders/qv/mx8r2xd1351082qj3zpbx7fc0000gn/T/rust_mozprofileYOvMpW"
2022-04-08 13:52:50.706 plugin-container[3146:48987] nil host used in call to allowsSpecificHTTPSCertificateForHost
2022-04-08 13:52:50.706 plugin-container[3146:48987] nil host used in call to allowsAnyHTTPSCertificateForHost:
1649418770716 Marionette INFO Marionette enabled
2022-04-08 13:52:50.721 plugin-container[3146:48987] nil host used in call to allowsSpecificHTTPSCertificateForHost
2022-04-08 13:52:50.721 plugin-container[3146:48987] nil host used in call to allowsAnyHTTPSCertificateForHost:
2022-04-08 13:52:50.721 plugin-container[3146:48989] nil host used in call to allowsSpecificHTTPSCertificateForHost
2022-04-08 13:52:50.721 plugin-container[3146:48989] nil host used in call to allowsAnyHTTPSCertificateForHost:
2022-04-08 13:52:51.350 firefox-bin[3145:48884] Warning: Expected min height of view: (<NSButton: 0x11a98fc00>) to be less than or equal to 30 but got a height of 32.000000. This error will be logged once per view in violation.
2022-04-08 13:52:51.351 firefox-bin[3145:48884] Warning: Expected min height of view: (<NSButton: 0x109586800>) to be less than or equal to 30 but got a height of 32.000000. This error will be logged once per view in violation.
2022-04-08 13:52:51.351 firefox-bin[3145:48884] Warning: Expected min height of view: (<NSButton: 0x11d2c8000>) to be less than or equal to 30 but got a height of 32.000000. This error will be logged once per view in violation.
2022-04-08 13:52:51.351 firefox-bin[3145:48884] Warning: Expected min height of view: (<NSButton: 0x11d2c6800>) to be less than or equal to 30 but got a height of 32.000000. This error will be logged once per view in violation.
2022-04-08 13:52:51.352 firefox-bin[3145:48884] Warning: Expected min height of view: (<NSButton: 0x1095dbc00>) to be less than or equal to 30 but got a height of 32.000000. This error will be logged once per view in violation.
console.warn: SearchSettings: "get: No settings file exists, new profile?" (new NotFoundError("Could not open the file at /var/folders/qv/mx8r2xd1351082qj3zpbx7fc0000gn/T/rust_mozprofileYOvMpW/search.json.mozlz4", (void 0)))
console.error: BackgroundUpdate:
_reasonsToNotScheduleUpdates: Failed to check for Maintenance Service Registry Key: [Exception... "Component returned failure code: 0x80004001 (NS_ERROR_NOT_IMPLEMENTED) [nsIUpdateProcessor.getServiceRegKeyExists]" nsresult: "0x80004001 (NS_ERROR_NOT_IMPLEMENTED)" location: "JS frame :: resource://gre/modules/BackgroundUpdate.jsm :: _reasonsToNotScheduleUpdates :: line 241" data: no]
1649418772314 Marionette INFO Listening on port 50819
1649418772404 RemoteAgent WARN TLS certificate errors will be ignored for this session
JavaScript warning: https://www.amazon.de/ line 1971 > injectedScript, 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://www.amazon.de"
JavaScript warning: https://www.amazon.de/ap/signin?openid.pape.max_auth_age=0&openid.return_to=https%3A%2F%2Fwww.amazon.de%2F%3Fref_%3Dnav_ya_signin&openid.identity=http%3A%2F%2Fspecs.openid.net%2Fauth%2F2.0%2Fidentifier_select&openid.assoc_handle=deflex&openid.mode=checkid_setup&openid.claimed_id=http%3A%2F%2Fspecs.openid.net%2Fauth%2F2.0%2Fidentifier_select&openid.ns=http%3A%2F%2Fspecs.openid.net%2Fauth%2F2.0& line 756 > injectedScript, 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://www.amazon.de"
console.warn: LoginRecipes: "getRecipes: falling back to a synchronous message for:" "https://www.amazon.de"
JavaScript warning: https://www.amazon.de/ap/signin line 741 > injectedScript, 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://www.amazon.de"
console.warn: LoginRecipes: "getRecipes: falling back to a synchronous message for:" "https://www.amazon.de"
JavaScript error: resource://gre/modules/LoginManagerParent.jsm, line 136: TypeError: gRecipeManager is null
console.warn: LoginRecipes: "getRecipes: falling back to a synchronous message for:" "https://www.amazon.de"
JavaScript error: resource://gre/modules/LoginManagerParent.jsm, line 136: TypeError: gRecipeManager is null
console.warn: LoginRecipes: "getRecipes: falling back to a synchronous message for:" "https://www.amazon.de"
JavaScript error: resource://gre/modules/LoginManagerParent.jsm, line 136: TypeError: gRecipeManager is null
JavaScript warning: https://www.amazon.de/?ref_=nav_ya_signin& line 1934 > injectedScript, 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://www.amazon.de"
JavaScript error: resource://gre/modules/LoginManagerParent.jsm, line 136: TypeError: gRecipeManager is null
###!!! [Child][PContentChild] Error: RunMessage(msgname=PContent::Msg_CommitBrowsingContextTransaction) Channel closing: too late to send/recv, messages will be lost
console.warn: LoginRecipes: "getRecipes: falling back to a synchronous message for:" "https://www.amazon.de"
JavaScript error: resource://gre/modules/LoginManagerParent.jsm, line 136: TypeError: gRecipeManager is null
JavaScript warning: https://www.amazon.de/s?k=playstation+5&sprefix=play%2Caps%2C110&ref=nb_sb_ss_ts-doa-p_1_4 line 7565 > injectedScript, 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://www.amazon.de"
JavaScript error: resource://gre/modules/LoginManagerParent.jsm, line 136: TypeError: gRecipeManager is null
console.warn: LoginRecipes: "getRecipes: falling back to a synchronous message for:" "https://www.amazon.de"
JavaScript error: resource://gre/modules/LoginManagerParent.jsm, line 136: TypeError: gRecipeManager is null
console.warn: LoginRecipes: "getRecipes: falling back to a synchronous message for:" "https://www.amazon.de"
JavaScript error: resource://gre/modules/LoginManagerParent.jsm, line 136: TypeError: gRecipeManager is null
JavaScript warning: https://www.amazon.de/Sony-Interactive-Entertainment-PlayStation-5/dp/B08H93ZRK9/ref=sr_1_2?keywords=playstation+5&qid=1649418790&sprefix=play%2Caps%2C110&sr=8-2 line 8851 > injectedScript, line 1: WEBGL_debug_renderer_info is deprecated in Firefox and will be removed. Please use RENDERER.
1649418826615 geckodriver INFO Listening on 127.0.0.1:50998
1649418827629 mozrunner::runner INFO Running command: "/Applications/Firefox.app/Contents/MacOS/firefox-bin" "--marionette" "-foreground" "-no-remote" "-profile" "/var/folders/qv/mx8r2xd1351082qj3zpbx7fc0000gn/T/rust_mozprofileTxKR60"
2022-04-08 13:53:48.002 plugin-container[3173:50300] nil host used in call to allowsSpecificHTTPSCertificateForHost
2022-04-08 13:53:48.002 plugin-container[3173:50300] nil host used in call to allowsAnyHTTPSCertificateForHost:
1649418828010 Marionette INFO Marionette enabled
2022-04-08 13:53:48.051 plugin-container[3173:50300] nil host used in call to allowsSpecificHTTPSCertificateForHost
2022-04-08 13:53:48.051 plugin-container[3173:50300] nil host used in call to allowsAnyHTTPSCertificateForHost:
2022-04-08 13:53:48.051 plugin-container[3173:50328] nil host used in call to allowsSpecificHTTPSCertificateForHost
2022-04-08 13:53:48.051 plugin-container[3173:50328] nil host used in call to allowsAnyHTTPSCertificateForHost:
2022-04-08 13:53:48.825 firefox-bin[3172:50197] Warning: Expected min height of view: (<NSButton: 0x1229c8c00>) to be less than or equal to 30 but got a height of 32.000000. This error will be logged once per view in violation.
2022-04-08 13:53:48.826 firefox-bin[3172:50197] Warning: Expected min height of view: (<NSButton: 0x122b2cc00>) to be less than or equal to 30 but got a height of 32.000000. This error will be logged once per view in violation.
2022-04-08 13:53:48.827 firefox-bin[3172:50197] Warning: Expected min height of view: (<NSButton: 0x122b30c00>) to be less than or equal to 30 but got a height of 32.000000. This error will be logged once per view in violation.
2022-04-08 13:53:48.827 firefox-bin[3172:50197] Warning: Expected min height of view: (<NSButton: 0x122b2e000>) to be less than or equal to 30 but got a height of 32.000000. This error will be logged once per view in violation.
2022-04-08 13:53:48.828 firefox-bin[3172:50197] Warning: Expected min height of view: (<NSButton: 0x122b31800>) to be less than or equal to 30 but got a height of 32.000000. This error will be logged once per view in violation.
console.warn: SearchSettings: "get: No settings file exists, new profile?" (new NotFoundError("Could not open the file at /var/folders/qv/mx8r2xd1351082qj3zpbx7fc0000gn/T/rust_mozprofileTxKR60/search.json.mozlz4", (void 0)))
console.error: BackgroundUpdate:
_reasonsToNotScheduleUpdates: Failed to check for Maintenance Service Registry Key: [Exception... "Component returned failure code: 0x80004001 (NS_ERROR_NOT_IMPLEMENTED) [nsIUpdateProcessor.getServiceRegKeyExists]" nsresult: "0x80004001 (NS_ERROR_NOT_IMPLEMENTED)" location: "JS frame :: resource://gre/modules/BackgroundUpdate.jsm :: _reasonsToNotScheduleUpdates :: line 241" data: no]
1649418829846 Marionette INFO Listening on port 51005
1649418829903 RemoteAgent WARN TLS certificate errors will be ignored for this session
###!!! [Parent][PContentParent] Error: Send(msgname=PContent::Msg_DestroyBrowsingContextGroup) Closed channel: cannot send/recv
###!!! [Child][PContentChild] Error: RunMessage(msgname=PContent::Reply_DiscardBrowsingContext) Channel closing: too late to send/recv, messages will be lost
JavaScript warning: https://www.amazon.de/ line 1985 > injectedScript, line 1: WEBGL_debug_renderer_info is deprecated in Firefox and will be removed. Please use RENDERER.
JavaScript warning: https://images-eu.ssl-images-amazon.com/images/I/7175vaFom2L.js?AUIClients/FWCIMAssets, line 289: 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://www.amazon.de"
JavaScript warning: https://www.amazon.de/ap/signin?openid.pape.max_auth_age=0&openid.return_to=https%3A%2F%2Fwww.amazon.de%2F%3Fref_%3Dnav_ya_signin&openid.identity=http%3A%2F%2Fspecs.openid.net%2Fauth%2F2.0%2Fidentifier_select&openid.assoc_handle=deflex&openid.mode=checkid_setup&openid.claimed_id=http%3A%2F%2Fspecs.openid.net%2Fauth%2F2.0%2Fidentifier_select&openid.ns=http%3A%2F%2Fspecs.openid.net%2Fauth%2F2.0& line 774 > injectedScript, 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://www.amazon.de"
console.warn: LoginRecipes: "getRecipes: falling back to a synchronous message for:" "https://www.amazon.de"
JavaScript warning: https://www.amazon.de/ap/signin line 806 > injectedScript, 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://www.amazon.de"
console.warn: LoginRecipes: "getRecipes: falling back to a synchronous message for:" "https://www.amazon.de"
JavaScript error: resource://gre/modules/LoginManagerParent.jsm, line 136: TypeError: gRecipeManager is null
console.warn: LoginRecipes: "getRecipes: falling back to a synchronous message for:" "https://www.amazon.de"
JavaScript error: resource://gre/modules/LoginManagerParent.jsm, line 136: TypeError: gRecipeManager is null
console.warn: LoginRecipes: "getRecipes: falling back to a synchronous message for:" "https://www.amazon.de"
JavaScript error: resource://gre/modules/LoginManagerParent.jsm, line 136: TypeError: gRecipeManager is null
JavaScript warning: https://www.amazon.de/?ref_=nav_ya_signin& line 1992 > injectedScript, line 1: WEBGL_debug_renderer_info is deprecated in Firefox and will be removed. Please use RENDERER.
JavaScript warning: https://images-eu.ssl-images-amazon.com/images/I/7175vaFom2L.js?AUIClients/FWCIMAssets, line 289: WEBGL_debug_renderer_info is deprecated in Firefox and will be removed. Please use RENDERER.
console.error: (new TypeError("topBrowsingContext is null", "resource://devtools/server/actors/watcher/browsing-context-helpers.jsm", 352))
1649438955519 geckodriver INFO Listening on 127.0.0.1:52558
1649438956538 mozrunner::runner INFO Running command: "/Applications/Firefox.app/Contents/MacOS/firefox-bin" "--marionette" "-foreground" "-no-remote" "-profile" "/var/folders/qv/mx8r2xd1351082qj3zpbx7fc0000gn/T/rust_mozprofilepoMDXp"
1649438957224 Marionette INFO Marionette enabled
2022-04-08 19:29:17.306 plugin-container[4144:113987] nil host used in call to allowsSpecificHTTPSCertificateForHost
2022-04-08 19:29:17.307 plugin-container[4144:113987] nil host used in call to allowsAnyHTTPSCertificateForHost:
2022-04-08 19:29:17.349 plugin-container[4144:113987] nil host used in call to allowsSpecificHTTPSCertificateForHost
2022-04-08 19:29:17.349 plugin-container[4144:113987] nil host used in call to allowsAnyHTTPSCertificateForHost:
2022-04-08 19:29:17.349 plugin-container[4144:113993] nil host used in call to allowsSpecificHTTPSCertificateForHost
2022-04-08 19:29:17.349 plugin-container[4144:113993] nil host used in call to allowsAnyHTTPSCertificateForHost:
2022-04-08 19:29:18.047 firefox-bin[4142:113883] Warning: Expected min height of view: (<NSButton: 0x129675c00>) to be less than or equal to 30 but got a height of 32.000000. This error will be logged once per view in violation.
2022-04-08 19:29:18.047 firefox-bin[4142:113883] Warning: Expected min height of view: (<NSButton: 0x1297e7800>) to be less than or equal to 30 but got a height of 32.000000. This error will be logged once per view in violation.
2022-04-08 19:29:18.048 firefox-bin[4142:113883] Warning: Expected min height of view: (<NSButton: 0x1297ea000>) to be less than or equal to 30 but got a height of 32.000000. This error will be logged once per view in violation.
2022-04-08 19:29:18.048 firefox-bin[4142:113883] Warning: Expected min height of view: (<NSButton: 0x1297ea400>) to be less than or equal to 30 but got a height of 32.000000. This error will be logged once per view in violation.
2022-04-08 19:29:18.049 firefox-bin[4142:113883] Warning: Expected min height of view: (<NSButton: 0x1297eac00>) to be less than or equal to 30 but got a height of 32.000000. This error will be logged once per view in violation.
console.warn: SearchSettings: "get: No settings file exists, new profile?" (new NotFoundError("Could not open the file at /var/folders/qv/mx8r2xd1351082qj3zpbx7fc0000gn/T/rust_mozprofilepoMDXp/search.json.mozlz4", (void 0)))
console.error: BackgroundUpdate:
_reasonsToNotScheduleUpdates: Failed to check for Maintenance Service Registry Key: [Exception... "Component returned failure code: 0x80004001 (NS_ERROR_NOT_IMPLEMENTED) [nsIUpdateProcessor.getServiceRegKeyExists]" nsresult: "0x80004001 (NS_ERROR_NOT_IMPLEMENTED)" location: "JS frame :: resource://gre/modules/BackgroundUpdate.jsm :: _reasonsToNotScheduleUpdates :: line 241" data: no]
1649438959262 Marionette INFO Listening on port 52565
1649438959338 RemoteAgent WARN TLS certificate errors will be ignored for this session
JavaScript warning: https://www.amazon.de/ line 1972 > injectedScript, 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://www.amazon.de"
JavaScript warning: https://www.amazon.de/ap/signin?openid.pape.max_auth_age=0&openid.return_to=https%3A%2F%2Fwww.amazon.de%2F%3Fref_%3Dnav_ya_signin&openid.identity=http%3A%2F%2Fspecs.openid.net%2Fauth%2F2.0%2Fidentifier_select&openid.assoc_handle=deflex&openid.mode=checkid_setup&openid.claimed_id=http%3A%2F%2Fspecs.openid.net%2Fauth%2F2.0%2Fidentifier_select&openid.ns=http%3A%2F%2Fspecs.openid.net%2Fauth%2F2.0& line 756 > injectedScript, line 1: WEBGL_debug_renderer_info is deprecated in Firefox and will be removed. Please use RENDERER.
###!!! [Child][PContentChild] Error: RunMessage(msgname=PContent::Reply_DiscardBrowsingContext) Channel closing: too late to send/recv, messages will be lost
###!!! [Child][PContentChild] Error: RunMessage(msgname=PContent::Reply_DiscardBrowsingContext) Channel closing: too late to send/recv, messages will be lost
###!!! [Child][PContentChild] Error: RunMessage(msgname=PContent::Reply_DiscardBrowsingContext) Channel closing: too late to send/recv, messages will be lost
###!!! [Child][PContentChild] Error: RunMessage(msgname=PContent::Reply_DiscardBrowsingContext) Channel closing: too late to send/recv, messages will be lost
###!!! [Child][PContentChild] Error: RunMessage(msgname=PContent::Reply_DiscardBrowsingContext) Channel closing: too late to send/recv, messages will be lost
console.warn: LoginRecipes: "getRecipes: falling back to a synchronous message for:" "https://www.amazon.de"
console.warn: LoginRecipes: "getRecipes: falling back to a synchronous message for:" "https://www.amazon.de"
JavaScript warning: https://www.amazon.de/ap/signin line 741 > injectedScript, 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://www.amazon.de"
console.warn: LoginRecipes: "getRecipes: falling back to a synchronous message for:" "https://www.amazon.de"
JavaScript error: resource://gre/modules/LoginManagerParent.jsm, line 136: TypeError: gRecipeManager is null
console.warn: LoginRecipes: "getRecipes: falling back to a synchronous message for:" "https://www.amazon.de"
JavaScript error: resource://gre/modules/LoginManagerParent.jsm, line 136: TypeError: gRecipeManager is null
console.warn: LoginRecipes: "getRecipes: falling back to a synchronous message for:" "https://www.amazon.de"
JavaScript error: resource://gre/modules/LoginManagerParent.jsm, line 136: TypeError: gRecipeManager is null
JavaScript warning: https://www.amazon.de/?ref_=nav_ya_signin& line 1991 > injectedScript, line 1: WEBGL_debug_renderer_info is deprecated in Firefox and will be removed. Please use RENDERER.
1649439148574 geckodriver INFO Listening on 127.0.0.1:52774
1649439149582 mozrunner::runner INFO Running command: "/Applications/Firefox.app/Contents/MacOS/firefox-bin" "--marionette" "-foreground" "-no-remote" "-profile" "/var/folders/qv/mx8r2xd1351082qj3zpbx7fc0000gn/T/rust_mozprofileMzHEKG"
2022-04-08 19:32:30.078 plugin-container[4181:115975] nil host used in call to allowsSpecificHTTPSCertificateForHost
2022-04-08 19:32:30.079 plugin-container[4181:115975] nil host used in call to allowsAnyHTTPSCertificateForHost:
1649439150090 Marionette INFO Marionette enabled
2022-04-08 19:32:30.134 plugin-container[4181:115975] nil host used in call to allowsSpecificHTTPSCertificateForHost
2022-04-08 19:32:30.134 plugin-container[4181:115975] nil host used in call to allowsAnyHTTPSCertificateForHost:
2022-04-08 19:32:30.134 plugin-container[4181:115981] nil host used in call to allowsSpecificHTTPSCertificateForHost
2022-04-08 19:32:30.134 plugin-container[4181:115981] nil host used in call to allowsAnyHTTPSCertificateForHost:
2022-04-08 19:32:30.748 firefox-bin[4180:115888] Warning: Expected min height of view: (<NSButton: 0x1288da000>) to be less than or equal to 30 but got a height of 32.000000. This error will be logged once per view in violation.
2022-04-08 19:32:30.749 firefox-bin[4180:115888] Warning: Expected min height of view: (<NSButton: 0x12f9bf400>) to be less than or equal to 30 but got a height of 32.000000. This error will be logged once per view in violation.
2022-04-08 19:32:30.749 firefox-bin[4180:115888] Warning: Expected min height of view: (<NSButton: 0x12f9ba400>) to be less than or equal to 30 but got a height of 32.000000. This error will be logged once per view in violation.
2022-04-08 19:32:30.750 firefox-bin[4180:115888] Warning: Expected min height of view: (<NSButton: 0x12f9bec00>) to be less than or equal to 30 but got a height of 32.000000. This error will be logged once per view in violation.
2022-04-08 19:32:30.751 firefox-bin[4180:115888] Warning: Expected min height of view: (<NSButton: 0x12f9ba000>) to be less than or equal to 30 but got a height of 32.000000. This error will be logged once per view in violation.
console.warn: SearchSettings: "get: No settings file exists, new profile?" (new NotFoundError("Could not open the file at /var/folders/qv/mx8r2xd1351082qj3zpbx7fc0000gn/T/rust_mozprofileMzHEKG/search.json.mozlz4", (void 0)))
console.error: BackgroundUpdate:
_reasonsToNotScheduleUpdates: Failed to check for Maintenance Service Registry Key: [Exception... "Component returned failure code: 0x80004001 (NS_ERROR_NOT_IMPLEMENTED) [nsIUpdateProcessor.getServiceRegKeyExists]" nsresult: "0x80004001 (NS_ERROR_NOT_IMPLEMENTED)" location: "JS frame :: resource://gre/modules/BackgroundUpdate.jsm :: _reasonsToNotScheduleUpdates :: line 241" data: no]
1649439151761 Marionette INFO Listening on port 52781
1649439151854 RemoteAgent WARN TLS certificate errors will be ignored for this session
JavaScript warning: https://www.amazon.de/ line 1986 > injectedScript, 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://www.amazon.de"
1649439158474 Marionette WARN TimedPromise timed out after 500 ms: stacktrace:
TimedPromise/<@chrome://remote/content/marionette/sync.js:235:19
TimedPromise@chrome://remote/content/marionette/sync.js:220:10
interaction.flushEventLoop@chrome://remote/content/marionette/interaction.js:431:10
webdriverClickElement@chrome://remote/content/marionette/interaction.js:179:31
JavaScript warning: https://www.amazon.de/ap/signin?openid.pape.max_auth_age=0&openid.return_to=https%3A%2F%2Fwww.amazon.de%2F%3Fref_%3Dnav_ya_signin&openid.identity=http%3A%2F%2Fspecs.openid.net%2Fauth%2F2.0%2Fidentifier_select&openid.assoc_handle=deflex&openid.mode=checkid_setup&openid.claimed_id=http%3A%2F%2Fspecs.openid.net%2Fauth%2F2.0%2Fidentifier_select&openid.ns=http%3A%2F%2Fspecs.openid.net%2Fauth%2F2.0& line 756 > injectedScript, 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://www.amazon.de"
console.warn: LoginRecipes: "getRecipes: falling back to a synchronous message for:" "https://www.amazon.de"
JavaScript warning: https://www.amazon.de/ap/signin line 741 > injectedScript, 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://www.amazon.de"
console.warn: LoginRecipes: "getRecipes: falling back to a synchronous message for:" "https://www.amazon.de"
JavaScript error: resource://gre/modules/LoginManagerParent.jsm, line 136: TypeError: gRecipeManager is null
console.warn: LoginRecipes: "getRecipes: falling back to a synchronous message for:" "https://www.amazon.de"
JavaScript error: resource://gre/modules/LoginManagerParent.jsm, line 136: TypeError: gRecipeManager is null
console.warn: LoginRecipes: "getRecipes: falling back to a synchronous message for:" "https://www.amazon.de"
JavaScript error: resource://gre/modules/LoginManagerParent.jsm, line 136: TypeError: gRecipeManager is null
JavaScript warning: https://www.amazon.de/?ref_=nav_ya_signin& line 1939 > injectedScript, line 1: WEBGL_debug_renderer_info is deprecated in Firefox and will be removed. Please use RENDERER.
1649439189146 geckodriver INFO Listening on 127.0.0.1:52927
1649439190170 mozrunner::runner INFO Running command: "/Applications/Firefox.app/Contents/MacOS/firefox-bin" "--marionette" "-foreground" "-no-remote" "-profile" "/var/folders/qv/mx8r2xd1351082qj3zpbx7fc0000gn/T/rust_mozprofileeRJB1u"
2022-04-08 19:33:10.666 plugin-container[4202:116836] nil host used in call to allowsSpecificHTTPSCertificateForHost
2022-04-08 19:33:10.667 plugin-container[4202:116836] nil host used in call to allowsAnyHTTPSCertificateForHost:
1649439190681 Marionette INFO Marionette enabled
2022-04-08 19:33:10.698 plugin-container[4202:116836] nil host used in call to allowsSpecificHTTPSCertificateForHost
2022-04-08 19:33:10.699 plugin-container[4202:116836] nil host used in call to allowsAnyHTTPSCertificateForHost:
2022-04-08 19:33:10.699 plugin-container[4202:116862] nil host used in call to allowsSpecificHTTPSCertificateForHost
2022-04-08 19:33:10.699 plugin-container[4202:116862] nil host used in call to allowsAnyHTTPSCertificateForHost:
2022-04-08 19:33:11.333 firefox-bin[4201:116753] Warning: Expected min height of view: (<NSButton: 0x122e0fc00>) to be less than or equal to 30 but got a height of 32.000000. This error will be logged once per view in violation.
2022-04-08 19:33:11.335 firefox-bin[4201:116753] Warning: Expected min height of view: (<NSButton: 0x1230b4400>) to be less than or equal to 30 but got a height of 32.000000. This error will be logged once per view in violation.
2022-04-08 19:33:11.335 firefox-bin[4201:116753] Warning: Expected min height of view: (<NSButton: 0x1230b7800>) to be less than or equal to 30 but got a height of 32.000000. This error will be logged once per view in violation.
2022-04-08 19:33:11.336 firefox-bin[4201:116753] Warning: Expected min height of view: (<NSButton: 0x1230b5400>) to be less than or equal to 30 but got a height of 32.000000. This error will be logged once per view in violation.
2022-04-08 19:33:11.336 firefox-bin[4201:116753] Warning: Expected min height of view: (<NSButton: 0x1230b7c00>) to be less than or equal to 30 but got a height of 32.000000. This error will be logged once per view in violation.
console.warn: SearchSettings: "get: No settings file exists, new profile?" (new NotFoundError("Could not open the file at /var/folders/qv/mx8r2xd1351082qj3zpbx7fc0000gn/T/rust_mozprofileeRJB1u/search.json.mozlz4", (void 0)))
console.error: BackgroundUpdate:
_reasonsToNotScheduleUpdates: Failed to check for Maintenance Service Registry Key: [Exception... "Component returned failure code: 0x80004001 (NS_ERROR_NOT_IMPLEMENTED) [nsIUpdateProcessor.getServiceRegKeyExists]" nsresult: "0x80004001 (NS_ERROR_NOT_IMPLEMENTED)" location: "JS frame :: resource://gre/modules/BackgroundUpdate.jsm :: _reasonsToNotScheduleUpdates :: line 241" data: no]
1649439192444 Marionette INFO Listening on port 52934
1649439192554 RemoteAgent WARN TLS certificate errors will be ignored for this session
JavaScript warning: https://www.amazon.de/ line 2023 > injectedScript, 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://www.amazon.de"
JavaScript warning: https://www.amazon.de/ap/signin?openid.pape.max_auth_age=0&openid.return_to=https%3A%2F%2Fwww.amazon.de%2F%3Fref_%3Dnav_ya_signin&openid.identity=http%3A%2F%2Fspecs.openid.net%2Fauth%2F2.0%2Fidentifier_select&openid.assoc_handle=deflex&openid.mode=checkid_setup&openid.claimed_id=http%3A%2F%2Fspecs.openid.net%2Fauth%2F2.0%2Fidentifier_select&openid.ns=http%3A%2F%2Fspecs.openid.net%2Fauth%2F2.0& line 756 > injectedScript, 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://www.amazon.de"
console.warn: LoginRecipes: "getRecipes: falling back to a synchronous message for:" "https://www.amazon.de"
JavaScript warning: https://www.amazon.de/ap/signin line 741 > injectedScript, 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://www.amazon.de"
console.warn: LoginRecipes: "getRecipes: falling back to a synchronous message for:" "https://www.amazon.de"
JavaScript error: resource://gre/modules/LoginManagerParent.jsm, line 136: TypeError: gRecipeManager is null
console.warn: LoginRecipes: "getRecipes: falling back to a synchronous message for:" "https://www.amazon.de"
JavaScript error: resource://gre/modules/LoginManagerParent.jsm, line 136: TypeError: gRecipeManager is null
console.warn: LoginRecipes: "getRecipes: falling back to a synchronous message for:" "https://www.amazon.de"
JavaScript error: resource://gre/modules/LoginManagerParent.jsm, line 136: TypeError: gRecipeManager is null
JavaScript warning: https://www.amazon.de/?ref_=nav_ya_signin& line 1993 > injectedScript, 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://www.amazon.de"
JavaScript error: resource://gre/modules/LoginManagerParent.jsm, line 136: TypeError: gRecipeManager is null
console.warn: LoginRecipes: "getRecipes: falling back to a synchronous message for:" "https://www.amazon.de"
JavaScript error: resource://gre/modules/LoginManagerParent.jsm, line 136: TypeError: gRecipeManager is null
JavaScript warning: https://www.amazon.de/s?k=playstation+5&sprefix=play%2Caps%2C123&ref=nb_sb_ss_i_1_4 line 7681 > injectedScript, 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://www.amazon.de"
JavaScript error: resource://gre/modules/LoginManagerParent.jsm, line 136: TypeError: gRecipeManager is null
console.warn: LoginRecipes: "getRecipes: falling back to a synchronous message for:" "https://www.amazon.de"
JavaScript error: resource://gre/modules/LoginManagerParent.jsm, line 136: TypeError: gRecipeManager is null
console.warn: LoginRecipes: "getRecipes: falling back to a synchronous message for:" "https://www.amazon.de"
JavaScript error: resource://gre/modules/LoginManagerParent.jsm, line 136: TypeError: gRecipeManager is null
JavaScript warning: https://www.amazon.de/Sony-Interactive-Entertainment-PlayStation-5/dp/B08H93ZRK9/ref=sr_1_2?keywords=playstation+5&qid=1649439219&sprefix=play%2Caps%2C123&sr=8-2 line 9209 > injectedScript, line 1: WEBGL_debug_renderer_info is deprecated in Firefox and will be removed. Please use RENDERER.
JavaScript warning: https://www.amazon.de/Horizon-Forbidden-West-PlayStation-5/dp/B089ZVBHMG/ref=pd_sim_sccl_1/262-2855252-3874822?pd_rd_w=yUPS3&pf_rd_p=cc774b45-f65f-4098-b708-9e377d1b3871&pf_rd_r=S1NFG6KMAQ1M3C2QGWVR&pd_rd_r=6bb31c75-26aa-4a7f-b4bd-6a8e140a2a4b&pd_rd_wg=jAnns&pd_rd_i=B089ZVBHMG&psc=1 line 9470 > injectedScript, line 1: WEBGL_debug_renderer_info is deprecated in Firefox and will be removed. Please use RENDERER.
###!!! [Child][PContentChild] Error: Send(msgname=PHttpChannel::Msg___delete__) Channel closing: too late to send/recv, messages will be lost
###!!! [Child][PContentChild] Error: Send(msgname=PNecko::Msg_RemoveRequestContext) Channel closing: too late to send/recv, messages will be lost
###!!! [Child][PContentChild] Error: RunMessage(msgname=PContent::Reply_DiscardBrowsingContext) Channel closing: too late to send/recv, messages will be lost
1649441044847 geckodriver INFO Listening on 127.0.0.1:53592
1649441045869 mozrunner::runner INFO Running command: "/Applications/Firefox.app/Contents/MacOS/firefox-bin" "--marionette" "-foreground" "-no-remote" "-profile" "/var/folders/qv/mx8r2xd1351082qj3zpbx7fc0000gn/T/rust_mozprofilewXLMJL"
2022-04-08 20:04:06.343 plugin-container[4374:131919] nil host used in call to allowsSpecificHTTPSCertificateForHost
2022-04-08 20:04:06.343 plugin-container[4374:131919] nil host used in call to allowsAnyHTTPSCertificateForHost:
2022-04-08 20:04:06.347 plugin-container[4374:131919] nil host used in call to allowsSpecificHTTPSCertificateForHost
2022-04-08 20:04:06.347 plugin-container[4374:131919] nil host used in call to allowsAnyHTTPSCertificateForHost:
2022-04-08 20:04:06.348 plugin-container[4374:131921] nil host used in call to allowsSpecificHTTPSCertificateForHost
2022-04-08 20:04:06.348 plugin-container[4374:131921] nil host used in call to allowsAnyHTTPSCertificateForHost:
1649441046353 Marionette INFO Marionette enabled
2022-04-08 20:04:07.044 firefox-bin[4373:131846] Warning: Expected min height of view: (<NSButton: 0x12704bc00>) to be less than or equal to 30 but got a height of 32.000000. This error will be logged once per view in violation.
2022-04-08 20:04:07.047 firefox-bin[4373:131846] Warning: Expected min height of view: (<NSButton: 0x1272cb000>) to be less than or equal to 30 but got a height of 32.000000. This error will be logged once per view in violation.
2022-04-08 20:04:07.048 firefox-bin[4373:131846] Warning: Expected min height of view: (<NSButton: 0x1272c7000>) to be less than or equal to 30 but got a height of 32.000000. This error will be logged once per view in violation.
2022-04-08 20:04:07.049 firefox-bin[4373:131846] Warning: Expected min height of view: (<NSButton: 0x1272c9400>) to be less than or equal to 30 but got a height of 32.000000. This error will be logged once per view in violation.
2022-04-08 20:04:07.050 firefox-bin[4373:131846] Warning: Expected min height of view: (<NSButton: 0x1272cd000>) to be less than or equal to 30 but got a height of 32.000000. This error will be logged once per view in violation.
console.warn: SearchSettings: "get: No settings file exists, new profile?" (new NotFoundError("Could not open the file at /var/folders/qv/mx8r2xd1351082qj3zpbx7fc0000gn/T/rust_mozprofilewXLMJL/search.json.mozlz4", (void 0)))
console.error: BackgroundUpdate:
_reasonsToNotScheduleUpdates: Failed to check for Maintenance Service Registry Key: [Exception... "Component returned failure code: 0x80004001 (NS_ERROR_NOT_IMPLEMENTED) [nsIUpdateProcessor.getServiceRegKeyExists]" nsresult: "0x80004001 (NS_ERROR_NOT_IMPLEMENTED)" location: "JS frame :: resource://gre/modules/BackgroundUpdate.jsm :: _reasonsToNotScheduleUpdates :: line 241" data: no]
1649441048110 Marionette INFO Listening on port 53599
1649441048158 RemoteAgent WARN TLS certificate errors will be ignored for this session
JavaScript warning: https://www.amazon.de/ line 2025 > injectedScript, 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://www.amazon.de"
1649441055029 Marionette WARN TimedPromise timed out after 500 ms: stacktrace:
TimedPromise/<@chrome://remote/content/marionette/sync.js:235:19
TimedPromise@chrome://remote/content/marionette/sync.js:220:10
interaction.flushEventLoop@chrome://remote/content/marionette/interaction.js:431:10
webdriverClickElement@chrome://remote/content/marionette/interaction.js:179:31
JavaScript warning: https://www.amazon.de/ap/signin?openid.pape.max_auth_age=0&openid.return_to=https%3A%2F%2Fwww.amazon.de%2F%3Fref_%3Dnav_ya_signin&openid.identity=http%3A%2F%2Fspecs.openid.net%2Fauth%2F2.0%2Fidentifier_select&openid.assoc_handle=deflex&openid.mode=checkid_setup&openid.claimed_id=http%3A%2F%2Fspecs.openid.net%2Fauth%2F2.0%2Fidentifier_select&openid.ns=http%3A%2F%2Fspecs.openid.net%2Fauth%2F2.0& line 756 > injectedScript, 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://www.amazon.de"
console.warn: LoginRecipes: "getRecipes: falling back to a synchronous message for:" "https://www.amazon.de"
JavaScript warning: https://www.amazon.de/ap/signin line 741 > injectedScript, 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://www.amazon.de"
console.warn: LoginRecipes: "getRecipes: falling back to a synchronous message for:" "https://www.amazon.de"
JavaScript error: resource://gre/modules/LoginManagerParent.jsm, line 136: TypeError: gRecipeManager is null
1649441060140 Marionette WARN TimedPromise timed out after 500 ms: stacktrace:
TimedPromise/<@chrome://remote/content/marionette/sync.js:235:19
TimedPromise@chrome://remote/content/marionette/sync.js:220:10
interaction.flushEventLoop@chrome://remote/content/marionette/interaction.js:431:10
webdriverClickElement@chrome://remote/content/marionette/interaction.js:179:31
JavaScript warning: https://www.amazon.de/?ref_=nav_ya_signin& line 2069 > injectedScript, line 1: WEBGL_debug_renderer_info is deprecated in Firefox and will be removed. Please use RENDERER.
1649441106307 geckodriver INFO Listening on 127.0.0.1:53767
1649441107329 mozrunner::runner INFO Running command: "/Applications/Firefox.app/Contents/MacOS/firefox-bin" "--marionette" "-foreground" "-no-remote" "-profile" "/var/folders/qv/mx8r2xd1351082qj3zpbx7fc0000gn/T/rust_mozprofile8ErJwj"
2022-04-08 20:05:07.890 plugin-container[4395:133010] nil host used in call to allowsSpecificHTTPSCertificateForHost
2022-04-08 20:05:07.890 plugin-container[4395:133010] nil host used in call to allowsAnyHTTPSCertificateForHost:
1649441107898 Marionette INFO Marionette enabled
2022-04-08 20:05:07.913 plugin-container[4395:133010] nil host used in call to allowsSpecificHTTPSCertificateForHost
2022-04-08 20:05:07.913 plugin-container[4395:133010] nil host used in call to allowsAnyHTTPSCertificateForHost:
2022-04-08 20:05:07.913 plugin-container[4395:133008] nil host used in call to allowsSpecificHTTPSCertificateForHost
2022-04-08 20:05:07.914 plugin-container[4395:133008] nil host used in call to allowsAnyHTTPSCertificateForHost:
2022-04-08 20:05:08.657 firefox-bin[4394:132928] Warning: Expected min height of view: (<NSButton: 0x12d48dc00>) to be less than or equal to 30 but got a height of 32.000000. This error will be logged once per view in violation.
2022-04-08 20:05:08.657 firefox-bin[4394:132928] Warning: Expected min height of view: (<NSButton: 0x12d710400>) to be less than or equal to 30 but got a height of 32.000000. This error will be logged once per view in violation.
2022-04-08 20:05:08.658 firefox-bin[4394:132928] Warning: Expected min height of view: (<NSButton: 0x12d711000>) to be less than or equal to 30 but got a height of 32.000000. This error will be logged once per view in violation.
2022-04-08 20:05:08.659 firefox-bin[4394:132928] Warning: Expected min height of view: (<NSButton: 0x12d70f400>) to be less than or equal to 30 but got a height of 32.000000. This error will be logged once per view in violation.
2022-04-08 20:05:08.659 firefox-bin[4394:132928] Warning: Expected min height of view: (<NSButton: 0x12d710800>) to be less than or equal to 30 but got a height of 32.000000. This error will be logged once per view in violation.
console.warn: SearchSettings: "get: No settings file exists, new profile?" (new NotFoundError("Could not open the file at /var/folders/qv/mx8r2xd1351082qj3zpbx7fc0000gn/T/rust_mozprofile8ErJwj/search.json.mozlz4", (void 0)))
console.error: BackgroundUpdate:
_reasonsToNotScheduleUpdates: Failed to check for Maintenance Service Registry Key: [Exception... "Component returned failure code: 0x80004001 (NS_ERROR_NOT_IMPLEMENTED) [nsIUpdateProcessor.getServiceRegKeyExists]" nsresult: "0x80004001 (NS_ERROR_NOT_IMPLEMENTED)" location: "JS frame :: resource://gre/modules/BackgroundUpdate.jsm :: _reasonsToNotScheduleUpdates :: line 241" data: no]
1649441109728 Marionette INFO Listening on port 53774
1649441109828 RemoteAgent WARN TLS certificate errors will be ignored for this session
JavaScript warning: https://www.amazon.de/ line 2013 > injectedScript, line 1: WEBGL_debug_renderer_info is deprecated in Firefox and will be removed. Please use RENDERER.
JavaScript warning: https://images-eu.ssl-images-amazon.com/images/I/7175vaFom2L.js?AUIClients/FWCIMAssets, line 289: 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://www.amazon.de"
JavaScript warning: https://www.amazon.de/ap/signin?openid.pape.max_auth_age=0&openid.return_to=https%3A%2F%2Fwww.amazon.de%2F%3Fref_%3Dnav_ya_signin&openid.identity=http%3A%2F%2Fspecs.openid.net%2Fauth%2F2.0%2Fidentifier_select&openid.assoc_handle=deflex&openid.mode=checkid_setup&openid.claimed_id=http%3A%2F%2Fspecs.openid.net%2Fauth%2F2.0%2Fidentifier_select&openid.ns=http%3A%2F%2Fspecs.openid.net%2Fauth%2F2.0& line 756 > injectedScript, 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://www.amazon.de"
console.warn: LoginRecipes: "getRecipes: falling back to a synchronous message for:" "https://www.amazon.de"
JavaScript warning: https://www.amazon.de/ap/signin line 741 > injectedScript, 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://www.amazon.de"
console.warn: LoginRecipes: "getRecipes: falling back to a synchronous message for:" "https://www.amazon.de"
JavaScript error: resource://gre/modules/LoginManagerParent.jsm, line 136: TypeError: gRecipeManager is null
console.warn: LoginRecipes: "getRecipes: falling back to a synchronous message for:" "https://www.amazon.de"
JavaScript error: resource://gre/modules/LoginManagerParent.jsm, line 136: TypeError: gRecipeManager is null
console.warn: LoginRecipes: "getRecipes: falling back to a synchronous message for:" "https://www.amazon.de"
JavaScript error: resource://gre/modules/LoginManagerParent.jsm, line 136: TypeError: gRecipeManager is null
JavaScript warning: https://www.amazon.de/?ref_=nav_ya_signin& line 2002 > injectedScript, line 1: WEBGL_debug_renderer_info is deprecated in Firefox and will be removed. Please use RENDERER.
1649441149506 geckodriver INFO Listening on 127.0.0.1:53931
1649441149516 mozrunner::runner INFO Running command: "/Applications/Firefox.app/Contents/MacOS/firefox-bin" "--marionette" "-foreground" "-no-remote" "-profile" "/var/folders/qv/mx8r2xd1351082qj3zpbx7fc0000gn/T/rust_mozprofile7bSRPz"
2022-04-08 20:05:49.959 plugin-container[4419:133840] nil host used in call to allowsSpecificHTTPSCertificateForHost
2022-04-08 20:05:49.959 plugin-container[4419:133840] nil host used in call to allowsAnyHTTPSCertificateForHost:
2022-04-08 20:05:49.964 plugin-container[4419:133840] nil host used in call to allowsSpecificHTTPSCertificateForHost
2022-04-08 20:05:49.964 plugin-container[4419:133840] nil host used in call to allowsAnyHTTPSCertificateForHost:
2022-04-08 20:05:49.964 plugin-container[4419:133862] nil host used in call to allowsSpecificHTTPSCertificateForHost
2022-04-08 20:05:49.964 plugin-container[4419:133862] nil host used in call to allowsAnyHTTPSCertificateForHost:
1649441149968 Marionette INFO Marionette enabled
2022-04-08 20:05:50.774 firefox-bin[4417:133742] Warning: Expected min height of view: (<NSButton: 0x11f87fc00>) to be less than or equal to 30 but got a height of 32.000000. This error will be logged once per view in violation.
2022-04-08 20:05:50.774 firefox-bin[4417:133742] Warning: Expected min height of view: (<NSButton: 0x126884800>) to be less than or equal to 30 but got a height of 32.000000. This error will be logged once per view in violation.
2022-04-08 20:05:50.775 firefox-bin[4417:133742] Warning: Expected min height of view: (<NSButton: 0x126886400>) to be less than or equal to 30 but got a height of 32.000000. This error will be logged once per view in violation.
2022-04-08 20:05:50.775 firefox-bin[4417:133742] Warning: Expected min height of view: (<NSButton: 0x126889800>) to be less than or equal to 30 but got a height of 32.000000. This error will be logged once per view in violation.
2022-04-08 20:05:50.776 firefox-bin[4417:133742] Warning: Expected min height of view: (<NSButton: 0x12688bc00>) to be less than or equal to 30 but got a height of 32.000000. This error will be logged once per view in violation.
console.warn: SearchSettings: "get: No settings file exists, new profile?" (new NotFoundError("Could not open the file at /var/folders/qv/mx8r2xd1351082qj3zpbx7fc0000gn/T/rust_mozprofile7bSRPz/search.json.mozlz4", (void 0)))
console.error: BackgroundUpdate:
_reasonsToNotScheduleUpdates: Failed to check for Maintenance Service Registry Key: [Exception... "Component returned failure code: 0x80004001 (NS_ERROR_NOT_IMPLEMENTED) [nsIUpdateProcessor.getServiceRegKeyExists]" nsresult: "0x80004001 (NS_ERROR_NOT_IMPLEMENTED)" location: "JS frame :: resource://gre/modules/BackgroundUpdate.jsm :: _reasonsToNotScheduleUpdates :: line 241" data: no]
1649441151802 Marionette INFO Listening on port 53936
1649441151876 RemoteAgent WARN TLS certificate errors will be ignored for this session
JavaScript warning: https://www.amazon.de/ line 2006 > injectedScript, 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://www.amazon.de"
JavaScript warning: https://www.amazon.de/ap/signin?openid.pape.max_auth_age=0&openid.return_to=https%3A%2F%2Fwww.amazon.de%2F%3Fref_%3Dnav_ya_signin&openid.identity=http%3A%2F%2Fspecs.openid.net%2Fauth%2F2.0%2Fidentifier_select&openid.assoc_handle=deflex&openid.mode=checkid_setup&openid.claimed_id=http%3A%2F%2Fspecs.openid.net%2Fauth%2F2.0%2Fidentifier_select&openid.ns=http%3A%2F%2Fspecs.openid.net%2Fauth%2F2.0& line 756 > injectedScript, 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://www.amazon.de"
console.warn: LoginRecipes: "getRecipes: falling back to a synchronous message for:" "https://www.amazon.de"
JavaScript warning: https://www.amazon.de/ap/signin line 741 > injectedScript, 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://www.amazon.de"
console.warn: LoginRecipes: "getRecipes: falling back to a synchronous message for:" "https://www.amazon.de"
JavaScript error: resource://gre/modules/LoginManagerParent.jsm, line 136: TypeError: gRecipeManager is null
console.warn: LoginRecipes: "getRecipes: falling back to a synchronous message for:" "https://www.amazon.de"
JavaScript error: resource://gre/modules/LoginManagerParent.jsm, line 136: TypeError: gRecipeManager is null
console.warn: LoginRecipes: "getRecipes: falling back to a synchronous message for:" "https://www.amazon.de"
JavaScript error: resource://gre/modules/LoginManagerParent.jsm, line 136: TypeError: gRecipeManager is null
JavaScript warning: https://www.amazon.de/?ref_=nav_ya_signin& line 2045 > injectedScript, line 1: WEBGL_debug_renderer_info is deprecated in Firefox and will be removed. Please use RENDERER.
1649441196799 geckodriver INFO Listening on 127.0.0.1:54090
1649441196810 mozrunner::runner INFO Running command: "/Applications/Firefox.app/Contents/MacOS/firefox-bin" "--marionette" "-foreground" "-no-remote" "-profile" "/var/folders/qv/mx8r2xd1351082qj3zpbx7fc0000gn/T/rust_mozprofilei5owVS"
2022-04-08 20:06:37.297 plugin-container[4441:134748] nil host used in call to allowsSpecificHTTPSCertificateForHost
2022-04-08 20:06:37.298 plugin-container[4441:134748] nil host used in call to allowsAnyHTTPSCertificateForHost:
1649441197307 Marionette INFO Marionette enabled
2022-04-08 20:06:37.315 plugin-container[4441:134748] nil host used in call to allowsSpecificHTTPSCertificateForHost
2022-04-08 20:06:37.315 plugin-container[4441:134748] nil host used in call to allowsAnyHTTPSCertificateForHost:
2022-04-08 20:06:37.315 plugin-container[4441:134771] nil host used in call to allowsSpecificHTTPSCertificateForHost
2022-04-08 20:06:37.316 plugin-container[4441:134771] nil host used in call to allowsAnyHTTPSCertificateForHost:
2022-04-08 20:06:37.987 firefox-bin[4439:134662] Warning: Expected min height of view: (<NSButton: 0x11de0f000>) to be less than or equal to 30 but got a height of 32.000000. This error will be logged once per view in violation.
2022-04-08 20:06:37.988 firefox-bin[4439:134662] Warning: Expected min height of view: (<NSButton: 0x11e08a000>) to be less than or equal to 30 but got a height of 32.000000. This error will be logged once per view in violation.
2022-04-08 20:06:37.988 firefox-bin[4439:134662] Warning: Expected min height of view: (<NSButton: 0x11e08a400>) to be less than or equal to 30 but got a height of 32.000000. This error will be logged once per view in violation.
2022-04-08 20:06:37.989 firefox-bin[4439:134662] Warning: Expected min height of view: (<NSButton: 0x11e090400>) to be less than or equal to 30 but got a height of 32.000000. This error will be logged once per view in violation.
2022-04-08 20:06:37.989 firefox-bin[4439:134662] Warning: Expected min height of view: (<NSButton: 0x11e08dc00>) to be less than or equal to 30 but got a height of 32.000000. This error will be logged once per view in violation.
console.warn: SearchSettings: "get: No settings file exists, new profile?" (new NotFoundError("Could not open the file at /var/folders/qv/mx8r2xd1351082qj3zpbx7fc0000gn/T/rust_mozprofilei5owVS/search.json.mozlz4", (void 0)))
console.error: BackgroundUpdate:
_reasonsToNotScheduleUpdates: Failed to check for Maintenance Service Registry Key: [Exception... "Component returned failure code: 0x80004001 (NS_ERROR_NOT_IMPLEMENTED) [nsIUpdateProcessor.getServiceRegKeyExists]" nsresult: "0x80004001 (NS_ERROR_NOT_IMPLEMENTED)" location: "JS frame :: resource://gre/modules/BackgroundUpdate.jsm :: _reasonsToNotScheduleUpdates :: line 241" data: no]
1649441199143 Marionette INFO Listening on port 54095
1649441199192 RemoteAgent WARN TLS certificate errors will be ignored for this session
JavaScript warning: https://www.amazon.de/ line 2034 > injectedScript, line 1: WEBGL_debug_renderer_info is deprecated in Firefox and will be removed. Please use RENDERER.
JavaScript warning: https://images-eu.ssl-images-amazon.com/images/I/7175vaFom2L.js?AUIClients/FWCIMAssets, line 289: 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://www.amazon.de"
JavaScript warning: https://www.amazon.de/ap/signin?openid.pape.max_auth_age=0&openid.return_to=https%3A%2F%2Fwww.amazon.de%2F%3Fref_%3Dnav_ya_signin&openid.identity=http%3A%2F%2Fspecs.openid.net%2Fauth%2F2.0%2Fidentifier_select&openid.assoc_handle=deflex&openid.mode=checkid_setup&openid.claimed_id=http%3A%2F%2Fspecs.openid.net%2Fauth%2F2.0%2Fidentifier_select&openid.ns=http%3A%2F%2Fspecs.openid.net%2Fauth%2F2.0& line 756 > injectedScript, line 1: WEBGL_debug_renderer_info is deprecated in Firefox and will be removed. Please use RENDERER.
###!!! [Child][PContentChild] Error: RunMessage(msgname=PContent::Reply_DiscardBrowsingContext) Channel closing: too late to send/recv, messages will be lost
console.warn: LoginRecipes: "getRecipes: falling back to a synchronous message for:" "https://www.amazon.de"
console.warn: LoginRecipes: "getRecipes: falling back to a synchronous message for:" "https://www.amazon.de"
JavaScript warning: https://www.amazon.de/ap/signin line 741 > injectedScript, 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://www.amazon.de"
console.warn: LoginRecipes: "getRecipes: falling back to a synchronous message for:" "https://www.amazon.de"
JavaScript error: resource://gre/modules/LoginManagerParent.jsm, line 136: TypeError: gRecipeManager is null
console.warn: LoginRecipes: "getRecipes: falling back to a synchronous message for:" "https://www.amazon.de"
JavaScript error: resource://gre/modules/LoginManagerParent.jsm, line 136: TypeError: gRecipeManager is null
console.warn: LoginRecipes: "getRecipes: falling back to a synchronous message for:" "https://www.amazon.de"
JavaScript error: resource://gre/modules/LoginManagerParent.jsm, line 136: TypeError: gRecipeManager is null
JavaScript warning: https://www.amazon.de/?ref_=nav_ya_signin& line 1997 > injectedScript, line 1: WEBGL_debug_renderer_info is deprecated in Firefox and will be removed. Please use RENDERER.
JavaScript warning: https://images-eu.ssl-images-amazon.com/images/I/7175vaFom2L.js?AUIClients/FWCIMAssets, line 289: WEBGL_debug_renderer_info is deprecated in Firefox and will be removed. Please use RENDERER.
1649441259125 geckodriver INFO Listening on 127.0.0.1:54251
1649441259134 mozrunner::runner INFO Running command: "/Applications/Firefox.app/Contents/MacOS/firefox-bin" "--marionette" "-foreground" "-no-remote" "-profile" "/var/folders/qv/mx8r2xd1351082qj3zpbx7fc0000gn/T/rust_mozprofileyZHFXl"
2022-04-08 20:07:39.717 plugin-container[4470:135762] nil host used in call to allowsSpecificHTTPSCertificateForHost
2022-04-08 20:07:39.717 plugin-container[4470:135762] nil host used in call to allowsAnyHTTPSCertificateForHost:
2022-04-08 20:07:39.725 plugin-container[4470:135762] nil host used in call to allowsSpecificHTTPSCertificateForHost
2022-04-08 20:07:39.725 plugin-container[4470:135762] nil host used in call to allowsAnyHTTPSCertificateForHost:
2022-04-08 20:07:39.725 plugin-container[4470:135767] nil host used in call to allowsSpecificHTTPSCertificateForHost
2022-04-08 20:07:39.725 plugin-container[4470:135767] nil host used in call to allowsAnyHTTPSCertificateForHost:
1649441259731 Marionette INFO Marionette enabled
2022-04-08 20:07:40.476 firefox-bin[4467:135665] Warning: Expected min height of view: (<NSButton: 0x121b89000>) to be less than or equal to 30 but got a height of 32.000000. This error will be logged once per view in violation.
2022-04-08 20:07:40.476 firefox-bin[4467:135665] Warning: Expected min height of view: (<NSButton: 0x121d41800>) to be less than or equal to 30 but got a height of 32.000000. This error will be logged once per view in violation.
2022-04-08 20:07:40.477 firefox-bin[4467:135665] Warning: Expected min height of view: (<NSButton: 0x121d40000>) to be less than or equal to 30 but got a height of 32.000000. This error will be logged once per view in violation.
2022-04-08 20:07:40.478 firefox-bin[4467:135665] Warning: Expected min height of view: (<NSButton: 0x121d42400>) to be less than or equal to 30 but got a height of 32.000000. This error will be logged once per view in violation.
2022-04-08 20:07:40.478 firefox-bin[4467:135665] Warning: Expected min height of view: (<NSButton: 0x121d41c00>) to be less than or equal to 30 but got a height of 32.000000. This error will be logged once per view in violation.
console.warn: SearchSettings: "get: No settings file exists, new profile?" (new NotFoundError("Could not open the file at /var/folders/qv/mx8r2xd1351082qj3zpbx7fc0000gn/T/rust_mozprofileyZHFXl/search.json.mozlz4", (void 0)))
console.error: BackgroundUpdate:
_reasonsToNotScheduleUpdates: Failed to check for Maintenance Service Registry Key: [Exception... "Component returned failure code: 0x80004001 (NS_ERROR_NOT_IMPLEMENTED) [nsIUpdateProcessor.getServiceRegKeyExists]" nsresult: "0x80004001 (NS_ERROR_NOT_IMPLEMENTED)" location: "JS frame :: resource://gre/modules/BackgroundUpdate.jsm :: _reasonsToNotScheduleUpdates :: line 241" data: no]
1649441261458 Marionette INFO Listening on port 54256
1649441261520 RemoteAgent WARN TLS certificate errors will be ignored for this session
JavaScript warning: https://www.amazon.de/ line 2032 > injectedScript, line 1: WEBGL_debug_renderer_info is deprecated in Firefox and will be removed. Please use RENDERER.
JavaScript warning: https://images-eu.ssl-images-amazon.com/images/I/7175vaFom2L.js?AUIClients/FWCIMAssets, line 289: WEBGL_debug_renderer_info is deprecated in Firefox and will be removed. Please use RENDERER.