-
Notifications
You must be signed in to change notification settings - Fork 10
/
geckodriver.log
4924 lines (4813 loc) · 491 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
1511442938509 geckodriver INFO geckodriver 0.19.0
1511442938509 geckodriver INFO Listening on 127.0.0.1:61890
1511442940618 mozrunner::runner INFO Running command: "C:\\Program Files\\Mozilla Firefox\\firefox.exe" "-marionette" "-profile" "C:\\Users\\SHPOOZ~1\\AppData\\Local\\Temp\\rust_mozprofile.dMel4FE5hvHG"
1511442941101 Marionette INFO Enabled via --marionette
Unable to read VR Path Registry from C:\Users\Shpoozipoo\AppData\Local\openvr\openvrpaths.vrpath
[Parent 35472, Gecko_IOThread] WARNING: pipe error: 109: file z:/build/build/src/ipc/chromium/src/chrome/common/ipc_channel_win.cc, line 346
Unable to read VR Path Registry from C:\Users\Shpoozipoo\AppData\Local\openvr\openvrpaths.vrpath
[Child 24856, Chrome_ChildThread] WARNING: pipe error: 109: file z:/build/build/src/ipc/chromium/src/chrome/common/ipc_channel_win.cc, line 346
[Child 24856, Chrome_ChildThread] WARNING: pipe error: 109: file z:/build/build/src/ipc/chromium/src/chrome/common/ipc_channel_win.cc, line 346
1511442942382 Marionette INFO Listening on port 61897
1511442942689 Marionette WARN TLS certificate errors will be ignored for this session
1511442942811 Marionette DEBUG Register listener.js for window 4294967297
1511442942832 Marionette DEBUG Received DOM event "beforeunload" for "about:blank"
1511442943344 Marionette DEBUG Received DOM event "pagehide" for "about:blank"
1511442943345 Marionette DEBUG Received DOM event "unload" for "about:blank"
1511442944209 Marionette DEBUG Received DOM event "DOMContentLoaded" for "http://www.aslpro.com/cgi-bin/aslpro/aslpro.cgi"
1511442947107 Marionette DEBUG Received DOM event "pageshow" for "http://www.aslpro.com/cgi-bin/aslpro/aslpro.cgi"
Unable to read VR Path Registry from C:\Users\Shpoozipoo\AppData\Local\openvr\openvrpaths.vrpath
[Child 52404, Chrome_ChildThread] WARNING: pipe error: 109: file z:/build/build/src/ipc/chromium/src/chrome/common/ipc_channel_win.cc, line 346
Unable to read VR Path Registry from C:\Users\Shpoozipoo\AppData\Local\openvr\openvrpaths.vrpath
[Child 35300, Chrome_ChildThread] WARNING: pipe error: 232: file z:/build/build/src/ipc/chromium/src/chrome/common/ipc_channel_win.cc, line 513
[Child 35300, Chrome_ChildThread] WARNING: pipe error: 109: file z:/build/build/src/ipc/chromium/src/chrome/common/ipc_channel_win.cc, line 346
###!!! [Child][RunMessage] Error: Channel closing: too late to send/recv, messages will be lost
###!!! [Child][RunMessage] Error: Channel closing: too late to send/recv, messages will be lost
[Child 35300, Chrome_ChildThread] WARNING: pipe error: 109: file z:/build/build/src/ipc/chromium/src/chrome/common/ipc_channel_win.cc, line 346
###!!! [Child][MessageChannel::SendAndWait] Error: Channel error: cannot send/recv
Marionette WARN TLS certificate errors will be ignored for this session
1511442951573 Marionette DEBUG Register listener.js for window 4294967297
1511442951592 Marionette DEBUG Received DOM event "beforeunload" for "about:blank"
1511442952109 Marionette DEBUG Received DOM event "pagehide" for "about:blank"
1511442952110 Marionette DEBUG Received DOM event "unload" for "about:blank"
1511442952962 Marionette DEBUG Received DOM event "DOMContentLoaded" for "http://www.aslpro.com/cgi-bin/aslpro/aslpro.cgi"
1511442955020 Marionette DEBUG Received DOM event "pageshow" for "http://www.aslpro.com/cgi-bin/aslpro/aslpro.cgi"
Unable to read VR Path Registry from C:\Users\Shpoozipoo\AppData\Local\openvr\openvrpaths.vrpath
[Child 101636, Chrome_ChildThread] WARNING: pipe error: 109: file z:/build/build/src/ipc/chromium/src/chrome/common/ipc_channel_win.cc, line 346
Unable to read VR Path Registry from C:\Users\Shpoozipoo\AppData\Local\openvr\openvrpaths.vrpath
[Child 68748, Chrome_ChildThread] WARNING: pipe error: 109: file z:/build/build/src/ipc/chromium/src/chrome/common/ipc_channel_win.cc, line 346
[Child 68748, Chrome_ChildThread] WARNING: pipe error: 109: file z:/build/build/src/ipc/chromium/src/chrome/common/ipc_channel_win.cc, line 346
###!!! [Child][MessageChannel::SendAndWait] Error: Channel error: cannot send/recv
Chrome_ChildThread] WARNING: pipe error: 109: file z:/build/build/src/ipc/chromium/src/chrome/common/ipc_channel_win.cc, line 346
1511442958847 Marionette INFO Listening on port 62004
1511442959345 Marionette WARN TLS certificate errors will be ignored for this session
1511442959488 Marionette DEBUG Register listener.js for window 4294967297
1511442959516 Marionette DEBUG Received DOM event "beforeunload" for "about:blank"
1511442960047 Marionette DEBUG Received DOM event "pagehide" for "about:blank"
1511442960047 Marionette DEBUG Received DOM event "unload" for "about:blank"
1511442960814 Marionette DEBUG Received DOM event "DOMContentLoaded" for "http://www.aslpro.com/cgi-bin/aslpro/aslpro.cgi"
1511442962761 Marionette DEBUG Received DOM event "pageshow" for "http://www.aslpro.com/cgi-bin/aslpro/aslpro.cgi"
Unable to read VR Path Registry from C:\Users\Shpoozipoo\AppData\Local\openvr\openvrpaths.vrpath
[Child 81624, Chrome_ChildThread] WARNING: pipe error: 109: file z:/build/build/src/ipc/chromium/src/chrome/common/ipc_channel_win.cc, line 346
[Parent 36964, Gecko_IOThread] WARNING: pipe error: 109: file z:/build/build/src/ipc/chromium/src/chrome/common/ipc_channel_win.cc, line 346
###!!! [Child][RunMessage] Error: Channel closing: too late to send/recv, messages will be lost
Unable to read VR Path Registry from C:\Users\Shpoozipoo\AppData\Local\openvr\openvrpaths.vrpath
[Child 73760, Chrome_ChildThread] WARNING: pipe error: 109: file z:/build/build/src/ipc/chromium/src/chrome/common/ipc_channel_win.cc, line 346
###!!! [Child][RunMessage] Error: Channel closing: too late to send/recv, messages will be lost
###!!! [Child][MessageChannel::SendAndWait] Error: Channel error: cannot send/recv
ionette DEBUG Register listener.js for window 4294967297
1511442967275 Marionette DEBUG Received DOM event "beforeunload" for "about:blank"
1511442967785 Marionette DEBUG Received DOM event "pagehide" for "about:blank"
1511442967787 Marionette DEBUG Received DOM event "unload" for "about:blank"
1511442968360 Marionette DEBUG Received DOM event "DOMContentLoaded" for "http://www.aslpro.com/cgi-bin/aslpro/aslpro.cgi"
1511442970086 Marionette DEBUG Received DOM event "pageshow" for "http://www.aslpro.com/cgi-bin/aslpro/aslpro.cgi"
###!!! [Child][MessageChannel] Error: (msgtype=0x4B0027,name=PNecko::Msg_RemoveRequestContext) Channel closing: too late to send/recv, messages will be lost
###!!! [Child][RunMessage] Error: Channel closing: too late to send/recv, messages will be lost
###!!! [Child][RunMessage] Error: Channel closing: too late to send/recv, messages will be lost
Unable to read VR Path Registry from C:\Users\Shpoozipoo\AppData\Local\openvr\openvrpaths.vrpath
[Child 59708, Chrome_ChildThread] WARNING: pipe error: 109: file z:/build/build/src/ipc/chromium/src/chrome/common/ipc_channel_win.cc, line 346
###!!! [Child][MessageChannel::SendAndWait] Error: Channel error: cannot send/recv
Unable to read VR Path Registry from C:\Users\Shpoozipoo\AppData\Local\openvr\openvrpaths.vrpath
ing on port 62112
1511442974450 Marionette WARN TLS certificate errors will be ignored for this session
1511442974544 Marionette DEBUG Register listener.js for window 4294967297
1511442974557 Marionette DEBUG Received DOM event "beforeunload" for "about:blank"
1511442975420 Marionette DEBUG Received DOM event "pagehide" for "about:blank"
1511442975421 Marionette DEBUG Received DOM event "unload" for "about:blank"
1511442976260 Marionette DEBUG Received DOM event "DOMContentLoaded" for "http://www.aslpro.com/cgi-bin/aslpro/aslpro.cgi"
1511442978706 Marionette DEBUG Received DOM event "pageshow" for "http://www.aslpro.com/cgi-bin/aslpro/aslpro.cgi"
Unable to read VR Path Registry from C:\Users\Shpoozipoo\AppData\Local\openvr\openvrpaths.vrpath
[Parent 68076, Gecko_IOThread] WARNING: pipe error: 109: file z:/build/build/src/ipc/chromium/src/chrome/common/ipc_channel_win.cc, line 346
###!!! [Child][MessageChannel::SendAndWait] Error: Channel error: cannot send/recv
arionette INFO Enabled via --marionette
Unable to read VR Path Registry from C:\Users\Shpoozipoo\AppData\Local\openvr\openvrpaths.vrpath
[Child 77648, Chrome_ChildThread] WARNING: pipe error: 109: file z:/build/build/src/ipc/chromium/src/chrome/common/ipc_channel_win.cc, line 346
[Child 77648, Chrome_ChildThread] WARNING: pipe error: 109: file z:/build/build/src/ipc/chromium/src/chrome/common/ipc_channel_win.cc, line 346
1511442982822 Marionette INFO Listening on port 62174
1511442983126 Marionette WARN TLS certificate errors will be ignored for this session
1511442983234 Marionette DEBUG Register listener.js for window 4294967297
1511442983248 Marionette DEBUG Received DOM event "beforeunload" for "about:blank"
1511442984098 Marionette DEBUG Received DOM event "pagehide" for "about:blank"
1511442984099 Marionette DEBUG Received DOM event "unload" for "about:blank"
1511442985513 Marionette DEBUG Received DOM event "DOMContentLoaded" for "http://www.aslpro.com/cgi-bin/aslpro/aslpro.cgi"
1511442987507 Marionette DEBUG Received observer notification "outer-window-destroyed" for "4294967334"
1511442987582 Marionette DEBUG Received observer notification "outer-window-destroyed" for "4294967336"
1511442990453 Marionette DEBUG Received DOM event "pageshow" for "http://www.aslpro.com/cgi-bin/aslpro/aslpro.cgi"
Unable to read VR Path Registry from C:\Users\Shpoozipoo\AppData\Local\openvr\openvrpaths.vrpath
[Parent 53680, Gecko_IOThread] WARNING: pipe error: 109: file z:/build/build/src/ipc/chromium/src/chrome/common/ipc_channel_win.cc, line 346
[Parent 53680, Gecko_IOThread] WARNING: pipe error: 109: file z:/build/build/src/ipc/chromium/src/chrome/common/ipc_channel_win.cc, line 346
Unable to read VR Path Registry from C:\Users\Shpoozipoo\AppData\Local\openvr\openvrpaths.vrpath
[Child 66844, Chrome_ChildThread] WARNING: pipe error: 109: file z:/build/build/src/ipc/chromium/src/chrome/common/ipc_channel_win.cc, line 346
###!!! [Child][MessageChannel::SendAndWait] Error: Channel error: cannot send/recv
1511443292221 geckodriver INFO geckodriver 0.19.0
1511443292221 geckodriver INFO Listening on 127.0.0.1:62289
1511443294269 mozrunner::runner INFO Running command: "C:\\Program Files\\Mozilla Firefox\\firefox.exe" "-marionette" "-profile" "C:\\Users\\SHPOOZ~1\\AppData\\Local\\Temp\\rust_mozprofile.pmDDFxZ0GKZI"
1511443294690 Marionette INFO Enabled via --marionette
Unable to read VR Path Registry from C:\Users\Shpoozipoo\AppData\Local\openvr\openvrpaths.vrpath
[Child 71216, Chrome_ChildThread] WARNING: pipe error: 109: file z:/build/build/src/ipc/chromium/src/chrome/common/ipc_channel_win.cc, line 346
[Child 71216, Chrome_ChildThread] WARNING: pipe error: 109: file z:/build/build/src/ipc/chromium/src/chrome/common/ipc_channel_win.cc, line 346
1511443295945 Marionette INFO Listening on port 62295
1511443296336 Marionette WARN TLS certificate errors will be ignored for this session
1511443296396 Marionette DEBUG Register listener.js for window 4294967297
1511443296412 Marionette DEBUG Received DOM event "beforeunload" for "about:blank"
1511443296950 Marionette DEBUG Received DOM event "pagehide" for "about:blank"
1511443296951 Marionette DEBUG Received DOM event "unload" for "about:blank"
1511443297547 Marionette DEBUG Received DOM event "DOMContentLoaded" for "http://www.aslpro.com/cgi-bin/aslpro/aslpro.cgi"
1511443300908 Marionette DEBUG Received DOM event "pageshow" for "http://www.aslpro.com/cgi-bin/aslpro/aslpro.cgi"
Unable to read VR Path Registry from C:\Users\Shpoozipoo\AppData\Local\openvr\openvrpaths.vrpath
[Parent 61641511443358867 mozrunner::runner INFO Running command: "C:\\Program Files\\Mozilla Firefox\\firefox.exe" "-marionette" "-profile" "C:\\Users\\SHPOOZ~1\\AppData\\Local\\Temp\\rust_mozprofile.tYStQaP5J3mX"
1511443359294 Marionette INFO Enabled via --marionette
Unable to read VR Path Registry from C:\Users\Shpoozipoo\AppData\Local\openvr\openvrpaths.vrpath
[Child 80888, Chrome_ChildThread] WARNING: pipe error: 109: file z:/build/build/src/ipc/chromium/src/chrome/common/ipc_channel_win.cc, line 346
1511443360536 Marionette INFO Listening on port 62363
1511443360925 Marionette WARN TLS certificate errors will be ignored for this session
1511443361026 Marionette DEBUG Register listener.js for window 4294967297
1511443361043 Marionette DEBUG Received DOM event "beforeunload" for "about:blank"
1511443361710 Marionette DEBUG Received DOM event "pagehide" for "about:blank"
1511443361711 Marionette DEBUG Received DOM event "unload" for "about:blank"
1511443362395 Marionette DEBUG Received DOM event "DOMContentLoaded" for "http://www.aslpro.com/cgi-bin/aslpro/aslpro.cgi"
1511443365012 Marionette DEBUG Received observer notification "outer-window-destroyed" for "4294967337"
1511443365013 Marionette DEBUG Received observer notification "outer-window-destroyed" for "4294967339"
1511443365030 Marionette DEBUG Received DOM event "pageshow" for "http://www.aslpro.com/cgi-bin/aslpro/aslpro.cgi"
Unable to read VR Path Registry from C:\Users\Shpoozipoo\AppData\Local\openvr\openvrpaths.vrpath
[Parent 88320, Gecko_IOThread] WARNING: pipe error: 109: file z:/build/build/src/ipc/chromium/src/chrome/common/ipc_channel_win.cc, line 346
###!!! [Child][MessageChannel::SendAndWait] Error: Channel error: cannot send/recv
arionette INFO Enabled via --marionette
Unable to read VR Path Registry from C:\Users\Shpoozipoo\AppData\Local\openvr\openvrpaths.vrpath
[Child 17984, Chrome_ChildThread] WARNING: pipe error: 109: file z:/build/build/src/ipc/chromium/src/chrome/common/ipc_channel_win.cc, line 346
[Child 17984, Chrome_ChildThread] WARNING: pipe error: 109: file z:/build/build/src/ipc/chromium/src/chrome/common/ipc_channel_win.cc, line 346
1511443433451 Marionette INFO Listening on port 62482
1511443433858 Marionette WARN TLS certificate errors will be ignored for this session
1511443434027 Marionette DEBUG Register listener.js for window 4294967297
1511443434074 Marionette DEBUG Received DOM event "beforeunload" for "about:blank"
1511443434631 Marionette DEBUG Received DOM event "pagehide" for "about:blank"
1511443434633 Marionette DEBUG Received DOM event "unload" for "about:blank"
1511443435367 Marionette DEBUG Received DOM event "DOMContentLoaded" for "http://www.aslpro.com/cgi-bin/aslpro/aslpro.cgi"
1511443436970 Marionette DEBUG Received DOM event "pageshow" for "http://www.aslpro.com/cgi-bin/aslpro/aslpro.cgi"
Unable to read VR Path Registry from C:\Users\Shpoozipoo\AppData\Local\openvr\openvrpaths.vrpath
[Parent 105724, Gecko_IOThread] WARNING: pipe error: 109: file z:/build/build/src/ipc/chromium/src/chrome/common/ipc_channel_win.cc, line 346
[Parent 105724, Gecko_IOThread] WARNING: pipe error: 109: file z:/build/build/src/ipc/chromium/src/chrome/common/ipc_channel_win.cc, line 346
Unable to read VR Path Registry from C:\Users\Shpoozipoo\AppData\Local\openvr\openvrpaths.vrpath
[Child 79060, Chrome_ChildThread] WARNING: pipe error: 109: file z:/build/build/src/ipc/chromium/src/chrome/common/ipc_channel_win.cc, line 346
Unable to read VR Path Registry from C:\Users\Shpoozipoo\AppData\Local\openvr\openvrpaths.vrpath
[Child 78144, Chrome_ChildThread] WARNING: pipe error: 109: file z:/build/build/src/ipc/chromium/src/chrome/common/ipc_channel_win.cc, line 346
###!!! [Child][MessageChannel::SendAndWait] Error: Channel error: cannot send/recv
dow 4294967297
1511443463472 Marionette DEBUG Received DOM event "beforeunload" for "about:blank"
1511443463971 Marionette DEBUG Received DOM event "pagehide" for "about:blank"
1511443463972 Marionette DEBUG Received DOM event "unload" for "about:blank"
1511443464575 Marionette DEBUG Received DOM event "DOMContentLoaded" for "http://www.aslpro.com/cgi-bin/aslpro/aslpro.cgi"
1511443467840 Marionette DEBUG Received DOM event "pageshow" for "http://www.aslpro.com/cgi-bin/aslpro/aslpro.cgi"
1511443468720 geckodriver INFO geckodriver 0.19.0
1511443468720 geckodriver INFO Listening on 127.0.0.1:62646
1511443470768 mozrunner::runner INFO Running command: "C:\\Program Files\\Mozilla Firefox\\firefox.exe" "-marionette" "-profile" "C:\\Users\\SHPOOZ~1\\AppData\\Local\\Temp\\rust_mozprofile.rfgOEAAGnGlV"
1511443471189 Marionette INFO Enabled via --marionette
Unable to read VR Path Registry from C:\Users\Shpoozipoo\AppData\Local\openvr\openvrpaths.vrpath
[Child 13272, Chrome_ChildThread] WARNING: pipe error: 109: file z:/build/build/src/ipc/chromium/src/chrome/common/ipc_channel_win.cc, line 346
[Child 13272, Chrome_ChildThread] WARNING: pipe error: 109: file z:/build/build/src/ipc/chromium/src/chrome/common/ipc_channel_win.cc, line 346
1511443472472 Marionette INFO Listening on port 62652
1511443472853 Marionette WARN TLS certificate errors will be ignored for this session
1511443472966 Marionette DEBUG Register listener.js for window 4294967297
1511443472981 Marionette DEBUG Received DOM event "beforeunload" for "about:blank"
1511443473499 Marionette DEBUG Received DOM event "pagehide" for "about:blank"
1511443473499 Marionette DEBUG Received DOM event "unload" for "about:blank"
1511443474039 Marionette DEBUG Received DOM event "DOMContentLoaded" for "http://www.aslpro.com/cgi-bin/aslpro/aslpro.cgi"
1511443476302 Marionette DEBUG Received observer notification "outer-window-destroyed" for "4294967333"
1511443477441 Marionette DEBUG Received observer notification "outer-window-destroyed" for "4294967343"
1511443478154 Marionette DEBUG Received DOM event "pageshow" for "http://www.aslpro.com/cgi-bin/aslpro/aslpro.cgi"
1511443478940 geckodriver INFO geckodriver 0.19.0
1511443478940 geckodriver INFO Listening on 127.0.0.1:62772
1511443481018 mozrunner::runner INFO Running command: "C:\\Program Files\\Mozilla Firefox\\firefox.exe" "-marionette" "-profile" "C:\\Users\\SHPOOZ~1\\AppData\\Local\\Temp\\rust_mozprofile.DJIoEcdewKiW"
1511443481472 Marionette INFO Enabled via --marionette
Unable to read VR Path Registry from C:\Users\Shpoozipoo\AppData\Local\openvr\openvrpaths.vrpath
[Child 49608, Chrome_ChildThread] WARNING: pipe error: 109: file z:/build/build/src/ipc/chromium/src/chrome/common/ipc_channel_win.cc, line 346
[Child 49608, Chrome_ChildThread] WARNING: pipe error: 109: file z:/build/build/src/ipc/chromium/src/chrome/common/ipc_channel_win.cc, line 346
1511443482709 Marionette INFO Listening on port 62778
1511443483062 Marionette WARN TLS certificate errors will be ignored for this session
1511443483211 Marionette DEBUG Register listener.js for window 4294967297
1511443483229 Marionette DEBUG Received DOM event "beforeunload" for "about:blank"
1511443483772 Marionette DEBUG Received DOM event "pagehide" for "about:blank"
1511443483773 Marionette DEBUG Received DOM event "unload" for "about:blank"
1511443484359 Marionette DEBUG Received DOM event "DOMContentLoaded" for "http://www.aslpro.com/cgi-bin/aslpro/aslpro.cgi"
1511443820747 geckodriver INFO geckodriver 0.19.0
1511443820763 geckodriver INFO Listening on 127.0.0.1:62838
1511443822794 mozrunner::runner INFO Running command: "C:\\Program Files\\Mozilla Firefox\\firefox.exe" "-marionette" "-profile" "C:\\Users\\SHPOOZ~1\\AppData\\Local\\Temp\\rust_mozprofile.pGo400Pq6myq"
1511443823221 Marionette INFO Enabled via --marionette
Unable to read VR Path Registry from C:\Users\Shpoozipoo\AppData\Local\openvr\openvrpaths.vrpath
[Child 84076, Chrome_ChildThread] WARNING: pipe error: 109: file z:/build/build/src/ipc/chromium/src/chrome/common/ipc_channel_win.cc, line 346
[Child 84076, Chrome_ChildThread] WARNING: pipe error: 109: file z:/build/build/src/ipc/chromium/src/chrome/common/ipc_channel_win.cc, line 346
1511443824414 Marionette INFO Listening on port 62844
1511443824868 Marionette WARN TLS certificate errors will be ignored for this session
1511443825074 Marionette DEBUG Register listener.js for window 4294967297
1511443825094 Marionette DEBUG Received DOM event "beforeunload" for "about:blank"
1511443825639 Marionette DEBUG Received DOM event "pagehide" for "about:blank"
1511443825640 Marionette DEBUG Received DOM event "unload" for "about:blank"
1511443826264 Marionette DEBUG Received DOM event "DOMContentLoaded" for "http://www.aslpro.com/cgi-bin/aslpro/aslpro.cgi"
1511443829004 Marionette DEBUG Received DOM event "pageshow" for "http://www.aslpro.com/cgi-bin/aslpro/aslpro.cgi"
Unable to read VR Path Registry from C:\Users\Shpoozipoo\AppData\Local\openvr\openvrpaths.vrpath
[Parent 45672, Gecko_IOThread] WARNING: pipe error: 109: file z:/build/build/src/ipc/chromium/src/chrome/common/ipc_channel_win.cc, line 346
###!!! [Child][MessageChannel::SendAndWait] Error: Channel error: cannot send/recv
arionette INFO Enabled via --marionette
Unable to read VR Path Registry from C:\Users\Shpoozipoo\AppData\Local\openvr\openvrpaths.vrpath
[Parent 65360, Gecko_IOThread] WARNING: pipe error: 109: file z:/build/build/src/ipc/chromium/src/chrome/common/ipc_channel_win.cc, line 346
Unable to read VR Path Registry from C:\Users\Shpoozipoo\AppData\Local\openvr\openvrpaths.vrpath
[Child 4328, Chrome_ChildThread] WARNING: pipe error: 109: file z:/build/build/src/ipc/chromium/src/chrome/common/ipc_channel_win.cc, line 346
[Child 4328, Chrome_ChildThread] WARNING: pipe error: 109: file z:/build/build/src/ipc/chromium/src/chrome/common/ipc_channel_win.cc, line 346
1511443874647 Marionette INFO Listening on port 62913
1511443875098 Marionette WARN TLS certificate errors will be ignored for this session
1511443875193 Marionette DEBUG Register listener.js for window 4294967297
1511443875207 Marionette DEBUG Received DOM event "beforeunload" for "about:blank"
1511443875824 Marionette DEBUG Received DOM event "pagehide" for "about:blank"
1511443875825 Marionette DEBUG Received DOM event "unload" for "about:blank"
1511443876385 Marionette DEBUG Received DOM event "DOMContentLoaded" for "http://www.aslpro.com/cgi-bin/aslpro/aslpro.cgi"
1511443879900 Marionette DEBUG Received DOM event "pageshow" for "http://www.aslpro.com/cgi-bin/aslpro/aslpro.cgi"
1511443880622 geckodriver INFO geckodriver 0.19.0
1511443880637 geckodriver INFO Listening on 127.0.0.1:62993
1511443882700 mozrunner::runner INFO Running command: "C:\\Program Files\\Mozilla Firefox\\firefox.exe" "-marionette" "-profile" "C:\\Users\\SHPOOZ~1\\AppData\\Local\\Temp\\rust_mozprofile.mdsCH1D07b7q"
1511443883119 Marionette INFO Enabled via --marionette
1511443884428 Marionette INFO Listening on port 62999
1511443884736 Marionette WARN TLS certificate errors will be ignored for this session
1511443884793 Marionette DEBUG Register listener.js for window 4294967297
1511443884803 Marionette DEBUG Received DOM event "beforeunload" for "about:blank"
1511443885294 Marionette DEBUG Received DOM event "pagehide" for "about:blank"
1511443885295 Marionette DEBUG Received DOM event "unload" for "about:blank"
1511443885795 Marionette DEBUG Received DOM event "DOMContentLoaded" for "http://www.aslpro.com/cgi-bin/aslpro/aslpro.cgi"
1511444089507 geckodriver INFO geckodriver 0.19.0
1511444089507 geckodriver INFO Listening on 127.0.0.1:63091
1511444091586 mozrunner::runner INFO Running command: "C:\\Program Files\\Mozilla Firefox\\firefox.exe" "-marionette" "-profile" "C:\\Users\\SHPOOZ~1\\AppData\\Local\\Temp\\rust_mozprofile.Mo2xalzc6sAy"
1511444092003 Marionette INFO Enabled via --marionette
Unable to read VR Path Registry from C:\Users\Shpoozipoo\AppData\Local\openvr\openvrpaths.vrpath
[Child 75908, Chrome_ChildThread] WARNING: pipe error: 109: file z:/build/build/src/ipc/chromium/src/chrome/common/ipc_channel_win.cc, line 346
[Child 75908, Chrome_ChildThread] WARNING: pipe error: 109: file z:/build/build/src/ipc/chromium/src/chrome/common/ipc_channel_win.cc, line 346
1511444093210 Marionette INFO Listening on port 63097
1511444093639 Marionette WARN TLS certificate errors will be ignored for this session
1511444093786 Marionette DEBUG Register listener.js for window 4294967297
1511444093810 Marionette DEBUG Received DOM event "beforeunload" for "about:blank"
1511444094337 Marionette DEBUG Received DOM event "pagehide" for "about:blank"
1511444094337 Marionette DEBUG Received DOM event "unload" for "about:blank"
1511444094873 Marionette DEBUG Received DOM event "DOMContentLoaded" for "http://www.aslpro.com/cgi-bin/aslpro/aslpro.cgi"
1511444096821 Marionette DEBUG Received observer notification "outer-window-destroyed" for "4294967337"
1511444096822 Marionette DEBUG Received observer notification "outer-window-destroyed" for "4294967339"
1511444097536 Marionette DEBUG Received DOM event "pageshow" for "http://www.aslpro.com/cgi-bin/aslpro/aslpro.cgi"
1511444098214 geckodriver INFO geckodriver 0.19.0
1511444098230 geckodriver INFO Listening on 127.0.0.1:63172
1511444100308 mozrunner::runner INFO Running command: "C:\\Program Files\\Mozilla Firefox\\firefox.exe" "-marionette" "-profile" "C:\\Users\\SHPOOZ~1\\AppData\\Local\\Temp\\rust_mozprofile.J3YAFuZwyRGM"
1511444100728 Marionette INFO Enabled via --marionette
Unable to read VR Path Registry from C:\Users\Shpoozipoo\AppData\Local\openvr\openvrpaths.vrpath
[Parent 17084, Gecko_IOThread] WARNING: pipe error: 109: file z:/build/build/src/ipc/chromium/src/chrome/common/ipc_channel_win.cc, line 346
Unable to read VR Path Registry from C:\Users\Shpoozipoo\AppData\Local\openvr\openvrpaths.vrpath
[Child 20104, Chrome_ChildThread] WARNING: pipe error: 109: file z:/build/build/src/ipc/chromium/src/chrome/common/ipc_channel_win.cc, line 346
[Child 20104, Chrome_ChildThread] WARNING: pipe error: 109: file z:/build/build/src/ipc/chromium/src/chrome/common/ipc_channel_win.cc, line 346
1511444102077 Marionette INFO Listening on port 63178
1511444102342 Marionette WARN TLS certificate errors will be ignored for this session
1511444102384 Marionette DEBUG Register listener.js for window 4294967297
1511444102396 Marionette DEBUG Received DOM event "beforeunload" for "about:blank"
1511444103018 Marionette DEBUG Received DOM event "pagehide" for "about:blank"
1511444103019 Marionette DEBUG Received DOM event "unload" for "about:blank"
1511444103693 Marionette DEBUG Received DOM event "DOMContentLoaded" for "http://www.aslpro.com/cgi-bin/aslpro/aslpro.cgi"
1511444106510 Marionette DEBUG Received DOM event "pageshow" for "http://www.aslpro.com/cgi-bin/aslpro/aslpro.cgi"
1511444107246 geckodriver INFO geckodriver 0.19.0
1511444107246 geckodriver INFO Listening on 127.0.0.1:63263
1511444109325 mozrunner::runner INFO Running command: "C:\\Program Files\\Mozilla Firefox\\firefox.exe" "-marionette" "-profile" "C:\\Users\\SHPOOZ~1\\AppData\\Local\\Temp\\rust_mozprofile.0ykAwxaDhBup"
1511444109755 Marionette INFO Enabled via --marionette
Unable to read VR Path Registry from C:\Users\Shpoozipoo\AppData\Local\openvr\openvrpaths.vrpath
[Parent 44832, Gecko_IOThread] WARNING: pipe error: 109: file z:/build/build/src/ipc/chromium/src/chrome/common/ipc_channel_win.cc, line 346
Unable to read VR Path Registry from C:\Users\Shpoozipoo\AppData\Local\openvr\openvrpaths.vrpath
[Child 30504, Chrome_ChildThread] WARNING: pipe error: 109: file z:/build/build/src/ipc/chromium/src/chrome/common/ipc_channel_win.cc, line 346
[Child 30504, Chrome_ChildThread] WARNING: pipe error: 109: file z:/build/build/src/ipc/chromium/src/chrome/common/ipc_channel_win.cc, line 346
1511444110965 Marionette INFO Listening on port 63269
1511444111380 Marionette WARN TLS certificate errors will be ignored for this session
1511444111548 Marionette DEBUG Register listener.js for window 4294967297
1511444111576 Marionette DEBUG Received DOM event "beforeunload" for "about:blank"
1511444112097 Marionette DEBUG Received DOM event "pagehide" for "about:blank"
1511444112098 Marionette DEBUG Received DOM event "unload" for "about:blank"
1511444112652 Marionette DEBUG Received DOM event "DOMContentLoaded" for "http://www.aslpro.com/cgi-bin/aslpro/aslpro.cgi"
1511444162046 geckodriver INFO geckodriver 0.19.0
1511444162046 geckodriver INFO Listening on 127.0.0.1:63320
1511444164109 mozrunner::runner INFO Running command: "C:\\Program Files\\Mozilla Firefox\\firefox.exe" "-marionette" "-profile" "C:\\Users\\SHPOOZ~1\\AppData\\Local\\Temp\\rust_mozprofile.xnfIMR47IUww"
1511444164555 Marionette INFO Enabled via --marionette
Unable to read VR Path Registry from C:\Users\Shpoozipoo\AppData\Local\openvr\openvrpaths.vrpath
[Parent 22824, Gecko_IOThread] WARNING: pipe error: 109: file z:/build/build/src/ipc/chromium/src/chrome/common/ipc_channel_win.cc, line 346
Unable to read VR Path Registry from C:\Users\Shpoozipoo\AppData\Local\openvr\openvrpaths.vrpath
[Child 44768, Chrome_ChildThread] WARNING: pipe error: 109: file z:/build/build/src/ipc/chromium/src/chrome/common/ipc_channel_win.cc, line 346
1511444165694 Marionette INFO Listening on port 63327
1511444166192 Marionette WARN TLS certificate errors will be ignored for this session
1511444166270 Marionette DEBUG Register listener.js for window 4294967297
1511444166305 Marionette DEBUG Received DOM event "beforeunload" for "about:blank"
1511444166814 Marionette DEBUG Received DOM event "pagehide" for "about:blank"
1511444166815 Marionette DEBUG Received DOM event "unload" for "about:blank"
1511444167481 Marionette DEBUG Received DOM event "DOMContentLoaded" for "http://www.aslpro.com/cgi-bin/aslpro/aslpro.cgi"
1511444169179 Marionette DEBUG Received observer notification "outer-window-destroyed" for "4294967330"
1511444169678 Marionette DEBUG Received observer notification "outer-window-destroyed" for "4294967336"
1511444170405 Marionette DEBUG Received DOM event "pageshow" for "http://www.aslpro.com/cgi-bin/aslpro/aslpro.cgi"
1511444170937 geckodriver INFO geckodriver 0.19.0
1511444170937 geckodriver INFO Listening on 127.0.0.1:63425
1511444173001 mozrunner::runner INFO Running command: "C:\\Program Files\\Mozilla Firefox\\firefox.exe" "-marionette" "-profile" "C:\\Users\\SHPOOZ~1\\AppData\\Local\\Temp\\rust_mozprofile.8oHzqNgFLmp4"
1511444173510 Marionette INFO Enabled via --marionette
Unable to read VR Path Registry from C:\Users\Shpoozipoo\AppData\Local\openvr\openvrpaths.vrpath
[Child 35108, Chrome_ChildThread] WARNING: pipe error: 109: file z:/build/build/src/ipc/chromium/src/chrome/common/ipc_channel_win.cc, line 346
1511444174703 Marionette INFO Listening on port 63431
1511444175036 Marionette WARN TLS certificate errors will be ignored for this session
1511444175123 Marionette DEBUG Register listener.js for window 4294967297
1511444175142 Marionette DEBUG Received DOM event "beforeunload" for "about:blank"
1511444175657 Marionette DEBUG Received DOM event "pagehide" for "about:blank"
1511444175657 Marionette DEBUG Received DOM event "unload" for "about:blank"
1511444176073 Marionette DEBUG Received DOM event "DOMContentLoaded" for "http://www.aslpro.com/cgi-bin/aslpro/aslpro.cgi"
1511444178373 Marionette DEBUG Received DOM event "pageshow" for "http://www.aslpro.com/cgi-bin/aslpro/aslpro.cgi"
1511444179113 geckodriver INFO geckodriver 0.19.0
1511444179113 geckodriver INFO Listening on 127.0.0.1:63509
1511444185926 geckodriver INFO geckodriver 0.19.0
1511444185926 geckodriver INFO Listening on 127.0.0.1:63513
1511444188005 mozrunner::runner INFO Running command: "C:\\Program Files\\Mozilla Firefox\\firefox.exe" "-marionette" "-profile" "C:\\Users\\SHPOOZ~1\\AppData\\Local\\Temp\\rust_mozprofile.XJ4asu3ojwyu"
1511444188439 Marionette INFO Enabled via --marionette
1511444189639 Marionette INFO Listening on port 63520
1511444190069 Marionette WARN TLS certificate errors will be ignored for this session
1511444190238 Marionette DEBUG Register listener.js for window 4294967297
1511444190251 Marionette DEBUG Received DOM event "beforeunload" for "about:blank"
1511444190764 Marionette DEBUG Received DOM event "pagehide" for "about:blank"
1511444190764 Marionette DEBUG Received DOM event "unload" for "about:blank"
1511444191327 Marionette DEBUG Received DOM event "DOMContentLoaded" for "http://www.aslpro.com/cgi-bin/aslpro/aslpro.cgi"
1511444192853 Marionette DEBUG Received observer notification "outer-window-destroyed" for "4294967334"
1511444192856 Marionette DEBUG Received observer notification "outer-window-destroyed" for "4294967336"
1511444193913 Marionette DEBUG Received DOM event "pageshow" for "http://www.aslpro.com/cgi-bin/aslpro/aslpro.cgi"
1511444194661 geckodriver INFO geckodriver 0.19.0
1511444194661 geckodriver INFO Listening on 127.0.0.1:63610
1511444196743 mozrunner::runner INFO Running command: "C:\\Program Files\\Mozilla Firefox\\firefox.exe" "-marionette" "-profile" "C:\\Users\\SHPOOZ~1\\AppData\\Local\\Temp\\rust_mozprofile.wL09KDtDI8zB"
1511444197168 Marionette INFO Enabled via --marionette
Unable to read VR Path Registry from C:\Users\Shpoozipoo\AppData\Local\openvr\openvrpaths.vrpath
[Child 60216, Chrome_ChildThread] WARNING: pipe error: 109: file z:/build/build/src/ipc/chromium/src/chrome/common/ipc_channel_win.cc, line 346
[Child 60216, Chrome_ChildThread] WARNING: pipe error: 109: file z:/build/build/src/ipc/chromium/src/chrome/common/ipc_channel_win.cc, line 346
1511444198357 Marionette INFO Listening on port 63616
1511444198781 Marionette WARN TLS certificate errors will be ignored for this session
1511444198889 Marionette DEBUG Register listener.js for window 4294967297
1511444198902 Marionette DEBUG Received DOM event "beforeunload" for "about:blank"
1511444199396 Marionette DEBUG Received DOM event "pagehide" for "about:blank"
1511444199397 Marionette DEBUG Received DOM event "unload" for "about:blank"
1511444200028 Marionette DEBUG Received DOM event "DOMContentLoaded" for "http://www.aslpro.com/cgi-bin/aslpro/aslpro.cgi"
1511444203378 Marionette DEBUG Received DOM event "pageshow" for "http://www.aslpro.com/cgi-bin/aslpro/aslpro.cgi"
1511444204228 geckodriver INFO geckodriver 0.19.0
1511444204228 geckodriver INFO Listening on 127.0.0.1:63694
1511444206307 mozrunner::runner INFO Running command: "C:\\Program Files\\Mozilla Firefox\\firefox.exe" "-marionette" "-profile" "C:\\Users\\SHPOOZ~1\\AppData\\Local\\Temp\\rust_mozprofile.lS8pSFou13AQ"
1511444206788 Marionette INFO Enabled via --marionette
Unable to read VR Path Registry from C:\Users\Shpoozipoo\AppData\Local\openvr\openvrpaths.vrpath
[Parent 25780, Gecko_IOThread] WARNING: pipe error: 109: file z:/build/build/src/ipc/chromium/src/chrome/common/ipc_channel_win.cc, line 346
1511444207998 Marionette INFO Listening on port 63700
1511444208351 Marionette WARN TLS certificate errors will be ignored for this session
1511444208484 Marionette DEBUG Register listener.js for window 4294967297
1511444208506 Marionette DEBUG Received DOM event "beforeunload" for "about:blank"
1511444209005 Marionette DEBUG Received DOM event "pagehide" for "about:blank"
1511444209005 Marionette DEBUG Received DOM event "unload" for "about:blank"
1511444209613 Marionette DEBUG Received DOM event "DOMContentLoaded" for "http://www.aslpro.com/cgi-bin/aslpro/aslpro.cgi"
1511444211886 Marionette DEBUG Received DOM event "pageshow" for "http://www.aslpro.com/cgi-bin/aslpro/aslpro.cgi"
1511444212609 geckodriver INFO geckodriver 0.19.0
1511444212609 geckodriver INFO Listening on 127.0.0.1:63774
1511444214671 mozrunner::runner INFO Running command: "C:\\Program Files\\Mozilla Firefox\\firefox.exe" "-marionette" "-profile" "C:\\Users\\SHPOOZ~1\\AppData\\Local\\Temp\\rust_mozprofile.opaqN4C4Ua9d"
1511444215129 Marionette INFO Enabled via --marionette
Unable to read VR Path Registry from C:\Users\Shpoozipoo\AppData\Local\openvr\openvrpaths.vrpath
[Child 73560, Chrome_ChildThread] WARNING: pipe error: 109: file z:/build/build/src/ipc/chromium/src/chrome/common/ipc_channel_win.cc, line 346
[Child 73560, Chrome_ChildThread] WARNING: pipe error: 109: file z:/build/build/src/ipc/chromium/src/chrome/common/ipc_channel_win.cc, line 346
1511444216362 Marionette INFO Listening on port 63780
1511444216732 Marionette WARN TLS certificate errors will be ignored for this session
1511444216813 Marionette DEBUG Register listener.js for window 4294967297
1511444216828 Marionette DEBUG Received DOM event "beforeunload" for "about:blank"
1511444217402 Marionette DEBUG Received DOM event "pagehide" for "about:blank"
1511444217403 Marionette DEBUG Received DOM event "unload" for "about:blank"
1511444218067 Marionette DEBUG Received DOM event "DOMContentLoaded" for "http://www.aslpro.com/cgi-bin/aslpro/aslpro.cgi"
1511444221157 Marionette DEBUG Received DOM event "pageshow" for "http://www.aslpro.com/cgi-bin/aslpro/aslpro.cgi"
1511444221816 geckodriver INFO geckodriver 0.19.0
1511444221816 geckodriver INFO Listening on 127.0.0.1:63855
1511444223894 mozrunner::runner INFO Running command: "C:\\Program Files\\Mozilla Firefox\\firefox.exe" "-marionette" "-profile" "C:\\Users\\SHPOOZ~1\\AppData\\Local\\Temp\\rust_mozprofile.jwqFtOmfvRuK"
1511444224312 Marionette INFO Enabled via --marionette
Unable to read VR Path Registry from C:\Users\Shpoozipoo\AppData\Local\openvr\openvrpaths.vrpath
[Parent 49644, Gecko_IOThread] WARNING: pipe error: 109: file z:/build/build/src/ipc/chromium/src/chrome/common/ipc_channel_win.cc, line 346
Unable to read VR Path Registry from C:\Users\Shpoozipoo\AppData\Local\openvr\openvrpaths.vrpath
[Child 59260, Chrome_ChildThread] WARNING: pipe error: 109: file z:/build/build/src/ipc/chromium/src/chrome/common/ipc_channel_win.cc, line 346
[Child 59260, Chrome_ChildThread] WARNING: pipe error: 109: file z:/build/build/src/ipc/chromium/src/chrome/common/ipc_channel_win.cc, line 346
1511444225465 Marionette INFO Listening on port 63861
1511444225967 Marionette WARN TLS certificate errors will be ignored for this session
1511444226155 Marionette DEBUG Register listener.js for window 4294967297
1511444226198 Marionette DEBUG Received DOM event "beforeunload" for "about:blank"
1511444226711 Marionette DEBUG Received DOM event "pagehide" for "about:blank"
1511444226712 Marionette DEBUG Received DOM event "unload" for "about:blank"
1511444227232 Marionette DEBUG Received DOM event "DOMContentLoaded" for "http://www.aslpro.com/cgi-bin/aslpro/aslpro.cgi"
1511444277050 geckodriver INFO geckodriver 0.19.0
1511444277066 geckodriver INFO Listening on 127.0.0.1:63898
1511444279102 mozrunner::runner INFO Running command: "C:\\Program Files\\Mozilla Firefox\\firefox.exe" "-marionette" "-profile" "C:\\Users\\SHPOOZ~1\\AppData\\Local\\Temp\\rust_mozprofile.giimUQF2cNsB"
1511444279525 Marionette INFO Enabled via --marionette
Unable to read VR Path Registry from C:\Users\Shpoozipoo\AppData\Local\openvr\openvrpaths.vrpath
[Child 21304, Chrome_ChildThread] WARNING: pipe error: 109: file z:/build/build/src/ipc/chromium/src/chrome/common/ipc_channel_win.cc, line 346
[Child 21304, Chrome_ChildThread] WARNING: pipe error: 109: file z:/build/build/src/ipc/chromium/src/chrome/common/ipc_channel_win.cc, line 346
1511444280751 Marionette INFO Listening on port 63904
1511444281154 Marionette WARN TLS certificate errors will be ignored for this session
1511444281308 Marionette DEBUG Register listener.js for window 4294967297
1511444281341 Marionette DEBUG Received DOM event "beforeunload" for "about:blank"
1511444281863 Marionette DEBUG Received DOM event "pagehide" for "about:blank"
1511444281864 Marionette DEBUG Received DOM event "unload" for "about:blank"
1511444282460 Marionette DEBUG Received DOM event "DOMContentLoaded" for "http://www.aslpro.com/cgi-bin/aslpro/aslpro.cgi"
1511444284992 Marionette DEBUG Received DOM event "pageshow" for "http://www.aslpro.com/cgi-bin/aslpro/aslpro.cgi"
1511444285696 geckodriver INFO geckodriver 0.19.0
1511444285696 geckodriver INFO Listening on 127.0.0.1:64001
1511444287743 mozrunner::runner INFO Running command: "C:\\Program Files\\Mozilla Firefox\\firefox.exe" "-marionette" "-profile" "C:\\Users\\SHPOOZ~1\\AppData\\Local\\Temp\\rust_mozprofile.A61l8RaPSQjo"
1511444399619 geckodriver INFO geckodriver 0.19.0
1511444399619 geckodriver INFO Listening on 127.0.0.1:64039
1511444401751 mozrunner::runner INFO Running command: "C:\\Program Files\\Mozilla Firefox\\firefox.exe" "-marionette" "-profile" "C:\\Users\\SHPOOZ~1\\AppData\\Local\\Temp\\rust_mozprofile.oafQNLjqRvpU"
1511444402168 Marionette INFO Enabled via --marionette
Unable to read VR Path Registry from C:\Users\Shpoozipoo\AppData\Local\openvr\openvrpaths.vrpath
[Child 3992, Chrome_ChildThread] WARNING: pipe error: 109: file z:/build/build/src/ipc/chromium/src/chrome/common/ipc_channel_win.cc, line 346
[Child 3992, Chrome_ChildThread] WARNING: pipe error: 109: file z:/build/build/src/ipc/chromium/src/chrome/common/ipc_channel_win.cc, line 346
1511444403447 Marionette INFO Listening on port 64045
1511444403805 Marionette WARN TLS certificate errors will be ignored for this session
1511444403892 Marionette DEBUG Register listener.js for window 4294967297
1511444403909 Marionette DEBUG Received DOM event "beforeunload" for "about:blank"
1511444404410 Marionette DEBUG Received DOM event "pagehide" for "about:blank"
1511444404410 Marionette DEBUG Received DOM event "unload" for "about:blank"
1511444404903 Marionette DEBUG Received DOM event "DOMContentLoaded" for "http://www.aslpro.com/cgi-bin/aslpro/aslpro.cgi"
1511444407150 Marionette DEBUG Received observer notification "outer-window-destroyed" for "4294967335"
1511444407218 Marionette DEBUG Received observer notification "outer-window-destroyed" for "4294967339"
1511444407236 Marionette DEBUG Received DOM event "pageshow" for "http://www.aslpro.com/cgi-bin/aslpro/aslpro.cgi"
1511444407391 Marionette DEBUG Received DOM event "beforeunload" for "http://www.aslpro.com/cgi-bin/aslpro/aslpro.cgi"
1511444407752 Marionette DEBUG Received DOM event "pagehide" for "http://www.aslpro.com/cgi-bin/aslpro/aslpro.cgi"
1511444407757 Marionette DEBUG Received DOM event "unload" for "http://www.aslpro.com/cgi-bin/aslpro/aslpro.cgi"
1511444407799 Marionette DEBUG Received observer notification "outer-window-destroyed" for "4294967303"
1511444407799 Marionette DEBUG Received observer notification "outer-window-destroyed" for "4294967326"
1511444407799 Marionette DEBUG Received observer notification "outer-window-destroyed" for "4294967342"
1511444407800 Marionette DEBUG Received observer notification "outer-window-destroyed" for "4294967311"
1511444407800 Marionette DEBUG Received observer notification "outer-window-destroyed" for "4294967319"
1511444407800 Marionette DEBUG Received observer notification "outer-window-destroyed" for "4294967301"
1511444407800 Marionette DEBUG Received observer notification "outer-window-destroyed" for "4294967304"
1511444407800 Marionette DEBUG Received observer notification "outer-window-destroyed" for "4294967327"
1511444407800 Marionette DEBUG Received observer notification "outer-window-destroyed" for "4294967337"
1511444407801 Marionette DEBUG Received observer notification "outer-window-destroyed" for "4294967314"
1511444407801 Marionette DEBUG Received observer notification "outer-window-destroyed" for "4294967305"
1511444407801 Marionette DEBUG Received observer notification "outer-window-destroyed" for "4294967325"
1511444407801 Marionette DEBUG Received observer notification "outer-window-destroyed" for "4294967332"
1511444407802 Marionette DEBUG Received observer notification "outer-window-destroyed" for "4294967317"
1511444407802 Marionette DEBUG Received observer notification "outer-window-destroyed" for "4294967309"
1511444407977 Marionette DEBUG Received DOM event "DOMContentLoaded" for "http://www.aslpro.com/cgi-bin/aslpro/aslpro.cgi"
1511444408936 Marionette DEBUG Received observer notification "outer-window-destroyed" for "4294967378"
1511444409006 Marionette DEBUG Received observer notification "outer-window-destroyed" for "4294967382"
1511444409027 Marionette DEBUG Received DOM event "pageshow" for "http://www.aslpro.com/cgi-bin/aslpro/aslpro.cgi"
1511444411549 geckodriver INFO geckodriver 0.19.0
1511444411549 geckodriver INFO Listening on 127.0.0.1:64113
1511444423335 geckodriver INFO geckodriver 0.19.0
1511444423351 geckodriver INFO Listening on 127.0.0.1:64118
1511444425382 mozrunner::runner INFO Running command: "C:\\Program Files\\Mozilla Firefox\\firefox.exe" "-mari1511444425632 mozrunner::runner INFO Running command: "C:\\Program Files\\Mozilla Firefox\\fi1511444425831 Marionette INFO Enabled via --marionette
Unable to read VR Path Registry from C:\Users\Shpoozipoo\AppData\Local\openvr\openvrpaths.vrpath
[Child 56772Unable to read VR Path Registry from C:\Users\Shpoozipoo\AppData\Local\openvr\openvrpaths.vrpath
[Child 70764, Chrome_ChildThread] WARNING: pipe error: 109: file z:/build/build/src/ipc/ch1511444428573 Marionette WARN TLS certificate errors will be ignored for this session
1511444428614 Marionette DEBUG Register listener.js for window 4294967297
1511444428624 Marionette DEBUG Received DOM event "beforeunload" for "about:blank"
1511444429109 Marionette DEBUG Received DOM event "pagehide" for "about:blank"
1511444429110 Marionette DEBUG Received DOM event "unload" for "about:blank"
1511444429627 Marionette DEBUG Received DOM event "DOMContentLoaded" for "http://www.aslpro.com/cgi-bin/aslpro/aslpro.cgi"
1511444431835 Marionette DEBUG Received observer notification "outer-window-destroyed" for "4294967337"
1511444431842 Marionette DEBUG Received observer notification "outer-window-destroyed" for "4294967339"
1511444431874 Marionette DEBUG Received DOM e1511444432708 Marionette DEBUG Received DOM event "pageshow" for "http://www.aslpro.com/cgi-bin/aslpro/aslpro.cgi"
1511444432925 Marionette DEBUG Received DOM event "beforeunload" for "http://www.aslpro.com/cgi-bin/aslpro/aslpro.cgi"
1511444433228 Marionette DEBUG Received DOM event "pagehide" for "http://www.aslpro.com/cgi-bin/aslpro/aslpro.cgi"
1511444433252 Marionette DEBUG Received DOM event "unload" for "http://www.aslpro.com/cgi-bin/aslpro/aslpro.cgi"
1511444433488 Marionette DEBUG Received observer notification "outer-window-destroyed" for "4294967303"
1511444433489 Marionette DEBUG Received observer notification "outer-window-destroyed" for "4294967327"
1511444433490 Marionette DEBUG Received observer notification "outer-window-destroyed" for "4294967335"
1511444433490 Marionette DEBUG Received observer notification "outer-window-destroyed" for "4294967311"
1511444433490 Marionette DEBUG Received observer notification "outer-window-destroyed" for "4294967320"
1511444433490 Marionette DEBUG Received observer notification "outer-window-destroyed" for "4294967301"
1511444433490 Marionette DEBUG Received observer notification "outer-window-destroyed" for "4294967304"
1511444433491 Marionette DEBUG Received observer notification "outer-window-destroyed" for "4294967326"
1511444433491 Marionette DEBUG Received observer notification "outer-window-destroyed" for "4294967342"
1511444433491 Marionette DEBUG Received observer notification "outer-window-destroyed" for "4294967314"
1511444433491 Marionette DEBUG Received observer notification "outer-window-destroyed" for "4294967305"
1511444433492 Marionette DEBUG Received observer notification "outer-window-destroyed" for "4294967325"
1511444433492 Marionette DEBUG Received observer notification "outer-window-destroyed" for "4294967332"
1511444433492 Marionette DEBUG Received observer notification "outer-window-destroyed" for "4294967317"
1511444433493 Marionette DEBUG Received observer notification "outer-window-destroyed" for "4294967309"
1511444434200 Marionette DEBUG Received DOM event "DOMContentLoaded" for "http://www.aslpro.com/cgi-bin/aslpro/aslpro.cgi"
1511444434911 Marionette DEBUG Received observer notification "outer-window-destroyed" for "4294967378"
1511444435775 Marionette DEBUG Received observer notification "outer-window-destroyed" for "4294967382"
1511444435837 Marionette DEBUG Received DOM event "pageshow" for "http://www.aslpro.com/cgi-bin/aslpro/aslpro.cgi"
1511444437290 geckodriver INFO geckodriver 0.19.0
1511444437290 geckodriver INFO Listening on 127.0.0.1:64270
1511444439352 mozrunner::runner INFO Running command: "C:\\Program Files\\Mozilla Firefox\\firefox.exe" "-mari1511444440634 mozrunner::runner INFO Running command: "C:\\Program Files\\Mozilla Firefox\\firefox.exe" "-marionette" "-profile" "C:\\Users\\SHPOOZ~1\\AppData\\Local\\Temp\\rust_mozprofile.zOshqJDNOrCJ"
1511444441321 Marionette INFO Enabled via --marionette
Unable to read VR Path Registry from C:\Users\Shpoozipoo\AppData\Local\openvr\openvrpaths.vrpath
[Child 57156, Chrome_ChildThread] WARNING: pipe error: 109: file z:/build/build/src/ipc/chromium/src/chrome/common/ipc_channel_win.cc, line 346
1511444442578 Marionette INFO Listening on port 64293
1511444442690 Marionette WARN TLS certificate errors will be ignored for this session
1511444442781 Marionette DEBUG Register listener.js for window 4294967297
1511444442834 Marionette DEBUG Received DOM event "beforeunload" for "about:blank"
1511444443453 Marionette DEBUG Received DOM event "pagehide" for "about:blank"
1511444443454 Marionette DEBUG Received DOM event "unload" for "about:blank"
1511444443905 Marionette DEBUG Received DOM event "DOMContentLoaded" for "http://www.aslpro.com/cgi-bin/aslpro/aslpro.cgi"
1511444446296 Marionette DEBUG Received DOM event "pageshow" for "http://www.aslpro.com/cgi-bin/aslpro/aslpro.cgi"
1511444446589 Marionette DEBUG Received DOM event "beforeunload" for "http://www.aslpro.com/cgi-bin/aslpro/aslpro.cgi"
1511444446907 Marionette DEBUG Received DOM event "pagehide" for "http://www.aslpro.com/cgi-bin/aslpro/aslpro.cgi"
1511444446919 Marionette DEBUG Received DOM event "unload" for "http://www.aslpro.com/cgi-bin/aslpro/aslpro.cgi"
1511444447024 Marionette DEBUG Received observer notification "outer-window-destroyed" for "4294967303"
1511444447024 Marionette DEBUG Received observer notification "outer-window-destroyed" for "4294967327"
1511444447025 Marionette DEBUG Received observer notification "outer-window-destroyed" for "4294967335"
1511444447026 Marionette DEBUG Received observer notification "outer-window-destroyed" for "4294967311"
1511444447033 Marionette DEBUG Received observer notification "outer-window-destroyed" for "4294967301"
1511444447034 Marionette DEBUG Received observer notification "outer-window-destroyed" for "4294967304"
1511444447035 Marionette DEBUG Received observer notification "outer-window-destroyed" for "4294967325"
1511444447035 Marionette DEBUG Received observer notification "outer-window-destroyed" for "4294967333"
1511444447035 Marionette DEBUG Received observer notification "outer-window-destroyed" for "4294967315"
1511444447035 Marionette DEBUG Received observer notification "outer-window-destroyed" for "4294967305"
1511444447036 Marionette DEBUG Received observer notification "outer-window-destroyed" for "4294967326"
1511444447036 Marionette DEBUG Received observer notification "outer-window-destroyed" for "4294967338"
1511444447036 Marionette DEBUG Received observer notification "outer-window-destroyed" for "4294967318"
1511444447036 Marionette DEBUG Received observer notification "outer-window-destroyed" for "4294967309"
1511444447036 Marionette DEBUG Received observer notification "outer-window-destroyed" for "4294967320"
1511444447275 Marionette DEBUG Received DOM event "DOMContentLoaded" for "http://www.aslpro.com/cgi-bin/aslpro/aslpro.cgi"
1511444448168 Marionette DEBUG Received observer notification "outer-window-destroyed" for "4294967376"
1511444448280 Marionette DEBUG Received observer notification "outer-window-destroyed" for "4294967380"
1511444449115 Marionette DEBUG Received DOM event "pageshow" for "http://www.aslpro.com/cgi-bin/aslpro/aslpro.cgi"
oyed" for "4294967374"
1511444448672 Marionette DEBUG Received DOM event "pageshow" for "http://www.aslpro.com/cgi-bin/aslpro/aslpro.cgi"
1511444451418 geckodriver INFO geckodriver 0.19.0
1511444451434 geckodriver INFO Listening on 127.0.0.1:64438
1511444453497 mozrunner::runner INFO Running command: "C:\\Program Files\\Mozilla Firefox\\firefox.exe" "-mari1511444453653 mozrunner::runner INFO Running command: "C:\\Program Files\\Mozilla Firefox\\fi1511444453957 Marionette INFO Enabled via --marionette
Unable to read VR Path Registry from C:\Users\Shpoozipoo\AppData\Local\openvr\openvrpaths.vrpath
[Parent 4032Unable to read VR Path Registry from C:\Users\Shpoozipoo\AppData\Local\openvr\openvrpaths.vrpath
[Child 100228, Chrome_ChildThread] WARNING: pipe error: 109: file z:/build/build/src/ipc/chromium/src/chrome/common/ipc_channel_win.cc, line 346
[Child 100228, Chrome_ChildThread] WARNING: pipe error: 109: file z:/build/build/src/ipc/chromium/src/chrome/common/ipc_channel_1511444455894 Marionette INFO Listening on port 64448
1511444456678 Mari1511444456863 Marionette WARN TLS certificate errors will be ignored for this session
1511444456927 Marionette DEBUG Register listener.js for window 4294967297
1511444456941 Marionette DEBUG Received DOM event "beforeunload" f1511444457571 Marionette DEBUG Received DOM event "pagehide" for "about:blank"
1511444457573 Marionette DEBUG Received DOM event "unload" for "about:blank"
1511444458155 Marionette DEBUG Received DOM event "DOMContentLoaded" for "http://www.aslpro.com/cgi-bin/aslpro/aslpro.cgi"
1511444460778 Mari1511444460970 Marionette DEBUG Received DOM event "pageshow" for "http://www.aslpro.com/cgi-bin/aslpro/aslpro.cgi"
1511444461096 Marionette DEBUG Received DOM event "beforeunload" for "http://www.aslpro.com/cgi-bin/aslpro/aslpro.cgi"
1511444461254 Marionette DEBUG Received observer notification "outer-window-destroyed" for "4294967347"
1511444461256 Marionette DEBUG Received observer notification "outer-window-destroyed" 1511444461429 Marionette DEBUG Received DOM event "pagehide" for "http://www.aslpro.com/cgi-bin/aslpro/aslpro.cgi"
1511444461459 Marionette DEBUG Received DOM event "unload" for "http://www.aslpro.com/cgi-bin/aslpro/aslpro.cgi"
1511444461616 Marionette DEBUG Received observer notification "outer-window-destroyed" for "4294967303"
1511444461616 Mari1511444461631 Marionette DEBUG Received observer notification "outer-window-destroyed" for "4294967310"
1511444461632 Marionette DEBUG Received observer notification "outer-window-destroyed" for "4294967332"
1511444461632 Marionette DEBUG Received observer notification "outer-window-destroyed" for "4294967343"
1511444461632 Marionette DEBUG Received observer notification "outer-window-destroyed" for "4294967312"
1511444461632 Marionette DEBUG Received observer notification "outer-window-destroyed" for "4294967324"
1511444461633 Marionette DEBUG Received observer notification "outer-window-destroyed" for "4294967301"
1511444461633 Marionette DEBUG Received observer notification "outer-window-destroyed" for "4294967303"
1511444461633 Marionette DEBUG Received observer notification "outer-window-destroyed" for "4294967315"
1511444461634 Marionette DEBUG Received observer notification "outer-window-destroyed" for "4294967333"
1511444461634 Marionette DEBUG Received observer notification "outer-window-destroyed" for "4294967341"
1511444461634 Marionette DEBUG Received observer notification "outer-window-destroyed" for "4294967317"
1511444461634 Marionette DEBUG Received observer notification "outer-window-destroyed" for "4294967305"
1511444461634 Marionette DEBUG Received observer notification "outer-window-destroyed" for "4294967320"
1511444461634 Marionette DEBUG Received observer notification "outer-window-destroyed" 1511444462363 Marionette DEBUG Received DOM event "DOMContentLoaded" for "http://www.aslpro.com/cgi-bin/aslpro/aslpro.cgi"
1511444462602 Marionette DEBUG Received observer notification "outer-window-destroyed" for "4294967371"
1511444463223 Marionette DEBUG Received observer notification "outer-window-destroyed" for "4294967379"
1511444464671 Marionette DEBUG Received DOM event "pageshow" for "http://www.aslpro.com/cgi-bin/aslpro/aslpro.cgi"
.cgi"
1511444463149 Marionette DEBUG Received observer notification "outer-window-destroyed" for "4294967383"
1511444463218 Marionette DEBUG Received observer notification "outer-window-destroyed" for "4294967387"
1511444463429 Marionette DEBUG Received DOM event "pageshow" for "http://www.aslpro.com/cgi-bin/aslpro/aslpro.cgi"
1511444465846 geckodriver INFO geckodriver 0.19.0
1511444465862 geckodriver INFO Listening on 127.0.0.1:64595
1511444467925 mozrunner::runner INFO Running command: "C:\\Program Files\\Mozilla Firefox\\firefox.exe" "-mari1511444469206 mozrunner::runner INFO Running command: "C:\\Program Files\\Mozilla Firefox\\firefox.exe" "-marionette" "-profile" "C:\\Users\\SHPOOZ~1\\AppData\\Local\\Temp\\rust_mozprofile.ugC0N7bHW628"
1511444469874 Marionette INFO Enabled via --marionette
Unable to read VR Path Registry from C:\Users\Shpoozipoo\AppData\Local\openvr\openvrpaths.vrpath
[Child 37664, Chrome_ChildThread] WARNING: pipe error: 109: file z:/build/build/src/ipc/chromium/src/chrome/common/ipc_channel_win.cc, line 346
1511444471094 Marionette INFO Listening on port 64619
1511444471246 Marionette WARN TLS certificate errors will be ignored for this session
1511444471365 Marionette DEBUG Register listener.js for window 4294967297
1511444471440 Marionette DEBUG Received DOM event "beforeunload" for "about:blank"
1511444471977 Marionette DEBUG Received DOM event "pagehide" for "about:blank"
1511444471977 Marionette DEBUG Received DOM event "unload" for "about:blank"
1511444472451 Marionette DEBUG Received DOM event "DOMContentLoaded" for "http://www.aslpro.com/cgi-bin/aslpro/aslpro.cgi"
1511444474056 Marionette DEBUG Received DOM event "pageshow" for "http://www.aslpro.com/cgi-bin/aslpro/aslpro.cgi"
1511444474185 Marionette DEBUG Received DOM event "beforeunload" for "http://www.aslpro.com/cgi-bin/aslpro/aslpro.cgi"
1511444474496 Marionette DEBUG Received DOM event "pagehide" for "http://www.aslpro.com/cgi-bin/aslpro/aslpro.cgi"
1511444474505 Marionette DEBUG Received DOM event "unload" for "http://www.aslpro.com/cgi-bin/aslpro/aslpro.cgi"
1511444474558 Marionette DEBUG Received observer notification "outer-window-destroyed" for "4294967303"
1511444474558 Marionette DEBUG Received observer notification "outer-window-destroyed" for "4294967325"
1511444474558 Marionette DEBUG Received observer notification "outer-window-destroyed" for "4294967331"
1511444474559 Marionette DEBUG Received observer notification "outer-window-destroyed" for "4294967311"
1511444474559 Marionette DEBUG Received observer notification "outer-window-destroyed" for "4294967320"
1511444474559 Marionette DEBUG Received observer notification "outer-window-destroyed" for "4294967301"
1511444474559 Marionette DEBUG Received observer notification "outer-window-destroyed" for "4294967304"
1511444474559 Marionette DEBUG Received observer notification "outer-window-destroyed" for "4294967326"
1511444474559 Marionette DEBUG Received observer notification "outer-window-destroyed" for "4294967333"
1511444474560 Marionette DEBUG Received observer notification "outer-window-destroyed" for "4294967315"
1511444474560 Marionette DEBUG Received observer notification "outer-window-destroyed" for "4294967305"
1511444474560 Marionette DEBUG Received observer notification "outer-window-destroyed" for "4294967327"
1511444474560 Marionette DEBUG Received observer notification "outer-window-destroyed" for "4294967335"
1511444474560 Marionette DEBUG Received observer notification "outer-window-destroyed" for "4294967318"
1511444474560 Marionette DEBUG Received observer notification "outer-window-destroyed" for "4294967309"
1511444475132 Marionette DEBUG Received DOM event "DOMContentLoaded" for "http://www.aslpro.com/cgi-bin/aslpro/aslpro.cgi"
1511444476122 Marionette DEBUG Received observer notification "outer-window-destroyed" for "4294967375"
1511444476254 Marionette DEBUG Received observer notification "outer-window-destroyed" for "4294967381"
1511444476423 Marionette DEBUG Received DOM event "pageshow" for "http://www.aslpro.com/cgi-bin/aslpro/aslpro.cgi"
oyed" for "4294967380"
1511444475194 Marionette DEBUG Received DOM event "pageshow" for "http://www.aslpro.com/cgi-bin/aslpro/aslpro.cgi"
1511444477785 geckodriver INFO geckodriver 0.19.0
1511444477785 geckodriver INFO Listening on 127.0.0.1:64716
1511444479817 mozrunner::runner INFO Running command: "C:\\Program Files\\Mozilla Firefox\\firefox.exe" "-mari1511444481145 mozrunner::runner INFO Running command: "C:\\Program Files\\Mozilla Firefox\\firefox.exe" "-marionette" "-profile" "C:\\Users\\SHPOOZ~1\\AppData\\Local\\Temp\\rust_mozprofile.yscjOZg3On1G"
1511444481841 Marionette INFO Enabled via --marionette
Unable to read VR Path Registry from C:\Users\Shpoozipoo\AppData\Local\openvr\openvrpaths.vrpath
[Child 66964, Chrome_ChildThread] WARNING: pipe error: 109: file z:/build/build/src/ipc/chromium/src/chrome/common/ipc_channel_win.cc, line 346
[Child 66964, Chrome_ChildThread] WARNING: pipe error: 109: file z:/build/build/src/ipc/chromium/src/chrome/common/ipc_channel_win.cc, line 346
1511444483072 Marionette INFO Listening on port 64740
1511444483177 Marionette WARN TLS certificate errors will be ignored for this session
1511444483271 Marionette DEBUG Register listener.js for window 4294967297
1511444483294 Marionette DEBUG Received DOM event "beforeunload" for "about:blank"
1511444483797 Marionette DEBUG Received DOM event "pagehide" for "about:blank"
1511444483798 Marionette DEBUG Received DOM event "unload" for "about:blank"
1511444484274 Marionette DEBUG Received DOM event "DOMContentLoaded" for "http://www.aslpro.com/cgi-bin/aslpro/aslpro.cgi"
1511444486867 Marionette DEBUG Received DOM event "pageshow" for "http://www.aslpro.com/cgi-bin/aslpro/aslpro.cgi"
1511444487208 Marionette DEBUG Received DOM event "beforeunload" for "http://www.aslpro.com/cgi-bin/aslpro/aslpro.cgi"
1511444487508 Marionette DEBUG Received DOM event "pagehide" for "http://www.aslpro.com/cgi-bin/aslpro/aslpro.cgi"
1511444487539 Marionette DEBUG Received DOM event "unload" for "http://www.aslpro.com/cgi-bin/aslpro/aslpro.cgi"
1511444487673 Marionette DEBUG Received observer notification "outer-window-destroyed" for "4294967303"
1511444487673 Marionette DEBUG Received observer notification "outer-window-destroyed" for "4294967325"
1511444487673 Marionette DEBUG Received observer notification "outer-window-destroyed" for "4294967331"
1511444487674 Marionette DEBUG Received observer notification "outer-window-destroyed" for "4294967311"
1511444487674 Marionette DEBUG Received observer notification "outer-window-destroyed" for "4294967320"
1511444487674 Marionette DEBUG Received observer notification "outer-window-destroyed" for "4294967301"
1511444487674 Marionette DEBUG Received observer notification "outer-window-destroyed" for "4294967304"
1511444487674 Marionette DEBUG Received observer notification "outer-window-destroyed" for "4294967327"
1511444487675 Marionette DEBUG Received observer notification "outer-window-destroyed" for "4294967335"
1511444487675 Marionette DEBUG Received observer notification "outer-window-destroyed" for "4294967314"
1511444487675 Marionette DEBUG Received observer notification "outer-window-destroyed" for "4294967305"
1511444487675 Marionette DEBUG Received observer notification "outer-window-destroyed" for "4294967326"
1511444487675 Marionette DEBUG Received observer notification "outer-window-destroyed" for "4294967333"
1511444487676 Marionette DEBUG Received observer notification "outer-window-destroyed" for "4294967317"
1511444487676 Marionette DEBUG Received observer notification "outer-window-destroyed" for "4294967309"
1511444487851 Marionette DEBUG Received DOM event "DOMContentLoaded" for "http://www.aslpro.com/cgi-bin/aslpro/aslpro.cgi"
1511444489253 Marionette DEBUG Received observer notification "outer-window-destroyed" for "4294967387"
1511444489724 Marionette DEBUG Received observer notification "outer-window-destroyed" for "4294967391"
1511444490204 Marionette DEBUG Received DOM event "pageshow" for "http://www.aslpro.com/cgi-bin/aslpro/aslpro.cgi"
[GFX1-]: Receive IPC close with reason=AbnormalShutdown
erver notification "outer-window-destroyed" for "4294967392"
1511444486651 Marionette DEBUG Received DOM event "pageshow" for "http://www.aslpro.com/cgi-bin/aslpro/aslpro.cgi"
[GFX1-]: Receive IPC close with reason=AbnormalShutdown
[GFX1-]: Receive IPC close with reason=AbnormalShutdown
1511444489243 geckodriver INFO geckodriver 0.19.0
1511444489259 geckodriver INFO Listening on 127.0.0.1:64891
1511444491337 mozrunner::runner INFO Running command: "C:\\Program Files\\Mozilla Firefox\\firefox.exe" "-marionette" "-profile" "C:\\Users\\SHPOOZ~1\\AppData\\Local\\Temp\\rust_mozprofile.Bw81SpJU5RW5"
1511444491749 Marionette INFO Enabled via --marionette
Unable to read VR Path Registry from C:\Users\Shpoozipoo\AppData\Local\openvr\openvrpaths.vrpath
[Parent 37068, Gecko_IOThread] WARNING: pipe error: 109: file z:/build/build/src/ipc/chromium/src/chrome/common/ipc_channel_win.cc, line 346
Unable to read VR Path Registry from C:\Users\Shpoozipoo\AppData\Local\openvr\openvrpaths.vrpath
[Child 28440, Chrome_ChildThread] WARNING: pipe error: 109: file z:/build/build/src/ipc/chromium/src/chrome/common/ipc_channel_win.cc, line 346
[Child 28440, Chrome_ChildThread] WARNING: pipe error: 109: file z:/build/build/src/ipc/chromium/src/chrome/common/ipc_channel_win.cc, line 346
1511444492984 Marionette INFO Listening on port 64900
1511444493377 Marionette WARN TLS certificate errors wi1511444494916 mozrunner::runner INFO Running command: "C:\\Program Files\\Mozilla Firefox\\firefox.exe" "-marionette" "-profile" "C:\\Users\\SHPOOZ~1\\AppData\\Local\\Temp\\rust_mozprofile.tpThS66ueffV"
1511444495415 Marionette INFO Enabled via --marionette
IPDL protocol error: Handler returned error code!
###!!! [Parent][DispatchAsyncMessage] Error: PLayerTransaction::Msg_ReleaseLayer Processing error: message was deserialized, but the handler returned false (indi1511444498044 Marionette DEBUG Received observer notification "outer-window-destroyed" for "4294967331"
1511444498673 Marionette DEBUG Received observer notification "outer-window-destroyed" for "4294967336"
1511444498720 Marionette DEBUG Received DOM event "pageshow" for "http://www.aslpro.com/cgi-bin/aslpro/aslpro.cgi"
1511444498853 Marionette DEBUG Received DOM event "beforeunload" for "http://www.aslpro.com/cgi-bin/aslpro/aslpro.cgi"
1511444499149 Marionette DEBUG Received DOM event "pagehide" for "http://www.aslpro.com/cgi-bin/aslpro/aslpro.cgi"
1511444499176 Marionette DEBUG Received DOM event "unload" for "http://www.aslpro.com/cgi-bin/aslpro/aslpro.cgi"
1511444499492 Marionette DEBUG Received observer notification "outer-window-destroyed" for "4294967303"
1511444499493 Marionette DEBUG Received observer notification "outer-window-destroyed" for "4294967329"
1511444499496 Marionette DEBUG Received observer notification "outer-window-destroyed" for "4294967311"
1511444499497 Marionette DEBUG Received observer notification "outer-window-destroyed" for "4294967320"
1511444499498 Marionette DEBUG Received observer notification "outer-window-destroyed" for "4294967301"
1511444499498 Marionette DEBUG Received observer notification "outer-window-destroyed" for "4294967304"
1511444499499 Marionette DEBUG Received observer notification "outer-window-destroyed" for "4294967325"
1511444499500 Marionette DEBUG Received observer not1511444503231 Marionette DEBUG Received DOM event "pageshow" for "http://www.aslpro.com/cgi-bin/aslpro/aslpro.cgi"
1511444503504 Marionette DEBUG Received DOM event "beforeunload" for "http://www.aslpro.com/cgi-bin/aslpro/aslpro.cgi"
1511444504078 Marionette DEBUG Received DOM event "pagehide" for "http://www.aslpro.com/cgi-bin/aslpro/aslpro.cgi"
1511444504102 Marionette DEBUG Received DOM event "unload" for "http://www.aslpro.com/cgi-bin/aslpro/aslpro.cgi"
1511444504182 Marionette DEBUG Received observer notification "outer-window-destroyed" for "4294967303"
1511444504182 Marionette DEBUG Received observer notification "outer-window-destroyed" for "4294967327"
1511444504182 Marionette DEBUG Received observer notification "outer-window-destroyed" for "4294967338"
1511444504183 Marionette DEBUG Received observer notification "outer-window-destroyed" for "4294967311"
1511444504183 Marionette DEBUG Received observer notification "outer-window-destroyed" for "4294967321"
1511444504183 Marionette DEBUG Received observer notification "outer-window-destroyed" for "4294967301"
1511444504183 Marionette DEBUG Received observer notification "outer-window-destroyed" for "4294967304"
1511444504183 Marionette DEBUG Received observer notification "outer-window-destroyed" for "4294967326"
1511444504184 Marionette DEBUG Received observer notification "outer-window-destroyed" for "4294967335"
1511444504184 Marionette DEBUG Received observer notification "outer-window-destroyed" for "4294967314"
1511444504184 Marionette DEBUG Received observer notification "outer-window-destroyed" for "4294967305"
1511444504184 Marionette DEBUG Received observer notification "outer-window-destroyed" for "4294967325"
1511444504185 Marionette DEBUG Received observer notification "outer-window-destroyed" for "4294967332"
1511444504185 Marionette DEBUG Received observer notification "outer-window-destroyed" for "4294967317"
1511444504185 Marionette DEBUG Received observer notification "outer-window-destroyed" for "4294967309"
1511444504466 Marionette DEBUG Received DOM event "DOMContentLoaded" for "http://www.aslpro.com/cgi-bin/aslpro/aslpro.cgi"
1511444505301 Marionette DEBUG Received observer notification "outer-window-destroyed" for "4294967376"
1511444506028 Marionette DEBUG Received observer notification "outer-window-destroyed" for "4294967381"
1511444506950 Marionette DEBUG Received DOM event "pageshow" for "http://www.aslpro.com/cgi-bin/aslpro/aslpro.cgi"
1511444622512 geckodriver INFO geckodriver 0.19.0
1511444622512 geckodriver INFO Listening on 127.0.0.1:65064
1511444624559 mozrunner::runner INFO Running command: "C:\\Program Files\\Mozilla Firefox\\firefox.exe" "-marionette" "-profile" "C:\\Users\\SHPOOZ~1\\AppData\\Local\\Temp\\rust_mozprofile.SQVcUUbFJYL9"
1511444624979 Marionette INFO Enabled via --marionette
Unable to read VR Path Registry from C:\Users\Shpoozipoo\AppData\Local\openvr\openvrpaths.vrpath
[Child 6160, Chrome_ChildThread] WARNING: pipe error: 109: file z:/build/build/src/ipc/chromium/src/chrome/common/ipc_channel_win.cc, line 346
[Child 6160, Chrome_ChildThread] WARNING: pipe error: 109: file z:/build/build/src/ipc/chromium/src/chrome/common/ipc_channel_win.cc, line 346
1511444626148 Marionette INFO Listening on port 65072
1511444626627 Marionette WARN TLS certificate errors will be ignored for this session
1511444626719 Marionette DEBUG Register listener.js for window 4294967297
1511444626733 Marionette DEBUG Received DOM event "beforeunload" for "about:blank"
1511444627232 Marionette DEBUG Received DOM event "pagehide" for "about:blank"
1511444627234 Marionette DEBUG Received DOM event "unload" for "about:blank"
1511444627869 Marionette DEBUG Received DOM event "DOMContentLoaded" for "http://www.aslpro.com/cgi-bin/aslpro/aslpro.cgi"
1511444629586 Marionette DEBUG Received observer notification "outer-window-destroyed" for "4294967331"
1511444630199 Marionette DEBUG Received observer notification "outer-window-destroyed" for "4294967339"
1511444630199 Marionette DEBUG Received observer notification "outer-window-destroyed" for "4294967341"
1511444632918 Marionette DEBUG Received DOM event "pageshow" for "http://www.aslpro.com/cgi-bin/aslpro/aslpro.cgi"
1511444633100 Marionette DEBUG Received DOM event "beforeunload" for "http://www.aslpro.com/cgi-bin/aslpro/aslpro.cgi"
1511444633686 Marionette DEBUG Received DOM event "pagehide" for "http://www.aslpro.com/cgi-bin/aslpro/aslpro.cgi"
1511444633702 Marionette DEBUG Received DOM event "unload" for "http://www.aslpro.com/cgi-bin/aslpro/aslpro.cgi"
1511444633839 Marionette DEBUG Received observer notification "outer-window-destroyed" for "4294967303"
1511444633839 Marionette DEBUG Received observer notification "outer-window-destroyed" for "4294967326"
1511444633839 Marionette DEBUG Received observer notification "outer-window-destroyed" for "4294967337"
1511444633840 Marionette DEBUG Received observer notification "outer-window-destroyed" for "4294967311"
1511444633840 Marionette DEBUG Received observer notification "outer-window-destroyed" for "4294967301"
1511444633840 Marionette DEBUG Received observer notification "outer-window-destroyed" for "4294967304"
1511444633840 Marionette DEBUG Received observer notification "outer-window-destroyed" for "4294967329"
1511444633841 Marionette DEBUG Received observer notification "outer-window-destroyed" for "4294967314"
1511444633841 Marionette DEBUG Received observer notification "outer-window-destroyed" for "4294967305"
1511444633841 Marionette DEBUG Received observer notification "outer-window-destroyed" for "4294967325"
1511444633841 Marionette DEBUG Received observer notification "outer-window-destroyed" for "4294967334"
1511444633841 Marionette DEBUG Received observer notification "outer-window-destroyed" for "4294967317"
1511444633841 Marionette DEBUG Received observer notification "outer-window-destroyed" for "4294967309"
1511444633842 Marionette DEBUG Received observer notification "outer-window-destroyed" for "4294967322"
1511444634036 Marionette DEBUG Received DOM event "DOMContentLoaded" for "http://www.aslpro.com/cgi-bin/aslpro/aslpro.cgi"
1511444635667 Marionette DEBUG Received observer notification "outer-window-destroyed" for "4294967374"
1511444635874 Marionette DEBUG Received observer notification "outer-window-destroyed" for "4294967378"
1511444636135 Marionette DEBUG Received DOM event "pageshow" for "http://www.aslpro.com/cgi-bin/aslpro/aslpro.cgi"
1511444639844 geckodriver INFO geckodriver 0.19.0
1511444639844 geckodriver INFO Listening on 127.0.0.1:65446
1511444641938 mozrunner::runner INFO Running command: "C:\\Program Files\\Mozilla Firefox\\firefox.exe" "-marionette" "-profile" "C:\\Users\\SHPOOZ~1\\AppData\\Local\\Temp\\rust_mozprofile.zuTVt8EcGven"
1511444642352 Marionette INFO Enabled via --marionette
Unable to read VR Path Registry from C:\Users\Shpoozipoo\AppData\Local\openvr\openvrpaths.vrpath
[Parent 65876, Gecko_IOThread] WARNING: pipe error: 109: file z:/build/build/src/ipc/chromium/src/chrome/common/ipc_channel_win.cc, line 346
Unable to read VR Path Registry from C:\Users\Shpoozipoo\AppData\Local\openvr\openvrpaths.vrpath
[Child 76, Chrome_ChildThread] WARNING: pipe error: 109: file z:/build/build/src/ipc/chromium/src/chrome/common/ipc_channel_win.cc, line 346
[Child 76, Chrome_ChildThread] WARNING: pipe error: 109: file z:/build/build/src/ipc/chromium/src/chrome/common/ipc_channel_win.cc, line 346
1511444643509 Marionette INFO Listening on port 65452
1511444644003 Marionette WARN TLS certificate errors will be ignored for this session
1511444644144 Marionette DEBUG Register listener.js for window 4294967297
1511444644159 Marionette DEBUG Received DOM event "beforeunload" for "about:blank"
1511444644667 Marionette DEBUG Received DOM event "pagehide" for "about:blank"
1511444644668 Marionette DEBUG Received DOM event "unload" for "about:blank"
1511444645239 Marionette DEBUG Received DOM event "DOMContentLoaded" for "http://www.aslpro.com/cgi-bin/aslpro/aslpro.cgi"
1511444647222 Marionette DEBUG Received observer notification "outer-window-destroyed" for "4294967331"
1511444647663 Marionette DEBUG Received DOM event "pageshow" for "http://www.aslpro.com/cgi-bin/aslpro/aslpro.cgi"
1511444647889 Marionette DEBUG Received DOM event "beforeunload" for "http://www.aslpro.com/cgi-bin/aslpro/aslpro.cgi"
1511444648231 Marionette DEBUG Received DOM event "pagehide" for "http://www.aslpro.com/cgi-bin/aslpro/aslpro.cgi"
1511444648239 Marionette DEBUG Received DOM event "unload" for "http://www.aslpro.com/cgi-bin/aslpro/aslpro.cgi"
1511444648302 Marionette DEBUG Received observer notification "outer-window-destroyed" for "4294967303"
1511444648302 Marionette DEBUG Received observer notification "outer-window-destroyed" for "4294967329"
1511444648302 Marionette DEBUG Received observer notification "outer-window-destroyed" for "4294967311"
1511444648302 Marionette DEBUG Received observer notification "outer-window-destroyed" for "4294967320"
1511444648302 Marionette DEBUG Received observer notification "outer-window-destroyed" for "4294967301"
1511444648303 Marionette DEBUG Received observer notification "outer-window-destroyed" for "4294967304"
1511444648303 Marionette DEBUG Received observer notification "outer-window-destroyed" for "4294967326"
1511444648303 Marionette DEBUG Received observer notification "outer-window-destroyed" for "4294967337"
1511444648303 Marionette DEBUG Received observer notification "outer-window-destroyed" for "4294967314"
1511444648304 Marionette DEBUG Received observer notification "outer-window-destroyed" for "4294967305"
1511444648305 Marionette DEBUG Received observer notification "outer-window-destroyed" for "4294967325"
1511444648305 Marionette DEBUG Received observer notification "outer-window-destroyed" for "4294967334"
1511444648305 Marionette DEBUG Received observer notification "outer-window-destroyed" for "4294967318"
1511444648306 Marionette DEBUG Received observer notification "outer-window-destroyed" for "4294967309"
1511444648651 Marionette DEBUG Received DOM event "DOMContentLoaded" for "http://www.aslpro.com/cgi-bin/aslpro/aslpro.cgi"
1511444649881 Marionette DEBUG Received observer notification "outer-window-destroyed" for "4294967375"
1511444650794 Marionette DEBUG Received observer notification "outer-window-destroyed" for "4294967379"
1511444651359 Marionette DEBUG Received DOM event "pageshow" for "http://www.aslpro.com/cgi-bin/aslpro/aslpro.cgi"
1511444655458 geckodriver INFO geckodriver 0.19.0
1511444655474 geckodriver INFO Listening on 127.0.0.1:49519
1511444657536 mozrunner::runner INFO Running command: "C:\\Program Files\\Mozilla Firefox\\firefox.exe" "-marionette" "-profile" "C:\\Users\\SHPOOZ~1\\AppData\\Local\\Temp\\rust_mozprofile.EtaudeBZuEno"
1511444657962 Marionette INFO Enabled via --marionette
Unable to read VR Path Registry from C:\Users\Shpoozipoo\AppData\Local\openvr\openvrpaths.vrpath
[Parent 55300, Gecko_IOThread] WARNING: pipe error: 109: file z:/build/build/src/ipc/chromium/src/chrome/common/ipc_channel_win.cc, line 346
Unable to read VR Path Registry from C:\Users\Shpoozipoo\AppData\Local\openvr\openvrpaths.vrpath
[Child 43764, Chrome_ChildThread] WARNING: pipe error: 109: file z:/build/build/src/ipc/chromium/src/chrome/common/ipc_channel_win.cc, line 346
[Child 43764, Chrome_ChildThread] WARNING: pipe error: 109: file z:/build/build/src/ipc/chromium/src/chrome/common/ipc_channel_win.cc, line 346
1511444659202 Marionette INFO Listening on port 49525
1511444841309 geckodriver INFO geckodriver 0.19.0
1511444841309 geckodriver INFO Listening on 127.0.0.1:49549
1511444843356 mozrunner::runner INFO Running command: "C:\\Program Files\\Mozilla Firefox\\firefox.exe" "-marionette" "-profile" "C:\\Users\\SHPOOZ~1\\AppData\\Local\\Temp\\rust_mozprofile.oeaSc4s2l9oG"
1511444843765 Marionette INFO Enabled via --marionette
Unable to read VR Path Registry from C:\Users\Shpoozipoo\AppData\Local\openvr\openvrpaths.vrpath
[Child 106180, Chrome_ChildThread] WARNING: pipe error: 109: file z:/build/build/src/ipc/chromium/src/chrome/common/ipc_channel_win.cc, line 346
[Child 106180, Chrome_ChildThread] WARNING: pipe error: 109: file z:/build/build/src/ipc/chromium/src/chrome/common/ipc_channel_win.cc, line 346
1511444844927 Marionette INFO Listening on port 49555
1511444845408 Marionette WARN TLS certificate errors will be ignored for this session
1511444845549 Marionette DEBUG Register listener.js for window 4294967297
1511444845574 Marionette DEBUG Received DOM event "beforeunload" for "about:blank"
1511444846069 Marionette DEBUG Received DOM event "pagehide" for "about:blank"
1511444846070 Marionette DEBUG Received DOM event "unload" for "about:blank"
1511444846639 Marionette DEBUG Received DOM event "DOMContentLoaded" for "http://www.aslpro.com/cgi-bin/aslpro/aslpro.cgi"
1511444849030 Marionette DEBUG Received observer notification "outer-window-destroyed" for "4294967338"
1511444849031 Marionette DEBUG Received observer notification "outer-window-destroyed" for "4294967340"
1511444849045 Marionette DEBUG Received DOM event "pageshow" for "http://www.aslpro.com/cgi-bin/aslpro/aslpro.cgi"
1511444849179 Marionette DEBUG Received DOM event "beforeunload" for "http://www.aslpro.com/cgi-bin/aslpro/aslpro.cgi"
1511444849475 Marionette DEBUG Received DOM event "pagehide" for "http://www.aslpro.com/cgi-bin/aslpro/aslpro.cgi"
1511444849490 Marionette DEBUG Received DOM event "unload" for "http://www.aslpro.com/cgi-bin/aslpro/aslpro.cgi"
1511444849714 Marionette DEBUG Received observer notification "outer-window-destroyed" for "4294967303"
1511444849715 Marionette DEBUG Received observer notification "outer-window-destroyed" for "4294967325"
1511444849715 Marionette DEBUG Received observer notification "outer-window-destroyed" for "4294967332"
1511444849717 Marionette DEBUG Received observer notification "outer-window-destroyed" for "4294967311"
1511444849718 Marionette DEBUG Received observer notification "outer-window-destroyed" for "4294967320"
1511444849718 Marionette DEBUG Received observer notification "outer-window-destroyed" for "4294967301"
1511444849719 Marionette DEBUG Received observer notification "outer-window-destroyed" for "4294967304"
1511444849720 Marionette DEBUG Received observer notification "outer-window-destroyed" for "4294967327"
1511444849720 Marionette DEBUG Received observer notification "outer-window-destroyed" for "4294967342"
1511444849722 Marionette DEBUG Received observer notification "outer-window-destroyed" for "4294967314"
1511444849723 Marionette DEBUG Received observer notification "outer-window-destroyed" for "4294967305"
1511444849724 Marionette DEBUG Received observer notification "outer-window-destroyed" for "4294967326"
1511444849726 Marionette DEBUG Received observer notification "outer-window-destroyed" for "4294967335"
1511444849727 Marionette DEBUG Received observer notification "outer-window-destroyed" for "4294967318"
1511444849728 Marionette DEBUG Received observer notification "outer-window-destroyed" for "4294967309"
1511444850584 Marionette DEBUG Received DOM event "DOMContentLoaded" for "http://www.aslpro.com/cgi-bin/aslpro/aslpro.cgi"
1511444851499 Marionette DEBUG Received observer notification "outer-window-destroyed" for "4294967377"
1511444853128 Marionette DEBUG Received observer notification "outer-window-destroyed" for "4294967381"
1511444853613 Marionette DEBUG Received DOM event "pageshow" for "http://www.aslpro.com/cgi-bin/aslpro/aslpro.cgi"
1511444856627 geckodriver INFO geckodriver 0.19.0
1511444856642 geckodriver INFO Listening on 127.0.0.1:49760
1511444858736 mozrunner::runner INFO Running command: "C:\\Program Files\\Mozilla Firefox\\firefox.exe" "-marionette" "-profile" "C:\\Users\\SHPOOZ~1\\AppData\\Local\\Temp\\rust_mozprofile.wVh8KptOfvHW"
1511444859155 Marionette INFO Enabled via --marionette
Unable to read VR Path Registry from C:\Users\Shpoozipoo\AppData\Local\openvr\openvrpaths.vrpath
[Child 27328, Chrome_ChildThread] WARNING: pipe error: 109: file z:/build/build/src/ipc/chromium/src/chrome/common/ipc_channel_win.cc, line 346
[Child 27328, Chrome_ChildThread] WARNING: pipe error: 109: file z:/build/build/src/ipc/chromium/src/chrome/common/ipc_channel_win.cc, line 346
1511444860355 Marionette INFO Listening on port 49766
1511444860776 Marionette WARN TLS certificate errors will be ignored for this session
1511444860950 Marionette DEBUG Register listener.js for window 4294967297
1511444860966 Marionette DEBUG Received DOM event "beforeunload" for "about:blank"
1511444899392 geckodriver INFO geckodriver 0.19.0
1511444899408 geckodriver INFO Listening on 127.0.0.1:49787
1511444901439 mozrunner::runner INFO Running command: "C:\\Program Files\\Mozilla Firefox\\firefox.exe" "-marionette" "-profile" "C:\\Users\\SHPOOZ~1\\AppData\\Local\\Temp\\rust_mozprofile.oE0mUMU2DKCW"
1511444901861 Marionette INFO Enabled via --marionette
Unable to read VR Path Registry from C:\Users\Shpoozipoo\AppData\Local\openvr\openvrpaths.vrpath
[Parent 42812, Gecko_IOThread] WARNING: pipe error: 109: file z:/build/build/src/ipc/chromium/src/chrome/common/ipc_channel_win.cc, line 346
Unable to read VR Path Registry from C:\Users\Shpoozipoo\AppData\Local\openvr\openvrpaths.vrpath
[Child 77652, Chrome_ChildThread] WARNING: pipe error: 109: file z:/build/build/src/ipc/chromium/src/chrome/common/ipc_channel_win.cc, line 346
[Child 77652, Chrome_ChildThread] WARNING: pipe error: 109: file z:/build/build/src/ipc/chromium/src/chrome/common/ipc_channel_win.cc, line 346
1511444903132 Marionette INFO Listening on port 49793
1511444903513 Marionette WARN TLS certificate errors will be ignored for this session
1511444903622 Marionette DEBUG Register listener.js for window 4294967297
1511444903636 Marionette DEBUG Received DOM event "beforeunload" for "about:blank"
1511444904186 Marionette DEBUG Received DOM event "pagehide" for "about:blank"
1511444904187 Marionette DEBUG Received DOM event "unload" for "about:blank"
1511444904736 Marionette DEBUG Received DOM event "DOMContentLoaded" for "http://www.aslpro.com/cgi-bin/aslpro/aslpro.cgi"
1511444907001 Marionette DEBUG Received DOM event "pageshow" for "http://www.aslpro.com/cgi-bin/aslpro/aslpro.cgi"
1511444907252 Marionette DEBUG Received DOM event "beforeunload" for "http://www.aslpro.com/cgi-bin/aslpro/aslpro.cgi"
1511444907561 Marionette DEBUG Received DOM event "pagehide" for "http://www.aslpro.com/cgi-bin/aslpro/aslpro.cgi"
1511444907580 Marionette DEBUG Received DOM event "unload" for "http://www.aslpro.com/cgi-bin/aslpro/aslpro.cgi"
1511444907738 Marionette DEBUG Received observer notification "outer-window-destroyed" for "4294967303"
1511444907742 Marionette DEBUG Received observer notification "outer-window-destroyed" for "4294967326"
1511444907742 Marionette DEBUG Received observer notification "outer-window-destroyed" for "4294967338"
1511444907742 Marionette DEBUG Received observer notification "outer-window-destroyed" for "4294967311"
1511444907742 Marionette DEBUG Received observer notification "outer-window-destroyed" for "4294967320"
1511444907743 Marionette DEBUG Received observer notification "outer-window-destroyed" for "4294967301"
1511444907743 Marionette DEBUG Received observer notification "outer-window-destroyed" for "4294967304"
1511444907744 Marionette DEBUG Received observer notification "outer-window-destroyed" for "4294967327"
1511444907744 Marionette DEBUG Received observer notification "outer-window-destroyed" for "4294967335"
1511444907744 Marionette DEBUG Received observer notification "outer-window-destroyed" for "4294967314"
1511444907744 Marionette DEBUG Received observer notification "outer-window-destroyed" for "4294967305"
1511444907745 Marionette DEBUG Received observer notification "outer-window-destroyed" for "4294967325"
1511444907745 Marionette DEBUG Received observer notification "outer-window-destroyed" for "4294967332"
1511444907745 Marionette DEBUG Received observer notification "outer-window-destroyed" for "4294967317"
1511444907745 Marionette DEBUG Received observer notification "outer-window-destroyed" for "4294967309"
1511444907934 Marionette DEBUG Received DOM event "DOMContentLoaded" for "http://www.aslpro.com/cgi-bin/aslpro/aslpro.cgi"
1511444909483 Marionette DEBUG Received DOM event "pageshow" for "http://www.aslpro.com/cgi-bin/aslpro/aslpro.cgi"
1511444912352 Marionette DEBUG Canceled page load listener because no navigation has been detected
1511444912835 geckodriver INFO geckodriver 0.19.0
1511444912835 geckodriver INFO Listening on 127.0.0.1:50010
1511444914867 mozrunner::runner INFO Running command: "C:\\Program Files\\Mozilla Firefox\\firefox.exe" "-marionette" "-profile" "C:\\Users\\SHPOOZ~1\\AppData\\Local\\Temp\\rust_mozprofile.FNKrIqjKjhCQ"
1511444915287 Marionette INFO Enabled via --marionette
Unable to read VR Path Registry from C:\Users\Shpoozipoo\AppData\Local\openvr\openvrpaths.vrpath
[Child 51952, Chrome_ChildThread] WARNING: pipe error: 109: file z:/build/build/src/ipc/chromium/src/chrome/common/ipc_channel_win.cc, line 346
1511444916520 Marionette INFO Listening on port 50017
1511444916908 Marionette WARN TLS certificate errors will be ignored for this session
1511444917014 Marionette DEBUG Register listener.js for window 4294967297
1511444917030 Marionette DEBUG Received DOM event "beforeunload" for "about:blank"
1511444917509 Marionette DEBUG Received DOM event "pagehide" for "about:blank"
1511444917509 Marionette DEBUG Received DOM event "unload" for "about:blank"
1511444917849 Marionette DEBUG Received DOM event "DOMContentLoaded" for "http://www.aslpro.com/cgi-bin/aslpro/aslpro.cgi"
1511444920079 Marionette DEBUG Received observer notification "outer-window-destroyed" for "4294967340"
1511444920080 Marionette DEBUG Received observer notification "outer-window-destroyed" for "4294967342"
1511444920099 Marionette DEBUG Received DOM event "pageshow" for "http://www.aslpro.com/cgi-bin/aslpro/aslpro.cgi"
1511444920236 Marionette DEBUG Received DOM event "beforeunload" for "http://www.aslpro.com/cgi-bin/aslpro/aslpro.cgi"
1511444920783 Marionette DEBUG Received DOM event "pagehide" for "http://www.aslpro.com/cgi-bin/aslpro/aslpro.cgi"
1511444920788 Marionette DEBUG Received DOM event "unload" for "http://www.aslpro.com/cgi-bin/aslpro/aslpro.cgi"
1511444920862 Marionette DEBUG Received observer notification "outer-window-destroyed" for "4294967303"
1511444920863 Marionette DEBUG Received observer notification "outer-window-destroyed" for "4294967330"
1511444920863 Marionette DEBUG Received observer notification "outer-window-destroyed" for "4294967338"
1511444920863 Marionette DEBUG Received observer notification "outer-window-destroyed" for "4294967325"
1511444920863 Marionette DEBUG Received observer notification "outer-window-destroyed" for "4294967311"
1511444920863 Marionette DEBUG Received observer notification "outer-window-destroyed" for "4294967320"
1511444920864 Marionette DEBUG Received observer notification "outer-window-destroyed" for "4294967301"
1511444920864 Marionette DEBUG Received observer notification "outer-window-destroyed" for "4294967304"
1511444920864 Marionette DEBUG Received observer notification "outer-window-destroyed" for "4294967329"
1511444920864 Marionette DEBUG Received observer notification "outer-window-destroyed" for "4294967345"
1511444920864 Marionette DEBUG Received observer notification "outer-window-destroyed" for "4294967314"
1511444920865 Marionette DEBUG Received observer notification "outer-window-destroyed" for "4294967305"
1511444920866 Marionette DEBUG Received observer notification "outer-window-destroyed" for "4294967328"
1511444920871 Marionette DEBUG Received observer notification "outer-window-destroyed" for "4294967335"
1511444920871 Marionette DEBUG Received observer notification "outer-window-destroyed" for "4294967317"
1511444920871 Marionette DEBUG Received observer notification "outer-window-destroyed" for "4294967309"
1511444921021 Marionette DEBUG Received DOM event "DOMContentLoaded" for "http://www.aslpro.com/cgi-bin/aslpro/aslpro.cgi"
1511444922606 Marionette DEBUG Received observer notification "outer-window-destroyed" for "4294967381"
1511444922686 Marionette DEBUG Received observer notification "outer-window-destroyed" for "4294967383"
1511444923011 Marionette DEBUG Received DOM event "pageshow" for "http://www.aslpro.com/cgi-bin/aslpro/aslpro.cgi"
1511444953941 geckodriver INFO geckodriver 0.19.0
1511444953941 geckodriver INFO Listening on 127.0.0.1:50098
1511444955972 mozrunner::runner INFO Running command: "C:\\Program Files\\Mozilla Firefox\\firefox.exe" "-marionette" "-profile" "C:\\Users\\SHPOOZ~1\\AppData\\Local\\Temp\\rust_mozprofile.1PjbcmeawbCZ"
1511444956392 Marionette INFO Enabled via --marionette
Unable to read VR Path Registry from C:\Users\Shpoozipoo\AppData\Local\openvr\openvrpaths.vrpath
[Child 10760, Chrome_ChildThread] WARNING: pipe error: 109: file z:/build/build/src/ipc/chromium/src/chrome/common/ipc_channel_win.cc, line 346
[Child 10760, Chrome_ChildThread] WARNING: pipe error: 109: file z:/build/build/src/ipc/chromium/src/chrome/common/ipc_channel_win.cc, line 346
1511444957592 Marionette INFO Listening on port 50104
1511444958027 Marionette WARN TLS certificate errors will be ignored for this session
1511444958135 Marionette DEBUG Register listener.js for window 4294967297
1511444958149 Marionette DEBUG Received DOM event "beforeunload" for "about:blank"
1511444958691 Marionette DEBUG Received DOM event "pagehide" for "about:blank"
1511444958693 Marionette DEBUG Received DOM event "unload" for "about:blank"
1511444959350 Marionette DEBUG Received DOM event "DOMContentLoaded" for "http://www.aslpro.com/cgi-bin/aslpro/aslpro.cgi"
1511444961799 Marionette DEBUG Received observer notification "outer-window-destroyed" for "4294967338"
1511444961805 Marionette DEBUG Received observer notification "outer-window-destroyed" for "4294967340"
1511444961822 Marionette DEBUG Received DOM event "pageshow" for "http://www.aslpro.com/cgi-bin/aslpro/aslpro.cgi"
1511444961956 Marionette DEBUG Received DOM event "beforeunload" for "http://www.aslpro.com/cgi-bin/aslpro/aslpro.cgi"
1511444962498 Marionette DEBUG Received DOM event "pagehide" for "http://www.aslpro.com/cgi-bin/aslpro/aslpro.cgi"
1511444962529 Marionette DEBUG Received DOM event "unload" for "http://www.aslpro.com/cgi-bin/aslpro/aslpro.cgi"
1511444962683 Marionette DEBUG Received observer notification "outer-window-destroyed" for "4294967303"
1511444962683 Marionette DEBUG Received observer notification "outer-window-destroyed" for "4294967325"
1511444962683 Marionette DEBUG Received observer notification "outer-window-destroyed" for "4294967332"
1511444962683 Marionette DEBUG Received observer notification "outer-window-destroyed" for "4294967311"
1511444962684 Marionette DEBUG Received observer notification "outer-window-destroyed" for "4294967320"
1511444962684 Marionette DEBUG Received observer notification "outer-window-destroyed" for "4294967301"
1511444962684 Marionette DEBUG Received observer notification "outer-window-destroyed" for "4294967304"
1511444962691 Marionette DEBUG Received observer notification "outer-window-destroyed" for "4294967327"
1511444962692 Marionette DEBUG Received observer notification "outer-window-destroyed" for "4294967342"
1511444962693 Marionette DEBUG Received observer notification "outer-window-destroyed" for "4294967314"
1511444962693 Marionette DEBUG Received observer notification "outer-window-destroyed" for "4294967305"
1511444962694 Marionette DEBUG Received observer notification "outer-window-destroyed" for "4294967326"
1511444962694 Marionette DEBUG Received observer notification "outer-window-destroyed" for "4294967335"
1511444962694 Marionette DEBUG Received observer notification "outer-window-destroyed" for "4294967317"
1511444962694 Marionette DEBUG Received observer notification "outer-window-destroyed" for "4294967309"
1511444962762 Marionette DEBUG Received DOM event "DOMContentLoaded" for "http://www.aslpro.com/cgi-bin/aslpro/aslpro.cgi"
1511444965409 Marionette DEBUG Received observer notification "outer-window-destroyed" for "4294967378"
1511444966066 Marionette DEBUG Received observer notification "outer-window-destroyed" for "4294967382"
1511444966084 Marionette DEBUG Received DOM event "pageshow" for "http://www.aslpro.com/cgi-bin/aslpro/aslpro.cgi"
1511444968896 Marionette DEBUG Canceled page load listener because no navigation has been detected
1511444971411 geckodriver INFO geckodriver 0.19.0
1511444971411 geckodriver INFO Listening on 127.0.0.1:50307
1511444973495 mozrunner::runner INFO Running command: "C:\\Program Files\\Mozilla Firefox\\firefox.exe" "-marionette" "-profile" "C:\\Users\\SHPOOZ~1\\AppData\\Local\\Temp\\rust_mozprofile.UZkuCmpKx2P4"
1511444973912 Marionette INFO Enabled via --marionette
Unable to read VR Path Registry from C:\Users\Shpoozipoo\AppData\Local\openvr\openvrpaths.vrpath
[Child 39504, Chrome_ChildThread] WARNING: pipe error: 109: file z:/build/build/src/ipc/chromium/src/chrome/common/ipc_channel_win.cc, line 346
[Child 39504, Chrome_ChildThread] WARNING: pipe error: 109: file z:/build/build/src/ipc/chromium/src/chrome/common/ipc_channel_win.cc, line 346
1511444975058 Marionette INFO Listening on port 50313
1511444975556 Marionette WARN TLS certificate errors will be ignored for this session
1511444975711 Marionette DEBUG Register listener.js for window 4294967297
1511444975739 Marionette DEBUG Received DOM event "beforeunload" for "about:blank"
1511444976240 Marionette DEBUG Received DOM event "pagehide" for "about:blank"
1511444976241 Marionette DEBUG Received DOM event "unload" for "about:blank"
1511444976840 Marionette DEBUG Received DOM event "DOMContentLoaded" for "http://www.aslpro.com/cgi-bin/aslpro/aslpro.cgi"
1511444979262 Marionette DEBUG Received observer notification "outer-window-destroyed" for "4294967337"
1511444979265 Marionette DEBUG Received observer notification "outer-window-destroyed" for "4294967339"
1511444979283 Marionette DEBUG Received DOM event "pageshow" for "http://www.aslpro.com/cgi-bin/aslpro/aslpro.cgi"
1511444979430 Marionette DEBUG Received DOM event "beforeunload" for "http://www.aslpro.com/cgi-bin/aslpro/aslpro.cgi"
1511444979754 Marionette DEBUG Received DOM event "pagehide" for "http://www.aslpro.com/cgi-bin/aslpro/aslpro.cgi"
1511444979777 Marionette DEBUG Received DOM event "unload" for "http://www.aslpro.com/cgi-bin/aslpro/aslpro.cgi"