-
Notifications
You must be signed in to change notification settings - Fork 1
/
Copy pathgeckodriver.log
2635 lines (2073 loc) · 209 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
1595300099719 mozrunner::runner INFO Running command: "/Applications/Firefox.app/Contents/MacOS/firefox-bin" "-marionette" "--width=800" "--height=825" "-foreground" "-no-remote" "-profile" "/var/folders/pl/8hb0pb411bxbncqgjzgdz8jhtd21c2/T/rust_mozprofileojLyRm"
1595300102827 Marionette INFO Listening on port 57682
1595300102896 Marionette WARN TLS certificate errors will be ignored for this session
[GFX1-]: Receive IPC close with reason=AbnormalShutdown
Exiting due to channel error.
[GFX1-]: Receive IPC close with reason=AbnormalShutdown
Exiting due to channel error.
1595302424727 mozrunner::runner INFO Running command: "/Applications/Firefox.app/Contents/MacOS/firefox-bin" "-marionette" "--width=800" "--height=825" "-foreground" "-no-remote" "-profile" "/var/folders/pl/8hb0pb411bxbncqgjzgdz8jhtd21c2/T/rust_mozprofileKA8Cse"
1595302427768 Marionette INFO Listening on port 58477
1595302427787 Marionette WARN TLS certificate errors will be ignored for this session
JavaScript error: https://connect.facebook.net/en_US/sdk.js?hash=24909b2681f43dfede3297543f813d96, line 62: uncaught exception: Error: invalid version specified
_RegisterApplication(), FAILED TO establish the default connection to the WindowServer, _CGSDefaultConnection() is NULL.
[GFX1-]: Receive IPC close with reason=AbnormalShutdown
Exiting due to channel error.
[GFX1-]: Receive IPC close with reason=AbnormalShutdown
Exiting due to channel error.
[GFX1-]: Receive IPC close with reason=AbnormalShutdown
Exiting due to channel error.
1595302934274 mozrunner::runner INFO Running command: "/Applications/Firefox.app/Contents/MacOS/firefox-bin" "-marionette" "--width=800" "--height=825" "-foreground" "-no-remote" "-profile" "/var/folders/pl/8hb0pb411bxbncqgjzgdz8jhtd21c2/T/rust_mozprofileEpq8ud"
1595302936978 Marionette INFO Listening on port 58648
1595302937022 Marionette WARN TLS certificate errors will be ignored for this session
JavaScript error: https://connect.facebook.net/en_US/sdk.js?hash=24909b2681f43dfede3297543f813d96, line 62: uncaught exception: Error: invalid version specified
_RegisterApplication(), FAILED TO establish the default connection to the WindowServer, _CGSDefaultConnection() is NULL.
Exiting due to channel error.
Exiting due to channel error.
Exiting due to channel error.
1595340715143 mozrunner::runner INFO Running command: "/Applications/Firefox.app/Contents/MacOS/firefox-bin" "-marionette" "--width=800" "--height=825" "-foreground" "-no-remote" "-profile" "/var/folders/pl/8hb0pb411bxbncqgjzgdz8jhtd21c2/T/rust_mozprofileG95yrl"
1595340717814 Marionette INFO Listening on port 61468
1595340717907 Marionette WARN TLS certificate errors will be ignored for this session
JavaScript error: https://connect.facebook.net/en_US/sdk.js?hash=6f31beb5f809ddc06359c6f7b87f0f24, line 62: uncaught exception: Error: invalid version specified
_RegisterApplication(), FAILED TO establish the default connection to the WindowServer, _CGSDefaultConnection() is NULL.
[GFX1-]: Receive IPC close with reason=AbnormalShutdown
Exiting due to channel error.
[GFX1-]: Receive IPC close with reason=AbnormalShutdown
Exiting due to channel error.
[GFX1-]: Receive IPC close with reason=AbnormalShutdown
Exiting due to channel error.
1595366310229 mozrunner::runner INFO Running command: "/Applications/Firefox.app/Contents/MacOS/firefox-bin" "-marionette" "--width=800" "--height=825" "-foreground" "-no-remote" "-profile" "/var/folders/pl/8hb0pb411bxbncqgjzgdz8jhtd21c2/T/rust_mozprofileEVxaXw"
1595366312856 Marionette INFO Listening on port 51290
1595366312880 Marionette WARN TLS certificate errors will be ignored for this session
JavaScript error: https://connect.facebook.net/en_US/sdk.js?hash=5b5a41c280c33366b3fb60e00679e524, line 62: uncaught exception: Error: invalid version specified
_RegisterApplication(), FAILED TO establish the default connection to the WindowServer, _CGSDefaultConnection() is NULL.
JavaScript warning: https://solutions.lenovo.com/assets/_combinedfiles/015971a053299b4475f1f82375149e427f02ad9c-ebe6909.js, line 3: Script terminated by timeout at:
f</e.fn.extend@https://solutions.lenovo.com/assets/_combinedfiles/015971a053299b4475f1f82375149e427f02ad9c-ebe6909.js:3:9086
simulate@https://solutions.lenovo.com/assets/_combinedfiles/015971a053299b4475f1f82375149e427f02ad9c-ebe6909.js:3:38953
e@https://solutions.lenovo.com/assets/_combinedfiles/015971a053299b4475f1f82375149e427f02ad9c-ebe6909.js:3:42049
nrWrapper@https://solutions.lenovo.com/pc-solutions/workstations?cid=us:display:btxhf7&dclid=CJTs4L7L3-oCFZUvAQodoCMBAg#workstations-for-data-science:9:13518
JavaScript error: https://www.lenovo.com/_ui/desktop/common/ISS_Static/WW/site/scripts/galleria/galleria-1.2.9.js, line 3415: Error: Fatal error: Theme CSS could not load after 20 sec. Please download the latest theme at http://galleria.io/customer/.
Exiting due to channel error.
[GFX1-]: Receive IPC close with reason=AbnormalShutdown
Exiting due to channel error.
Exiting due to channel error.
1595454102422 mozrunner::runner INFO Running command: "/Applications/Firefox.app/Contents/MacOS/firefox-bin" "-marionette" "--width=800" "--height=825" "-foreground" "-no-remote" "-profile" "/var/folders/pl/8hb0pb411bxbncqgjzgdz8jhtd21c2/T/rust_mozprofile5ISrMg"
1595454105068 Marionette INFO Listening on port 62412
1595454105073 Marionette WARN TLS certificate errors will be ignored for this session
JavaScript error: https://connect.facebook.net/en_US/sdk.js?hash=414d1c845d0ecb50dc7db7f4f143e6b9, line 62: uncaught exception: Error: invalid version specified
_RegisterApplication(), FAILED TO establish the default connection to the WindowServer, _CGSDefaultConnection() is NULL.
Exiting due to channel error.
Exiting due to channel error.
[GFX1-]: Receive IPC close with reason=AbnormalShutdown
Exiting due to channel error.
1595454241511 mozrunner::runner INFO Running command: "/Applications/Firefox.app/Contents/MacOS/firefox-bin" "-marionette" "--width=800" "--height=825" "-foreground" "-no-remote" "-profile" "/var/folders/pl/8hb0pb411bxbncqgjzgdz8jhtd21c2/T/rust_mozprofile3wziuN"
1595454243701 Marionette INFO Listening on port 63217
1595454243752 Marionette WARN TLS certificate errors will be ignored for this session
JavaScript error: https://connect.facebook.net/en_US/sdk.js?hash=414d1c845d0ecb50dc7db7f4f143e6b9, line 62: uncaught exception: Error: invalid version specified
_RegisterApplication(), FAILED TO establish the default connection to the WindowServer, _CGSDefaultConnection() is NULL.
1595512774280 mozrunner::runner INFO Running command: "/Applications/Firefox.app/Contents/MacOS/firefox-bin" "-marionette" "--width=800" "--height=825" "-foreground" "-no-remote" "-profile" "/var/folders/pl/8hb0pb411bxbncqgjzgdz8jhtd21c2/T/rust_mozprofiletltR82"
1595512776835 Marionette INFO Listening on port 50982
1595512776924 Marionette WARN TLS certificate errors will be ignored for this session
JavaScript error: https://connect.facebook.net/en_US/sdk.js?hash=ae06161bc5a22083472c934b02e6683e, line 62: uncaught exception: Error: invalid version specified
_RegisterApplication(), FAILED TO establish the default connection to the WindowServer, _CGSDefaultConnection() is NULL.
Exiting due to channel error.
[GFX1-]: Receive IPC close with reason=AbnormalShutdown
Exiting due to channel error.
[GFX1-]: Receive IPC close with reason=AbnormalShutdown
Exiting due to channel error.
1595514046686 mozrunner::runner INFO Running command: "/Applications/Firefox.app/Contents/MacOS/firefox-bin" "-marionette" "--width=800" "--height=825" "-foreground" "-no-remote" "-profile" "/var/folders/pl/8hb0pb411bxbncqgjzgdz8jhtd21c2/T/rust_mozprofilepAkYke"
1595514049677 Marionette INFO Listening on port 51278
1595514049749 Marionette WARN TLS certificate errors will be ignored for this session
JavaScript error: https://connect.facebook.net/en_US/sdk.js?hash=ae06161bc5a22083472c934b02e6683e, line 62: uncaught exception: Error: invalid version specified
_RegisterApplication(), FAILED TO establish the default connection to the WindowServer, _CGSDefaultConnection() is NULL.
Exiting due to channel error.
[GFX1-]: Receive IPC close with reason=AbnormalShutdown
Exiting due to channel error.
[GFX1-]: Receive IPC close with reason=AbnormalShutdown
Exiting due to channel error.
1595535787035 Marionette INFO Stopped listening on port 63217
1595542188859 mozrunner::runner INFO Running command: "/Applications/Firefox.app/Contents/MacOS/firefox-bin" "-marionette" "--width=800" "--height=825" "-foreground" "-no-remote" "-profile" "/var/folders/pl/8hb0pb411bxbncqgjzgdz8jhtd21c2/T/rust_mozprofile77xkJx"
1595542191416 Marionette INFO Listening on port 57909
1595542191437 Marionette WARN TLS certificate errors will be ignored for this session
JavaScript error: https://connect.facebook.net/en_US/sdk.js?hash=db04b60e0f781fb52ad2169d103624ca, line 62: uncaught exception: Error: invalid version specified
_RegisterApplication(), FAILED TO establish the default connection to the WindowServer, _CGSDefaultConnection() is NULL.
1595557089328 Marionette INFO Stopped listening on port 57909
1595557962992 mozrunner::runner INFO Running command: "/Applications/Firefox.app/Contents/MacOS/firefox-bin" "-marionette" "--width=800" "--height=825" "-foreground" "-no-remote" "-profile" "/var/folders/pl/8hb0pb411bxbncqgjzgdz8jhtd21c2/T/rust_mozprofilezn7B7K"
1595557965867 Marionette INFO Listening on port 59650
1595557965959 Marionette WARN TLS certificate errors will be ignored for this session
JavaScript error: https://connect.facebook.net/en_US/sdk.js?hash=cc0be656ef7e7d8a91c05a67a314d15a, line 62: uncaught exception: Error: invalid version specified
_RegisterApplication(), FAILED TO establish the default connection to the WindowServer, _CGSDefaultConnection() is NULL.
1595597354080 mozrunner::runner INFO Running command: "/Applications/Firefox.app/Contents/MacOS/firefox-bin" "-marionette" "--width=800" "--height=825" "-foreground" "-no-remote" "-profile" "/var/folders/pl/8hb0pb411bxbncqgjzgdz8jhtd21c2/T/rust_mozprofile16AMGC"
1595597357065 Marionette INFO Listening on port 62318
1595597357144 Marionette WARN TLS certificate errors will be ignored for this session
JavaScript error: https://connect.facebook.net/en_US/sdk.js?hash=2970a545a9251d0596cb00cd7f05a149, line 62: uncaught exception: Error: invalid version specified
_RegisterApplication(), FAILED TO establish the default connection to the WindowServer, _CGSDefaultConnection() is NULL.
[GFX1]: [Tiling:Client] Failed to allocate a TextureClient
[GFX1]: ValidateTile failed
[GFX1]: [Tiling:Client] Failed to allocate a TextureClient
[GFX1]: ValidateTile failed
[GFX1]: [Tiling:Client] Failed to allocate a TextureClient
[GFX1]: [Tiling:Client] Failed to allocate a TextureClient
Exiting due to channel error.
[GFX1-]: Receive IPC close with reason=AbnormalShutdown
Exiting due to channel error.
Exiting due to channel error.
1595597579891 mozrunner::runner INFO Running command: "/Applications/Firefox.app/Contents/MacOS/firefox-bin" "-marionette" "--width=800" "--height=825" "-foreground" "-no-remote" "-profile" "/var/folders/pl/8hb0pb411bxbncqgjzgdz8jhtd21c2/T/rust_mozprofileBHf8rj"
1595597582802 Marionette INFO Listening on port 62460
1595597582871 Marionette WARN TLS certificate errors will be ignored for this session
JavaScript error: https://connect.facebook.net/en_US/sdk.js?hash=2970a545a9251d0596cb00cd7f05a149, line 62: uncaught exception: Error: invalid version specified
_RegisterApplication(), FAILED TO establish the default connection to the WindowServer, _CGSDefaultConnection() is NULL.
Exiting due to channel error.
Exiting due to channel error.
[GFX1-]: Receive IPC close with reason=AbnormalShutdown
Exiting due to channel error.
1595600454127 Marionette INFO Stopped listening on port 59650
1595616723513 mozrunner::runner INFO Running command: "/Applications/Firefox.app/Contents/MacOS/firefox-bin" "-marionette" "--width=800" "--height=825" "-foreground" "-no-remote" "-profile" "/var/folders/pl/8hb0pb411bxbncqgjzgdz8jhtd21c2/T/rust_mozprofilexbQBQk"
1595616727156 Marionette INFO Listening on port 52221
1595616727198 Marionette WARN TLS certificate errors will be ignored for this session
JavaScript error: https://connect.facebook.net/en_US/sdk.js?hash=9634157d7ec49c39055aeed9ef9f1142, line 62: uncaught exception: Error: invalid version specified
_RegisterApplication(), FAILED TO establish the default connection to the WindowServer, _CGSDefaultConnection() is NULL.
[GFX1-]: Receive IPC close with reason=AbnormalShutdown
Exiting due to channel error.
Exiting due to channel error.
Exiting due to channel error.
1595702025706 mozrunner::runner INFO Running command: "/Applications/Firefox.app/Contents/MacOS/firefox-bin" "-marionette" "--width=800" "--height=825" "-foreground" "-no-remote" "-profile" "/var/folders/pl/8hb0pb411bxbncqgjzgdz8jhtd21c2/T/rust_mozprofile5pMu8e"
1595702032325 Marionette INFO Listening on port 60939
1595702032374 Marionette WARN TLS certificate errors will be ignored for this session
1595702069217 Marionette INFO Stopped listening on port 60939
1595702136175 mozrunner::runner INFO Running command: "/Applications/Firefox.app/Contents/MacOS/firefox-bin" "-marionette" "--width=800" "--height=825" "-foreground" "-no-remote" "-profile" "/var/folders/pl/8hb0pb411bxbncqgjzgdz8jhtd21c2/T/rust_mozprofile8ih8hV"
1595702139247 Marionette INFO Listening on port 61048
1595702139346 Marionette WARN TLS certificate errors will be ignored for this session
JavaScript error: https://connect.facebook.net/en_US/sdk.js?hash=d36678d9098311eae6655d6f5c111b22, line 62: uncaught exception: Error: invalid version specified
_RegisterApplication(), FAILED TO establish the default connection to the WindowServer, _CGSDefaultConnection() is NULL.
1595801433415 mozrunner::runner INFO Running command: "/Applications/Firefox.app/Contents/MacOS/firefox-bin" "-marionette" "--width=800" "--height=825" "-foreground" "-no-remote" "-profile" "/var/folders/pl/8hb0pb411bxbncqgjzgdz8jhtd21c2/T/rust_mozprofileVxOJgq"
1595801436778 Marionette INFO Listening on port 50491
1595801436882 Marionette WARN TLS certificate errors will be ignored for this session
JavaScript error: https://connect.facebook.net/en_US/sdk.js?hash=9f5761e32075af042aecb7d35b56d0a7, line 62: uncaught exception: Error: invalid version specified
_RegisterApplication(), FAILED TO establish the default connection to the WindowServer, _CGSDefaultConnection() is NULL.
Exiting due to channel error.
[GFX1-]: Receive IPC close with reason=AbnormalShutdown
Exiting due to channel error.
[GFX1-]: Receive IPC close with reason=AbnormalShutdown
Exiting due to channel error.
1595801666345 mozrunner::runner INFO Running command: "/Applications/Firefox.app/Contents/MacOS/firefox-bin" "-marionette" "--width=800" "--height=825" "-foreground" "-no-remote" "-profile" "/var/folders/pl/8hb0pb411bxbncqgjzgdz8jhtd21c2/T/rust_mozprofilePReGGn"
1595801668930 Marionette INFO Listening on port 50646
1595801668997 Marionette WARN TLS certificate errors will be ignored for this session
JavaScript error: https://connect.facebook.net/en_US/sdk.js?hash=9f5761e32075af042aecb7d35b56d0a7, line 62: uncaught exception: Error: invalid version specified
_RegisterApplication(), FAILED TO establish the default connection to the WindowServer, _CGSDefaultConnection() is NULL.
1595803116543 mozrunner::runner INFO Running command: "/Applications/Firefox.app/Contents/MacOS/firefox-bin" "-marionette" "--width=800" "--height=825" "-foreground" "-no-remote" "-profile" "/var/folders/pl/8hb0pb411bxbncqgjzgdz8jhtd21c2/T/rust_mozprofileG3m38B"
1595803119612 Marionette INFO Listening on port 50920
1595803119621 Marionette WARN TLS certificate errors will be ignored for this session
JavaScript error: https://connect.facebook.net/en_US/sdk.js?hash=9f5761e32075af042aecb7d35b56d0a7, line 62: uncaught exception: Error: invalid version specified
_RegisterApplication(), FAILED TO establish the default connection to the WindowServer, _CGSDefaultConnection() is NULL.
Exiting due to channel error.
Exiting due to channel error.
Exiting due to channel error.
1595806647756 mozrunner::runner INFO Running command: "/Applications/Firefox.app/Contents/MacOS/firefox-bin" "-marionette" "--width=800" "--height=825" "-foreground" "-no-remote" "-profile" "/var/folders/pl/8hb0pb411bxbncqgjzgdz8jhtd21c2/T/rust_mozprofilelghhka"
1595806650525 Marionette INFO Listening on port 51251
1595806650608 Marionette WARN TLS certificate errors will be ignored for this session
JavaScript error: https://connect.facebook.net/en_US/sdk.js?hash=b90daaad65cc54554ae737be2adf2050, line 62: uncaught exception: Error: invalid version specified
_RegisterApplication(), FAILED TO establish the default connection to the WindowServer, _CGSDefaultConnection() is NULL.
Exiting due to channel error.
[GFX1-]: Receive IPC close with reason=AbnormalShutdown
Exiting due to channel error.
[GFX1-]: Receive IPC close with reason=AbnormalShutdown
Exiting due to channel error.
1595817024641 Marionette INFO Stopped listening on port 61048
1595817027034 Marionette INFO Stopped listening on port 50646
1595819379106 mozrunner::runner INFO Running command: "/Applications/Firefox.app/Contents/MacOS/firefox-bin" "-marionette" "--width=800" "--height=825" "-foreground" "-no-remote" "-profile" "/var/folders/pl/8hb0pb411bxbncqgjzgdz8jhtd21c2/T/rust_mozprofile8Vq1VH"
1595819381821 Marionette INFO Listening on port 52690
1595819381867 Marionette WARN TLS certificate errors will be ignored for this session
[GFX1-]: Receive IPC close with reason=AbnormalShutdown
Exiting due to channel error.
Exiting due to channel error.
[GFX1-]: Receive IPC close with reason=AbnormalShutdown
Exiting due to channel error.
1595819406985 mozrunner::runner INFO Running command: "/Applications/Firefox.app/Contents/MacOS/firefox-bin" "-marionette" "--width=800" "--height=825" "-foreground" "-no-remote" "-profile" "/var/folders/pl/8hb0pb411bxbncqgjzgdz8jhtd21c2/T/rust_mozprofile5tjK90"
1595819409314 Marionette INFO Listening on port 52761
1595819409333 Marionette WARN TLS certificate errors will be ignored for this session
JavaScript error: https://connect.facebook.net/en_US/sdk.js?hash=fcc9c416cd13dd496f366d53c0703fc1, line 62: uncaught exception: Error: invalid version specified
[GFX1-]: Receive IPC close with reason=AbnormalShutdown
Exiting due to channel error.
[GFX1-]: Receive IPC close with reason=AbnormalShutdown
[Child 69212, Chrome_ChildThread] WARNING: pipe error: Socket is not connected: file /builds/worker/checkouts/gecko/ipc/chromium/src/chrome/common/ipc_channel_posix.cc, line 735
Exiting due to channel error.
[GFX1-]: Receive IPC close with reason=AbnormalShutdown
Exiting due to channel error.
1595819649042 mozrunner::runner INFO Running command: "/Applications/Firefox.app/Contents/MacOS/firefox-bin" "-marionette" "--width=800" "--height=825" "-foreground" "-no-remote" "-profile" "/var/folders/pl/8hb0pb411bxbncqgjzgdz8jhtd21c2/T/rust_mozprofilekU4TtL"
1595819651524 Marionette INFO Listening on port 52955
1595819651586 Marionette WARN TLS certificate errors will be ignored for this session
JavaScript error: https://connect.facebook.net/en_US/sdk.js?hash=fcc9c416cd13dd496f366d53c0703fc1, line 62: uncaught exception: Error: invalid version specified
_RegisterApplication(), FAILED TO establish the default connection to the WindowServer, _CGSDefaultConnection() is NULL.
1595861056215 Marionette INFO Stopped listening on port 52955
1595886697917 mozrunner::runner INFO Running command: "/Applications/Firefox.app/Contents/MacOS/firefox-bin" "-marionette" "--width=800" "--height=825" "-foreground" "-no-remote" "-profile" "/var/folders/pl/8hb0pb411bxbncqgjzgdz8jhtd21c2/T/rust_mozprofileVzlE98"
1595886700880 Marionette INFO Listening on port 60936
1595886700977 Marionette WARN TLS certificate errors will be ignored for this session
JavaScript error: https://connect.facebook.net/en_US/sdk.js?hash=1fbd06be9382767224d0256cfb699a4a, line 62: uncaught exception: Error: invalid version specified
_RegisterApplication(), FAILED TO establish the default connection to the WindowServer, _CGSDefaultConnection() is NULL.
Exiting due to channel error.
[GFX1-]: Receive IPC close with reason=AbnormalShutdown
Exiting due to channel error.
1595989928905 mozrunner::runner INFO Running command: "/Applications/Firefox.app/Contents/MacOS/firefox-bin" "-marionette" "--width=800" "--height=825" "-foreground" "-no-remote" "-profile" "/var/folders/pl/8hb0pb411bxbncqgjzgdz8jhtd21c2/T/rust_mozprofilepo8m7q"
1595989937806 Marionette INFO Listening on port 58694
1595989937866 Marionette WARN TLS certificate errors will be ignored for this session
JavaScript error: https://connect.facebook.net/en_US/sdk.js?hash=56fa2caf3070974e2698803157bf8098, line 62: uncaught exception: Error: invalid version specified
_RegisterApplication(), FAILED TO establish the default connection to the WindowServer, _CGSDefaultConnection() is NULL.
[GFX1-]: Receive IPC close with reason=AbnormalShutdown
Exiting due to channel error.
Exiting due to channel error.
Exiting due to channel error.
1596337050857 mozrunner::runner INFO Running command: "/Applications/Firefox.app/Contents/MacOS/firefox-bin" "-marionette" "--width=800" "--height=825" "-foreground" "-no-remote" "-profile" "/var/folders/pl/8hb0pb411bxbncqgjzgdz8jhtd21c2/T/rust_mozprofileg7QeP2"
console.error: SearchCache: "_readCacheFile: Error reading cache file:" (new Error("", "(unknown module)"))
1596337054545 Marionette INFO Listening on port 56058
1596337076608 mozrunner::runner INFO Running command: "/Applications/Firefox.app/Contents/MacOS/firefox-bin" "-marionette" "--width=800" "--height=825" "-foreground" "-no-remote" "-profile" "/var/folders/pl/8hb0pb411bxbncqgjzgdz8jhtd21c2/T/rust_mozprofilezn8ZEB"
console.error: SearchCache: "_readCacheFile: Error reading cache file:" (new Error("", "(unknown module)"))
1596337079189 Marionette INFO Listening on port 56103
1596337079253 Marionette WARN TLS certificate errors will be ignored for this session
JavaScript error: https://connect.facebook.net/en_US/sdk.js?hash=0a6cf22d60ad2e22bef6b2f454210162, line 59: uncaught exception: Error: invalid version specified
_RegisterApplication(), FAILED TO establish the default connection to the WindowServer, _CGSDefaultConnection() is NULL.
1596337189582 mozrunner::runner INFO Running command: "/Applications/Firefox.app/Contents/MacOS/firefox-bin" "-marionette" "--width=800" "--height=825" "-foreground" "-no-remote" "-profile" "/var/folders/pl/8hb0pb411bxbncqgjzgdz8jhtd21c2/T/rust_mozprofilel99p3C"
console.error: SearchCache: "_readCacheFile: Error reading cache file:" (new Error("", "(unknown module)"))
1596337192181 Marionette INFO Listening on port 56270
1596337192241 Marionette WARN TLS certificate errors will be ignored for this session
JavaScript error: https://connect.facebook.net/en_US/sdk.js?hash=0a6cf22d60ad2e22bef6b2f454210162, line 59: uncaught exception: Error: invalid version specified
console.error: Region.jsm: "Error fetching region" (new AbortError("The operation was aborted. ", (void 0), 636))
console.error: Region.jsm: "Failed to fetch region" (new Error("NO_RESULT", "resource://gre/modules/Region.jsm", 343))
_RegisterApplication(), FAILED TO establish the default connection to the WindowServer, _CGSDefaultConnection() is NULL.
Exiting due to channel error.
Exiting due to channel error.
[GFX1-]: Receive IPC close with reason=AbnormalShutdown
Exiting due to channel error.
1596337328588 mozrunner::runner INFO Running command: "/Applications/Firefox.app/Contents/MacOS/firefox-bin" "-marionette" "--width=800" "--height=825" "-foreground" "-no-remote" "-profile" "/var/folders/pl/8hb0pb411bxbncqgjzgdz8jhtd21c2/T/rust_mozprofileiK6M6N"
console.error: SearchCache: "_readCacheFile: Error reading cache file:" (new Error("", "(unknown module)"))
1596337331217 Marionette INFO Listening on port 56409
1596337331247 Marionette WARN TLS certificate errors will be ignored for this session
Exiting due to channel error.
[GFX1-]: Receive IPC close with reason=AbnormalShutdown
[GFX1-]: Receive IPC close with reason=AbnormalShutdown
Exiting due to channel error.
Exiting due to channel error.
JavaScript warning: https://www.google.com/search?client=firefox-b-1-d&q=%27http%3A%2F%2Fwww.trex-game.skipser.com%2F%27, line 11: Script terminated by timeout at:
Q@https://www.google.com/search?client=firefox-b-1-d&q=%27http%3A%2F%2Fwww.trex-game.skipser.com%2F%27:11:991
p@https://www.google.com/search?client=firefox-b-1-d&q=%27http%3A%2F%2Fwww.trex-game.skipser.com%2F%27:9:1340
JavaScript error: https://connect.facebook.net/en_US/sdk.js?hash=0a6cf22d60ad2e22bef6b2f454210162, line 59: uncaught exception: Error: invalid version specified
_RegisterApplication(), FAILED TO establish the default connection to the WindowServer, _CGSDefaultConnection() is NULL.
1596337433019 mozrunner::runner INFO Running command: "/Applications/Firefox.app/Contents/MacOS/firefox-bin" "-marionette" "--width=800" "--height=825" "-foreground" "-no-remote" "-profile" "/var/folders/pl/8hb0pb411bxbncqgjzgdz8jhtd21c2/T/rust_mozprofileYyD0KK"
console.error: SearchCache: "_readCacheFile: Error reading cache file:" (new Error("", "(unknown module)"))
1596337435475 Marionette INFO Listening on port 56560
1596337435482 Marionette WARN TLS certificate errors will be ignored for this session
JavaScript error: https://connect.facebook.net/en_US/sdk.js?hash=0a6cf22d60ad2e22bef6b2f454210162, line 59: uncaught exception: Error: invalid version specified
_RegisterApplication(), FAILED TO establish the default connection to the WindowServer, _CGSDefaultConnection() is NULL.
[GFX1]: [Tiling:Client] Failed to allocate a TextureClient
[GFX1]: ValidateTile failed
[GFX1]: [Tiling:Client] Failed to allocate a TextureClient
[GFX1]: ValidateTile failed
[GFX1]: [Tiling:Client] Failed to allocate a TextureClient
[GFX1]: [Tiling:Client] Failed to allocate a TextureClient
[GFX1]: [Tiling:Client] Failed to allocate a TextureClient
[GFX1]: [Tiling:Client] Failed to allocate a TextureClient
[GFX1]: [Tiling:Client] Failed to allocate a TextureClient
[GFX1]: [Tiling:Client] Failed to allocate a TextureClient
[GFX1]: [Tiling:Client] Failed to allocate a TextureClient
[GFX1]: [Tiling:Client] Failed to allocate a TextureClient
[GFX1]: [Tiling:Client] Failed to allocate a TextureClient
[GFX1]: [Tiling:Client] Failed to allocate a TextureClient
[GFX1]: [Tiling:Client] Failed to allocate a TextureClient
Exiting due to channel error.
[GFX1-]: Receive IPC close with reason=AbnormalShutdown
Exiting due to channel error.
Exiting due to channel error.
1596391864153 Marionette INFO Stopped listening on port 56058
1596391865032 Marionette INFO Stopped listening on port 56103
1598845106831 geckodriver INFO Listening on 127.0.0.1:51981
1598845109849 mozrunner::runner INFO Running command: "C:\\Program Files\\Mozilla Firefox\\firefox.exe" "--marionette" "--width=800" "--height=825" "-foreground" "-no-remote" "-profile" "C:\\Users\\ryano\\AppData\\Local\\Temp\\rust_mozprofileywGvW3"
JavaScript error: resource://gre/modules/XULStore.jsm, line 66: Error: Can't find profile directory.
console.error: SearchCache: "_readCacheFile: Error reading cache file:" (new Error("", "(unknown module)"))
1598845112205 Marionette INFO Listening on port 51989
1598845112491 Marionette WARN TLS certificate errors will be ignored for this session
JavaScript error: https://connect.facebook.net/en_US/sdk.js?hash=b9f3db6737c840b0567592e6c6b6d060, line 59: uncaught exception: Error: invalid version specified
1598845459861 Marionette INFO Stopped listening on port 51989
###!!! [Child][RunMessage] Error: Channel closing: too late to send/recv, messages will be lost
###!!! [Child][MessageChannel::SendAndWait] Error: Channel error: cannot send/recv
1598845460606 geckodriver INFO Listening on 127.0.0.1:52969
1598845463613 mozrunner::runner INFO Running command: "C:\\Program Files\\Mozilla Firefox\\firefox.exe" "--marionette" "--width=960.0" "--height=540.0" "-foreground" "-no-remote" "-profile" "C:\\Users\\ryano\\AppData\\Local\\Temp\\rust_mozprofileOaKeu4"
JavaScript error: resource://gre/modules/XULStore.jsm, line 66: Error: Can't find profile directory.
console.error: SearchCache: "_readCacheFile: Error reading cache file:" (new Error("", "(unknown module)"))
1598845466440 Marionette INFO Listening on port 52992
1598845466779 Marionette WARN TLS certificate errors will be ignored for this session
JavaScript error: https://connect.facebook.net/en_US/sdk.js?hash=b9f3db6737c840b0567592e6c6b6d060, line 59: uncaught exception: Error: invalid version specified
1598845509479 Marionette INFO Stopped listening on port 52992
###!!! [Child][RunMessage] Error: Channel closing: too late to send/recv, messages will be lost
###!!! [Child][MessageChannel::SendAndWait] Error: Channel error: cannot send/recv
:\\Users\\ryano\\AppData\\Local\\Temp\\rust_mozprofileQsVEDO"
JavaScript error: resource://gre/modules/XULStore.jsm, line 66: Error: Can't find profile directory.
console.error: SearchCache: "_readCacheFile: Error reading cache file:" (new Error("", "(unknown module)"))
1598845507740 Marionette INFO Listening on port 53293
1598845507892 Marionette WARN TLS certificate errors will be ignored for this session
JavaScript error: https://connect.facebook.net/en_US/sdk.js?hash=074b28230ebf61d234ec8c9d1b1ee8c8, line 59: uncaught exception: Error: invalid version specified
1598845540328 Marionette INFO Stopped listening on port 53293
###!!! [Child][RunMessage] Error: Channel closing: too late to send/recv, messages will be lost
###!!! [Child][MessageChannel::SendAndWait] Error: Channel error: cannot send/recv
1598845541807 geckodriver INFO Listening on 127.0.0.1:53461
1598845544828 mozrunner::runner INFO Running command: "C:\\Program Files\\Mozilla Firefox\\firefox.exe" "--marionette" "--width=640.0" "--height=1080" "-foreground" "-no-remote" "-profile" "C:\\Users\\ryano\\AppData\\Local\\Temp\\rust_mozprofileaY583G"
JavaScript error: resource://gre/modules/XULStore.jsm, line 66: Error: Can't find profile directory.
console.error: SearchCache: "_readCacheFile: Error reading cache file:" (new Error("", "(unknown module)"))
1598845547218 Marionette INFO Listening on port 53469
1598845547469 Marionette WARN TLS certificate errors will be ignored for this session
JavaScript error: https://connect.facebook.net/en_US/sdk.js?hash=b9f3db6737c840b0567592e6c6b6d060, line 59: uncaught exception: Error: invalid version specified
1598845591607 Marionette INFO Stopped listening on port 53469
###!!! [Child][MessageChannel::SendAndWait] Error: Channel error: cannot send/recv
1598845601618 geckodriver INFO Listening on 127.0.0.1:53657
1598845604627 mozrunner::runner INFO Running command: "C:\\Program Files\\Mozilla Firefox\\firefox.exe" "--marionette" "--width=576.0" "--height=864.0" "-foreground" "-no-remote" "-profile" "C:\\Users\\ryano\\AppData\\Local\\Temp\\rust_mozprofile3k6nkb"
JavaScript error: resource://gre/modules/XULStore.jsm, line 66: Error: Can't find profile directory.
console.error: SearchCache: "_readCacheFile: Error reading cache file:" (new Error("", "(unknown module)"))
1598845607032 Marionette INFO Listening on port 53665
1598845607284 Marionette WARN TLS certificate errors will be ignored for this session
JavaScript error: https://connect.facebook.net/en_US/sdk.js?hash=074b28230ebf61d234ec8c9d1b1ee8c8, line 59: uncaught exception: Error: invalid version specified
###!!! [Child][RunMessage] Error: Channel closing: too late to send/recv, messages will be lost
1598846094128 Marionette INFO Stopped listening on port 53665
###!!! [Child][RunMessage] Error: Channel closing: too late to send/recv, messages will be lost
###!!! [Child][MessageChannel::SendAndWait] Error: Channel error: cannot send/recv
1598846511070 geckodriver INFO Listening on 127.0.0.1:49932
1598846514116 mozrunner::runner INFO Running command: "C:\\Program Files\\Mozilla Firefox\\firefox.exe" "--marionette" "--width=576.0" "--height=864.0" "-foreground" "-no-remote" "-profile" "C:\\Users\\ryano\\AppData\\Local\\Temp\\rust_mozprofilehkAH3e"
JavaScript error: resource://gre/modules/XULStore.jsm, line 66: Error: Can't find profile directory.
console.error: SearchCache: "_readCacheFile: Error reading cache file:" (new Error("", "(unknown module)"))
1598846516587 Marionette INFO Listening on port 49940
1598846516767 Marionette WARN TLS certificate errors will be ignored for this session
JavaScript error: https://connect.facebook.net/en_US/sdk.js?hash=b9f3db6737c840b0567592e6c6b6d060, line 59: uncaught exception: Error: invalid version specified
1598846652522 Marionette INFO Stopped listening on port 49940
###!!! [Child][RunMessage] Error: Channel closing: too late to send/recv, messages will be lost
###!!! [Child][MessageChannel::SendAndWait] Error: Channel error: cannot send/recv
:\\Users\\ryano\\AppData\\Local\\Temp\\rust_mozprofileros7pu"
JavaScript error: resource://gre/modules/XULStore.jsm, line 66: Error: Can't find profile directory.
console.error: SearchCache: "_readCacheFile: Error reading cache file:" (new Error("", "(unknown module)"))
1598846654517 Marionette INFO Listening on port 50207
1598846654881 Marionette WARN TLS certificate errors will be ignored for this session
JavaScript error: https://connect.facebook.net/en_US/sdk.js?hash=074b28230ebf61d234ec8c9d1b1ee8c8, line 59: uncaught exception: Error: invalid version specified
[Child 13896, Chrome_ChildThread] WARNING: pipe error: 232: file /builds/worker/checkouts/gecko/ipc/chromium/src/chrome/common/ipc_channel_win.cc, line 545
1598847192364 Marionette INFO Stopped listening on port 50207
###!!! [Child][RunMessage] Error: Channel closing: too late to send/recv, messages will be lost
###!!! [Child][MessageChannel::SendAndWait] Error: Channel error: cannot send/recv
1598847205277 geckodriver INFO Listening on 127.0.0.1:51784
1598847208293 mozrunner::runner INFO Running command: "C:\\Program Files\\Mozilla Firefox\\firefox.exe" "--marionette" "--width=576.0" "--height=864.0" "-foreground" "-no-remote" "-profile" "C:\\Users\\ryano\\AppData\\Local\\Temp\\rust_mozprofileGRrMcU"
JavaScript error: resource://gre/modules/XULStore.jsm, line 66: Error: Can't find profile directory.
console.error: SearchCache: "_readCacheFile: Error reading cache file:" (new Error("", "(unknown module)"))
1598847211231 Marionette INFO Listening on port 51792
1598847211449 Marionette WARN TLS certificate errors will be ignored for this session
JavaScript error: https://connect.facebook.net/en_US/sdk.js?hash=074b28230ebf61d234ec8c9d1b1ee8c8, line 59: uncaught exception: Error: invalid version specified
1598847866945 Marionette INFO Stopped listening on port 51792
###!!! [Child][RunMessage] Error: Channel closing: too late to send/recv, messages will be lost
###!!! [Child][MessageChannel::SendAndWait] Error: Channel error: cannot send/recv
1598847883457 geckodriver INFO Listening on 127.0.0.1:52109
1598847886472 mozrunner::runner INFO Running command: "C:\\Program Files\\Mozilla Firefox\\firefox.exe" "--marionette" "--width=576.0" "--height=864.0" "-foreground" "-no-remote" "-profile" "C:\\Users\\ryano\\AppData\\Local\\Temp\\rust_mozprofilesRzEvW"
JavaScript error: resource://gre/modules/XULStore.jsm, line 66: Error: Can't find profile directory.
console.error: SearchCache: "_readCacheFile: Error reading cache file:" (new Error("", "(unknown module)"))
1598847888845 Marionette INFO Listening on port 52117
1598847889115 Marionette WARN TLS certificate errors will be ignored for this session
JavaScript error: https://connect.facebook.net/en_US/sdk.js?hash=074b28230ebf61d234ec8c9d1b1ee8c8, line 59: uncaught exception: Error: invalid version specified
1598847929269 Marionette INFO Stopped listening on port 52117
###!!! [Child][RunMessage] Error: Channel closing: too late to send/recv, messages will be lost
###!!! [Child][MessageChannel::SendAndWait] Error: Channel error: cannot send/recv
1598847943624 geckodriver INFO Listening on 127.0.0.1:52199
1598847946640 mozrunner::runner INFO Running command: "C:\\Program Files\\Mozilla Firefox\\firefox.exe" "--marionette" "--width=576.0" "--height=864.0" "-foreground" "-no-remote" "-profile" "C:\\Users\\ryano\\AppData\\Local\\Temp\\rust_mozprofileCv8iLv"
JavaScript error: resource://gre/modules/XULStore.jsm, line 66: Error: Can't find profile directory.
console.error: SearchCache: "_readCacheFile: Error reading cache file:" (new Error("", "(unknown module)"))
1598847948916 Marionette INFO Listening on port 52207
1598847949288 Marionette WARN TLS certificate errors will be ignored for this session
JavaScript error: https://connect.facebook.net/en_US/sdk.js?hash=074b28230ebf61d234ec8c9d1b1ee8c8, line 59: uncaught exception: Error: invalid version specified
1598848212390 Marionette INFO Stopped listening on port 52207
###!!! [Child][RunMessage] Error: Channel closing: too late to send/recv, messages will be lost
###!!! [Child][MessageChannel::SendAndWait] Error: Channel error: cannot send/recv
1598848336566 geckodriver INFO Listening on 127.0.0.1:52298
1598848339552 mozrunner::runner INFO Running command: "C:\\Program Files\\Mozilla Firefox\\firefox.exe" "--marionette" "--width=576.0" "--height=864.0" "-foreground" "-no-remote" "-profile" "C:\\Users\\ryano\\AppData\\Local\\Temp\\rust_mozprofileU3cgdK"
JavaScript error: resource://gre/modules/XULStore.jsm, line 66: Error: Can't find profile directory.
console.error: SearchCache: "_readCacheFile: Error reading cache file:" (new Error("", "(unknown module)"))
1598848341776 Marionette INFO Listening on port 52306
1598848342226 Marionette WARN TLS certificate errors will be ignored for this session
JavaScript error: https://connect.facebook.net/en_US/sdk.js?hash=074b28230ebf61d234ec8c9d1b1ee8c8, line 59: uncaught exception: Error: invalid version specified
1598879023229 Marionette INFO Stopped listening on port 52306
###!!! [Child][RunMessage] Error: Channel closing: too late to send/recv, messages will be lost
###!!! [Child][MessageChannel::SendAndWait] Error: Channel error: cannot send/recv
1598879099981 geckodriver INFO Listening on 127.0.0.1:53207
1598879102997 mozrunner::runner INFO Running command: "C:\\Program Files\\Mozilla Firefox\\firefox.exe" "--marionette" "--width=576.0" "--height=864.0" "-foreground" "-no-remote" "-profile" "C:\\Users\\ryano\\AppData\\Local\\Temp\\rust_mozprofilehbeoIn"
JavaScript error: resource://gre/modules/XULStore.jsm, line 66: Error: Can't find profile directory.
console.error: SearchCache: "_readCacheFile: Error reading cache file:" (new Error("", "(unknown module)"))
1598879106159 Marionette INFO Listening on port 53215
1598879106656 Marionette WARN TLS certificate errors will be ignored for this session
JavaScript error: https://connect.facebook.net/en_US/sdk.js?hash=52c83764aa29c52cdc1cc8fdc1fe46dd, line 59: uncaught exception: Error: invalid version specified
1598880048927 Marionette INFO Stopped listening on port 53215
###!!! [Child][MessageChannel::SendAndWait] Error: Channel error: cannot send/recv
1598880090561 geckodriver INFO Listening on 127.0.0.1:53348
1598880093593 mozrunner::runner INFO Running command: "C:\\Program Files\\Mozilla Firefox\\firefox.exe" "--marionette" "--width=576.0" "--height=864.0" "-foreground" "-no-remote" "-profile" "C:\\Users\\ryano\\AppData\\Local\\Temp\\rust_mozprofileNxs2Qz"
JavaScript error: resource://gre/modules/XULStore.jsm, line 66: Error: Can't find profile directory.
console.error: SearchCache: "_readCacheFile: Error reading cache file:" (new Error("", "(unknown module)"))
1598880096722 Marionette INFO Listening on port 53356
1598880096755 Marionette WARN TLS certificate errors will be ignored for this session
JavaScript error: https://connect.facebook.net/en_US/sdk.js?hash=52c83764aa29c52cdc1cc8fdc1fe46dd, line 59: uncaught exception: Error: invalid version specified
console.error: Region.jsm: "Error fetching region" (new AbortError("The operation was aborted. ", (void 0), 689))
console.error: Region.jsm: "Failed to fetch region" (new Error("NO_RESULT", "resource://gre/modules/Region.jsm", 343))
1598883669839 Marionette INFO Stopped listening on port 53356
###!!! [Child][MessageChannel::SendAndWait] Error: Channel error: cannot send/recv
1598883847886 geckodriver INFO Listening on 127.0.0.1:53639
1598883850917 mozrunner::runner INFO Running command: "C:\\Program Files\\Mozilla Firefox\\firefox.exe" "--marionette" "--width=576.0" "--height=864.0" "-foreground" "-no-remote" "-profile" "C:\\Users\\ryano\\AppData\\Local\\Temp\\rust_mozprofile6TF255"
JavaScript error: resource://gre/modules/XULStore.jsm, line 66: Error: Can't find profile directory.
console.error: SearchCache: "_readCacheFile: Error reading cache file:" (new Error("", "(unknown module)"))
1598883854053 Marionette INFO Listening on port 53647
1598883854074 Marionette WARN TLS certificate errors will be ignored for this session
JavaScript error: https://connect.facebook.net/en_US/sdk.js?hash=43076a9dd9f24fdb8cd3e0cc0cc4be7a, line 59: uncaught exception: Error: invalid version specified
console.error: Region.jsm: "Error fetching region" (new AbortError("The operation was aborted. ", (void 0), 689))
console.error: Region.jsm: "Failed to fetch region" (new Error("NO_RESULT", "resource://gre/modules/Region.jsm", 343))
1598883901232 Marionette INFO Stopped listening on port 53647
###!!! [Child][RunMessage] Error: Channel closing: too late to send/recv, messages will be lost
###!!! [Child][MessageChannel::SendAndWait] Error: Channel error: cannot send/recv
1598883966564 geckodriver INFO Listening on 127.0.0.1:53733
1598883969564 mozrunner::runner INFO Running command: "C:\\Program Files\\Mozilla Firefox\\firefox.exe" "--marionette" "--width=576.0" "--height=864.0" "-foreground" "-no-remote" "-profile" "C:\\Users\\ryano\\AppData\\Local\\Temp\\rust_mozprofileiUapSn"
JavaScript error: resource://gre/modules/XULStore.jsm, line 66: Error: Can't find profile directory.
console.error: SearchCache: "_readCacheFile: Error reading cache file:" (new Error("", "(unknown module)"))
1598883972666 Marionette INFO Listening on port 53741
1598883972751 Marionette WARN TLS certificate errors will be ignored for this session
JavaScript error: https://connect.facebook.net/en_US/sdk.js?hash=43076a9dd9f24fdb8cd3e0cc0cc4be7a, line 59: uncaught exception: Error: invalid version specified
console.error: Region.jsm: "Error fetching region" (new AbortError("The operation was aborted. ", (void 0), 689))
console.error: Region.jsm: "Failed to fetch region" (new Error("NO_RESULT", "resource://gre/modules/Region.jsm", 343))
1598886803859 Marionette INFO Stopped listening on port 53741
###!!! [Child][MessageChannel::SendAndWait] Error: Channel error: cannot send/recv
1598886901944 geckodriver INFO Listening on 127.0.0.1:53877
1598886904991 mozrunner::runner INFO Running command: "C:\\Program Files\\Mozilla Firefox\\firefox.exe" "--marionette" "--width=576.0" "--height=864.0" "-foreground" "-no-remote" "-profile" "C:\\Users\\ryano\\AppData\\Local\\Temp\\rust_mozprofileq99qgs"
JavaScript error: resource://gre/modules/XULStore.jsm, line 66: Error: Can't find profile directory.
console.error: SearchCache: "_readCacheFile: Error reading cache file:" (new Error("", "(unknown module)"))
1598886908243 Marionette INFO Listening on port 53885
1598886908644 Marionette WARN TLS certificate errors will be ignored for this session
JavaScript error: https://connect.facebook.net/en_US/sdk.js?hash=43076a9dd9f24fdb8cd3e0cc0cc4be7a, line 59: uncaught exception: Error: invalid version specified
console.error: Region.jsm: "Error fetching region" (new AbortError("The operation was aborted. ", (void 0), 689))
console.error: Region.jsm: "Failed to fetch region" (new Error("NO_RESULT", "resource://gre/modules/Region.jsm", 343))
1598887283741 Marionette INFO Stopped listening on port 53885
###!!! [Child][RunMessage] Error: Channel closing: too late to send/recv, messages will be lost
###!!! [Child][MessageChannel::SendAndWait] Error: Channel error: cannot send/recv
1598887438958 geckodriver INFO Listening on 127.0.0.1:53970
1598887442005 mozrunner::runner INFO Running command: "C:\\Program Files\\Mozilla Firefox\\firefox.exe" "--marionette" "--width=576.0" "--height=864.0" "-foreground" "-no-remote" "-profile" "C:\\Users\\ryano\\AppData\\Local\\Temp\\rust_mozprofilexmJozX"
JavaScript error: resource://gre/modules/XULStore.jsm, line 66: Error: Can't find profile directory.
console.error: SearchCache: "_readCacheFile: Error reading cache file:" (new Error("", "(unknown module)"))
1598887445153 Marionette INFO Listening on port 53978
1598887445181 Marionette WARN TLS certificate errors will be ignored for this session
JavaScript error: https://connect.facebook.net/en_US/sdk.js?hash=43076a9dd9f24fdb8cd3e0cc0cc4be7a, line 59: uncaught exception: Error: invalid version specified
1598887455337 Marionette INFO Stopped listening on port 53978
###!!! [Child][RunMessage] Error: Channel closing: too late to send/recv, messages will be lost
###!!! [Child][MessageChannel::SendAndWait] Error: Channel error: cannot send/recv
1598887545293 geckodriver INFO Listening on 127.0.0.1:54105
1598887548293 mozrunner::runner INFO Running command: "C:\\Program Files\\Mozilla Firefox\\firefox.exe" "--marionette" "--width=576.0" "--height=864.0" "-foreground" "-no-remote" "-profile" "C:\\Users\\ryano\\AppData\\Local\\Temp\\rust_mozprofileuHjedl"
JavaScript error: resource://gre/modules/XULStore.jsm, line 66: Error: Can't find profile directory.
console.error: SearchCache: "_readCacheFile: Error reading cache file:" (new Error("", "(unknown module)"))
1598887551549 Marionette INFO Listening on port 54113
1598887551953 Marionette WARN TLS certificate errors will be ignored for this session
JavaScript error: https://connect.facebook.net/en_US/sdk.js?hash=43076a9dd9f24fdb8cd3e0cc0cc4be7a, line 59: uncaught exception: Error: invalid version specified
console.error: Region.jsm: "Error fetching region" (new AbortError("The operation was aborted. ", (void 0), 689))
console.error: Region.jsm: "Failed to fetch region" (new Error("NO_RESULT", "resource://gre/modules/Region.jsm", 343))
1598887657492 Marionette INFO Stopped listening on port 54113
###!!! [Child][RunMessage] Error: Channel closing: too late to send/recv, messages will be lost
###!!! [Child][MessageChannel::SendAndWait] Error: Channel error: cannot send/recv
1598887699406 geckodriver INFO Listening on 127.0.0.1:54195
1598887702422 mozrunner::runner INFO Running command: "C:\\Program Files\\Mozilla Firefox\\firefox.exe" "--marionette" "--width=576.0" "--height=864.0" "-foreground" "-no-remote" "-profile" "C:\\Users\\ryano\\AppData\\Local\\Temp\\rust_mozprofilejyb2Va"
JavaScript error: resource://gre/modules/XULStore.jsm, line 66: Error: Can't find profile directory.
console.error: SearchCache: "_readCacheFile: Error reading cache file:" (new Error("", "(unknown module)"))
1598887705485 Marionette INFO Listening on port 54203
1598887705614 Marionette WARN TLS certificate errors will be ignored for this session
JavaScript error: https://connect.facebook.net/en_US/sdk.js?hash=43076a9dd9f24fdb8cd3e0cc0cc4be7a, line 59: uncaught exception: Error: invalid version specified
1598908992569 Marionette INFO Stopped listening on port 54203
###!!! [Child][RunMessage] Error: Channel closing: too late to send/recv, messages will be lost
###!!! [Child][MessageChannel::SendAndWait] Error: Channel error: cannot send/recv
1598909538117 geckodriver INFO Listening on 127.0.0.1:55007
1598909541195 mozrunner::runner INFO Running command: "C:\\Program Files\\Mozilla Firefox\\firefox.exe" "--marionette" "--width=576.0" "--height=864.0" "-foreground" "-no-remote" "-profile" "C:\\Users\\ryano\\AppData\\Local\\Temp\\rust_mozprofileoZgbTd"
JavaScript error: resource://gre/modules/XULStore.jsm, line 66: Error: Can't find profile directory.
console.error: SearchCache: "_readCacheFile: Error reading cache file:" (new Error("", "(unknown module)"))
1598909544395 Marionette INFO Listening on port 55015
1598909544876 Marionette WARN TLS certificate errors will be ignored for this session
JavaScript error: https://connect.facebook.net/en_US/sdk.js?hash=9c27b8ee6193770e7af63874ef88b77c, line 59: uncaught exception: Error: invalid version specified
1598909671759 Marionette INFO Stopped listening on port 55015
###!!! [Child][RunMessage] Error: Channel closing: too late to send/recv, messages will be lost
###!!! [Child][MessageChannel::SendAndWait] Error: Channel error: cannot send/recv
1598909741831 geckodriver INFO Listening on 127.0.0.1:55101
1598909744878 mozrunner::runner INFO Running command: "C:\\Program Files\\Mozilla Firefox\\firefox.exe" "--marionette" "--width=576.0" "--height=864.0" "-foreground" "-no-remote" "-profile" "C:\\Users\\ryano\\AppData\\Local\\Temp\\rust_mozprofileagjSXm"
JavaScript error: resource://gre/modules/XULStore.jsm, line 66: Error: Can't find profile directory.
console.error: SearchCache: "_readCacheFile: Error reading cache file:" (new Error("", "(unknown module)"))
1598909750913 Marionette INFO Listening on port 55109
1598909751197 Marionette WARN TLS certificate errors will be ignored for this session
JavaScript error: https://connect.facebook.net/en_US/sdk.js?hash=9c27b8ee6193770e7af63874ef88b77c, line 59: uncaught exception: Error: invalid version specified
1598965343654 Marionette INFO Stopped listening on port 55109
###!!! [Child][RunMessage] Error: Channel closing: too late to send/recv, messages will be lost
###!!! [Child][MessageChannel::SendAndWait] Error: Channel error: cannot send/recv
1598966148487 geckodriver INFO Listening on 127.0.0.1:56850
1598966151519 mozrunner::runner INFO Running command: "C:\\Program Files\\Mozilla Firefox\\firefox.exe" "--marionette" "--width=576.0" "--height=864.0" "-foreground" "-no-remote" "-profile" "C:\\Users\\ryano\\AppData\\Local\\Temp\\rust_mozprofileVWbbJl"
JavaScript error: resource://gre/modules/XULStore.jsm, line 66: Error: Can't find profile directory.
console.error: SearchCache: "_readCacheFile: Error reading cache file:" (new Error("", "(unknown module)"))
1598966153902 Marionette INFO Listening on port 56858
1598966154166 Marionette WARN TLS certificate errors will be ignored for this session
JavaScript error: https://connect.facebook.net/en_US/sdk.js?hash=d9cdccafa6130f09705538b1f9832bae, line 59: uncaught exception: Error: invalid version specified
console.error: Region.jsm: "Error fetching region" (new AbortError("The operation was aborted. ", (void 0), 689))
console.error: Region.jsm: "Failed to fetch region" (new Error("NO_RESULT", "resource://gre/modules/Region.jsm", 343))
1598995712516 Marionette INFO Stopped listening on port 56858
###!!! [Child][RunMessage] Error: Channel closing: too late to send/recv, messages will be lost
###!!! [Child][MessageChannel::SendAndWait] Error: Channel error: cannot send/recv
1598995943735 geckodriver INFO Listening on 127.0.0.1:57626
1598995946736 mozrunner::runner INFO Running command: "C:\\Program Files\\Mozilla Firefox\\firefox.exe" "--marionette" "--width=576.0" "--height=864.0" "-foreground" "-no-remote" "-profile" "C:\\Users\\ryano\\AppData\\Local\\Temp\\rust_mozprofilew6s1OJ"
1598996039071 geckodriver INFO Listening on 127.0.0.1:57673
1598996042072 mozrunner::runner INFO Running command: "C:\\Program Files\\Mozilla Firefox\\firefox.exe" "--marionette" "--width=576.0" "--height=864.0" "-foreground" "-no-remote" "-profile" "C:\\Users\\ryano\\AppData\\Local\\Temp\\rust_mozprofilekhX5ot"
JavaScript error: resource://gre/modules/XULStore.jsm, line 66: Error: Can't find profile directory.
console.error: SearchCache: "_readCacheFile: Error reading cache file:" (new Error("", "(unknown module)"))
1598996044300 Marionette INFO Listening on port 57682
1598996044732 Marionette WARN TLS certificate errors will be ignored for this session
JavaScript error: https://connect.facebook.net/en_US/sdk.js?hash=c37b12993e31f4646d1007f4fdc4837a, line 59: uncaught exception: Error: invalid version specified
1599006631061 Marionette INFO Stopped listening on port 57682
###!!! [Child][MessageChannel::SendAndWait] Error: Channel error: cannot send/recv
1599007407395 geckodriver INFO Listening on 127.0.0.1:59259
1599007410442 mozrunner::runner INFO Running command: "C:\\Program Files\\Mozilla Firefox\\firefox.exe" "--marionette" "--width=576.0" "--height=864.0" "-foreground" "-no-remote" "-profile" "C:\\Users\\ryano\\AppData\\Local\\Temp\\rust_mozprofilegsBN4r"
JavaScript error: resource://gre/modules/XULStore.jsm, line 66: Error: Can't find profile directory.
console.error: SearchCache: "_readCacheFile: Error reading cache file:" (new Error("", "(unknown module)"))
1599007412683 Marionette INFO Listening on port 59267
1599007413105 Marionette WARN TLS certificate errors will be ignored for this session
JavaScript error: https://connect.facebook.net/en_US/sdk.js?hash=30a7eede7359c07a0655a7b0f3326cb5, line 59: uncaught exception: Error: invalid version specified
1599007856677 Marionette INFO Stopped listening on port 59267
###!!! [Child][MessageChannel::SendAndWait] Error: Channel error: cannot send/recv
1599007878901 geckodriver INFO Listening on 127.0.0.1:59434
1599007881901 mozrunner::runner INFO Running command: "C:\\Program Files\\Mozilla Firefox\\firefox.exe" "--marionette" "--width=576.0" "--height=864.0" "-foreground" "-no-remote" "-profile" "C:\\Users\\ryano\\AppData\\Local\\Temp\\rust_mozprofilerHgcTB"
JavaScript error: resource://gre/modules/XULStore.jsm, line 66: Error: Can't find profile directory.
console.error: SearchCache: "_readCacheFile: Error reading cache file:" (new Error("", "(unknown module)"))
1599007884221 Marionette INFO Listening on port 59442
1599007884562 Marionette WARN TLS certificate errors will be ignored for this session
JavaScript error: https://connect.facebook.net/en_US/sdk.js?hash=30a7eede7359c07a0655a7b0f3326cb5, line 59: uncaught exception: Error: invalid version specified
1599007904492 Marionette INFO Stopped listening on port 59442
###!!! [Child][RunMessage] Error: Channel closing: too late to send/recv, messages will be lost
###!!! [Child][MessageChannel::SendAndWait] Error: Channel error: cannot send/recv
1599008127459 geckodriver INFO Listening on 127.0.0.1:59659
1599008130478 mozrunner::runner INFO Running command: "C:\\Program Files\\Mozilla Firefox\\firefox.exe" "--marionette" "--width=576.0" "--height=864.0" "-foreground" "-no-remote" "-profile" "C:\\Users\\ryano\\AppData\\Local\\Temp\\rust_mozprofileashyHF"
JavaScript error: resource://gre/modules/XULStore.jsm, line 66: Error: Can't find profile directory.
console.error: SearchCache: "_readCacheFile: Error reading cache file:" (new Error("", "(unknown module)"))
1599008132831 Marionette INFO Listening on port 59667
1599008133119 Marionette WARN TLS certificate errors will be ignored for this session
JavaScript error: https://connect.facebook.net/en_US/sdk.js?hash=30a7eede7359c07a0655a7b0f3326cb5, line 59: uncaught exception: Error: invalid version specified
JavaScript warning: https://docs.nvidia.com/cuda/common/formatting/jquery.min.js, line 2: Using //@ to indicate sourceMappingURL pragmas is deprecated. Use //# instead
JavaScript error: https://docs.nvidia.com/cuda/cuda-installation-guide-microsoft-windows/, line 927: ReferenceError: stLight is not defined
JavaScript error: https://docs.nvidia.com/cuda/common/formatting/common.min.js, line 1: TypeError: location.pathname.match(...) is null
JavaScript error: resource:///modules/UrlbarInput.jsm, line 2259: TypeError: event.target.closest is not a function
JavaScript error: resource://gre/actors/AutoCompleteChild.jsm, line 208: Error: Invalid autocomplete selectedIndex
[GFX1-]: GFX: RenderThread detected a device reset in WaitForGPU
[GFX1-]: Failed to make render context current during destroying.
[GFX1-]: Failed to make render context current during destroying.
[GFX1-]: Failed to make render context current during destroying.
[GFX1-]: Failed to get D3D11Device from EGLDisplay
[GFX1-]: Failed ANGLE GL context creation for WebRender: 0000000000000000
[GFX1-]: [WR] failed to get shared GL context.
[GFX1-]: Failed to connect WebRenderBridgeChild.
[GFX1-]: [D3D11] CreateInputLayout failed: 0x887a0005
[GFX1-]: [D3D11] failed to get compositor device attachments
[GFX1-]: [D3D11] Failed to init compositor with reason: FEATURE_FAILURE_D3D11_INPUT_LAYOUT
[GFX1-]: Compositors might be mixed (5,1)
[GFX1-]: [D3D11] failed to get compositor device attachments
[GFX1-]: [D3D11] Failed to init compositor with reason: FEATURE_FAILURE_D3D11_INPUT_LAYOUT
[GFX1-]: Could not get a DXGI adapter
JavaScript error: https://docs.nvidia.com/deeplearning/cudnn/common/scripts/tynt/tynt.js, line 1: SyntaxError: expected expression, got '<'
JavaScript error: https://docs.nvidia.com/deeplearning/cudnn/index.html, line 141: ReferenceError: stLight is not defined
JavaScript error: https://docs.nvidia.com/deeplearning/cudnn/install-guide/index.html, line 904: ReferenceError: stLight is not defined
JavaScript error: https://assets.adobedtm.com/b92787824f2e0e9b68dc2e993f9bd995339fe417/s-code-contents-72887b31a9638f8b3cff7981a426c38c354f6412.js line 65 > Function, line 3: TypeError: s.s_PPVg is not a function
JavaScript error: https://assets.adobedtm.com/b92787824f2e0e9b68dc2e993f9bd995339fe417/s-code-contents-72887b31a9638f8b3cff7981a426c38c354f6412.js line 65 > Function, line 3: TypeError: s.s_PPVg is not a function
JavaScript error: https://assets.adobedtm.com/b92787824f2e0e9b68dc2e993f9bd995339fe417/s-code-contents-72887b31a9638f8b3cff7981a426c38c354f6412.js line 65 > Function, line 3: TypeError: s.s_PPVg is not a function
JavaScript error: https://assets.adobedtm.com/b92787824f2e0e9b68dc2e993f9bd995339fe417/s-code-contents-72887b31a9638f8b3cff7981a426c38c354f6412.js line 65 > Function, line 3: TypeError: s.s_PPVg is not a function
JavaScript error: https://assets.adobedtm.com/b92787824f2e0e9b68dc2e993f9bd995339fe417/s-code-contents-72887b31a9638f8b3cff7981a426c38c354f6412.js line 65 > Function, line 3: TypeError: s.s_PPVg is not a function
JavaScript error: https://assets.adobedtm.com/b92787824f2e0e9b68dc2e993f9bd995339fe417/s-code-contents-72887b31a9638f8b3cff7981a426c38c354f6412.js line 65 > Function, line 3: TypeError: s.s_PPVg is not a function
JavaScript error: https://assets.adobedtm.com/b92787824f2e0e9b68dc2e993f9bd995339fe417/s-code-contents-72887b31a9638f8b3cff7981a426c38c354f6412.js line 65 > Function, line 3: TypeError: s.s_PPVg is not a function
JavaScript error: https://assets.adobedtm.com/b92787824f2e0e9b68dc2e993f9bd995339fe417/s-code-contents-72887b31a9638f8b3cff7981a426c38c354f6412.js line 65 > Function, line 3: TypeError: s.s_PPVg is not a function
JavaScript error: https://assets.adobedtm.com/b92787824f2e0e9b68dc2e993f9bd995339fe417/s-code-contents-72887b31a9638f8b3cff7981a426c38c354f6412.js line 65 > Function, line 3: TypeError: s.s_PPVg is not a function
JavaScript error: https://assets.adobedtm.com/b92787824f2e0e9b68dc2e993f9bd995339fe417/s-code-contents-72887b31a9638f8b3cff7981a426c38c354f6412.js line 65 > Function, line 3: TypeError: s.s_PPVg is not a function
JavaScript error: https://assets.adobedtm.com/b92787824f2e0e9b68dc2e993f9bd995339fe417/s-code-contents-72887b31a9638f8b3cff7981a426c38c354f6412.js line 65 > Function, line 3: TypeError: s.s_PPVg is not a function
JavaScript error: https://assets.adobedtm.com/b92787824f2e0e9b68dc2e993f9bd995339fe417/s-code-contents-72887b31a9638f8b3cff7981a426c38c354f6412.js line 65 > Function, line 3: TypeError: s.s_PPVg is not a function
JavaScript error: https://docs.nvidia.com/deeplearning/cudnn/common/scripts/tynt/tynt.js, line 1: SyntaxError: expected expression, got '<'
JavaScript error: https://docs.nvidia.com/deeplearning/cudnn/index.html, line 141: ReferenceError: stLight is not defined
JavaScript error: https://docs.nvidia.com/deeplearning/cudnn/install-guide/index.html, line 904: ReferenceError: stLight is not defined
JavaScript error: https://assets.adobedtm.com/b92787824f2e0e9b68dc2e993f9bd995339fe417/s-code-contents-72887b31a9638f8b3cff7981a426c38c354f6412.js line 65 > Function, line 3: TypeError: s.s_PPVg is not a function
JavaScript error: https://assets.adobedtm.com/b92787824f2e0e9b68dc2e993f9bd995339fe417/s-code-contents-72887b31a9638f8b3cff7981a426c38c354f6412.js line 65 > Function, line 3: TypeError: s.s_PPVg is not a function
JavaScript error: https://assets.adobedtm.com/b92787824f2e0e9b68dc2e993f9bd995339fe417/s-code-contents-72887b31a9638f8b3cff7981a426c38c354f6412.js line 65 > Function, line 3: TypeError: s.s_PPVg is not a function
JavaScript error: https://assets.adobedtm.com/b92787824f2e0e9b68dc2e993f9bd995339fe417/s-code-contents-72887b31a9638f8b3cff7981a426c38c354f6412.js line 65 > Function, line 3: TypeError: s.s_PPVg is not a function
JavaScript error: https://assets.adobedtm.com/b92787824f2e0e9b68dc2e993f9bd995339fe417/s-code-contents-72887b31a9638f8b3cff7981a426c38c354f6412.js line 65 > Function, line 3: TypeError: s.s_PPVg is not a function
JavaScript error: https://assets.adobedtm.com/b92787824f2e0e9b68dc2e993f9bd995339fe417/s-code-contents-72887b31a9638f8b3cff7981a426c38c354f6412.js line 65 > Function, line 3: TypeError: s.s_PPVg is not a function
JavaScript error: https://assets.adobedtm.com/b92787824f2e0e9b68dc2e993f9bd995339fe417/s-code-contents-72887b31a9638f8b3cff7981a426c38c354f6412.js line 65 > Function, line 3: TypeError: s.s_PPVg is not a function
JavaScript error: https://assets.adobedtm.com/b92787824f2e0e9b68dc2e993f9bd995339fe417/s-code-contents-72887b31a9638f8b3cff7981a426c38c354f6412.js line 65 > Function, line 3: TypeError: s.s_PPVg is not a function
[GFX1-]: Could not get a DXGI adapter
[GFX1-]: [D3D11] failed to get compositor device attachments
[GFX1-]: [D3D11] Failed to init compositor with reason: FEATURE_FAILURE_D3D11_INPUT_LAYOUT
JavaScript error: https://www.windows-commandline.com/copy-directory-command-line/, line 1: SyntaxError: missing ) after argument list
[GFX1]: Failed to create software bitmap: Size(600,150) Code: 0x8899000c
[GFX1]: Failed to create software bitmap: Size(600,150) Code: 0x8899000c
JavaScript warning: https://www.googletagservices.com/activeview/js/current/osd_listener.js?cache=r20110914, line 6: Script terminated by timeout at:
qf/<@https://www.googletagservices.com/activeview/js/current/osd_listener.js?cache=r20110914:6:38424
Na@https://www.googletagservices.com/activeview/js/current/osd_listener.js?cache=r20110914:6:4600
qf@https://www.googletagservices.com/activeview/js/current/osd_listener.js?cache=r20110914:6:38404
mg@https://www.googletagservices.com/activeview/js/current/osd_listener.js?cache=r20110914:6:59154
ng.prototype.a@https://www.googletagservices.com/activeview/js/current/osd_listener.js?cache=r20110914:6:50437
$f/<@https://www.googletagservices.com/activeview/js/current/osd_listener.js?cache=r20110914:6:46145
v@https://www.googletagservices.com/activeview/js/current/osd_listener.js?cache=r20110914:6:3050
$f@https://www.googletagservices.com/activeview/js/current/osd_listener.js?cache=r20110914:6:46118
Mg/<@https://www.googletagservices.com/activeview/js/current/osd_listener.js?cache=r20110914:6:57762
v@https://www.googletagservices.com/activeview/js/current/osd_listener.js?cache=r20110914:6:3050
Mg@https://www.googletagservices.com/activeview/js/current/osd_listener.js?cache=r20110914:6:57669
Kg@https://www.googletagservices.com/activeview/js/current/osd_listener.js?cache=r20110914:6:54717
Hg.prototype.c@https://www.googletagservices.com/activeview/js/current/osd_listener.js?cache=r20110914:6:55169
Dh@https://www.googletagservices.com/activeview/js/current/osd_listener.js?cache=r20110914:6:71583
Mh/a.J<@https://www.googletagservices.com/activeview/js/current/osd_listener.js?cache=r20110914:6:73607
d@https://www.googletagservices.com/activeview/js/current/osd_listener.js?cache=r20110914:6:67807
wh/<@https://www.googletagservices.com/activeview/js/current/osd_listener.js?cache=r20110914:6:68586
$d/</<@https://www.googletagservices.com/activeview/js/current/osd_listener.js?cache=r20110914:6:25878
Xd/<@https://www.googletagservices.com/activeview/js/current/osd_listener.js?cache=r20110914:6:25417
Ad/<@https://www.googletagservices.com/activeview/js/current/osd_listener.js?cache=r20110914:6:22325
Xd@https://www.googletagservices.com/activeview/js/current/osd_listener.js?cache=r20110914:6:25725
$d/<@https://www.googletagservices.com/activeview/js/current/osd_listener.js?cache=r20110914:6:25851
Ad/<@https://www.googletagservices.com/activeview/js/current/osd_listener.js?cache=r20110914:6:22370
[GFX1]: Failed to create software bitmap: Size(600,150) Code: 0x8899000c
[GFX1]: Failed to create software bitmap: Size(600,150) Code: 0x8899000c
[GFX1]: Failed to create software bitmap: Size(600,150) Code: 0x8899000c
[GFX1]: Failed to create software bitmap: Size(600,150) Code: 0x8899000c
[GFX1]: Failed to create software bitmap: Size(600,150) Code: 0x8899000c
[GFX1]: Failed to create software bitmap: Size(600,150) Code: 0x8899000c
JavaScript error: https://assets.adobedtm.com/b92787824f2e0e9b68dc2e993f9bd995339fe417/s-code-contents-72887b31a9638f8b3cff7981a426c38c354f6412.js line 65 > Function, line 3: TypeError: s.s_PPVg is not a function
JavaScript error: https://assets.adobedtm.com/b92787824f2e0e9b68dc2e993f9bd995339fe417/s-code-contents-72887b31a9638f8b3cff7981a426c38c354f6412.js line 65 > Function, line 3: TypeError: s.s_PPVg is not a function
JavaScript error: https://assets.adobedtm.com/b92787824f2e0e9b68dc2e993f9bd995339fe417/s-code-contents-72887b31a9638f8b3cff7981a426c38c354f6412.js line 65 > Function, line 3: TypeError: s.s_PPVg is not a function
JavaScript error: https://assets.adobedtm.com/b92787824f2e0e9b68dc2e993f9bd995339fe417/s-code-contents-72887b31a9638f8b3cff7981a426c38c354f6412.js line 65 > Function, line 3: TypeError: s.s_PPVg is not a function
JavaScript error: https://assets.adobedtm.com/b92787824f2e0e9b68dc2e993f9bd995339fe417/s-code-contents-72887b31a9638f8b3cff7981a426c38c354f6412.js line 65 > Function, line 3: TypeError: s.s_PPVg is not a function
JavaScript error: https://assets.adobedtm.com/b92787824f2e0e9b68dc2e993f9bd995339fe417/s-code-contents-72887b31a9638f8b3cff7981a426c38c354f6412.js line 65 > Function, line 3: TypeError: s.s_PPVg is not a function
JavaScript error: https://assets.adobedtm.com/b92787824f2e0e9b68dc2e993f9bd995339fe417/s-code-contents-72887b31a9638f8b3cff7981a426c38c354f6412.js line 65 > Function, line 3: TypeError: s.s_PPVg is not a function
JavaScript error: https://assets.adobedtm.com/b92787824f2e0e9b68dc2e993f9bd995339fe417/s-code-contents-72887b31a9638f8b3cff7981a426c38c354f6412.js line 65 > Function, line 3: TypeError: s.s_PPVg is not a function
JavaScript error: https://assets.adobedtm.com/b92787824f2e0e9b68dc2e993f9bd995339fe417/s-code-contents-72887b31a9638f8b3cff7981a426c38c354f6412.js line 65 > Function, line 3: TypeError: s.s_PPVg is not a function
JavaScript error: https://assets.adobedtm.com/b92787824f2e0e9b68dc2e993f9bd995339fe417/s-code-contents-72887b31a9638f8b3cff7981a426c38c354f6412.js line 65 > Function, line 3: TypeError: s.s_PPVg is not a function
JavaScript error: https://assets.adobedtm.com/b92787824f2e0e9b68dc2e993f9bd995339fe417/s-code-contents-72887b31a9638f8b3cff7981a426c38c354f6412.js line 65 > Function, line 3: TypeError: s.s_PPVg is not a function
JavaScript error: https://assets.adobedtm.com/b92787824f2e0e9b68dc2e993f9bd995339fe417/s-code-contents-72887b31a9638f8b3cff7981a426c38c354f6412.js line 65 > Function, line 3: TypeError: s.s_PPVg is not a function
JavaScript error: https://assets.adobedtm.com/b92787824f2e0e9b68dc2e993f9bd995339fe417/s-code-contents-72887b31a9638f8b3cff7981a426c38c354f6412.js line 65 > Function, line 3: TypeError: s.s_PPVg is not a function
[GFX1]: Failed to create software bitmap: Size(600,150) Code: 0x8899000c
[GFX1]: Failed to create software bitmap: Size(600,150) Code: 0x8899000c
[GFX1-]: Could not get a DXGI adapter
1599010904054 Marionette INFO Stopped listening on port 59667
###!!! [Child][RunMessage] Error: Channel closing: too late to send/recv, messages will be lost
###!!! [Child][MessageChannel::SendAndWait] Error: Channel error: cannot send/recv
1599011132248 geckodriver INFO Listening on 127.0.0.1:61365
1599011135267 mozrunner::runner INFO Running command: "C:\\Program Files\\Mozilla Firefox\\firefox.exe" "--marionette" "--width=576.0" "--height=864.0" "-foreground" "-no-remote" "-profile" "C:\\Users\\ryano\\AppData\\Local\\Temp\\rust_mozprofileSqDb2J"
JavaScript error: resource://gre/modules/XULStore.jsm, line 66: Error: Can't find profile directory.
console.error: SearchCache: "_readCacheFile: Error reading cache file:" (new Error("", "(unknown module)"))
1599011137989 Marionette INFO Listening on port 61373
1599011138378 Marionette WARN TLS certificate errors will be ignored for this session
JavaScript error: https://connect.facebook.net/en_US/sdk.js?hash=d858cf728f6837b48cc741b2993c6c26, line 59: uncaught exception: Error: invalid version specified
1599011222750 Marionette INFO Stopped listening on port 61373
###!!! [Child][RunMessage] Error: Channel closing: too late to send/recv, messages will be lost
###!!! [Child][MessageChannel::SendAndWait] Error: Channel error: cannot send/recv
1599011484692 geckodriver INFO Listening on 127.0.0.1:61492
1599011487714 mozrunner::runner INFO Running command: "C:\\Program Files\\Mozilla Firefox\\firefox.exe" "--marionette" "--width=576.0" "--height=864.0" "-foreground" "-no-remote" "-profile" "C:\\Users\\ryano\\AppData\\Local\\Temp\\rust_mozprofileGSu3nB"
JavaScript error: resource://gre/modules/XULStore.jsm, line 66: Error: Can't find profile directory.
console.error: SearchCache: "_readCacheFile: Error reading cache file:" (new Error("", "(unknown module)"))
1599011490548 Marionette INFO Listening on port 61500
1599011490824 Marionette WARN TLS certificate errors will be ignored for this session
JavaScript error: https://connect.facebook.net/en_US/sdk.js?hash=d858cf728f6837b48cc741b2993c6c26, line 59: uncaught exception: Error: invalid version specified
JavaScript error: resource:///modules/UrlbarInput.jsm, line 2259: TypeError: event.target.closest is not a function
JavaScript error: resource://gre/actors/AutoCompleteChild.jsm, line 208: Error: Invalid autocomplete selectedIndex
JavaScript error: resource://gre/actors/AutoCompleteChild.jsm, line 208: Error: Invalid autocomplete selectedIndex
JavaScript error: resource://gre/modules/LoginManagerChild.jsm, line 190: NS_ERROR_XPC_JAVASCRIPT_ERROR_WITH_DETAILS: [JavaScript Error: "Invalid autocomplete selectedIndex" {file: "resource://gre/actors/AutoCompleteChild.jsm" line: 208}]'[JavaScript Error: "Invalid autocomplete selectedIndex" {file: "resource://gre/actors/AutoCompleteChild.jsm" line: 208}]' when calling method: [nsIAutoCompletePopup::selectedIndex]
1599012835490 Marionette INFO Stopped listening on port 61500
###!!! [Child][RunMessage] Error: Channel closing: too late to send/recv, messages will be lost
###!!! [Child][MessageChannel::SendAndWait] Error: Channel error: cannot send/recv
1599013380343 geckodriver INFO Listening on 127.0.0.1:62434
1599013383355 mozrunner::runner INFO Running command: "C:\\Program Files\\Mozilla Firefox\\firefox.exe" "--marionette" "--width=576.0" "--height=864.0" "-foreground" "-no-remote" "-profile" "C:\\Users\\ryano\\AppData\\Local\\Temp\\rust_mozprofileWJXfjG"
JavaScript error: resource://gre/modules/XULStore.jsm, line 66: Error: Can't find profile directory.
console.error: SearchCache: "_readCacheFile: Error reading cache file:" (new Error("", "(unknown module)"))
1599013385761 Marionette INFO Listening on port 62442
1599013385970 Marionette WARN TLS certificate errors will be ignored for this session
JavaScript error: https://connect.facebook.net/en_US/sdk.js?hash=d858cf728f6837b48cc741b2993c6c26, line 59: uncaught exception: Error: invalid version specified
1599013694579 Marionette INFO Stopped listening on port 62442
###!!! [Child][RunMessage] Error: Channel closing: too late to send/recv, messages will be lost
###!!! [Child][MessageChannel::SendAndWait] Error: Channel error: cannot send/recv
1599015706901 geckodriver INFO Listening on 127.0.0.1:63160
1599015709922 mozrunner::runner INFO Running command: "C:\\Program Files\\Mozilla Firefox\\firefox.exe" "--marionette" "--width=576.0" "--height=864.0" "-foreground" "-no-remote" "-profile" "C:\\Users\\ryano\\AppData\\Local\\Temp\\rust_mozprofilefTVyBg"
JavaScript error: resource://gre/modules/XULStore.jsm, line 66: Error: Can't find profile directory.
console.error: SearchCache: "_readCacheFile: Error reading cache file:" (new Error("", "(unknown module)"))
1599015712591 Marionette INFO Listening on port 63168
1599015713044 Marionette WARN TLS certificate errors will be ignored for this session
JavaScript error: https://connect.facebook.net/en_US/sdk.js?hash=9c6650e190217ff722c4bd0ff7375444, line 59: uncaught exception: Error: invalid version specified
1599015730084 Marionette INFO Stopped listening on port 63168
###!!! [Child][RunMessage] Error: Channel closing: too late to send/recv, messages will be lost
###!!! [Child][MessageChannel::SendAndWait] Error: Channel error: cannot send/recv
1599015760621 geckodriver INFO Listening on 127.0.0.1:63270
1599015763630 mozrunner::runner INFO Running command: "C:\\Program Files\\Mozilla Firefox\\firefox.exe" "--marionette" "--width=576.0" "--height=864.0" "-foreground" "-no-remote" "-profile" "C:\\Users\\ryano\\AppData\\Local\\Temp\\rust_mozprofileh2b9Hz"
JavaScript error: resource://gre/modules/XULStore.jsm, line 66: Error: Can't find profile directory.
console.error: SearchCache: "_readCacheFile: Error reading cache file:" (new Error("", "(unknown module)"))
1599015765885 Marionette INFO Listening on port 63278
1599015766239 Marionette WARN TLS certificate errors will be ignored for this session
JavaScript error: https://connect.facebook.net/en_US/sdk.js?hash=9c6650e190217ff722c4bd0ff7375444, line 59: uncaught exception: Error: invalid version specified
###!!! [Child][MessageChannel] Error: (msgtype=0x56000F,name=PHal::Msg_ModifyWakeLock) Closed channel: cannot send/recv
JavaScript error: resource://gre/modules/AsyncShutdown.jsm, line 697: Error: Phase "Sqlite.jsm: wait until all connections are closed" is finished, it is too late to register completion condition "protections.sqlite#0: waiting for shutdown"
###!!! [Child][MessageChannel] Error: (msgtype=0x39013E,name=PContent::Msg_DiscardBrowsingContext) Closed channel: cannot send/recv
###!!! [Child][MessageChannel] Error: (msgtype=0x39013E,name=PContent::Msg_DiscardBrowsingContext) Closed channel: cannot send/recv
###!!! [Child][MessageChannel] Error: (msgtype=0x39013E,name=PContent::Msg_DiscardBrowsingContext) Closed channel: cannot send/recv
###!!! [Child][MessageChannel] Error: (msgtype=0x39013E,name=PContent::Msg_DiscardBrowsingContext) Closed channel: cannot send/recv
###!!! [Child][MessageChannel] Error: (msgtype=0x39013E,name=PContent::Msg_DiscardBrowsingContext) Closed channel: cannot send/recv
###!!! [Child][MessageChannel] Error: (msgtype=0x39013E,name=PContent::Msg_DiscardBrowsingContext) Closed channel: cannot send/recv
###!!! [Child][MessageChannel] Error: (msgtype=0x39013E,name=PContent::Msg_DiscardBrowsingContext) Closed channel: cannot send/recv
###!!! [Child][MessageChannel] Error: (msgtype=0x39013E,name=PContent::Msg_DiscardBrowsingContext) Closed channel: cannot send/recv
###!!! [Child][MessageChannel] Error: (msgtype=0x39013E,name=PContent::Msg_DiscardBrowsingContext) Closed channel: cannot send/recv
###!!! [Child][MessageChannel] Error: (msgtype=0x39013E,name=PContent::Msg_DiscardBrowsingContext) Closed channel: cannot send/recv
###!!! [Child][MessageChannel] Error: (msgtype=0x39013E,name=PContent::Msg_DiscardBrowsingContext) Closed channel: cannot send/recv
1599054523130 geckodriver INFO Listening on 127.0.0.1:51461
1599054526139 mozrunner::runner INFO Running command: "C:\\Program Files\\Mozilla Firefox\\firefox.exe" "--marionette" "--width=576.0" "--height=864.0" "-foreground" "-no-remote" "-profile" "C:\\Users\\ryano\\AppData\\Local\\Temp\\rust_mozprofileuaYQrK"
JavaScript error: resource://gre/modules/XULStore.jsm, line 66: Error: Can't find profile directory.
console.error: SearchCache: "_readCacheFile: Error reading cache file:" (new Error("", "(unknown module)"))
1599054529425 Marionette INFO Listening on port 51469
1599054529752 Marionette WARN TLS certificate errors will be ignored for this session
JavaScript error: https://connect.facebook.net/en_US/sdk.js?hash=7437e018f0144a5c81fc12c349a3819c, line 59: uncaught exception: Error: invalid version specified
1599054790847 Marionette INFO Stopped listening on port 51469
###!!! [Child][RunMessage] Error: Channel closing: too late to send/recv, messages will be lost
###!!! [Child][MessageChannel::SendAndWait] Error: Channel error: cannot send/recv
1599055105602 geckodriver INFO Listening on 127.0.0.1:51840
1599055108624 mozrunner::runner INFO Running command: "C:\\Program Files\\Mozilla Firefox\\firefox.exe" "--marionette" "--width=576.0" "--height=864.0" "-foreground" "-no-remote" "-profile" "C:\\Users\\ryano\\AppData\\Local\\Temp\\rust_mozprofile02VJP4"
JavaScript error: resource://gre/modules/XULStore.jsm, line 66: Error: Can't find profile directory.
console.error: SearchCache: "_readCacheFile: Error reading cache file:" (new Error("", "(unknown module)"))
1599055111307 Marionette INFO Listening on port 51848
1599055111740 Marionette WARN TLS certificate errors will be ignored for this session
JavaScript error: https://connect.facebook.net/en_US/sdk.js?hash=cb598151c04fb6e648e59194eda61a43, line 59: uncaught exception: Error: invalid version specified
1599056620149 Marionette INFO Stopped listening on port 51848
###!!! [Child][RunMessage] Error: Channel closing: too late to send/recv, messages will be lost
###!!! [Child][MessageChannel::SendAndWait] Error: Channel error: cannot send/recv
1599056649543 geckodriver INFO Listening on 127.0.0.1:52024
1599056652561 mozrunner::runner INFO Running command: "C:\\Program Files\\Mozilla Firefox\\firefox.exe" "--marionette" "--width=576.0" "--height=864.0" "-foreground" "-no-remote" "-profile" "C:\\Users\\ryano\\AppData\\Local\\Temp\\rust_mozprofileJ3B2SG"
JavaScript error: resource://gre/modules/XULStore.jsm, line 66: Error: Can't find profile directory.
console.error: SearchCache: "_readCacheFile: Error reading cache file:" (new Error("", "(unknown module)"))
1599056660129 Marionette INFO Listening on port 52032
1599056660625 Marionette WARN TLS certificate errors will be ignored for this session
JavaScript error: https://connect.facebook.net/en_US/sdk.js?hash=cb598151c04fb6e648e59194eda61a43, line 59: uncaught exception: Error: invalid version specified
1599067664019 Marionette INFO Stopped listening on port 52032
###!!! [Child][MessageChannel::SendAndWait] Error: Channel error: cannot send/recv
1599068060522 geckodriver INFO Listening on 127.0.0.1:49854
1599068063600 mozrunner::runner INFO Running command: "C:\\Program Files\\Mozilla Firefox\\firefox.exe" "--marionette" "--width=576.0" "--height=864.0" "-foreground" "-no-remote" "-profile" "C:\\Users\\ryano\\AppData\\Local\\Temp\\rust_mozprofileaal07A"
JavaScript error: resource://gre/modules/XULStore.jsm, line 66: Error: Can't find profile directory.
console.error: SearchCache: "_readCacheFile: Error reading cache file:" (new Error("", "(unknown module)"))
1599068068329 Marionette INFO Listening on port 49863
1599068068832 Marionette WARN TLS certificate errors will be ignored for this session
JavaScript error: https://connect.facebook.net/en_US/sdk.js?hash=3b010c79473c138c2ec21069ac43b455, line 59: uncaught exception: Error: invalid version specified
[Child 3912, Chrome_ChildThread] WARNING: pipe error: 232: file /builds/worker/checkouts/gecko/ipc/chromium/src/chrome/common/ipc_channel_win.cc, line 545
1599068549370 Marionette INFO Stopped listening on port 49863
###!!! [Child][RunMessage] Error: Channel closing: too late to send/recv, messages will be lost
###!!! [Child][MessageChannel::SendAndWait] Error: Channel error: cannot send/recv
1599068612299 geckodriver INFO Listening on 127.0.0.1:50267
1599068615322 mozrunner::runner INFO Running command: "C:\\Program Files\\Mozilla Firefox\\firefox.exe" "--marionette" "--width=576.0" "--height=864.0" "-foreground" "-no-remote" "-profile" "C:\\Users\\ryano\\AppData\\Local\\Temp\\rust_mozprofileVpLa4k"
JavaScript error: resource://gre/modules/XULStore.jsm, line 66: Error: Can't find profile directory.
console.error: SearchCache: "_readCacheFile: Error reading cache file:" (new Error("", "(unknown module)"))
1599068618473 Marionette INFO Listening on port 50275
1599068618933 Marionette WARN TLS certificate errors will be ignored for this session
JavaScript error: https://connect.facebook.net/en_US/sdk.js?hash=3b010c79473c138c2ec21069ac43b455, line 59: uncaught exception: Error: invalid version specified
1599068830963 Marionette INFO Stopped listening on port 50275
###!!! [Child][RunMessage] Error: Channel closing: too late to send/recv, messages will be lost
###!!! [Child][MessageChannel::SendAndWait] Error: Channel error: cannot send/recv
1599068860925 geckodriver INFO Listening on 127.0.0.1:50463
1599068863957 mozrunner::runner INFO Running command: "C:\\Program Files\\Mozilla Firefox\\firefox.exe" "--marionette" "--width=576.0" "--height=864.0" "-foreground" "-no-remote" "-profile" "C:\\Users\\ryano\\AppData\\Local\\Temp\\rust_mozprofileHqQkht"
JavaScript error: resource://gre/modules/XULStore.jsm, line 66: Error: Can't find profile directory.
console.error: SearchCache: "_readCacheFile: Error reading cache file:" (new Error("", "(unknown module)"))
1599068867221 Marionette INFO Listening on port 50472
1599068867570 Marionette WARN TLS certificate errors will be ignored for this session
JavaScript error: https://connect.facebook.net/en_US/sdk.js?hash=3b010c79473c138c2ec21069ac43b455, line 59: uncaught exception: Error: invalid version specified
1599077995634 Marionette INFO Stopped listening on port 50472
###!!! [Child][MessageChannel::SendAndWait] Error: Channel error: cannot send/recv
1599078363726 geckodriver INFO Listening on 127.0.0.1:51031
1599078366833 mozrunner::runner INFO Running command: "C:\\Program Files\\Mozilla Firefox\\firefox.exe" "--marionette" "--width=576.0" "--height=864.0" "-foreground" "-no-remote" "-profile" "C:\\Users\\ryano\\AppData\\Local\\Temp\\rust_mozprofiler3WSxu"
JavaScript error: resource://gre/modules/XULStore.jsm, line 66: Error: Can't find profile directory.
console.error: SearchCache: "_readCacheFile: Error reading cache file:" (new Error("", "(unknown module)"))
1599078370089 Marionette INFO Listening on port 51039
1599078370450 Marionette WARN TLS certificate errors will be ignored for this session
JavaScript error: https://connect.facebook.net/en_US/sdk.js?hash=b8980703cf7e8eea91d33cff39cb6821, line 59: uncaught exception: Error: invalid version specified
1599085182323 Marionette INFO Stopped listening on port 51039
###!!! [Child][RunMessage] Error: Channel closing: too late to send/recv, messages will be lost
###!!! [Child][MessageChannel::SendAndWait] Error: Channel error: cannot send/recv
1599096178419 geckodriver INFO Listening on 127.0.0.1:50184
1599096181531 mozrunner::runner INFO Running command: "C:\\Program Files\\Mozilla Firefox\\firefox.exe" "--marionette" "--width=576.0" "--height=864.0" "-foreground" "-no-remote" "-profile" "C:\\Users\\ryano\\AppData\\Local\\Temp\\rust_mozprofileneUsha"
JavaScript error: resource://gre/modules/XULStore.jsm, line 66: Error: Can't find profile directory.
console.error: SearchCache: "_readCacheFile: Error reading cache file:" (new Error("", "(unknown module)"))
1599096184715 Marionette INFO Listening on port 50192
1599096185173 Marionette WARN TLS certificate errors will be ignored for this session
JavaScript error: https://connect.facebook.net/en_US/sdk.js?hash=b26ea057c8cd61cc1165a0a218a8f229, line 59: uncaught exception: Error: invalid version specified
[GFX1-]: DCompositionSurface::BeginDraw failed: 0x8007000e
[GFX1-]: Compositors might be mixed (5,3)
[GFX1-]: Failed to create a D3D11 content device: 0x887a0004
[GFX1-]: (gfxWindowsPlatform) Detected device reset: 2
[GFX1-]: (gfxWindowsPlatform) scheduled device update.
[GFX1-]: LayerManager::EndTransaction skip RenderLayer().
[GFX1-]: (gfxWindowsPlatform) Detected device reset: 2
[GFX1-]: (gf[GFX1-]: GFX: D3D11 skip BeginFrame with device-removed.
xWindowsPlatform) scheduled device update.
[GFX1-]: (gfxWindowsPlatform) Detected device reset: 2
[GFX1-]: (gfxWindowsPlatform) scheduled device update.
[GFX1-]: LayerManager::EndTransaction skip RenderLayer().
[GFX1-]: (gfxWindowsPlatform) Detected device reset: 2
[GFX1-]: (gfxWindowsPlatform) scheduled device update.
[GFX1-]: [D3D11] failed to get compositor device.
[GFX1-]: [D3D11] Failed to init compositor with reason: FEATURE_FAILURE_D3D11_NO_DEVICE
[GFX1-]: (gfxWindowsPlatform) Detected device reset: 2
[GFX1-]: (gfxWindowsPlatform) scheduled device update.
[GFX1-]: LayerManager::EndTransaction skip RenderLayer().
[GFX1-]: (gfxWindowsPlatform) Detected device reset: 2
[GFX1-]: (gfxWindowsPlatform) scheduled device update.
[GFX1-]: (gfxWindowsPlatform) Detected device reset: 2
[GFX1-]: (gfxWindowsPlatform) scheduled device update.
[GFX1-]: (gfxWindowsPlatform) Detected device reset: 2
[GFX1-]: (gfxWindowsPlatform) scheduled device update.
[GFX1-]: (gfxWindowsPlatform) Detected device reset: 2
[GFX1-]: (gfxWindowsPlatform) scheduled device update.
[GFX1-]: (gfxWindowsPlatform) Detected device reset: 2
[GFX1-]: (gfxWindowsPlatform) scheduled device update.
[GFX1-]: (gfxWindowsPlatform) Detected device reset: 2
[GFX1-]: (gfxWindowsPlatform) scheduled device update.
[GFX1-]: (gfxWindowsPlatform) Detected device reset: 2
[GFX1-]: (gfxWindowsPlatform) scheduled device update.
[GFX1-]: (gfxWindowsPlatform) Detected device reset: 2
[GFX1-]: (gfxWindowsPlatform) scheduled device update.
1599136847375 Marionette INFO Stopped listening on port 50192
###!!! [Child][RunMessage] Error: Channel closing: too late to send/recv, messages will be lost
1599137154947 geckodriver INFO Listening on 127.0.0.1:51215
1599137157978 mozrunner::runner INFO Running command: "C:\\Program Files\\Mozilla Firefox\\firefox.exe" "--marionette" "--width=576.0" "--height=864.0" "-foreground" "-no-remote" "-profile" "C:\\Users\\ryano\\AppData\\Local\\Temp\\rust_mozprofileAqBRne"
JavaScript error: resource://gre/modules/XULStore.jsm, line 66: Error: Can't find profile directory.
console.error: SearchCache: "_readCacheFile: Error reading cache file:" (new Error("", "(unknown module)"))
1599137160518 Marionette INFO Listening on port 51223
1599137160644 Marionette WARN TLS certificate errors will be ignored for this session
JavaScript error: https://connect.facebook.net/en_US/sdk.js?hash=07972f5182fdde6eef1d10a7857affd3, line 59: uncaught exception: Error: invalid version specified
JavaScript warning: https://pagead2.googlesyndication.com/bg/w3uW36kZ3iEz52fjwmSMTfWAeiBMgQCjgDc5TerGjFY.js line 1 > eval line 4895 > eval line 1 > eval, line 1: WebGL warning: <Create>: getContext: Disallowing antialiased backbuffers due to blacklisting. (FEATURE_FAILURE_MICROSOFT_BASIC_VENDOR)
1599137229010 Marionette INFO Stopped listening on port 51223
###!!! [Child][RunMessage] Error: Channel closing: too late to send/recv, messages will be lost
1599137313547 geckodriver INFO Listening on 127.0.0.1:51329
1599137316594 mozrunner::runner INFO Running command: "C:\\Program Files\\Mozilla Firefox\\firefox.exe" "--marionette" "--width=576.0" "--height=864.0" "-foreground" "-no-remote" "-profile" "C:\\Users\\ryano\\AppData\\Local\\Temp\\rust_mozprofileY2SBiP"