-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathgeckodriver.log
4679 lines (4653 loc) · 577 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
1511407003462 geckodriver INFO Listening on 127.0.0.1:33113
1511407005486 geckodriver::marionette INFO Starting browser /usr/lib/firefox/firefox.sh with args ["-marionette"]
1511407009466 Marionette INFO Enabled via --marionette
1511407019891 Marionette INFO Listening on port 34841
1511407019944 Marionette WARN TLS certificate errors will be ignored for this session
1511407020003 Marionette DEBUG Register listener.js for window 2147483649
*** UTM:SVC TimerManager:registerTimer called after profile-before-change notification. Ignoring timer registration for id: telemetry_modules_ping
1511425634544 geckodriver INFO Listening on 127.0.0.1:52675
1511425634814 geckodriver::marionette INFO Starting browser /usr/lib/firefox/firefox.sh with args ["-marionette"]
1511425636547 Marionette INFO Enabled via --marionette
1511425646419 Marionette INFO Listening on port 38681
1511425646889 Marionette WARN TLS certificate errors will be ignored for this session
1511425646941 Marionette DEBUG Register listener.js for window 2147483649
1511425646986 Marionette DEBUG Received DOM event "beforeunload" for "about:blank"
1511425648498 Marionette DEBUG Received DOM event "pagehide" for "about:blank"
1511425648498 Marionette DEBUG Received DOM event "unload" for "about:blank"
1511425649389 Marionette DEBUG Received DOM event "DOMContentLoaded" for "http://localhost:8000/"
1511425649618 Marionette DEBUG Received observer notification "outer-window-destroyed" for "2147483653"
1511425650172 Marionette DEBUG Received DOM event "pageshow" for "http://localhost:8000/"
[Child 30830, Chrome_ChildThread] WARNING: pipe error (35): Connection reset by peer: file /build/firefox-HLWaua/firefox-57.0+build4/ipc/chromium/src/chrome/common/ipc_channel_posix.cc, line 353
[Child 30830, Chrome_ChildThread] WARNING: pipe error (21): Connection reset by peer: file /build/firefox-HLWaua/firefox-57.0+build4/ipc/chromium/src/chrome/common/ipc_channel_posix.cc, line 353
[Child 30830, Chrome_ChildThread] WARNING: pipe error (3): Connection reset by peer: file /build/firefox-HLWaua/firefox-57.0+build4/ipc/chromium/src/chrome/common/ipc_channel_posix.cc, line 353
1511425674723 geckodriver INFO Listening on 127.0.0.1:47517
1511425675829 geckodriver::marionette INFO Starting browser /usr/lib/firefox/firefox.sh with args ["-marionette"]
1511425676963 Marionette INFO Enabled via --marionette
1511425680965 Marionette INFO Listening on port 45273
1511425681054 Marionette WARN TLS certificate errors will be ignored for this session
1511425681112 Marionette DEBUG Register listener.js for window 2147483649
1511425681141 Marionette DEBUG Received DOM event "beforeunload" for "about:blank"
1511425681154 Marionette DEBUG Received DOM event "pagehide" for "about:blank"
1511425681154 Marionette DEBUG Received DOM event "unload" for "about:blank"
1511425681688 Marionette DEBUG Received DOM event "DOMContentLoaded" for "http://localhost:8000/"
1511425681853 Marionette DEBUG Received observer notification "outer-window-destroyed" for "2147483653"
1511425682102 Marionette DEBUG Received DOM event "pageshow" for "http://localhost:8000/"
[Child 31038, Chrome_ChildThread] WARNING: pipe error (35): Connection reset by peer: file /build/firefox-HLWaua/firefox-57.0+build4/ipc/chromium/src/chrome/common/ipc_channel_posix.cc, line 353
[Child 31038, Chrome_ChildThread] WARNING: pipe error (21): Connection reset by peer: file /build/firefox-HLWaua/firefox-57.0+build4/ipc/chromium/src/chrome/common/ipc_channel_posix.cc, line 353
[Child 31038, Chrome_ChildThread] WARNING: pipe error (3): Connection reset by peer: file /build/firefox-HLWaua/firefox-57.0+build4/ipc/chromium/src/chrome/common/ipc_channel_posix.cc, line 353
1511425778376 geckodriver INFO Listening on 127.0.0.1:44965
1511425779587 geckodriver::marionette INFO Starting browser /usr/lib/firefox/firefox.sh with args ["-marionette"]
1511425780302 Marionette INFO Enabled via --marionette
1511425784088 Marionette INFO Listening on port 39743
1511425784597 Marionette WARN TLS certificate errors will be ignored for this session
1511425784668 Marionette DEBUG Register listener.js for window 2147483649
1511425784712 Marionette DEBUG Received DOM event "beforeunload" for "about:blank"
1511425784926 Marionette DEBUG Received DOM event "pagehide" for "about:blank"
1511425784938 Marionette DEBUG Received DOM event "unload" for "about:blank"
1511425784980 Marionette DEBUG Received DOM event "DOMContentLoaded" for "http://localhost:8000/"
1511425785107 Marionette DEBUG Received DOM event "pageshow" for "http://localhost:8000/"
1511425785156 addons.xpi WARN Exception running bootstrap method shutdown on [email protected]: [Exception... "Component returned failure code: 0x80004005 (NS_ERROR_FAILURE) [nsIObserverService.removeObserver]" nsresult: "0x80004005 (NS_ERROR_FAILURE)" location: "JS frame :: resource://activity-stream/lib/SnippetsFeed.jsm :: uninit :: line 123" data: no] Stack trace: uninit()@resource://activity-stream/lib/SnippetsFeed.jsm:123 < onAction()@resource://activity-stream/lib/SnippetsFeed.jsm:138 < _middleware/</<()@resource://activity-stream/lib/Store.jsm:52 < Store/this[method]()@resource://activity-stream/lib/Store.jsm:31 < uninit()@resource://activity-stream/lib/Store.jsm:151 < uninit()@resource://activity-stream/lib/ActivityStream.jsm:266 < uninit()@resource://gre/modules/addons/XPIProvider.jsm -> jar:file:///usr/lib/firefox/browser/features/[email protected]!/bootstrap.js:80 < shutdown()@resource://gre/modules/addons/XPIProvider.jsm -> jar:file:///usr/lib/firefox/browser/features/[email protected]!/bootstrap.js:196 < callBootstrapMethod()@resource://gre/modules/addons/XPIProvider.jsm:4509 < observe()@resource://gre/modules/addons/XPIProvider.jsm:2281 < GeckoDriver.prototype.quit()@driver.js:3307 < despatch()@server.js:553 < execute()@server.js:527 < onPacket/<()@server.js:502 < onPacket()@server.js:501 < _onJSONObjectReady/<()@transport.js:501
[Child 31285, Chrome_ChildThread] WARNING: pipe error (3): Connection reset by peer: file /build/firefox-HLWaua/firefox-57.0+build4/ipc/chromium/src/chrome/common/ipc_channel_posix.cc, line 353
###!!! [Child][MessageChannel] Error: (msgtype=0x2400C1,name=PContent::Msg_GraphicsError) Channel error: cannot send/recv
[GFX1-]: Receive IPC close with reason=AbnormalShutdown
1511428913680 geckodriver INFO Listening on 127.0.0.1:49167
1511428914792 geckodriver::marionette INFO Starting browser /usr/lib/firefox/firefox.sh with args ["-marionette"]
1511428915472 Marionette INFO Enabled via --marionette
1511428920101 Marionette INFO Listening on port 38745
1511428920122 Marionette WARN TLS certificate errors will be ignored for this session
1511428920180 Marionette DEBUG Register listener.js for window 2147483649
1511428920536 Marionette DEBUG Received DOM event "beforeunload" for "about:blank"
1511428920576 Marionette DEBUG Received DOM event "pagehide" for "about:blank"
1511428920577 Marionette DEBUG Received DOM event "unload" for "about:blank"
1511428920583 Marionette DEBUG Received DOM event "DOMContentLoaded" for "http://localhost:8000/"
1511428920587 Marionette DEBUG Received DOM event "pageshow" for "http://localhost:8000/"
1511428920654 addons.xpi WARN Exception running bootstrap method shutdown on [email protected]: [Exception... "Component returned failure code: 0x80004005 (NS_ERROR_FAILURE) [nsIObserverService.removeObserver]" nsresult: "0x80004005 (NS_ERROR_FAILURE)" location: "JS frame :: resource://activity-stream/lib/SnippetsFeed.jsm :: uninit :: line 123" data: no] Stack trace: uninit()@resource://activity-stream/lib/SnippetsFeed.jsm:123 < onAction()@resource://activity-stream/lib/SnippetsFeed.jsm:138 < _middleware/</<()@resource://activity-stream/lib/Store.jsm:52 < Store/this[method]()@resource://activity-stream/lib/Store.jsm:31 < uninit()@resource://activity-stream/lib/Store.jsm:151 < uninit()@resource://activity-stream/lib/ActivityStream.jsm:266 < uninit()@resource://gre/modules/addons/XPIProvider.jsm -> jar:file:///usr/lib/firefox/browser/features/[email protected]!/bootstrap.js:80 < shutdown()@resource://gre/modules/addons/XPIProvider.jsm -> jar:file:///usr/lib/firefox/browser/features/[email protected]!/bootstrap.js:196 < callBootstrapMethod()@resource://gre/modules/addons/XPIProvider.jsm:4509 < observe()@resource://gre/modules/addons/XPIProvider.jsm:2281 < GeckoDriver.prototype.quit()@driver.js:3307 < despatch()@server.js:553 < execute()@server.js:527 < onPacket/<()@server.js:502 < onPacket()@server.js:501 < _onJSONObjectReady/<()@transport.js:501
[Child 1109, Chrome_ChildThread] WARNING: pipe error (19): Connection reset by peer: file /build/firefox-HLWaua/firefox-57.0+build4/ipc/chromium/src/chrome/common/ipc_channel_posix.cc, line 353
[Child 1109, Chrome_ChildThread] WARNING: pipe error (3): Connection reset by peer: file /build/firefox-HLWaua/firefox-57.0+build4/ipc/chromium/src/chrome/common/ipc_channel_posix.cc, line 353
1511430719036 geckodriver INFO Listening on 127.0.0.1:55181
1511430720147 geckodriver::marionette INFO Starting browser /usr/lib/firefox/firefox.sh with args ["-marionette"]
1511430720787 Marionette INFO Enabled via --marionette
1511430724604 Marionette INFO Listening on port 44839
1511430724847 Marionette WARN TLS certificate errors will be ignored for this session
1511430724908 Marionette DEBUG Register listener.js for window 2147483649
1511430724926 Marionette DEBUG Received DOM event "beforeunload" for "about:blank"
1511430724940 Marionette DEBUG Received DOM event "pagehide" for "about:blank"
1511430724940 Marionette DEBUG Received DOM event "unload" for "about:blank"
1511430724945 Marionette DEBUG Received DOM event "DOMContentLoaded" for "http://localhost:8000/"
1511430724947 Marionette DEBUG Received DOM event "pageshow" for "http://localhost:8000/"
1511430725041 addons.xpi WARN Exception running bootstrap method shutdown on [email protected]: [Exception... "Component returned failure code: 0x80004005 (NS_ERROR_FAILURE) [nsIObserverService.removeObserver]" nsresult: "0x80004005 (NS_ERROR_FAILURE)" location: "JS frame :: resource://activity-stream/lib/SnippetsFeed.jsm :: uninit :: line 123" data: no] Stack trace: uninit()@resource://activity-stream/lib/SnippetsFeed.jsm:123 < onAction()@resource://activity-stream/lib/SnippetsFeed.jsm:138 < _middleware/</<()@resource://activity-stream/lib/Store.jsm:52 < Store/this[method]()@resource://activity-stream/lib/Store.jsm:31 < uninit()@resource://activity-stream/lib/Store.jsm:151 < uninit()@resource://activity-stream/lib/ActivityStream.jsm:266 < uninit()@resource://gre/modules/addons/XPIProvider.jsm -> jar:file:///usr/lib/firefox/browser/features/[email protected]!/bootstrap.js:80 < shutdown()@resource://gre/modules/addons/XPIProvider.jsm -> jar:file:///usr/lib/firefox/browser/features/[email protected]!/bootstrap.js:196 < callBootstrapMethod()@resource://gre/modules/addons/XPIProvider.jsm:4509 < observe()@resource://gre/modules/addons/XPIProvider.jsm:2281 < GeckoDriver.prototype.quit()@driver.js:3307 < despatch()@server.js:553 < execute()@server.js:527 < onPacket/<()@server.js:502 < onPacket()@server.js:501 < _onJSONObjectReady/<()@transport.js:501
1511432780213 geckodriver INFO Listening on 127.0.0.1:60821
1511432781270 geckodriver::marionette INFO Starting browser /usr/lib/firefox/firefox.sh with args ["-marionette"]
1511432783079 Marionette INFO Enabled via --marionette
1511432787381 Marionette INFO Listening on port 44603
1511432787411 Marionette WARN TLS certificate errors will be ignored for this session
1511432787465 Marionette DEBUG Register listener.js for window 2147483649
1511432787726 Marionette DEBUG Received DOM event "beforeunload" for "about:blank"
1511432787755 Marionette DEBUG Received DOM event "pagehide" for "about:blank"
1511432787755 Marionette DEBUG Received DOM event "unload" for "about:blank"
1511432787760 Marionette DEBUG Received DOM event "DOMContentLoaded" for "http://localhost:8000/"
1511432787764 Marionette DEBUG Received DOM event "pageshow" for "http://localhost:8000/"
1511432787862 addons.xpi WARN Exception running bootstrap method shutdown on [email protected]: [Exception... "Component returned failure code: 0x80004005 (NS_ERROR_FAILURE) [nsIObserverService.removeObserver]" nsresult: "0x80004005 (NS_ERROR_FAILURE)" location: "JS frame :: resource://activity-stream/lib/SnippetsFeed.jsm :: uninit :: line 123" data: no] Stack trace: uninit()@resource://activity-stream/lib/SnippetsFeed.jsm:123 < onAction()@resource://activity-stream/lib/SnippetsFeed.jsm:138 < _middleware/</<()@resource://activity-stream/lib/Store.jsm:52 < Store/this[method]()@resource://activity-stream/lib/Store.jsm:31 < uninit()@resource://activity-stream/lib/Store.jsm:151 < uninit()@resource://activity-stream/lib/ActivityStream.jsm:266 < uninit()@resource://gre/modules/addons/XPIProvider.jsm -> jar:file:///usr/lib/firefox/browser/features/[email protected]!/bootstrap.js:80 < shutdown()@resource://gre/modules/addons/XPIProvider.jsm -> jar:file:///usr/lib/firefox/browser/features/[email protected]!/bootstrap.js:196 < callBootstrapMethod()@resource://gre/modules/addons/XPIProvider.jsm:4509 < observe()@resource://gre/modules/addons/XPIProvider.jsm:2281 < GeckoDriver.prototype.quit()@driver.js:3307 < despatch()@server.js:553 < execute()@server.js:527 < onPacket/<()@server.js:502 < onPacket()@server.js:501 < _onJSONObjectReady/<()@transport.js:501
[Child 4795, Chrome_ChildThread] WARNING: pipe error (19): Connection reset by peer: file /build/firefox-HLWaua/firefox-57.0+build4/ipc/chromium/src/chrome/common/ipc_channel_posix.cc, line 353
1511432820477 geckodriver INFO Listening on 127.0.0.1:55655
1511432821536 geckodriver::marionette INFO Starting browser /usr/lib/firefox/firefox.sh with args ["-marionette"]
1511432822953 Marionette INFO Enabled via --marionette
1511432827469 Marionette INFO Listening on port 36675
1511432827565 Marionette WARN TLS certificate errors will be ignored for this session
1511432827630 Marionette DEBUG Register listener.js for window 2147483649
1511432827666 Marionette DEBUG Received DOM event "beforeunload" for "about:blank"
1511432827676 Marionette DEBUG Received DOM event "pagehide" for "about:blank"
1511432827676 Marionette DEBUG Received DOM event "unload" for "about:blank"
1511432827680 Marionette DEBUG Received DOM event "DOMContentLoaded" for "http://localhost:8000/"
1511432827685 Marionette DEBUG Received DOM event "pageshow" for "http://localhost:8000/"
1511432827765 addons.xpi WARN Exception running bootstrap method shutdown on [email protected]: [Exception... "Component returned failure code: 0x80004005 (NS_ERROR_FAILURE) [nsIObserverService.removeObserver]" nsresult: "0x80004005 (NS_ERROR_FAILURE)" location: "JS frame :: resource://activity-stream/lib/SnippetsFeed.jsm :: uninit :: line 123" data: no] Stack trace: uninit()@resource://activity-stream/lib/SnippetsFeed.jsm:123 < onAction()@resource://activity-stream/lib/SnippetsFeed.jsm:138 < _middleware/</<()@resource://activity-stream/lib/Store.jsm:52 < Store/this[method]()@resource://activity-stream/lib/Store.jsm:31 < uninit()@resource://activity-stream/lib/Store.jsm:151 < uninit()@resource://activity-stream/lib/ActivityStream.jsm:266 < uninit()@resource://gre/modules/addons/XPIProvider.jsm -> jar:file:///usr/lib/firefox/browser/features/[email protected]!/bootstrap.js:80 < shutdown()@resource://gre/modules/addons/XPIProvider.jsm -> jar:file:///usr/lib/firefox/browser/features/[email protected]!/bootstrap.js:196 < callBootstrapMethod()@resource://gre/modules/addons/XPIProvider.jsm:4509 < observe()@resource://gre/modules/addons/XPIProvider.jsm:2281 < GeckoDriver.prototype.quit()@driver.js:3307 < despatch()@server.js:553 < execute()@server.js:527 < onPacket/<()@server.js:502 < onPacket()@server.js:501 < _onJSONObjectReady/<()@transport.js:501
[Child 5223, Chrome_ChildThread] WARNING: pipe error (19): Connection reset by peer: file /build/firefox-HLWaua/firefox-57.0+build4/ipc/chromium/src/chrome/common/ipc_channel_posix.cc, line 353
[Child 5223, Chrome_ChildThread] WARNING: pipe error (3): Connection reset by peer: file /build/firefox-HLWaua/firefox-57.0+build4/ipc/chromium/src/chrome/common/ipc_channel_posix.cc, line 353
1511432867624 geckodriver INFO Listening on 127.0.0.1:57015
1511432868692 geckodriver::marionette INFO Starting browser /usr/lib/firefox/firefox.sh with args ["-marionette"]
1511432870328 Marionette INFO Enabled via --marionette
1511432874599 Marionette INFO Listening on port 41339
1511432874629 Marionette WARN TLS certificate errors will be ignored for this session
1511432874707 Marionette DEBUG Register listener.js for window 2147483649
1511432874744 Marionette DEBUG Received DOM event "beforeunload" for "about:blank"
1511432874757 Marionette DEBUG Received DOM event "pagehide" for "about:blank"
1511432874757 Marionette DEBUG Received DOM event "unload" for "about:blank"
1511432874761 Marionette DEBUG Received DOM event "DOMContentLoaded" for "http://localhost:8000/"
1511432874769 Marionette DEBUG Received DOM event "pageshow" for "http://localhost:8000/"
1511432874865 addons.xpi WARN Exception running bootstrap method shutdown on [email protected]: [Exception... "Component returned failure code: 0x80004005 (NS_ERROR_FAILURE) [nsIObserverService.removeObserver]" nsresult: "0x80004005 (NS_ERROR_FAILURE)" location: "JS frame :: resource://activity-stream/lib/SnippetsFeed.jsm :: uninit :: line 123" data: no] Stack trace: uninit()@resource://activity-stream/lib/SnippetsFeed.jsm:123 < onAction()@resource://activity-stream/lib/SnippetsFeed.jsm:138 < _middleware/</<()@resource://activity-stream/lib/Store.jsm:52 < Store/this[method]()@resource://activity-stream/lib/Store.jsm:31 < uninit()@resource://activity-stream/lib/Store.jsm:151 < uninit()@resource://activity-stream/lib/ActivityStream.jsm:266 < uninit()@resource://gre/modules/addons/XPIProvider.jsm -> jar:file:///usr/lib/firefox/browser/features/[email protected]!/bootstrap.js:80 < shutdown()@resource://gre/modules/addons/XPIProvider.jsm -> jar:file:///usr/lib/firefox/browser/features/[email protected]!/bootstrap.js:196 < callBootstrapMethod()@resource://gre/modules/addons/XPIProvider.jsm:4509 < observe()@resource://gre/modules/addons/XPIProvider.jsm:2281 < GeckoDriver.prototype.quit()@driver.js:3307 < despatch()@server.js:553 < execute()@server.js:527 < onPacket/<()@server.js:502 < onPacket()@server.js:501 < _onJSONObjectReady/<()@transport.js:501
[Child 5426, Chrome_ChildThread] WARNING: pipe error (35): Connection reset by peer: file /build/firefox-HLWaua/firefox-57.0+build4/ipc/chromium/src/chrome/common/ipc_channel_posix.cc, line 353
[Child 5426, Chrome_ChildThread] WARNING: pipe error (21): Connection reset by peer: file /build/firefox-HLWaua/firefox-57.0+build4/ipc/chromium/src/chrome/common/ipc_channel_posix.cc, line 353
[Child 5426, Chrome_ChildThread] WARNING: pipe error (3): Connection reset by peer: file /build/firefox-HLWaua/firefox-57.0+build4/ipc/chromium/src/chrome/common/ipc_channel_posix.cc, line 353
1511432915110 geckodriver INFO Listening on 127.0.0.1:35927
1511432916166 geckodriver::marionette INFO Starting browser /usr/lib/firefox/firefox.sh with args ["-marionette"]
1511432917718 Marionette INFO Enabled via --marionette
1511432921495 Marionette INFO Listening on port 38987
1511432921713 Marionette WARN TLS certificate errors will be ignored for this session
1511432921784 Marionette DEBUG Register listener.js for window 2147483649
1511432921798 Marionette DEBUG Received DOM event "beforeunload" for "about:blank"
1511432921825 Marionette DEBUG Received DOM event "pagehide" for "about:blank"
1511432921825 Marionette DEBUG Received DOM event "unload" for "about:blank"
1511432921829 Marionette DEBUG Received DOM event "DOMContentLoaded" for "http://localhost:8000/"
1511432921841 Marionette DEBUG Received DOM event "pageshow" for "http://localhost:8000/"
[Child 5619, Chrome_ChildThread] WARNING: pipe error (35): Connection reset by peer: file /build/firefox-HLWaua/firefox-57.0+build4/ipc/chromium/src/chrome/common/ipc_channel_posix.cc, line 353
[Child 5619, Chrome_ChildThread] WARNING: pipe error (21): Connection reset by peer: file /build/firefox-HLWaua/firefox-57.0+build4/ipc/chromium/src/chrome/common/ipc_channel_posix.cc, line 353
[Child 5619, Chrome_ChildThread] WARNING: pipe error (3): Connection reset by peer: file /build/firefox-HLWaua/firefox-57.0+build4/ipc/chromium/src/chrome/common/ipc_channel_posix.cc, line 353
1511432954447 geckodriver INFO Listening on 127.0.0.1:42079
1511432954501 geckodriver::marionette INFO Starting browser /usr/lib/firefox/firefox.sh with args ["-marionette"]
1511432957041 Marionette INFO Enabled via --marionette
1511432961196 Marionette INFO Listening on port 41927
1511432961410 Marionette WARN TLS certificate errors will be ignored for this session
1511432961468 Marionette DEBUG Register listener.js for window 2147483649
1511432961485 Marionette DEBUG Received DOM event "beforeunload" for "about:blank"
1511432961512 Marionette DEBUG Received DOM event "pagehide" for "about:blank"
1511432961512 Marionette DEBUG Received DOM event "unload" for "about:blank"
1511432961517 Marionette DEBUG Received DOM event "DOMContentLoaded" for "http://localhost:8000/"
1511432961527 Marionette DEBUG Received DOM event "pageshow" for "http://localhost:8000/"
[Child 5810, Chrome_ChildThread] WARNING: pipe error (35): Connection reset by peer: file /build/firefox-HLWaua/firefox-57.0+build4/ipc/chromium/src/chrome/common/ipc_channel_posix.cc, line 353
[Child 5810, Chrome_ChildThread] WARNING: pipe error (21): Connection reset by peer: file /build/firefox-HLWaua/firefox-57.0+build4/ipc/chromium/src/chrome/common/ipc_channel_posix.cc, line 353
[Child 5810, Chrome_ChildThread] WARNING: pipe error (3): Connection reset by peer: file /build/firefox-HLWaua/firefox-57.0+build4/ipc/chromium/src/chrome/common/ipc_channel_posix.cc, line 353
1511433053900 geckodriver INFO Listening on 127.0.0.1:35447
1511433054970 geckodriver::marionette INFO Starting browser /usr/lib/firefox/firefox.sh with args ["-marionette"]
1511433056066 Marionette INFO Enabled via --marionette
1511433059616 Marionette INFO Listening on port 34385
1511433060045 Marionette WARN TLS certificate errors will be ignored for this session
1511433060116 Marionette DEBUG Register listener.js for window 2147483649
1511433060131 Marionette DEBUG Received DOM event "beforeunload" for "about:blank"
1511433060143 Marionette DEBUG Received DOM event "pagehide" for "about:blank"
1511433060143 Marionette DEBUG Received DOM event "unload" for "about:blank"
1511433060147 Marionette DEBUG Received DOM event "DOMContentLoaded" for "http://localhost:8000/"
1511433060157 Marionette DEBUG Received DOM event "pageshow" for "http://localhost:8000/"
[Child 6096, Chrome_ChildThread] WARNING: pipe error (35): Connection reset by peer: file /build/firefox-HLWaua/firefox-57.0+build4/ipc/chromium/src/chrome/common/ipc_channel_posix.cc, line 353
[Child 6096, Chrome_ChildThread] WARNING: pipe error (21): Connection reset by peer: file /build/firefox-HLWaua/firefox-57.0+build4/ipc/chromium/src/chrome/common/ipc_channel_posix.cc, line 353
[Child 6096, Chrome_ChildThread] WARNING: pipe error (3): Connection reset by peer: file /build/firefox-HLWaua/firefox-57.0+build4/ipc/chromium/src/chrome/common/ipc_channel_posix.cc, line 353
1511433777399 geckodriver INFO Listening on 127.0.0.1:33805
1511433777529 geckodriver::marionette INFO Starting browser /usr/lib/firefox/firefox.sh with args ["-marionette"]
1511433778519 Marionette INFO Enabled via --marionette
1511433783921 Marionette INFO Listening on port 46133
1511433783956 Marionette WARN TLS certificate errors will be ignored for this session
1511433784030 Marionette DEBUG Register listener.js for window 2147483649
1511433784062 Marionette DEBUG Received DOM event "beforeunload" for "about:blank"
1511433784102 Marionette DEBUG Received DOM event "pagehide" for "about:blank"
1511433784102 Marionette DEBUG Received DOM event "unload" for "about:blank"
1511433784108 Marionette DEBUG Received DOM event "DOMContentLoaded" for "http://localhost:8000/"
1511433784126 Marionette DEBUG Received DOM event "pageshow" for "http://localhost:8000/"
1511433855773 geckodriver INFO Listening on 127.0.0.1:48429
1511433856832 geckodriver::marionette INFO Starting browser /usr/lib/firefox/firefox.sh with args ["-marionette"]
1511433857431 Marionette INFO Enabled via --marionette
1511433861086 Marionette INFO Listening on port 39687
1511433861354 Marionette WARN TLS certificate errors will be ignored for this session
1511433861409 Marionette DEBUG Register listener.js for window 2147483649
1511433861420 Marionette DEBUG Received DOM event "beforeunload" for "about:blank"
1511433861435 Marionette DEBUG Received DOM event "pagehide" for "about:blank"
1511433861435 Marionette DEBUG Received DOM event "unload" for "about:blank"
1511433861439 Marionette DEBUG Received DOM event "DOMContentLoaded" for "http://localhost:8000/"
1511433861450 Marionette DEBUG Received DOM event "pageshow" for "http://localhost:8000/"
[Child 6740, Chrome_ChildThread] WARNING: pipe error (35): Connection reset by peer: file /build/firefox-HLWaua/firefox-57.0+build4/ipc/chromium/src/chrome/common/ipc_channel_posix.cc, line 353
[Child 6740, Chrome_ChildThread] WARNING: pipe error (19): Connection reset by peer: file /build/firefox-HLWaua/firefox-57.0+build4/ipc/chromium/src/chrome/common/ipc_channel_posix.cc, line 353
[Child 6740, Chrome_ChildThread] WARNING: pipe error (3): Connection reset by peer: file /build/firefox-HLWaua/firefox-57.0+build4/ipc/chromium/src/chrome/common/ipc_channel_posix.cc, line 353
1511433927509 geckodriver INFO Listening on 127.0.0.1:43943
1511433928561 geckodriver::marionette INFO Starting browser /usr/lib/firefox/firefox.sh with args ["-marionette"]
1511433929707 Marionette INFO Enabled via --marionette
1511433935794 Marionette INFO Listening on port 42029
1511433936046 Marionette WARN TLS certificate errors will be ignored for this session
1511433936103 Marionette DEBUG Register listener.js for window 2147483649
1511433936115 Marionette DEBUG Received DOM event "beforeunload" for "about:blank"
1511433936131 Marionette DEBUG Received DOM event "pagehide" for "about:blank"
1511433936131 Marionette DEBUG Received DOM event "unload" for "about:blank"
1511433936135 Marionette DEBUG Received DOM event "DOMContentLoaded" for "http://localhost:8000/"
1511433936147 Marionette DEBUG Received DOM event "pageshow" for "http://localhost:8000/"
1511434203550 geckodriver INFO Listening on 127.0.0.1:53423
1511434204632 geckodriver::marionette INFO Starting browser /usr/lib/firefox/firefox.sh with args ["-marionette"]
1511434206077 Marionette INFO Enabled via --marionette
1511434211719 Marionette INFO Listening on port 37157
1511434211759 Marionette WARN TLS certificate errors will be ignored for this session
1511434211835 Marionette DEBUG Register listener.js for window 2147483649
1511434212087 Marionette DEBUG Received DOM event "beforeunload" for "about:blank"
1511434212108 Marionette DEBUG Received DOM event "pagehide" for "about:blank"
1511434212108 Marionette DEBUG Received DOM event "unload" for "about:blank"
1511434212120 Marionette DEBUG Received DOM event "DOMContentLoaded" for "http://localhost:8000/"
1511434212136 Marionette DEBUG Received DOM event "pageshow" for "http://localhost:8000/"
[Child 7353, Chrome_ChildThread] WARNING: pipe error (35): Connection reset by peer: file /build/firefox-HLWaua/firefox-57.0+build4/ipc/chromium/src/chrome/common/ipc_channel_posix.cc, line 353
[Child 7353, Chrome_ChildThread] WARNING: pipe error (19): Connection reset by peer: file /build/firefox-HLWaua/firefox-57.0+build4/ipc/chromium/src/chrome/common/ipc_channel_posix.cc, line 353
[Child 7353, Chrome_ChildThread] WARNING: pipe error (3): Connection reset by peer: file /build/firefox-HLWaua/firefox-57.0+build4/ipc/chromium/src/chrome/common/ipc_channel_posix.cc, line 353
1511434296202 geckodriver INFO Listening on 127.0.0.1:38759
1511434297270 geckodriver::marionette INFO Starting browser /usr/lib/firefox/firefox.sh with args ["-marionette"]
1511434298372 Marionette INFO Enabled via --marionette
1511434301972 Marionette INFO Listening on port 38769
1511434301987 Marionette WARN TLS certificate errors will be ignored for this session
1511434302037 Marionette DEBUG Register listener.js for window 2147483649
1511434302301 Marionette DEBUG Received DOM event "beforeunload" for "about:blank"
1511434302318 Marionette DEBUG Received DOM event "pagehide" for "about:blank"
1511434302318 Marionette DEBUG Received DOM event "unload" for "about:blank"
1511434302322 Marionette DEBUG Received DOM event "DOMContentLoaded" for "http://localhost:8000/"
1511434302331 Marionette DEBUG Received DOM event "pageshow" for "http://localhost:8000/"
[Child 7598, Chrome_ChildThread] WARNING: pipe error (3): Connection reset by peer: file /build/firefox-HLWaua/firefox-57.0+build4/ipc/chromium/src/chrome/common/ipc_channel_posix.cc, line 353
1511434537819 geckodriver INFO Listening on 127.0.0.1:37239
1511434538873 geckodriver::marionette INFO Starting browser /usr/lib/firefox/firefox.sh with args ["-marionette"]
1511434540323 Marionette INFO Enabled via --marionette
1511434544528 Marionette INFO Listening on port 37437
1511434544603 Marionette WARN TLS certificate errors will be ignored for this session
1511434544665 Marionette DEBUG Register listener.js for window 2147483649
1511434544675 Marionette DEBUG Received DOM event "beforeunload" for "about:blank"
1511434544687 Marionette DEBUG Received DOM event "pagehide" for "about:blank"
1511434544687 Marionette DEBUG Received DOM event "unload" for "about:blank"
1511434544706 Marionette DEBUG Received DOM event "DOMContentLoaded" for "http://localhost:8000/"
1511434544708 Marionette DEBUG Received DOM event "pageshow" for "http://localhost:8000/"
[Child 8023, Chrome_ChildThread] WARNING: pipe error (35): Connection reset by peer: file /build/firefox-HLWaua/firefox-57.0+build4/ipc/chromium/src/chrome/common/ipc_channel_posix.cc, line 353
[Child 8023, Chrome_ChildThread] WARNING: pipe error (19): Connection reset by peer: file /build/firefox-HLWaua/firefox-57.0+build4/ipc/chromium/src/chrome/common/ipc_channel_posix.cc, line 353
[Child 8023, Chrome_ChildThread] WARNING: pipe error (3): Connection reset by peer: file /build/firefox-HLWaua/firefox-57.0+build4/ipc/chromium/src/chrome/common/ipc_channel_posix.cc, line 353
1511435807140 geckodriver INFO Listening on 127.0.0.1:46033
1511435808302 geckodriver::marionette INFO Starting browser /usr/lib/firefox/firefox.sh with args ["-marionette"]
1511435809932 Marionette INFO Enabled via --marionette
1511435813776 Marionette INFO Listening on port 42533
1511435813790 Marionette WARN TLS certificate errors will be ignored for this session
1511435813848 Marionette DEBUG Register listener.js for window 2147483649
1511435814045 Marionette DEBUG Received DOM event "beforeunload" for "about:blank"
1511435814068 Marionette DEBUG Received DOM event "pagehide" for "about:blank"
1511435814069 Marionette DEBUG Received DOM event "unload" for "about:blank"
1511435814075 Marionette DEBUG Received DOM event "DOMContentLoaded" for "http://localhost:8000/"
1511435814086 Marionette DEBUG Received DOM event "pageshow" for "http://localhost:8000/"
[Child 9093, Chrome_ChildThread] WARNING: pipe error (20): Connection reset by peer: file /build/firefox-HLWaua/firefox-57.0+build4/ipc/chromium/src/chrome/common/ipc_channel_posix.cc, line 353
[Child 9093, Chrome_ChildThread] WARNING: pipe error (3): Connection reset by peer: file /build/firefox-HLWaua/firefox-57.0+build4/ipc/chromium/src/chrome/common/ipc_channel_posix.cc, line 353
1511435928479 geckodriver INFO Listening on 127.0.0.1:56025
1511435929531 geckodriver::marionette INFO Starting browser /usr/lib/firefox/firefox.sh with args ["-marionette"]
1511435930143 Marionette INFO Enabled via --marionette
1511435934033 Marionette INFO Listening on port 40199
1511435934052 Marionette WARN TLS certificate errors will be ignored for this session
1511435934114 Marionette DEBUG Register listener.js for window 2147483649
1511435934148 Marionette DEBUG Received DOM event "beforeunload" for "about:blank"
1511435934160 Marionette DEBUG Received DOM event "pagehide" for "about:blank"
1511435934161 Marionette DEBUG Received DOM event "unload" for "about:blank"
1511435934173 Marionette DEBUG Received DOM event "DOMContentLoaded" for "http://localhost:8000/"
1511435934175 Marionette DEBUG Received DOM event "pageshow" for "http://localhost:8000/"
[Child 9332, Chrome_ChildThread] WARNING: pipe error (19): Connection reset by peer: file /build/firefox-HLWaua/firefox-57.0+build4/ipc/chromium/src/chrome/common/ipc_channel_posix.cc, line 353
[Child 9332, Chrome_ChildThread] WARNING: pipe error (3): Connection reset by peer: file /build/firefox-HLWaua/firefox-57.0+build4/ipc/chromium/src/chrome/common/ipc_channel_posix.cc, line 353
1511436076773 geckodriver INFO Listening on 127.0.0.1:51635
1511436077828 geckodriver::marionette INFO Starting browser /usr/lib/firefox/firefox.sh with args ["-marionette"]
1511436078594 Marionette INFO Enabled via --marionette
1511436083946 Marionette INFO Listening on port 41803
1511436083963 Marionette WARN TLS certificate errors will be ignored for this session
1511436084040 Marionette DEBUG Register listener.js for window 2147483649
1511436084058 Marionette DEBUG Received DOM event "beforeunload" for "about:blank"
1511436084072 Marionette DEBUG Received DOM event "pagehide" for "about:blank"
1511436084072 Marionette DEBUG Received DOM event "unload" for "about:blank"
1511436084077 Marionette DEBUG Received DOM event "DOMContentLoaded" for "http://localhost:8000/"
1511436084090 Marionette DEBUG Received DOM event "pageshow" for "http://localhost:8000/"
1511436107007 geckodriver INFO Listening on 127.0.0.1:60235
1511436108062 geckodriver::marionette INFO Starting browser /usr/lib/firefox/firefox.sh with args ["-marionette"]
1511436108689 Marionette INFO Enabled via --marionette
1511436112659 Marionette INFO Listening on port 34165
1511436112867 Marionette WARN TLS certificate errors will be ignored for this session
1511436112932 Marionette DEBUG Register listener.js for window 2147483649
1511436112950 Marionette DEBUG Received DOM event "beforeunload" for "about:blank"
1511436112976 Marionette DEBUG Received DOM event "pagehide" for "about:blank"
1511436112977 Marionette DEBUG Received DOM event "unload" for "about:blank"
1511436112982 Marionette DEBUG Received DOM event "DOMContentLoaded" for "http://localhost:8000/"
1511436112997 Marionette DEBUG Received DOM event "pageshow" for "http://localhost:8000/"
1511436181451 geckodriver INFO Listening on 127.0.0.1:57513
1511436182502 geckodriver::marionette INFO Starting browser /usr/lib/firefox/firefox.sh with args ["-marionette"]
1511436183355 Marionette INFO Enabled via --marionette
1511436187146 Marionette INFO Listening on port 34233
1511436187772 Marionette WARN TLS certificate errors will be ignored for this session
1511436187845 Marionette DEBUG Register listener.js for window 2147483649
1511436187879 Marionette DEBUG Received DOM event "beforeunload" for "about:blank"
1511436187907 Marionette DEBUG Received DOM event "pagehide" for "about:blank"
1511436187909 Marionette DEBUG Received DOM event "unload" for "about:blank"
1511436187918 Marionette DEBUG Received DOM event "DOMContentLoaded" for "http://localhost:8000/"
1511436187936 Marionette DEBUG Received DOM event "pageshow" for "http://localhost:8000/"
[Child 10051, Chrome_ChildThread] WARNING: pipe error (35): Connection reset by peer: file /build/firefox-HLWaua/firefox-57.0+build4/ipc/chromium/src/chrome/common/ipc_channel_posix.cc, line 353
[Child 10051, Chrome_ChildThread] WARNING: pipe error (19): Connection reset by peer: file /build/firefox-HLWaua/firefox-57.0+build4/ipc/chromium/src/chrome/common/ipc_channel_posix.cc, line 353
[Child 10051, Chrome_ChildThread] WARNING: pipe error (3): Connection reset by peer: file /build/firefox-HLWaua/firefox-57.0+build4/ipc/chromium/src/chrome/common/ipc_channel_posix.cc, line 353
1511436935713 geckodriver INFO Listening on 127.0.0.1:38997
1511436936789 geckodriver::marionette INFO Starting browser /usr/lib/firefox/firefox.sh with args ["-marionette"]
1511436937409 Marionette INFO Enabled via --marionette
1511436941395 Marionette INFO Listening on port 35199
1511436941421 Marionette WARN TLS certificate errors will be ignored for this session
1511436941492 Marionette DEBUG Register listener.js for window 2147483649
1511436941518 Marionette DEBUG Received DOM event "beforeunload" for "about:blank"
1511436941549 Marionette DEBUG Received DOM event "pagehide" for "about:blank"
1511436941549 Marionette DEBUG Received DOM event "unload" for "about:blank"
1511436941553 Marionette DEBUG Received DOM event "DOMContentLoaded" for "http://localhost:8000/"
1511436941566 Marionette DEBUG Received DOM event "pageshow" for "http://localhost:8000/"
[Child 10745, Chrome_ChildThread] WARNING: pipe error (35): Connection reset by peer: file /build/firefox-HLWaua/firefox-57.0+build4/ipc/chromium/src/chrome/common/ipc_channel_posix.cc, line 353
[Child 10745, Chrome_ChildThread] WARNING: pipe error (21): Connection reset by peer: file /build/firefox-HLWaua/firefox-57.0+build4/ipc/chromium/src/chrome/common/ipc_channel_posix.cc, line 353
[Child 10745, Chrome_ChildThread] WARNING: pipe error (3): Connection reset by peer: file /build/firefox-HLWaua/firefox-57.0+build4/ipc/chromium/src/chrome/common/ipc_channel_posix.cc, line 353
1511441516161 geckodriver INFO Listening on 127.0.0.1:57373
1511441517430 geckodriver::marionette INFO Starting browser /usr/lib/firefox/firefox.sh with args ["-marionette"]
1511441523936 Marionette INFO Enabled via --marionette
1511441533935 Marionette INFO Listening on port 42383
1511441534384 Marionette WARN TLS certificate errors will be ignored for this session
1511441534433 Marionette DEBUG Register listener.js for window 2147483649
1511441534582 Marionette DEBUG Received DOM event "beforeunload" for "about:blank"
1511441536313 Marionette DEBUG Received DOM event "pagehide" for "about:blank"
1511441536313 Marionette DEBUG Received DOM event "unload" for "about:blank"
1511441536326 Marionette DEBUG Received DOM event "DOMContentLoaded" for "http://localhost:8000/"
1511441537117 Marionette DEBUG Received DOM event "pageshow" for "http://localhost:8000/"
1511441645968 geckodriver INFO Listening on 127.0.0.1:59507
1511441647018 geckodriver::marionette INFO Starting browser /usr/lib/firefox/firefox.sh with args ["-marionette"]
1511441648233 Marionette INFO Enabled via --marionette
1511441652108 Marionette INFO Listening on port 34911
1511441652330 Marionette WARN TLS certificate errors will be ignored for this session
1511441652400 Marionette DEBUG Register listener.js for window 2147483649
1511441652418 Marionette DEBUG Received DOM event "beforeunload" for "about:blank"
1511441652543 Marionette DEBUG Received DOM event "pagehide" for "about:blank"
1511441652543 Marionette DEBUG Received DOM event "unload" for "about:blank"
1511441652555 Marionette DEBUG Received DOM event "DOMContentLoaded" for "http://localhost:8000/"
1511441652662 Marionette DEBUG Received DOM event "pageshow" for "http://localhost:8000/"
1511441652692 addons.xpi WARN Exception running bootstrap method shutdown on [email protected]: [Exception... "Component returned failure code: 0x80004005 (NS_ERROR_FAILURE) [nsIObserverService.removeObserver]" nsresult: "0x80004005 (NS_ERROR_FAILURE)" location: "JS frame :: resource://activity-stream/lib/SnippetsFeed.jsm :: uninit :: line 123" data: no] Stack trace: uninit()@resource://activity-stream/lib/SnippetsFeed.jsm:123 < onAction()@resource://activity-stream/lib/SnippetsFeed.jsm:138 < _middleware/</<()@resource://activity-stream/lib/Store.jsm:52 < Store/this[method]()@resource://activity-stream/lib/Store.jsm:31 < uninit()@resource://activity-stream/lib/Store.jsm:151 < uninit()@resource://activity-stream/lib/ActivityStream.jsm:266 < uninit()@resource://gre/modules/addons/XPIProvider.jsm -> jar:file:///usr/lib/firefox/browser/features/[email protected]!/bootstrap.js:80 < shutdown()@resource://gre/modules/addons/XPIProvider.jsm -> jar:file:///usr/lib/firefox/browser/features/[email protected]!/bootstrap.js:196 < callBootstrapMethod()@resource://gre/modules/addons/XPIProvider.jsm:4509 < observe()@resource://gre/modules/addons/XPIProvider.jsm:2281 < GeckoDriver.prototype.quit()@driver.js:3307 < despatch()@server.js:553 < execute()@server.js:527 < onPacket/<()@server.js:502 < onPacket()@server.js:501 < _onJSONObjectReady/<()@transport.js:501
[Child 14790, Chrome_ChildThread] WARNING: pipe error (35): Connection reset by peer: file /build/firefox-HLWaua/firefox-57.0+build4/ipc/chromium/src/chrome/common/ipc_channel_posix.cc, line 353
[Child 14790, Chrome_ChildThread] WARNING: pipe error (19): Connection reset by peer: file /build/firefox-HLWaua/firefox-57.0+build4/ipc/chromium/src/chrome/common/ipc_channel_posix.cc, line 353
[Child 14790, Chrome_ChildThread] WARNING: pipe error (3): Connection reset by peer: file /build/firefox-HLWaua/firefox-57.0+build4/ipc/chromium/src/chrome/common/ipc_channel_posix.cc, line 353
1511441719215 geckodriver INFO Listening on 127.0.0.1:40981
1511441720274 geckodriver::marionette INFO Starting browser /usr/lib/firefox/firefox.sh with args ["-marionette"]
1511441723785 Marionette INFO Enabled via --marionette
1511441727626 Marionette INFO Listening on port 42199
1511441727856 Marionette WARN TLS certificate errors will be ignored for this session
1511441727908 Marionette DEBUG Register listener.js for window 2147483649
1511441727922 Marionette DEBUG Received DOM event "beforeunload" for "about:blank"
1511441727944 Marionette DEBUG Received DOM event "pagehide" for "about:blank"
1511441727944 Marionette DEBUG Received DOM event "unload" for "about:blank"
1511441727948 Marionette DEBUG Received DOM event "DOMContentLoaded" for "http://localhost:8000/"
1511441728030 Marionette DEBUG Received DOM event "pageshow" for "http://localhost:8000/"
[Child 15059, Chrome_ChildThread] WARNING: pipe error (35): Connection reset by peer: file /build/firefox-HLWaua/firefox-57.0+build4/ipc/chromium/src/chrome/common/ipc_channel_posix.cc, line 353
[Child 15059, Chrome_ChildThread] WARNING: pipe error (19): Connection reset by peer: file /build/firefox-HLWaua/firefox-57.0+build4/ipc/chromium/src/chrome/common/ipc_channel_posix.cc, line 353
[Child 15059, Chrome_ChildThread] WARNING: pipe error (3): Connection reset by peer: file /build/firefox-HLWaua/firefox-57.0+build4/ipc/chromium/src/chrome/common/ipc_channel_posix.cc, line 353
1511441757595 geckodriver INFO Listening on 127.0.0.1:38927
1511441758662 geckodriver::marionette INFO Starting browser /usr/lib/firefox/firefox.sh with args ["-marionette"]
1511441759638 Marionette INFO Enabled via --marionette
1511441763425 Marionette INFO Listening on port 38459
1511441763646 Marionette WARN TLS certificate errors will be ignored for this session
1511441763709 Marionette DEBUG Register listener.js for window 2147483649
1511441763735 Marionette DEBUG Received DOM event "beforeunload" for "about:blank"
1511441763755 Marionette DEBUG Received DOM event "pagehide" for "about:blank"
1511441763756 Marionette DEBUG Received DOM event "unload" for "about:blank"
1511441763762 Marionette DEBUG Received DOM event "DOMContentLoaded" for "http://localhost:8000/"
1511441763781 Marionette DEBUG Received DOM event "pageshow" for "http://localhost:8000/"
[Child 15267, Chrome_ChildThread] WARNING: pipe error (35): Connection reset by peer: file /build/firefox-HLWaua/firefox-57.0+build4/ipc/chromium/src/chrome/common/ipc_channel_posix.cc, line 353
[Child 15267, Chrome_ChildThread] WARNING: pipe error (21): Connection reset by peer: file /build/firefox-HLWaua/firefox-57.0+build4/ipc/chromium/src/chrome/common/ipc_channel_posix.cc, line 353
[Child 15267, Chrome_ChildThread] WARNING: pipe error (3): Connection reset by peer: file /build/firefox-HLWaua/firefox-57.0+build4/ipc/chromium/src/chrome/common/ipc_channel_posix.cc, line 353
1511441841941 geckodriver INFO Listening on 127.0.0.1:45449
1511441842992 geckodriver::marionette INFO Starting browser /usr/lib/firefox/firefox.sh with args ["-marionette"]
1511441844385 Marionette INFO Enabled via --marionette
1511441847472 Marionette INFO Listening on port 46773
1511441847521 Marionette WARN TLS certificate errors will be ignored for this session
1511441847579 Marionette DEBUG Register listener.js for window 2147483649
1511441847597 Marionette DEBUG Received DOM event "beforeunload" for "about:blank"
1511441847621 Marionette DEBUG Received DOM event "pagehide" for "about:blank"
1511441847621 Marionette DEBUG Received DOM event "unload" for "about:blank"
1511441847626 Marionette DEBUG Received DOM event "DOMContentLoaded" for "http://localhost:8000/"
1511441847639 Marionette DEBUG Received DOM event "pageshow" for "http://localhost:8000/"
1511466059998 geckodriver INFO Listening on 127.0.0.1:53023
1511466061660 geckodriver::marionette INFO Starting browser /usr/lib/firefox/firefox.sh with args ["-marionette"]
1511466066260 Marionette INFO Enabled via --marionette
1511466076425 Marionette INFO Listening on port 44315
1511466076765 Marionette WARN TLS certificate errors will be ignored for this session
1511466076835 Marionette DEBUG Register listener.js for window 2147483649
1511466079116 Marionette DEBUG Received DOM event "beforeunload" for "about:blank"
1511466079583 Marionette DEBUG Received DOM event "pagehide" for "about:blank"
1511466079583 Marionette DEBUG Received DOM event "unload" for "about:blank"
1511466079588 Marionette DEBUG Received DOM event "DOMContentLoaded" for "http://localhost:49291/"
1511466079795 Marionette DEBUG Received DOM event "pageshow" for "http://localhost:49291/"
1511467307807 geckodriver INFO Listening on 127.0.0.1:53263
1511467308863 geckodriver::marionette INFO Starting browser /usr/lib/firefox/firefox.sh with args ["-marionette"]
1511467309754 Marionette INFO Enabled via --marionette
1511467313719 Marionette INFO Listening on port 36171
1511467314034 Marionette WARN TLS certificate errors will be ignored for this session
1511467314094 Marionette DEBUG Register listener.js for window 2147483649
1511467314121 Marionette DEBUG Received DOM event "beforeunload" for "about:blank"
1511467314153 Marionette DEBUG Received DOM event "pagehide" for "about:blank"
1511467314154 Marionette DEBUG Received DOM event "unload" for "about:blank"
1511467314160 Marionette DEBUG Received DOM event "DOMContentLoaded" for "http://localhost:57775/"
1511467314173 Marionette DEBUG Received DOM event "pageshow" for "http://localhost:57775/"
1511467458003 geckodriver INFO Listening on 127.0.0.1:58519
1511467459059 geckodriver::marionette INFO Starting browser /usr/lib/firefox/firefox.sh with args ["-marionette"]
1511467460546 Marionette INFO Enabled via --marionette
1511467464550 Marionette INFO Listening on port 45291
1511467464580 Marionette WARN TLS certificate errors will be ignored for this session
1511467464637 Marionette DEBUG Register listener.js for window 2147483649
1511467464654 Marionette DEBUG Received DOM event "beforeunload" for "about:blank"
1511467464688 Marionette DEBUG Received DOM event "pagehide" for "about:blank"
1511467464688 Marionette DEBUG Received DOM event "unload" for "about:blank"
1511467464693 Marionette DEBUG Received DOM event "DOMContentLoaded" for "http://localhost:50715/"
1511467464702 Marionette DEBUG Received DOM event "pageshow" for "http://localhost:50715/"
1511467506589 geckodriver INFO Listening on 127.0.0.1:52133
1511467507642 geckodriver::marionette INFO Starting browser /usr/lib/firefox/firefox.sh with args ["-marionette"]
1511467511351 Marionette INFO Enabled via --marionette
1511467515502 Marionette INFO Listening on port 45953
1511467515720 Marionette WARN TLS certificate errors will be ignored for this session
1511467515777 Marionette DEBUG Register listener.js for window 2147483649
1511467515807 Marionette DEBUG Received DOM event "beforeunload" for "about:blank"
1511467515827 Marionette DEBUG Received DOM event "pagehide" for "about:blank"
1511467515829 Marionette DEBUG Received DOM event "unload" for "about:blank"
1511467515833 Marionette DEBUG Received DOM event "DOMContentLoaded" for "http://localhost:54367/"
1511467515843 Marionette DEBUG Received DOM event "pageshow" for "http://localhost:54367/"
[Child 5157, Chrome_ChildThread] WARNING: pipe error (20): Connection reset by peer: file /build/firefox-HLWaua/firefox-57.0+build4/ipc/chromium/src/chrome/common/ipc_channel_posix.cc, line 353
1511467555734 geckodriver INFO Listening on 127.0.0.1:35811
1511467556811 geckodriver::marionette INFO Starting browser /usr/lib/firefox/firefox.sh with args ["-marionette"]
1511467558492 Marionette INFO Enabled via --marionette
1511467561845 Marionette INFO Listening on port 40981
1511467562043 Marionette WARN TLS certificate errors will be ignored for this session
1511467562101 Marionette DEBUG Register listener.js for window 2147483649
1511467562129 Marionette DEBUG Received DOM event "beforeunload" for "about:blank"
1511467562151 Marionette DEBUG Received DOM event "pagehide" for "about:blank"
1511467562151 Marionette DEBUG Received DOM event "unload" for "about:blank"
1511467562156 Marionette DEBUG Received DOM event "DOMContentLoaded" for "http://localhost:50295/"
1511467562165 Marionette DEBUG Received DOM event "pageshow" for "http://localhost:50295/"
1511467611082 geckodriver INFO Listening on 127.0.0.1:58187
1511467612144 geckodriver::marionette INFO Starting browser /usr/lib/firefox/firefox.sh with args ["-marionette"]
1511467614378 Marionette INFO Enabled via --marionette
1511467618592 Marionette INFO Listening on port 37101
1511467618775 Marionette WARN TLS certificate errors will be ignored for this session
1511467618838 Marionette DEBUG Register listener.js for window 2147483649
1511467618852 Marionette DEBUG Received DOM event "beforeunload" for "about:blank"
1511467618880 Marionette DEBUG Received DOM event "pagehide" for "about:blank"
1511467618881 Marionette DEBUG Received DOM event "unload" for "about:blank"
1511467618886 Marionette DEBUG Received DOM event "DOMContentLoaded" for "http://localhost:42321/"
1511467618900 Marionette DEBUG Received DOM event "pageshow" for "http://localhost:42321/"
[Child 5563, Chrome_ChildThread] WARNING: pipe error (35): Connection reset by peer: file /build/firefox-HLWaua/firefox-57.0+build4/ipc/chromium/src/chrome/common/ipc_channel_posix.cc, line 353
[Child 5563, Chrome_ChildThread] WARNING: pipe error (21): Connection reset by peer: file /build/firefox-HLWaua/firefox-57.0+build4/ipc/chromium/src/chrome/common/ipc_channel_posix.cc, line 353
[Child 5563, Chrome_ChildThread] WARNING: pipe error (3): Connection reset by peer: file /build/firefox-HLWaua/firefox-57.0+build4/ipc/chromium/src/chrome/common/ipc_channel_posix.cc, line 353
1511467663673 geckodriver INFO Listening on 127.0.0.1:51321
1511467664728 geckodriver::marionette INFO Starting browser /usr/lib/firefox/firefox.sh with args ["-marionette"]
1511467666924 Marionette INFO Enabled via --marionette
1511467671001 Marionette INFO Listening on port 40073
1511467671353 Marionette WARN TLS certificate errors will be ignored for this session
1511467671414 Marionette DEBUG Register listener.js for window 2147483649
1511467671445 Marionette DEBUG Received DOM event "beforeunload" for "about:blank"
1511467671472 Marionette DEBUG Received DOM event "pagehide" for "about:blank"
1511467671473 Marionette DEBUG Received DOM event "unload" for "about:blank"
1511467671477 Marionette DEBUG Received DOM event "DOMContentLoaded" for "http://localhost:54133/"
1511467671487 Marionette DEBUG Received DOM event "pageshow" for "http://localhost:54133/"
[Child 5787, Chrome_ChildThread] WARNING: pipe error (3): Connection reset by peer: file /build/firefox-HLWaua/firefox-57.0+build4/ipc/chromium/src/chrome/common/ipc_channel_posix.cc, line 353
1511470360136 geckodriver INFO Listening on 127.0.0.1:49955
1511470361278 geckodriver::marionette INFO Starting browser /usr/lib/firefox/firefox.sh with args ["-marionette"]
1511470364425 Marionette INFO Enabled via --marionette
1511470370062 Marionette INFO Listening on port 39305
1511470370325 Marionette WARN TLS certificate errors will be ignored for this session
1511470370386 Marionette DEBUG Register listener.js for window 2147483649
1511470370403 Marionette DEBUG Received DOM event "beforeunload" for "about:blank"
1511470370424 Marionette DEBUG Received DOM event "pagehide" for "about:blank"
1511470370424 Marionette DEBUG Received DOM event "unload" for "about:blank"
1511470370429 Marionette DEBUG Received DOM event "DOMContentLoaded" for "http://localhost:50795/"
1511470370439 Marionette DEBUG Received DOM event "pageshow" for "http://localhost:50795/"
[Child 7407, Chrome_ChildThread] WARNING: pipe error (19): Connection reset by peer: file /build/firefox-HLWaua/firefox-57.0+build4/ipc/chromium/src/chrome/common/ipc_channel_posix.cc, line 353
[Child 7407, Chrome_ChildThread] WARNING: pipe error (3): Connection reset by peer: file /build/firefox-HLWaua/firefox-57.0+build4/ipc/chromium/src/chrome/common/ipc_channel_posix.cc, line 353
1511470373935 geckodriver INFO Listening on 127.0.0.1:48953
1511470375020 geckodriver::marionette INFO Starting browser /usr/lib/firefox/firefox.sh with args ["-marionette"]
1511470375962 Marionette INFO Enabled via --marionette
1511470381796 Marionette INFO Listening on port 36807
1511470382461 Marionette WARN TLS certificate errors will be ignored for this session
1511470382519 Marionette DEBUG Register listener.js for window 2147483649
1511470382534 Marionette DEBUG Received DOM event "beforeunload" for "about:blank"
1511470382554 Marionette DEBUG Received DOM event "pagehide" for "about:blank"
1511470382554 Marionette DEBUG Received DOM event "unload" for "about:blank"
1511470382558 Marionette DEBUG Received DOM event "DOMContentLoaded" for "http://localhost:50795/"
1511470382568 Marionette DEBUG Received DOM event "pageshow" for "http://localhost:50795/"
[Child 7564, Chrome_ChildThread] WARNING: pipe error (35): Connection reset by peer: file /build/firefox-HLWaua/firefox-57.0+build4/ipc/chromium/src/chrome/common/ipc_channel_posix.cc, line 353
[Child 7564, Chrome_ChildThread] WARNING: pipe error (19): Connection reset by peer: file /build/firefox-HLWaua/firefox-57.0+build4/ipc/chromium/src/chrome/common/ipc_channel_posix.cc, line 353
[Child 7564, Chrome_ChildThread] WARNING: pipe error (3): Connection reset by peer: file /build/firefox-HLWaua/firefox-57.0+build4/ipc/chromium/src/chrome/common/ipc_channel_posix.cc, line 353
1511471221078 geckodriver INFO Listening on 127.0.0.1:59233
1511471222152 geckodriver::marionette INFO Starting browser /usr/lib/firefox/firefox.sh with args ["-marionette"]
1511471223107 Marionette INFO Enabled via --marionette
1511471226724 Marionette INFO Listening on port 36683
1511471226954 Marionette WARN TLS certificate errors will be ignored for this session
1511471227080 Marionette DEBUG Register listener.js for window 2147483649
1511471227115 Marionette DEBUG Received DOM event "beforeunload" for "about:blank"
1511471227174 Marionette DEBUG Received DOM event "pagehide" for "about:blank"
1511471227175 Marionette DEBUG Received DOM event "unload" for "about:blank"
1511471227184 Marionette DEBUG Received DOM event "DOMContentLoaded" for "http://localhost:59477/"
1511471227203 Marionette DEBUG Received DOM event "pageshow" for "http://localhost:59477/"
[Child 8290, Chrome_ChildThread] WARNING: pipe error (35): Connection reset by peer: file /build/firefox-HLWaua/firefox-57.0+build4/ipc/chromium/src/chrome/common/ipc_channel_posix.cc, line 353
[Child 8290, Chrome_ChildThread] WARNING: pipe error (19): Connection reset by peer: file /build/firefox-HLWaua/firefox-57.0+build4/ipc/chromium/src/chrome/common/ipc_channel_posix.cc, line 353
[Child 8290, Chrome_ChildThread] WARNING: pipe error (3): Connection reset by peer: file /build/firefox-HLWaua/firefox-57.0+build4/ipc/chromium/src/chrome/common/ipc_channel_posix.cc, line 353
1511471239910 geckodriver INFO Listening on 127.0.0.1:35945
1511471241001 geckodriver::marionette INFO Starting browser /usr/lib/firefox/firefox.sh with args ["-marionette"]
1511471242266 Marionette INFO Enabled via --marionette
1511471246127 Marionette INFO Listening on port 42029
1511471246372 Marionette WARN TLS certificate errors will be ignored for this session
1511471246440 Marionette DEBUG Register listener.js for window 2147483649
1511471246459 Marionette DEBUG Received DOM event "beforeunload" for "about:blank"
1511471246477 Marionette DEBUG Received DOM event "pagehide" for "about:blank"
1511471246477 Marionette DEBUG Received DOM event "unload" for "about:blank"
1511471246482 Marionette DEBUG Received DOM event "DOMContentLoaded" for "http://localhost:59477/"
1511471246494 Marionette DEBUG Received DOM event "pageshow" for "http://localhost:59477/"
[Child 8453, Chrome_ChildThread] WARNING: pipe error (35): Connection reset by peer: file /build/firefox-HLWaua/firefox-57.0+build4/ipc/chromium/src/chrome/common/ipc_channel_posix.cc, line 353
[Child 8453, Chrome_ChildThread] WARNING: pipe error (21): Connection reset by peer: file /build/firefox-HLWaua/firefox-57.0+build4/ipc/chromium/src/chrome/common/ipc_channel_posix.cc, line 353
[Child 8453, Chrome_ChildThread] WARNING: pipe error (3): Connection reset by peer: file /build/firefox-HLWaua/firefox-57.0+build4/ipc/chromium/src/chrome/common/ipc_channel_posix.cc, line 353
1511472192343 geckodriver INFO Listening on 127.0.0.1:46493
1511472193431 geckodriver::marionette INFO Starting browser /usr/lib/firefox/firefox.sh with args ["-marionette"]
1511472194354 Marionette INFO Enabled via --marionette
1511472198166 Marionette INFO Listening on port 33669
1511472198529 Marionette WARN TLS certificate errors will be ignored for this session
1511472198642 Marionette DEBUG Register listener.js for window 2147483649
1511472198655 Marionette DEBUG Received DOM event "beforeunload" for "about:blank"
1511472198682 Marionette DEBUG Received DOM event "pagehide" for "about:blank"
1511472198683 Marionette DEBUG Received DOM event "unload" for "about:blank"
1511472198689 Marionette DEBUG Received DOM event "DOMContentLoaded" for "http://localhost:33371/"
1511472198706 Marionette DEBUG Received DOM event "pageshow" for "http://localhost:33371/"
[Child 9498, Chrome_ChildThread] WARNING: pipe error (35): Connection reset by peer: file /build/firefox-HLWaua/firefox-57.0+build4/ipc/chromium/src/chrome/common/ipc_channel_posix.cc, line 353
[Child 9498, Chrome_ChildThread] WARNING: pipe error (21): Connection reset by peer: file /build/firefox-HLWaua/firefox-57.0+build4/ipc/chromium/src/chrome/common/ipc_channel_posix.cc, line 353
[Child 9498, Chrome_ChildThread] WARNING: pipe error (3): Connection reset by peer: file /build/firefox-HLWaua/firefox-57.0+build4/ipc/chromium/src/chrome/common/ipc_channel_posix.cc, line 353
1511472211946 geckodriver INFO Listening on 127.0.0.1:38787
1511472213043 geckodriver::marionette INFO Starting browser /usr/lib/firefox/firefox.sh with args ["-marionette"]
1511472213715 Marionette INFO Enabled via --marionette
1511472217494 Marionette INFO Listening on port 41849
1511472217747 Marionette WARN TLS certificate errors will be ignored for this session
1511472217815 Marionette DEBUG Register listener.js for window 2147483649
1511472217845 Marionette DEBUG Received DOM event "beforeunload" for "about:blank"
1511472217864 Marionette DEBUG Received DOM event "pagehide" for "about:blank"
1511472217865 Marionette DEBUG Received DOM event "unload" for "about:blank"
1511472217870 Marionette DEBUG Received DOM event "DOMContentLoaded" for "http://localhost:33371/"
1511472217879 Marionette DEBUG Received DOM event "pageshow" for "http://localhost:33371/"
[Child 9668, Chrome_ChildThread] WARNING: pipe error (3): Connection reset by peer: file /build/firefox-HLWaua/firefox-57.0+build4/ipc/chromium/src/chrome/common/ipc_channel_posix.cc, line 353
1511472220270 geckodriver INFO Listening on 127.0.0.1:51885
1511472221354 geckodriver::marionette INFO Starting browser /usr/lib/firefox/firefox.sh with args ["-marionette"]
1511472222667 Marionette INFO Enabled via --marionette
1511472226940 Marionette INFO Listening on port 43705
1511472227110 Marionette WARN TLS certificate errors will be ignored for this session
1511472227188 Marionette DEBUG Register listener.js for window 2147483649
1511472227214 Marionette DEBUG Received DOM event "beforeunload" for "about:blank"
1511472227234 Marionette DEBUG Received DOM event "pagehide" for "about:blank"
1511472227234 Marionette DEBUG Received DOM event "unload" for "about:blank"
1511472227241 Marionette DEBUG Received DOM event "DOMContentLoaded" for "http://localhost:33371/"
1511472227257 Marionette DEBUG Received DOM event "pageshow" for "http://localhost:33371/"
1511472227358 addons.xpi WARN Exception running bootstrap method shutdown on [email protected]: [Exception... "Component returned failure code: 0x80004005 (NS_ERROR_FAILURE) [nsIObserverService.removeObserver]" nsresult: "0x80004005 (NS_ERROR_FAILURE)" location: "JS frame :: resource://activity-stream/lib/SnippetsFeed.jsm :: uninit :: line 123" data: no] Stack trace: uninit()@resource://activity-stream/lib/SnippetsFeed.jsm:123 < onAction()@resource://activity-stream/lib/SnippetsFeed.jsm:138 < _middleware/</<()@resource://activity-stream/lib/Store.jsm:52 < Store/this[method]()@resource://activity-stream/lib/Store.jsm:31 < uninit()@resource://activity-stream/lib/Store.jsm:151 < uninit()@resource://activity-stream/lib/ActivityStream.jsm:266 < uninit()@resource://gre/modules/addons/XPIProvider.jsm -> jar:file:///usr/lib/firefox/browser/features/[email protected]!/bootstrap.js:80 < shutdown()@resource://gre/modules/addons/XPIProvider.jsm -> jar:file:///usr/lib/firefox/browser/features/[email protected]!/bootstrap.js:196 < callBootstrapMethod()@resource://gre/modules/addons/XPIProvider.jsm:4509 < observe()@resource://gre/modules/addons/XPIProvider.jsm:2281 < GeckoDriver.prototype.quit()@driver.js:3307 < despatch()@server.js:553 < execute()@server.js:527 < onPacket/<()@server.js:502 < onPacket()@server.js:501 < _onJSONObjectReady/<()@transport.js:501
[Child 9804, Chrome_ChildThread] WARNING: pipe error (19): Connection reset by peer: file /build/firefox-HLWaua/firefox-57.0+build4/ipc/chromium/src/chrome/common/ipc_channel_posix.cc, line 353
[Child 9804, Chrome_ChildThread] WARNING: pipe error (3): Connection reset by peer: file /build/firefox-HLWaua/firefox-57.0+build4/ipc/chromium/src/chrome/common/ipc_channel_posix.cc, line 353
1511472518258 geckodriver INFO Listening on 127.0.0.1:33045
1511472519355 geckodriver::marionette INFO Starting browser /usr/lib/firefox/firefox.sh with args ["-marionette"]
1511472520004 Marionette INFO Enabled via --marionette
1511472524037 Marionette INFO Listening on port 44729
1511472524074 Marionette WARN TLS certificate errors will be ignored for this session
1511472524150 Marionette DEBUG Register listener.js for window 2147483649
1511472524180 Marionette DEBUG Received DOM event "beforeunload" for "about:blank"
1511472524208 Marionette DEBUG Received DOM event "pagehide" for "about:blank"
1511472524209 Marionette DEBUG Received DOM event "unload" for "about:blank"
1511472524214 Marionette DEBUG Received DOM event "DOMContentLoaded" for "http://localhost:50465/"
1511472524228 Marionette DEBUG Received DOM event "pageshow" for "http://localhost:50465/"
1511472527334 geckodriver INFO Listening on 127.0.0.1:52691
1511472528385 geckodriver::marionette INFO Starting browser /usr/lib/firefox/firefox.sh with args ["-marionette"]
1511472529020 Marionette INFO Enabled via --marionette
1511472534257 Marionette INFO Listening on port 46727
1511472534514 Marionette WARN TLS certificate errors will be ignored for this session
1511472534575 Marionette DEBUG Register listener.js for window 2147483649
1511472534597 Marionette DEBUG Received DOM event "beforeunload" for "about:blank"
1511472534621 Marionette DEBUG Received DOM event "pagehide" for "about:blank"
1511472534622 Marionette DEBUG Received DOM event "unload" for "about:blank"
1511472534635 Marionette DEBUG Received DOM event "DOMContentLoaded" for "http://localhost:50465/"
1511472534653 Marionette DEBUG Received DOM event "pageshow" for "http://localhost:50465/"
[Child 10249, Chrome_ChildThread] WARNING: pipe error (21): Connection reset by peer: file /build/firefox-HLWaua/firefox-57.0+build4/ipc/chromium/src/chrome/common/ipc_channel_posix.cc, line 353
1511472537228 geckodriver INFO Listening on 127.0.0.1:49931
1511472538308 geckodriver::marionette INFO Starting browser /usr/lib/firefox/firefox.sh with args ["-marionette"]
1511472538945 Marionette INFO Enabled via --marionette
1511472542387 Marionette INFO Listening on port 41691
1511472542594 Marionette WARN TLS certificate errors will be ignored for this session
1511472542660 Marionette DEBUG Register listener.js for window 2147483649
1511472542690 Marionette DEBUG Received DOM event "beforeunload" for "about:blank"
1511472542712 Marionette DEBUG Received DOM event "pagehide" for "about:blank"
1511472542716 Marionette DEBUG Received DOM event "unload" for "about:blank"
1511472542723 Marionette DEBUG Received DOM event "DOMContentLoaded" for "http://localhost:50465/"
1511472542741 Marionette DEBUG Received DOM event "pageshow" for "http://localhost:50465/"
1511472542834 addons.xpi WARN Exception running bootstrap method shutdown on [email protected]: [Exception... "Component returned failure code: 0x80004005 (NS_ERROR_FAILURE) [nsIObserverService.removeObserver]" nsresult: "0x80004005 (NS_ERROR_FAILURE)" location: "JS frame :: resource://activity-stream/lib/SnippetsFeed.jsm :: uninit :: line 123" data: no] Stack trace: uninit()@resource://activity-stream/lib/SnippetsFeed.jsm:123 < onAction()@resource://activity-stream/lib/SnippetsFeed.jsm:138 < _middleware/</<()@resource://activity-stream/lib/Store.jsm:52 < Store/this[method]()@resource://activity-stream/lib/Store.jsm:31 < uninit()@resource://activity-stream/lib/Store.jsm:151 < uninit()@resource://activity-stream/lib/ActivityStream.jsm:266 < uninit()@resource://gre/modules/addons/XPIProvider.jsm -> jar:file:///usr/lib/firefox/browser/features/[email protected]!/bootstrap.js:80 < shutdown()@resource://gre/modules/addons/XPIProvider.jsm -> jar:file:///usr/lib/firefox/browser/features/[email protected]!/bootstrap.js:196 < callBootstrapMethod()@resource://gre/modules/addons/XPIProvider.jsm:4509 < observe()@resource://gre/modules/addons/XPIProvider.jsm:2281 < GeckoDriver.prototype.quit()@driver.js:3307 < despatch()@server.js:553 < execute()@server.js:527 < onPacket/<()@server.js:502 < onPacket()@server.js:501 < _onJSONObjectReady/<()@transport.js:501
[Child 10415, Chrome_ChildThread] WARNING: pipe error (19): Connection reset by peer: file /build/firefox-HLWaua/firefox-57.0+build4/ipc/chromium/src/chrome/common/ipc_channel_posix.cc, line 353
1511473746643 geckodriver INFO Listening on 127.0.0.1:46527
1511473747746 geckodriver::marionette INFO Starting browser /usr/lib/firefox/firefox.sh with args ["-marionette"]
1511473748618 Marionette INFO Enabled via --marionette
1511473752720 Marionette INFO Listening on port 44775
1511473753088 Marionette WARN TLS certificate errors will be ignored for this session
1511473753149 Marionette DEBUG Register listener.js for window 2147483649
1511473753160 Marionette DEBUG Received DOM event "beforeunload" for "about:blank"
1511473753181 Marionette DEBUG Received DOM event "pagehide" for "about:blank"
1511473753181 Marionette DEBUG Received DOM event "unload" for "about:blank"
1511473753187 Marionette DEBUG Received DOM event "DOMContentLoaded" for "http://localhost:56053/"
1511473753201 Marionette DEBUG Received DOM event "pageshow" for "http://localhost:56053/"
[Child 11502, Chrome_ChildThread] WARNING: pipe error (19): Connection reset by peer: file /build/firefox-HLWaua/firefox-57.0+build4/ipc/chromium/src/chrome/common/ipc_channel_posix.cc, line 353
[Child 11502, Chrome_ChildThread] WARNING: pipe error (3): Connection reset by peer: file /build/firefox-HLWaua/firefox-57.0+build4/ipc/chromium/src/chrome/common/ipc_channel_posix.cc, line 353
###!!! [Child][MessageChannel] Error: (msgtype=0x2400C1,name=PContent::Msg_GraphicsError) Channel error: cannot send/recv
[GFX1-]: Receive IPC close with reason=AbnormalShutdown
1511473756348 geckodriver INFO Listening on 127.0.0.1:39233
1511473757431 geckodriver::marionette INFO Starting browser /usr/lib/firefox/firefox.sh with args ["-marionette"]
1511473759138 Marionette INFO Enabled via --marionette
1511473763530 Marionette INFO Listening on port 39095
1511473763559 Marionette WARN TLS certificate errors will be ignored for this session
1511473763613 Marionette DEBUG Register listener.js for window 2147483649
1511473763856 Marionette DEBUG Received DOM event "beforeunload" for "about:blank"
1511473763883 Marionette DEBUG Received DOM event "pagehide" for "about:blank"
1511473763883 Marionette DEBUG Received DOM event "unload" for "about:blank"
1511473763889 Marionette DEBUG Received DOM event "DOMContentLoaded" for "http://localhost:56053/"
1511473763904 Marionette DEBUG Received DOM event "pageshow" for "http://localhost:56053/"
[Child 11657, Chrome_ChildThread] WARNING: pipe error (19): Connection reset by peer: file /build/firefox-HLWaua/firefox-57.0+build4/ipc/chromium/src/chrome/common/ipc_channel_posix.cc, line 353
1511473766260 geckodriver INFO Listening on 127.0.0.1:45147
1511473767342 geckodriver::marionette INFO Starting browser /usr/lib/firefox/firefox.sh with args ["-marionette"]
1511473768294 Marionette INFO Enabled via --marionette
1511473773828 Marionette INFO Listening on port 34311
1511473774071 Marionette WARN TLS certificate errors will be ignored for this session
1511473774133 Marionette DEBUG Register listener.js for window 2147483649
1511473774160 Marionette DEBUG Received DOM event "beforeunload" for "about:blank"
1511473774180 Marionette DEBUG Received DOM event "pagehide" for "about:blank"
1511473774180 Marionette DEBUG Received DOM event "unload" for "about:blank"
1511473774185 Marionette DEBUG Received DOM event "DOMContentLoaded" for "http://localhost:56053/"
1511473774195 Marionette DEBUG Received DOM event "pageshow" for "http://localhost:56053/"
1511473774306 addons.xpi WARN Exception running bootstrap method shutdown on [email protected]: [Exception... "Component returned failure code: 0x80004005 (NS_ERROR_FAILURE) [nsIObserverService.removeObserver]" nsresult: "0x80004005 (NS_ERROR_FAILURE)" location: "JS frame :: resource://activity-stream/lib/SnippetsFeed.jsm :: uninit :: line 123" data: no] Stack trace: uninit()@resource://activity-stream/lib/SnippetsFeed.jsm:123 < onAction()@resource://activity-stream/lib/SnippetsFeed.jsm:138 < _middleware/</<()@resource://activity-stream/lib/Store.jsm:52 < Store/this[method]()@resource://activity-stream/lib/Store.jsm:31 < uninit()@resource://activity-stream/lib/Store.jsm:151 < uninit()@resource://activity-stream/lib/ActivityStream.jsm:266 < uninit()@resource://gre/modules/addons/XPIProvider.jsm -> jar:file:///usr/lib/firefox/browser/features/[email protected]!/bootstrap.js:80 < shutdown()@resource://gre/modules/addons/XPIProvider.jsm -> jar:file:///usr/lib/firefox/browser/features/[email protected]!/bootstrap.js:196 < callBootstrapMethod()@resource://gre/modules/addons/XPIProvider.jsm:4509 < observe()@resource://gre/modules/addons/XPIProvider.jsm:2281 < GeckoDriver.prototype.quit()@driver.js:3307 < despatch()@server.js:553 < execute()@server.js:527 < onPacket/<()@server.js:502 < onPacket()@server.js:501 < _onJSONObjectReady/<()@transport.js:501
[Child 11807, Chrome_ChildThread] WARNING: pipe error (35): Connection reset by peer: file /build/firefox-HLWaua/firefox-57.0+build4/ipc/chromium/src/chrome/common/ipc_channel_posix.cc, line 353
[Child 11807, Chrome_ChildThread] WARNING: pipe error (20): Connection reset by peer: file /build/firefox-HLWaua/firefox-57.0+build4/ipc/chromium/src/chrome/common/ipc_channel_posix.cc, line 353
[Child 11807, Chrome_ChildThread] WARNING: pipe error (3): Connection reset by peer: file /build/firefox-HLWaua/firefox-57.0+build4/ipc/chromium/src/chrome/common/ipc_channel_posix.cc, line 353
1511473878758 geckodriver INFO Listening on 127.0.0.1:50479
1511473879857 geckodriver::marionette INFO Starting browser /usr/lib/firefox/firefox.sh with args ["-marionette"]
1511473880502 Marionette INFO Enabled via --marionette
1511473883984 Marionette INFO Listening on port 45925
1511473884195 Marionette WARN TLS certificate errors will be ignored for this session
1511473884275 Marionette DEBUG Register listener.js for window 2147483649
1511473884302 Marionette DEBUG Received DOM event "beforeunload" for "about:blank"
1511473884325 Marionette DEBUG Received DOM event "pagehide" for "about:blank"
1511473884325 Marionette DEBUG Received DOM event "unload" for "about:blank"
1511473884331 Marionette DEBUG Received DOM event "DOMContentLoaded" for "http://localhost:39185/"
1511473884340 Marionette DEBUG Received DOM event "pageshow" for "http://localhost:39185/"
[Child 12032, Chrome_ChildThread] WARNING: pipe error (35): Connection reset by peer: file /build/firefox-HLWaua/firefox-57.0+build4/ipc/chromium/src/chrome/common/ipc_channel_posix.cc, line 353
[Child 12032, Chrome_ChildThread] WARNING: pipe error (21): Connection reset by peer: file /build/firefox-HLWaua/firefox-57.0+build4/ipc/chromium/src/chrome/common/ipc_channel_posix.cc, line 353
[Child 12032, Chrome_ChildThread] WARNING: pipe error (3): Connection reset by peer: file /build/firefox-HLWaua/firefox-57.0+build4/ipc/chromium/src/chrome/common/ipc_channel_posix.cc, line 353
1511473887843 geckodriver INFO Listening on 127.0.0.1:57569
1511473888929 geckodriver::marionette INFO Starting browser /usr/lib/firefox/firefox.sh with args ["-marionette"]
1511473889890 Marionette INFO Enabled via --marionette
1511473893358 Marionette INFO Listening on port 42859
1511473893586 Marionette WARN TLS certificate errors will be ignored for this session
1511473893648 Marionette DEBUG Register listener.js for window 2147483649
1511473893667 Marionette DEBUG Received DOM event "beforeunload" for "about:blank"
1511473893683 Marionette DEBUG Received DOM event "pagehide" for "about:blank"
1511473893683 Marionette DEBUG Received DOM event "unload" for "about:blank"
1511473893688 Marionette DEBUG Received DOM event "DOMContentLoaded" for "http://localhost:39185/"
1511473893697 Marionette DEBUG Received DOM event "pageshow" for "http://localhost:39185/"
[Child 12177, Chrome_ChildThread] WARNING: pipe error (35): Connection reset by peer: file /build/firefox-HLWaua/firefox-57.0+build4/ipc/chromium/src/chrome/common/ipc_channel_posix.cc, line 353
[Child 12177, Chrome_ChildThread] WARNING: pipe error (21): Connection reset by peer: file /build/firefox-HLWaua/firefox-57.0+build4/ipc/chromium/src/chrome/common/ipc_channel_posix.cc, line 353
[Child 12177, Chrome_ChildThread] WARNING: pipe error (3): Connection reset by peer: file /build/firefox-HLWaua/firefox-57.0+build4/ipc/chromium/src/chrome/common/ipc_channel_posix.cc, line 353
1511473896539 geckodriver INFO Listening on 127.0.0.1:37335
1511473897619 geckodriver::marionette INFO Starting browser /usr/lib/firefox/firefox.sh with args ["-marionette"]
1511473898236 Marionette INFO Enabled via --marionette
1511473901702 Marionette INFO Listening on port 42653
1511473901935 Marionette WARN TLS certificate errors will be ignored for this session
1511473901997 Marionette DEBUG Register listener.js for window 2147483649
1511473902009 Marionette DEBUG Received DOM event "beforeunload" for "about:blank"
1511473902033 Marionette DEBUG Received DOM event "pagehide" for "about:blank"
1511473902034 Marionette DEBUG Received DOM event "unload" for "about:blank"
1511473902038 Marionette DEBUG Received DOM event "DOMContentLoaded" for "http://localhost:39185/"
1511473902049 Marionette DEBUG Received DOM event "pageshow" for "http://localhost:39185/"
1511473902178 addons.xpi WARN Exception running bootstrap method shutdown on [email protected]: [Exception... "Component returned failure code: 0x80004005 (NS_ERROR_FAILURE) [nsIObserverService.removeObserver]" nsresult: "0x80004005 (NS_ERROR_FAILURE)" location: "JS frame :: resource://activity-stream/lib/SnippetsFeed.jsm :: uninit :: line 123" data: no] Stack trace: uninit()@resource://activity-stream/lib/SnippetsFeed.jsm:123 < onAction()@resource://activity-stream/lib/SnippetsFeed.jsm:138 < _middleware/</<()@resource://activity-stream/lib/Store.jsm:52 < Store/this[method]()@resource://activity-stream/lib/Store.jsm:31 < uninit()@resource://activity-stream/lib/Store.jsm:151 < uninit()@resource://activity-stream/lib/ActivityStream.jsm:266 < uninit()@resource://gre/modules/addons/XPIProvider.jsm -> jar:file:///usr/lib/firefox/browser/features/[email protected]!/bootstrap.js:80 < shutdown()@resource://gre/modules/addons/XPIProvider.jsm -> jar:file:///usr/lib/firefox/browser/features/[email protected]!/bootstrap.js:196 < callBootstrapMethod()@resource://gre/modules/addons/XPIProvider.jsm:4509 < observe()@resource://gre/modules/addons/XPIProvider.jsm:2281 < GeckoDriver.prototype.quit()@driver.js:3307 < despatch()@server.js:553 < execute()@server.js:527 < onPacket/<()@server.js:502 < onPacket()@server.js:501 < _onJSONObjectReady/<()@transport.js:501
[Child 12316, Chrome_ChildThread] WARNING: pipe error (35): Connection reset by peer: file /build/firefox-HLWaua/firefox-57.0+build4/ipc/chromium/src/chrome/common/ipc_channel_posix.cc, line 353
[Child 12316, Chrome_ChildThread] WARNING: pipe error (19): Connection reset by peer: file /build/firefox-HLWaua/firefox-57.0+build4/ipc/chromium/src/chrome/common/ipc_channel_posix.cc, line 353
[Child 12316, Chrome_ChildThread] WARNING: pipe error (3): Connection reset by peer: file /build/firefox-HLWaua/firefox-57.0+build4/ipc/chromium/src/chrome/common/ipc_channel_posix.cc, line 353
1511473954162 geckodriver INFO Listening on 127.0.0.1:49733
1511473955243 geckodriver::marionette INFO Starting browser /usr/lib/firefox/firefox.sh with args ["-marionette"]
1511473955930 Marionette INFO Enabled via --marionette
1511473959620 Marionette INFO Listening on port 42741
1511473959858 Marionette WARN TLS certificate errors will be ignored for this session
1511473959929 Marionette DEBUG Register listener.js for window 2147483649
1511473959946 Marionette DEBUG Received DOM event "beforeunload" for "about:blank"
1511473959970 Marionette DEBUG Received DOM event "pagehide" for "about:blank"
1511473959971 Marionette DEBUG Received DOM event "unload" for "about:blank"
1511473959975 Marionette DEBUG Received DOM event "DOMContentLoaded" for "http://localhost:39549/"
1511473959985 Marionette DEBUG Received DOM event "pageshow" for "http://localhost:39549/"
[Child 12499, Chrome_ChildThread] WARNING: pipe error (21): Connection reset by peer: file /build/firefox-HLWaua/firefox-57.0+build4/ipc/chromium/src/chrome/common/ipc_channel_posix.cc, line 353
[Child 12499, Chrome_ChildThread] WARNING: pipe error (3): Connection reset by peer: file /build/firefox-HLWaua/firefox-57.0+build4/ipc/chromium/src/chrome/common/ipc_channel_posix.cc, line 353
1511473963581 geckodriver INFO Listening on 127.0.0.1:42083
1511473964652 geckodriver::marionette INFO Starting browser /usr/lib/firefox/firefox.sh with args ["-marionette"]
1511473965270 Marionette INFO Enabled via --marionette
1511473969425 Marionette INFO Listening on port 36435
1511473969793 Marionette WARN TLS certificate errors will be ignored for this session
1511473969871 Marionette DEBUG Register listener.js for window 2147483649
1511473969883 Marionette DEBUG Received DOM event "beforeunload" for "about:blank"
1511473969900 Marionette DEBUG Received DOM event "pagehide" for "about:blank"
1511473969900 Marionette DEBUG Received DOM event "unload" for "about:blank"
1511473969907 Marionette DEBUG Received DOM event "DOMContentLoaded" for "http://localhost:39549/"
1511473969922 Marionette DEBUG Received DOM event "pageshow" for "http://localhost:39549/"
[Child 12647, Chrome_ChildThread] WARNING: pipe error (19): Connection reset by peer: file /build/firefox-HLWaua/firefox-57.0+build4/ipc/chromium/src/chrome/common/ipc_channel_posix.cc, line 353
1511473972278 geckodriver INFO Listening on 127.0.0.1:44467
1511473973366 geckodriver::marionette INFO Starting browser /usr/lib/firefox/firefox.sh with args ["-marionette"]
1511473973991 Marionette INFO Enabled via --marionette
1511473977725 Marionette INFO Listening on port 35087
1511473977968 Marionette WARN TLS certificate errors will be ignored for this session
1511473978030 Marionette DEBUG Register listener.js for window 2147483649
1511473978059 Marionette DEBUG Received DOM event "beforeunload" for "about:blank"
1511473978073 Marionette DEBUG Received DOM event "pagehide" for "about:blank"
1511473978073 Marionette DEBUG Received DOM event "unload" for "about:blank"
1511473978078 Marionette DEBUG Received DOM event "DOMContentLoaded" for "http://localhost:39549/"
1511473978089 Marionette DEBUG Received DOM event "pageshow" for "http://localhost:39549/"
1511473978217 addons.xpi WARN Exception running bootstrap method shutdown on [email protected]: [Exception... "Component returned failure code: 0x80004005 (NS_ERROR_FAILURE) [nsIObserverService.removeObserver]" nsresult: "0x80004005 (NS_ERROR_FAILURE)" location: "JS frame :: resource://activity-stream/lib/SnippetsFeed.jsm :: uninit :: line 123" data: no] Stack trace: uninit()@resource://activity-stream/lib/SnippetsFeed.jsm:123 < onAction()@resource://activity-stream/lib/SnippetsFeed.jsm:138 < _middleware/</<()@resource://activity-stream/lib/Store.jsm:52 < Store/this[method]()@resource://activity-stream/lib/Store.jsm:31 < uninit()@resource://activity-stream/lib/Store.jsm:151 < uninit()@resource://activity-stream/lib/ActivityStream.jsm:266 < uninit()@resource://gre/modules/addons/XPIProvider.jsm -> jar:file:///usr/lib/firefox/browser/features/[email protected]!/bootstrap.js:80 < shutdown()@resource://gre/modules/addons/XPIProvider.jsm -> jar:file:///usr/lib/firefox/browser/features/[email protected]!/bootstrap.js:196 < callBootstrapMethod()@resource://gre/modules/addons/XPIProvider.jsm:4509 < observe()@resource://gre/modules/addons/XPIProvider.jsm:2281 < GeckoDriver.prototype.quit()@driver.js:3307 < despatch()@server.js:553 < execute()@server.js:527 < onPacket/<()@server.js:502 < onPacket()@server.js:501 < _onJSONObjectReady/<()@transport.js:501
[Child 12800, Chrome_ChildThread] WARNING: pipe error (21): Connection reset by peer: file /build/firefox-HLWaua/firefox-57.0+build4/ipc/chromium/src/chrome/common/ipc_channel_posix.cc, line 353
[GFX1-]: Receive IPC close with reason=AbnormalShutdown
[Child 12800, Chrome_ChildThread] WARNING: pipe error (3): Connection reset by peer: file /build/firefox-HLWaua/firefox-57.0+build4/ipc/chromium/src/chrome/common/ipc_channel_posix.cc, line 353
1511475362164 geckodriver INFO Listening on 127.0.0.1:47783
1511475363255 geckodriver::marionette INFO Starting browser /usr/lib/firefox/firefox.sh with args ["-marionette"]
1511475363997 Marionette INFO Enabled via --marionette
1511475368725 Marionette INFO Listening on port 34759
1511475369011 Marionette WARN TLS certificate errors will be ignored for this session
1511475369078 Marionette DEBUG Register listener.js for window 2147483649
1511475369181 Marionette DEBUG Received DOM event "beforeunload" for "about:blank"
1511475369203 Marionette DEBUG Received DOM event "pagehide" for "about:blank"
1511475369204 Marionette DEBUG Received DOM event "unload" for "about:blank"
1511475369210 Marionette DEBUG Received DOM event "DOMContentLoaded" for "http://localhost:41523/"
1511475369224 Marionette DEBUG Received DOM event "pageshow" for "http://localhost:41523/"
1511475376441 geckodriver INFO Listening on 127.0.0.1:55473
1511475377522 geckodriver::marionette INFO Starting browser /usr/lib/firefox/firefox.sh with args ["-marionette"]
1511475378175 Marionette INFO Enabled via --marionette
1511475383112 Marionette INFO Listening on port 34575
1511475383372 Marionette WARN TLS certificate errors will be ignored for this session
1511475383433 Marionette DEBUG Register listener.js for window 2147483649
1511475383445 Marionette DEBUG Received DOM event "beforeunload" for "about:blank"
1511475383458 Marionette DEBUG Received DOM event "pagehide" for "about:blank"
1511475383459 Marionette DEBUG Received DOM event "unload" for "about:blank"
1511475383464 Marionette DEBUG Received DOM event "DOMContentLoaded" for "http://localhost:41523/"
1511475383478 Marionette DEBUG Received DOM event "pageshow" for "http://localhost:41523/"
[Child 14308, Chrome_ChildThread] WARNING: pipe error (21): Connection reset by peer: file /build/firefox-HLWaua/firefox-57.0+build4/ipc/chromium/src/chrome/common/ipc_channel_posix.cc, line 353
1511475474139 geckodriver INFO Listening on 127.0.0.1:59135
1511475475191 geckodriver::marionette INFO Starting browser /usr/lib/firefox/firefox.sh with args ["-marionette"]
1511475476636 Marionette INFO Enabled via --marionette
1511475480372 Marionette INFO Listening on port 38049
1511475480420 Marionette WARN TLS certificate errors will be ignored for this session
1511475480507 Marionette DEBUG Register listener.js for window 2147483649
1511475480529 Marionette DEBUG Received DOM event "beforeunload" for "about:blank"
1511475480852 Marionette DEBUG Received DOM event "pagehide" for "about:blank"
1511475480853 Marionette DEBUG Received DOM event "unload" for "about:blank"
1511475480861 Marionette DEBUG Received DOM event "DOMContentLoaded" for "http://localhost:47249/"
1511475480874 Marionette DEBUG Received DOM event "pageshow" for "http://localhost:47249/"
1511475483963 geckodriver INFO Listening on 127.0.0.1:34499
1511475485021 geckodriver::marionette INFO Starting browser /usr/lib/firefox/firefox.sh with args ["-marionette"]
1511475485971 Marionette INFO Enabled via --marionette
1511475492472 Marionette INFO Listening on port 43311
1511475492668 Marionette WARN TLS certificate errors will be ignored for this session
1511475492739 Marionette DEBUG Register listener.js for window 2147483649
1511475492764 Marionette DEBUG Received DOM event "beforeunload" for "about:blank"
1511475492779 Marionette DEBUG Received DOM event "pagehide" for "about:blank"
1511475492779 Marionette DEBUG Received DOM event "unload" for "about:blank"
1511475492783 Marionette DEBUG Received DOM event "DOMContentLoaded" for "http://localhost:47249/"
1511475492793 Marionette DEBUG Received DOM event "pageshow" for "http://localhost:47249/"
[Child 14865, Chrome_ChildThread] WARNING: pipe error (35): Connection reset by peer: file /build/firefox-HLWaua/firefox-57.0+build4/ipc/chromium/src/chrome/common/ipc_channel_posix.cc, line 353
1511475497827 geckodriver INFO Listening on 127.0.0.1:55251
1511475498880 geckodriver::marionette INFO Starting browser /usr/lib/firefox/firefox.sh with args ["-marionette"]
1511475500006 Marionette INFO Enabled via --marionette
1511475505476 Marionette INFO Listening on port 42447
1511475505766 Marionette WARN TLS certificate errors will be ignored for this session
1511475505835 Marionette DEBUG Register listener.js for window 2147483649
1511475505859 Marionette DEBUG Received DOM event "beforeunload" for "about:blank"
1511475505878 Marionette DEBUG Received DOM event "pagehide" for "about:blank"
1511475505879 Marionette DEBUG Received DOM event "unload" for "about:blank"
1511475505885 Marionette DEBUG Received DOM event "DOMContentLoaded" for "http://localhost:47249/"
1511475505899 Marionette DEBUG Received DOM event "pageshow" for "http://localhost:47249/"
1511475506010 addons.xpi WARN Exception running bootstrap method shutdown on [email protected]: [Exception... "Component returned failure code: 0x80004005 (NS_ERROR_FAILURE) [nsIObserverService.removeObserver]" nsresult: "0x80004005 (NS_ERROR_FAILURE)" location: "JS frame :: resource://activity-stream/lib/SnippetsFeed.jsm :: uninit :: line 123" data: no] Stack trace: uninit()@resource://activity-stream/lib/SnippetsFeed.jsm:123 < onAction()@resource://activity-stream/lib/SnippetsFeed.jsm:138 < _middleware/</<()@resource://activity-stream/lib/Store.jsm:52 < Store/this[method]()@resource://activity-stream/lib/Store.jsm:31 < uninit()@resource://activity-stream/lib/Store.jsm:151 < uninit()@resource://activity-stream/lib/ActivityStream.jsm:266 < uninit()@resource://gre/modules/addons/XPIProvider.jsm -> jar:file:///usr/lib/firefox/browser/features/[email protected]!/bootstrap.js:80 < shutdown()@resource://gre/modules/addons/XPIProvider.jsm -> jar:file:///usr/lib/firefox/browser/features/[email protected]!/bootstrap.js:196 < callBootstrapMethod()@resource://gre/modules/addons/XPIProvider.jsm:4509 < observe()@resource://gre/modules/addons/XPIProvider.jsm:2281 < GeckoDriver.prototype.quit()@driver.js:3307 < despatch()@server.js:553 < execute()@server.js:527 < onPacket/<()@server.js:502 < onPacket()@server.js:501 < _onJSONObjectReady/<()@transport.js:501
[Child 15013, Chrome_ChildThread] WARNING: pipe error (35): Connection reset by peer: file /build/firefox-HLWaua/firefox-57.0+build4/ipc/chromium/src/chrome/common/ipc_channel_posix.cc, line 353
[Child 15013, Chrome_ChildThread] WARNING: pipe error (18): Connection reset by peer: file /build/firefox-HLWaua/firefox-57.0+build4/ipc/chromium/src/chrome/common/ipc_channel_posix.cc, line 353
[Child 15013, Chrome_ChildThread] WARNING: pipe error (3): Connection reset by peer: file /build/firefox-HLWaua/firefox-57.0+build4/ipc/chromium/src/chrome/common/ipc_channel_posix.cc, line 353
1511477397539 geckodriver INFO Listening on 127.0.0.1:38971
1511477398594 geckodriver::marionette INFO Starting browser /usr/lib/firefox/firefox.sh with args ["-marionette"]
1511477399786 Marionette INFO Enabled via --marionette
1511477403490 Marionette INFO Listening on port 45265
1511477403516 Marionette WARN TLS certificate errors will be ignored for this session
1511477403572 Marionette DEBUG Register listener.js for window 2147483649
1511477403583 Marionette DEBUG Received DOM event "beforeunload" for "about:blank"
1511477403620 Marionette DEBUG Received DOM event "pagehide" for "about:blank"
1511477403620 Marionette DEBUG Received DOM event "unload" for "about:blank"
1511477403626 Marionette DEBUG Received DOM event "DOMContentLoaded" for "http://localhost:42955/"
1511477403635 Marionette DEBUG Received DOM event "pageshow" for "http://localhost:42955/"
[Child 16882, Chrome_ChildThread] WARNING: pipe error (19): Connection reset by peer: file /build/firefox-HLWaua/firefox-57.0+build4/ipc/chromium/src/chrome/common/ipc_channel_posix.cc, line 353
[Child 16882, Chrome_ChildThread] WARNING: pipe error (3): Connection reset by peer: file /build/firefox-HLWaua/firefox-57.0+build4/ipc/chromium/src/chrome/common/ipc_channel_posix.cc, line 353
1511477407241 geckodriver INFO Listening on 127.0.0.1:47471
1511477408306 geckodriver::marionette INFO Starting browser /usr/lib/firefox/firefox.sh with args ["-marionette"]
1511477410050 Marionette INFO Enabled via --marionette
1511477415861 Marionette INFO Listening on port 37983
1511477415929 Marionette WARN TLS certificate errors will be ignored for this session
1511477415981 Marionette DEBUG Register listener.js for window 2147483649
1511477415993 Marionette DEBUG Received DOM event "beforeunload" for "about:blank"
1511477416003 Marionette DEBUG Received DOM event "pagehide" for "about:blank"
1511477416003 Marionette DEBUG Received DOM event "unload" for "about:blank"
1511477416007 Marionette DEBUG Received DOM event "DOMContentLoaded" for "http://localhost:42955/"
1511477416016 Marionette DEBUG Received DOM event "pageshow" for "http://localhost:42955/"
[Child 17029, Chrome_ChildThread] WARNING: pipe error (21): Connection reset by peer: file /build/firefox-HLWaua/firefox-57.0+build4/ipc/chromium/src/chrome/common/ipc_channel_posix.cc, line 353
1511477420060 geckodriver INFO Listening on 127.0.0.1:43865
1511477421112 geckodriver::marionette INFO Starting browser /usr/lib/firefox/firefox.sh with args ["-marionette"]
1511477422006 Marionette INFO Enabled via --marionette
1511477425988 Marionette INFO Listening on port 35367
1511477426033 Marionette WARN TLS certificate errors will be ignored for this session
1511477426100 Marionette DEBUG Register listener.js for window 2147483649
1511477426122 Marionette DEBUG Received DOM event "beforeunload" for "about:blank"
1511477426137 Marionette DEBUG Received DOM event "pagehide" for "about:blank"
1511477426138 Marionette DEBUG Received DOM event "unload" for "about:blank"
1511477426143 Marionette DEBUG Received DOM event "DOMContentLoaded" for "http://localhost:42955/"
1511477426156 Marionette DEBUG Received DOM event "pageshow" for "http://localhost:42955/"
1511477426259 addons.xpi WARN Exception running bootstrap method shutdown on [email protected]: [Exception... "Component returned failure code: 0x80004005 (NS_ERROR_FAILURE) [nsIObserverService.removeObserver]" nsresult: "0x80004005 (NS_ERROR_FAILURE)" location: "JS frame :: resource://activity-stream/lib/SnippetsFeed.jsm :: uninit :: line 123" data: no] Stack trace: uninit()@resource://activity-stream/lib/SnippetsFeed.jsm:123 < onAction()@resource://activity-stream/lib/SnippetsFeed.jsm:138 < _middleware/</<()@resource://activity-stream/lib/Store.jsm:52 < Store/this[method]()@resource://activity-stream/lib/Store.jsm:31 < uninit()@resource://activity-stream/lib/Store.jsm:151 < uninit()@resource://activity-stream/lib/ActivityStream.jsm:266 < uninit()@resource://gre/modules/addons/XPIProvider.jsm -> jar:file:///usr/lib/firefox/browser/features/[email protected]!/bootstrap.js:80 < shutdown()@resource://gre/modules/addons/XPIProvider.jsm -> jar:file:///usr/lib/firefox/browser/features/[email protected]!/bootstrap.js:196 < callBootstrapMethod()@resource://gre/modules/addons/XPIProvider.jsm:4509 < observe()@resource://gre/modules/addons/XPIProvider.jsm:2281 < GeckoDriver.prototype.quit()@driver.js:3307 < despatch()@server.js:553 < execute()@server.js:527 < onPacket/<()@server.js:502 < onPacket()@server.js:501 < _onJSONObjectReady/<()@transport.js:501
1511479198263 geckodriver INFO Listening on 127.0.0.1:56083
1511479199351 geckodriver::marionette INFO Starting browser /usr/lib/firefox/firefox.sh with args ["-marionette"]
1511479202641 Marionette INFO Enabled via --marionette
1511479206975 Marionette INFO Listening on port 40261
1511479206993 Marionette WARN TLS certificate errors will be ignored for this session
1511479207050 Marionette DEBUG Register listener.js for window 2147483649
1511479207319 Marionette DEBUG Received DOM event "beforeunload" for "about:blank"
1511479207344 Marionette DEBUG Received DOM event "pagehide" for "about:blank"
1511479207344 Marionette DEBUG Received DOM event "unload" for "about:blank"
1511479207349 Marionette DEBUG Received DOM event "DOMContentLoaded" for "http://localhost:58977/"
1511479207358 Marionette DEBUG Received DOM event "pageshow" for "http://localhost:58977/"
[Child 18911, Chrome_ChildThread] WARNING: pipe error (19): Connection reset by peer: file /build/firefox-HLWaua/firefox-57.0+build4/ipc/chromium/src/chrome/common/ipc_channel_posix.cc, line 353
[Child 18911, Chrome_ChildThread] WARNING: pipe error (3): Connection reset by peer: file /build/firefox-HLWaua/firefox-57.0+build4/ipc/chromium/src/chrome/common/ipc_channel_posix.cc, line 353
1511479220241 geckodriver INFO Listening on 127.0.0.1:49937
1511479221310 geckodriver::marionette INFO Starting browser /usr/lib/firefox/firefox.sh with args ["-marionette"]
1511479222545 Marionette INFO Enabled via --marionette
1511479227009 Marionette INFO Listening on port 45989
1511479227089 Marionette WARN TLS certificate errors will be ignored for this session
1511479227144 Marionette DEBUG Register listener.js for window 2147483649
1511479227165 Marionette DEBUG Received DOM event "beforeunload" for "about:blank"
1511479227187 Marionette DEBUG Received DOM event "pagehide" for "about:blank"
1511479227187 Marionette DEBUG Received DOM event "unload" for "about:blank"
1511479227193 Marionette DEBUG Received DOM event "DOMContentLoaded" for "http://localhost:58977/"
1511479227206 Marionette DEBUG Received DOM event "pageshow" for "http://localhost:58977/"
[Child 19066, Chrome_ChildThread] WARNING: pipe error (20): Connection reset by peer: file /build/firefox-HLWaua/firefox-57.0+build4/ipc/chromium/src/chrome/common/ipc_channel_posix.cc, line 353
[Child 19066, Chrome_ChildThread] WARNING: pipe error (3): Connection reset by peer: file /build/firefox-HLWaua/firefox-57.0+build4/ipc/chromium/src/chrome/common/ipc_channel_posix.cc, line 353
1511479230646 geckodriver INFO Listening on 127.0.0.1:40659
1511479231712 geckodriver::marionette INFO Starting browser /usr/lib/firefox/firefox.sh with args ["-marionette"]
1511479232718 Marionette INFO Enabled via --marionette
1511479237944 Marionette INFO Listening on port 32881
1511479238515 Marionette WARN TLS certificate errors will be ignored for this session
1511479238566 Marionette DEBUG Register listener.js for window 2147483649
1511479238581 Marionette DEBUG Received DOM event "beforeunload" for "about:blank"
1511479238598 Marionette DEBUG Received DOM event "pagehide" for "about:blank"
1511479238599 Marionette DEBUG Received DOM event "unload" for "about:blank"
1511479238605 Marionette DEBUG Received DOM event "DOMContentLoaded" for "http://localhost:58977/"
1511479238619 Marionette DEBUG Received DOM event "pageshow" for "http://localhost:58977/"
1511479238746 addons.xpi WARN Exception running bootstrap method shutdown on [email protected]: [Exception... "Component returned failure code: 0x80004005 (NS_ERROR_FAILURE) [nsIObserverService.removeObserver]" nsresult: "0x80004005 (NS_ERROR_FAILURE)" location: "JS frame :: resource://activity-stream/lib/SnippetsFeed.jsm :: uninit :: line 123" data: no] Stack trace: uninit()@resource://activity-stream/lib/SnippetsFeed.jsm:123 < onAction()@resource://activity-stream/lib/SnippetsFeed.jsm:138 < _middleware/</<()@resource://activity-stream/lib/Store.jsm:52 < Store/this[method]()@resource://activity-stream/lib/Store.jsm:31 < uninit()@resource://activity-stream/lib/Store.jsm:151 < uninit()@resource://activity-stream/lib/ActivityStream.jsm:266 < uninit()@resource://gre/modules/addons/XPIProvider.jsm -> jar:file:///usr/lib/firefox/browser/features/[email protected]!/bootstrap.js:80 < shutdown()@resource://gre/modules/addons/XPIProvider.jsm -> jar:file:///usr/lib/firefox/browser/features/[email protected]!/bootstrap.js:196 < callBootstrapMethod()@resource://gre/modules/addons/XPIProvider.jsm:4509 < observe()@resource://gre/modules/addons/XPIProvider.jsm:2281 < GeckoDriver.prototype.quit()@driver.js:3307 < despatch()@server.js:553 < execute()@server.js:527 < onPacket/<()@server.js:502 < onPacket()@server.js:501 < _onJSONObjectReady/<()@transport.js:501
[Child 19216, Chrome_ChildThread] WARNING: pipe error (19): Connection reset by peer: file /build/firefox-HLWaua/firefox-57.0+build4/ipc/chromium/src/chrome/common/ipc_channel_posix.cc, line 353
[Child 19216, Chrome_ChildThread] WARNING: pipe error (35): Connection reset by peer: file /build/firefox-HLWaua/firefox-57.0+build4/ipc/chromium/src/chrome/common/ipc_channel_posix.cc, line 353
[Child 19216, Chrome_ChildThread] WARNING: pipe error (3): Connection reset by peer: file /build/firefox-HLWaua/firefox-57.0+build4/ipc/chromium/src/chrome/common/ipc_channel_posix.cc, line 353
1511480128968 geckodriver INFO Listening on 127.0.0.1:58223
1511480130019 geckodriver::marionette INFO Starting browser /usr/lib/firefox/firefox.sh with args ["-marionette"]
1511480131780 Marionette INFO Enabled via --marionette
1511480137822 Marionette INFO Listening on port 33135
1511480137854 Marionette WARN TLS certificate errors will be ignored for this session
1511480137907 Marionette DEBUG Register listener.js for window 2147483649
1511480137926 Marionette DEBUG Received DOM event "beforeunload" for "about:blank"
1511480137949 Marionette DEBUG Received DOM event "pagehide" for "about:blank"
1511480137949 Marionette DEBUG Received DOM event "unload" for "about:blank"
1511480137953 Marionette DEBUG Received DOM event "DOMContentLoaded" for "http://localhost:42993/"
1511480137963 Marionette DEBUG Received DOM event "pageshow" for "http://localhost:42993/"
[Child 20053, Chrome_ChildThread] WARNING: pipe error (35): Connection reset by peer: file /build/firefox-HLWaua/firefox-57.0+build4/ipc/chromium/src/chrome/common/ipc_channel_posix.cc, line 353
[Child 20053, Chrome_ChildThread] WARNING: pipe error (21): Connection reset by peer: file /build/firefox-HLWaua/firefox-57.0+build4/ipc/chromium/src/chrome/common/ipc_channel_posix.cc, line 353
[Child 20053, Chrome_ChildThread] WARNING: pipe error (3): Connection reset by peer: file /build/firefox-HLWaua/firefox-57.0+build4/ipc/chromium/src/chrome/common/ipc_channel_posix.cc, line 353
1511480152406 geckodriver INFO Listening on 127.0.0.1:52991
1511480153472 geckodriver::marionette INFO Starting browser /usr/lib/firefox/firefox.sh with args ["-marionette"]
1511480154481 Marionette INFO Enabled via --marionette
1511480158239 Marionette INFO Listening on port 40841
1511480158292 Marionette WARN TLS certificate errors will be ignored for this session
1511480158344 Marionette DEBUG Register listener.js for window 2147483649
1511480158363 Marionette DEBUG Received DOM event "beforeunload" for "about:blank"
1511480158377 Marionette DEBUG Received DOM event "pagehide" for "about:blank"
1511480158377 Marionette DEBUG Received DOM event "unload" for "about:blank"
1511480158383 Marionette DEBUG Received DOM event "DOMContentLoaded" for "http://localhost:42993/"
1511480158396 Marionette DEBUG Received DOM event "pageshow" for "http://localhost:42993/"
[Child 20230, Chrome_ChildThread] WARNING: pipe error (21): Connection reset by peer: file /build/firefox-HLWaua/firefox-57.0+build4/ipc/chromium/src/chrome/common/ipc_channel_posix.cc, line 353
[Child 20230, Chrome_ChildThread] WARNING: pipe error (3): Connection reset by peer: file /build/firefox-HLWaua/firefox-57.0+build4/ipc/chromium/src/chrome/common/ipc_channel_posix.cc, line 353
1511480162525 geckodriver INFO Listening on 127.0.0.1:39973
1511480163597 geckodriver::marionette INFO Starting browser /usr/lib/firefox/firefox.sh with args ["-marionette"]
1511480164333 Marionette INFO Enabled via --marionette
1511480168446 Marionette INFO Listening on port 35997
1511480168518 Marionette WARN TLS certificate errors will be ignored for this session
1511480168571 Marionette DEBUG Register listener.js for window 2147483649
1511480168585 Marionette DEBUG Received DOM event "beforeunload" for "about:blank"
1511480168605 Marionette DEBUG Received DOM event "pagehide" for "about:blank"
1511480168605 Marionette DEBUG Received DOM event "unload" for "about:blank"
1511480168609 Marionette DEBUG Received DOM event "DOMContentLoaded" for "http://localhost:42993/"
1511480168618 Marionette DEBUG Received DOM event "pageshow" for "http://localhost:42993/"
1511480168778 addons.xpi WARN Exception running bootstrap method shutdown on [email protected]: [Exception... "Component returned failure code: 0x80004005 (NS_ERROR_FAILURE) [nsIObserverService.removeObserver]" nsresult: "0x80004005 (NS_ERROR_FAILURE)" location: "JS frame :: resource://activity-stream/lib/SnippetsFeed.jsm :: uninit :: line 123" data: no] Stack trace: uninit()@resource://activity-stream/lib/SnippetsFeed.jsm:123 < onAction()@resource://activity-stream/lib/SnippetsFeed.jsm:138 < _middleware/</<()@resource://activity-stream/lib/Store.jsm:52 < Store/this[method]()@resource://activity-stream/lib/Store.jsm:31 < uninit()@resource://activity-stream/lib/Store.jsm:151 < uninit()@resource://activity-stream/lib/ActivityStream.jsm:266 < uninit()@resource://gre/modules/addons/XPIProvider.jsm -> jar:file:///usr/lib/firefox/browser/features/[email protected]!/bootstrap.js:80 < shutdown()@resource://gre/modules/addons/XPIProvider.jsm -> jar:file:///usr/lib/firefox/browser/features/[email protected]!/bootstrap.js:196 < callBootstrapMethod()@resource://gre/modules/addons/XPIProvider.jsm:4509 < observe()@resource://gre/modules/addons/XPIProvider.jsm:2281 < GeckoDriver.prototype.quit()@driver.js:3307 < despatch()@server.js:553 < execute()@server.js:527 < onPacket/<()@server.js:502 < onPacket()@server.js:501 < _onJSONObjectReady/<()@transport.js:501
[Child 20374, Chrome_ChildThread] WARNING: pipe error (35): Connection reset by peer: file /build/firefox-HLWaua/firefox-57.0+build4/ipc/chromium/src/chrome/common/ipc_channel_posix.cc, line 353
[Child 20374, Chrome_ChildThread] WARNING: pipe error (19): Connection reset by peer: file /build/firefox-HLWaua/firefox-57.0+build4/ipc/chromium/src/chrome/common/ipc_channel_posix.cc, line 353
[Child 20374, Chrome_ChildThread] WARNING: pipe error (3): Connection reset by peer: file /build/firefox-HLWaua/firefox-57.0+build4/ipc/chromium/src/chrome/common/ipc_channel_posix.cc, line 353
1511482134627 geckodriver INFO Listening on 127.0.0.1:49681
1511482135691 geckodriver::marionette INFO Starting browser /usr/lib/firefox/firefox.sh with args ["-marionette"]
1511482136309 Marionette INFO Enabled via --marionette
1511482139462 Marionette INFO Listening on port 33475
1511482139680 Marionette WARN TLS certificate errors will be ignored for this session
1511482139769 Marionette DEBUG Register listener.js for window 2147483649
1511482139795 Marionette DEBUG Received DOM event "beforeunload" for "about:blank"
1511482139823 Marionette DEBUG Received DOM event "pagehide" for "about:blank"
1511482139824 Marionette DEBUG Received DOM event "unload" for "about:blank"
1511482139837 Marionette DEBUG Received DOM event "DOMContentLoaded" for "http://localhost:60089/"
1511482139853 Marionette DEBUG Received DOM event "pageshow" for "http://localhost:60089/"
[Child 22402, Chrome_ChildThread] WARNING: pipe error (19): Connection reset by peer: file /build/firefox-HLWaua/firefox-57.0+build4/ipc/chromium/src/chrome/common/ipc_channel_posix.cc, line 353
[Child 22402, Chrome_ChildThread] WARNING: pipe error (3): Connection reset by peer: file /build/firefox-HLWaua/firefox-57.0+build4/ipc/chromium/src/chrome/common/ipc_channel_posix.cc, line 353
1511482142956 geckodriver INFO Listening on 127.0.0.1:58455
1511482144011 geckodriver::marionette INFO Starting browser /usr/lib/firefox/firefox.sh with args ["-marionette"]
1511482144968 Marionette INFO Enabled via --marionette
1511482148926 Marionette INFO Listening on port 45011
1511482148938 Marionette WARN TLS certificate errors will be ignored for this session
1511482148992 Marionette DEBUG Register listener.js for window 2147483649
1511482149213 Marionette DEBUG Received DOM event "beforeunload" for "about:blank"
1511482149231 Marionette DEBUG Received DOM event "pagehide" for "about:blank"
1511482149231 Marionette DEBUG Received DOM event "unload" for "about:blank"
1511482149238 Marionette DEBUG Received DOM event "DOMContentLoaded" for "http://localhost:60089/"
1511482149251 Marionette DEBUG Received DOM event "pageshow" for "http://localhost:60089/"
[Child 22568, Chrome_ChildThread] WARNING: pipe error (35): Connection reset by peer: file /build/firefox-HLWaua/firefox-57.0+build4/ipc/chromium/src/chrome/common/ipc_channel_posix.cc, line 353
[Child 22568, Chrome_ChildThread] WARNING: pipe error (21): Connection reset by peer: file /build/firefox-HLWaua/firefox-57.0+build4/ipc/chromium/src/chrome/common/ipc_channel_posix.cc, line 353
[Child 22568, Chrome_ChildThread] WARNING: pipe error (3): Connection reset by peer: file /build/firefox-HLWaua/firefox-57.0+build4/ipc/chromium/src/chrome/common/ipc_channel_posix.cc, line 353
1511482152259 geckodriver INFO Listening on 127.0.0.1:39487
1511482153315 geckodriver::marionette INFO Starting browser /usr/lib/firefox/firefox.sh with args ["-marionette"]
1511482154378 Marionette INFO Enabled via --marionette
1511482159347 Marionette INFO Listening on port 44431
1511482159437 Marionette WARN TLS certificate errors will be ignored for this session
1511482159491 Marionette DEBUG Register listener.js for window 2147483649
1511482159502 Marionette DEBUG Received DOM event "beforeunload" for "about:blank"
1511482159523 Marionette DEBUG Received DOM event "pagehide" for "about:blank"
1511482159523 Marionette DEBUG Received DOM event "unload" for "about:blank"
1511482159527 Marionette DEBUG Received DOM event "DOMContentLoaded" for "http://localhost:60089/"
1511482159536 Marionette DEBUG Received DOM event "pageshow" for "http://localhost:60089/"
1511482159630 addons.xpi WARN Exception running bootstrap method shutdown on [email protected]: [Exception... "Component returned failure code: 0x80004005 (NS_ERROR_FAILURE) [nsIObserverService.removeObserver]" nsresult: "0x80004005 (NS_ERROR_FAILURE)" location: "JS frame :: resource://activity-stream/lib/SnippetsFeed.jsm :: uninit :: line 123" data: no] Stack trace: uninit()@resource://activity-stream/lib/SnippetsFeed.jsm:123 < onAction()@resource://activity-stream/lib/SnippetsFeed.jsm:138 < _middleware/</<()@resource://activity-stream/lib/Store.jsm:52 < Store/this[method]()@resource://activity-stream/lib/Store.jsm:31 < uninit()@resource://activity-stream/lib/Store.jsm:151 < uninit()@resource://activity-stream/lib/ActivityStream.jsm:266 < uninit()@resource://gre/modules/addons/XPIProvider.jsm -> jar:file:///usr/lib/firefox/browser/features/[email protected]!/bootstrap.js:80 < shutdown()@resource://gre/modules/addons/XPIProvider.jsm -> jar:file:///usr/lib/firefox/browser/features/[email protected]!/bootstrap.js:196 < callBootstrapMethod()@resource://gre/modules/addons/XPIProvider.jsm:4509 < observe()@resource://gre/modules/addons/XPIProvider.jsm:2281 < GeckoDriver.prototype.quit()@driver.js:3307 < despatch()@server.js:553 < execute()@server.js:527 < onPacket/<()@server.js:502 < onPacket()@server.js:501 < _onJSONObjectReady/<()@transport.js:501
1511482186697 geckodriver INFO Listening on 127.0.0.1:55257
1511482187749 geckodriver::marionette INFO Starting browser /usr/lib/firefox/firefox.sh with args ["-marionette"]
1511482188439 Marionette INFO Enabled via --marionette
1511482192392 Marionette INFO Listening on port 39141
1511482192629 Marionette WARN TLS certificate errors will be ignored for this session
1511482192695 Marionette DEBUG Register listener.js for window 2147483649
1511482192717 Marionette DEBUG Received DOM event "beforeunload" for "about:blank"
1511482192746 Marionette DEBUG Received DOM event "pagehide" for "about:blank"
1511482192747 Marionette DEBUG Received DOM event "unload" for "about:blank"
1511482192753 Marionette DEBUG Received DOM event "DOMContentLoaded" for "http://localhost:53813/"
1511482192767 Marionette DEBUG Received DOM event "pageshow" for "http://localhost:53813/"
[Child 22917, Chrome_ChildThread] WARNING: pipe error (20): Connection reset by peer: file /build/firefox-HLWaua/firefox-57.0+build4/ipc/chromium/src/chrome/common/ipc_channel_posix.cc, line 353
[Child 22917, Chrome_ChildThread] WARNING: pipe error (3): Connection reset by peer: file /build/firefox-HLWaua/firefox-57.0+build4/ipc/chromium/src/chrome/common/ipc_channel_posix.cc, line 353
1511482196792 geckodriver INFO Listening on 127.0.0.1:48025
1511482197847 geckodriver::marionette INFO Starting browser /usr/lib/firefox/firefox.sh with args ["-marionette"]
1511482199601 Marionette INFO Enabled via --marionette
1511482204045 Marionette INFO Listening on port 40935
1511482204072 Marionette WARN TLS certificate errors will be ignored for this session
1511482204148 Marionette DEBUG Register listener.js for window 2147483649
1511482204398 Marionette DEBUG Received DOM event "beforeunload" for "about:blank"
1511482204422 Marionette DEBUG Received DOM event "pagehide" for "about:blank"
1511482204422 Marionette DEBUG Received DOM event "unload" for "about:blank"
1511482204428 Marionette DEBUG Received DOM event "DOMContentLoaded" for "http://localhost:53813/"
1511482204441 Marionette DEBUG Received DOM event "pageshow" for "http://localhost:53813/"
[Child 23095, Chrome_ChildThread] WARNING: pipe error (35): Connection reset by peer: file /build/firefox-HLWaua/firefox-57.0+build4/ipc/chromium/src/chrome/common/ipc_channel_posix.cc, line 353
[Child 23095, Chrome_ChildThread] WARNING: pipe error (18): Connection reset by peer: file /build/firefox-HLWaua/firefox-57.0+build4/ipc/chromium/src/chrome/common/ipc_channel_posix.cc, line 353
[Child 23095, Chrome_ChildThread] WARNING: pipe error (3): Connection reset by peer: file /build/firefox-HLWaua/firefox-57.0+build4/ipc/chromium/src/chrome/common/ipc_channel_posix.cc, line 353
1511482206962 geckodriver INFO Listening on 127.0.0.1:48741
1511482208013 geckodriver::marionette INFO Starting browser /usr/lib/firefox/firefox.sh with args ["-marionette"]
1511482209407 Marionette INFO Enabled via --marionette
1511482214093 Marionette INFO Listening on port 43747
1511482214249 Marionette WARN TLS certificate errors will be ignored for this session
1511482214305 Marionette DEBUG Register listener.js for window 2147483649
1511482214328 Marionette DEBUG Received DOM event "beforeunload" for "about:blank"
1511482214352 Marionette DEBUG Received DOM event "pagehide" for "about:blank"
1511482214353 Marionette DEBUG Received DOM event "unload" for "about:blank"
1511482214358 Marionette DEBUG Received DOM event "DOMContentLoaded" for "http://localhost:53813/"
1511482214367 Marionette DEBUG Received DOM event "pageshow" for "http://localhost:53813/"
1511482214484 addons.xpi WARN Exception running bootstrap method shutdown on [email protected]: [Exception... "Component returned failure code: 0x80004005 (NS_ERROR_FAILURE) [nsIObserverService.removeObserver]" nsresult: "0x80004005 (NS_ERROR_FAILURE)" location: "JS frame :: resource://activity-stream/lib/SnippetsFeed.jsm :: uninit :: line 123" data: no] Stack trace: uninit()@resource://activity-stream/lib/SnippetsFeed.jsm:123 < onAction()@resource://activity-stream/lib/SnippetsFeed.jsm:138 < _middleware/</<()@resource://activity-stream/lib/Store.jsm:52 < Store/this[method]()@resource://activity-stream/lib/Store.jsm:31 < uninit()@resource://activity-stream/lib/Store.jsm:151 < uninit()@resource://activity-stream/lib/ActivityStream.jsm:266 < uninit()@resource://gre/modules/addons/XPIProvider.jsm -> jar:file:///usr/lib/firefox/browser/features/[email protected]!/bootstrap.js:80 < shutdown()@resource://gre/modules/addons/XPIProvider.jsm -> jar:file:///usr/lib/firefox/browser/features/[email protected]!/bootstrap.js:196 < callBootstrapMethod()@resource://gre/modules/addons/XPIProvider.jsm:4509 < observe()@resource://gre/modules/addons/XPIProvider.jsm:2281 < GeckoDriver.prototype.quit()@driver.js:3307 < despatch()@server.js:553 < execute()@server.js:527 < onPacket/<()@server.js:502 < onPacket()@server.js:501 < _onJSONObjectReady/<()@transport.js:501
[Child 23237, Chrome_ChildThread] WARNING: pipe error (35): Connection reset by peer: file /build/firefox-HLWaua/firefox-57.0+build4/ipc/chromium/src/chrome/common/ipc_channel_posix.cc, line 353
[Child 23237, Chrome_ChildThread] WARNING: pipe error (20): Connection reset by peer: file /build/firefox-HLWaua/firefox-57.0+build4/ipc/chromium/src/chrome/common/ipc_channel_posix.cc, line 353
[Child 23237, Chrome_ChildThread] WARNING: pipe error (3): Connection reset by peer: file /build/firefox-HLWaua/firefox-57.0+build4/ipc/chromium/src/chrome/common/ipc_channel_posix.cc, line 353
1511482241922 geckodriver INFO Listening on 127.0.0.1:55685
1511482242972 geckodriver::marionette INFO Starting browser /usr/lib/firefox/firefox.sh with args ["-marionette"]
1511482244602 Marionette INFO Enabled via --marionette
1511482248586 Marionette INFO Listening on port 41773
1511482248599 Marionette WARN TLS certificate errors will be ignored for this session
1511482248671 Marionette DEBUG Register listener.js for window 2147483649
1511482248711 Marionette DEBUG Received DOM event "beforeunload" for "about:blank"
1511482248757 Marionette DEBUG Received DOM event "pagehide" for "about:blank"
1511482248757 Marionette DEBUG Received DOM event "unload" for "about:blank"
1511482248766 Marionette DEBUG Received DOM event "DOMContentLoaded" for "http://localhost:46817/"
1511482248782 Marionette DEBUG Received DOM event "pageshow" for "http://localhost:46817/"
1511482252111 geckodriver INFO Listening on 127.0.0.1:44547
1511482253199 geckodriver::marionette INFO Starting browser /usr/lib/firefox/firefox.sh with args ["-marionette"]
1511482255261 Marionette INFO Enabled via --marionette
1511482260709 Marionette INFO Listening on port 33563
1511482260727 Marionette WARN TLS certificate errors will be ignored for this session
1511482260784 Marionette DEBUG Register listener.js for window 2147483649