-
Notifications
You must be signed in to change notification settings - Fork 0
/
geckodriver.log
2494 lines (2286 loc) · 236 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
1657622845101 geckodriver INFO Listening on 127.0.0.1:42547
1657622845610 mozrunner::runner INFO Running command: "/usr/bin/firefox" "--marionette" "-headless" "--remote-debugging-port" "45509" "--remote-allow-hosts" "localhost" "-no-remote" "-profile" "/tmp/rust_mozprofileEth4dy"
*** You are running in headless mode.
1657622846035 Marionette INFO Marionette enabled
Crash Annotation GraphicsCriticalError: |[0][GFX1-]: RenderCompositorSWGL failed mapping default framebuffer, no dt (t=0.837615) [GFX1-]: RenderCompositorSWGL failed mapping default framebuffer, no dt
console.warn: SearchSettings: "get: No settings file exists, new profile?" (new NotFoundError("Could not open the file at /tmp/rust_mozprofileEth4dy/search.json.mozlz4", (void 0)))
DevTools listening on ws://localhost:45509/devtools/browser/1f49dbc1-3f45-4170-a6ca-3ede9aec815b
1657622846870 Marionette INFO Listening on port 37247
1657622846921 RemoteAgent WARN TLS certificate errors will be ignored for this session
JavaScript error: http://tools.iedb.org/static/js/sequence_validation.js, line 89: TypeError: document.querySelector(...) is null
JavaScript error: http://tools.iedb.org/static/js/sequence_validation.js, line 89: TypeError: document.querySelector(...) is null
JavaScript error: http://tools.iedb.org/static/js/sequence_validation.js, line 89: TypeError: document.querySelector(...) is null
1657622863560 Marionette INFO Stopped listening on port 37247
JavaScript error: resource:///modules/Interactions.jsm, line 209: NS_ERROR_FAILURE: Component returned failure code: 0x80004005 (NS_ERROR_FAILURE) [nsIUserIdleService.removeIdleObserver]
!!! error running onStopped callback: TypeError: callback is not a function
###!!! [Parent][RunMessage] Error: Channel closing: too late to send/recv, messages will be lost
1657622863750 RemoteAgent ERROR unable to stop listener: [Exception... "Component returned failure code: 0x8000ffff (NS_ERROR_UNEXPECTED) [nsIWindowMediator.getEnumerator]" nsresult: "0x8000ffff (NS_ERROR_UNEXPECTED)" location: "JS frame :: chrome://remote/content/cdp/observers/TargetObserver.jsm :: stop :: line 64" data: no] Stack trace: stop()@TargetObserver.jsm:64
unwatchForTabs()@TargetList.jsm:70
unwatchForTargets()@TargetList.jsm:37
destructor()@TargetList.jsm:109
stop()@CDP.jsm:104
close()@RemoteAgent.jsm:138
1657624219796 geckodriver INFO Listening on 127.0.0.1:42323
1657624219831 mozrunner::runner INFO Running command: "/usr/bin/firefox" "--marionette" "-headless" "--remote-debugging-port" "40083" "--remote-allow-hosts" "localhost" "-no-remote" "-profile" "/tmp/rust_mozprofileCkFX0K"
*** You are running in headless mode.
1657624220275 Marionette INFO Marionette enabled
Crash Annotation GraphicsCriticalError: |[0][GFX1-]: RenderCompositorSWGL failed mapping default framebuffer, no dt (t=0.882351) [GFX1-]: RenderCompositorSWGL failed mapping default framebuffer, no dt
console.warn: SearchSettings: "get: No settings file exists, new profile?" (new NotFoundError("Could not open the file at /tmp/rust_mozprofileCkFX0K/search.json.mozlz4", (void 0)))
DevTools listening on ws://localhost:40083/devtools/browser/5bc41b42-d2f7-48f1-a7ee-54fb381a3cd2
1657624221169 Marionette INFO Listening on port 34915
1657624221242 RemoteAgent WARN TLS certificate errors will be ignored for this session
JavaScript error: http://tools.iedb.org/static/js/sequence_validation.js, line 89: TypeError: document.querySelector(...) is null
JavaScript error: http://tools.iedb.org/static/js/sequence_validation.js, line 89: TypeError: document.querySelector(...) is null
JavaScript error: http://tools.iedb.org/static/js/sequence_validation.js, line 89: TypeError: document.querySelector(...) is null
1657624237279 Marionette INFO Stopped listening on port 34915
JavaScript error: resource:///modules/Interactions.jsm, line 209: NS_ERROR_FAILURE: Component returned failure code: 0x80004005 (NS_ERROR_FAILURE) [nsIUserIdleService.removeIdleObserver]
!!! error running onStopped callback: TypeError: callback is not a function
###!!! [Parent][RunMessage] Error: Channel closing: too late to send/recv, messages will be lost
1657624237470 RemoteAgent ERROR unable to stop listener: [Exception... "Component returned failure code: 0x8000ffff (NS_ERROR_UNEXPECTED) [nsIWindowMediator.getEnumerator]" nsresult: "0x8000ffff (NS_ERROR_UNEXPECTED)" location: "JS frame :: chrome://remote/content/cdp/observers/TargetObserver.jsm :: stop :: line 64" data: no] Stack trace: stop()@TargetObserver.jsm:64
unwatchForTabs()@TargetList.jsm:70
unwatchForTargets()@TargetList.jsm:37
destructor()@TargetList.jsm:109
stop()@CDP.jsm:104
close()@RemoteAgent.jsm:138
1657624445430 geckodriver INFO Listening on 127.0.0.1:40213
1657624445465 mozrunner::runner INFO Running command: "/usr/bin/firefox" "--marionette" "-headless" "--remote-debugging-port" "60915" "--remote-allow-hosts" "localhost" "-no-remote" "-profile" "/tmp/rust_mozprofile0gjvdT"
*** You are running in headless mode.
1657624445893 Marionette INFO Marionette enabled
Crash Annotation GraphicsCriticalError: |[0][GFX1-]: RenderCompositorSWGL failed mapping default framebuffer, no dt (t=0.844394) [GFX1-]: RenderCompositorSWGL failed mapping default framebuffer, no dt
console.warn: SearchSettings: "get: No settings file exists, new profile?" (new NotFoundError("Could not open the file at /tmp/rust_mozprofile0gjvdT/search.json.mozlz4", (void 0)))
DevTools listening on ws://localhost:60915/devtools/browser/ee82c178-c4ec-419d-a3be-e2ab6bbaceae
1657624446736 Marionette INFO Listening on port 38263
1657624446775 RemoteAgent WARN TLS certificate errors will be ignored for this session
JavaScript error: http://tools.iedb.org/static/js/sequence_validation.js, line 89: TypeError: document.querySelector(...) is null
JavaScript error: http://tools.iedb.org/static/js/sequence_validation.js, line 89: TypeError: document.querySelector(...) is null
JavaScript error: http://tools.iedb.org/static/js/sequence_validation.js, line 89: TypeError: document.querySelector(...) is null
1657624461632 Marionette INFO Stopped listening on port 38263
JavaScript error: resource:///modules/Interactions.jsm, line 209: NS_ERROR_FAILURE: Component returned failure code: 0x80004005 (NS_ERROR_FAILURE) [nsIUserIdleService.removeIdleObserver]
!!! error running onStopped callback: TypeError: callback is not a function
1657624461824 RemoteAgent ERROR unable to stop listener: [Exception... "Component returned failure code: 0x8000ffff (NS_ERROR_UNEXPECTED) [nsIWindowMediator.getEnumerator]" nsresult: "0x8000ffff (NS_ERROR_UNEXPECTED)" location: "JS frame :: chrome://remote/content/cdp/observers/TargetObserver.jsm :: stop :: line 64" data: no] Stack trace: stop()@TargetObserver.jsm:64
unwatchForTabs()@TargetList.jsm:70
unwatchForTargets()@TargetList.jsm:37
destructor()@TargetList.jsm:109
stop()@CDP.jsm:104
close()@RemoteAgent.jsm:138
1657626746304 geckodriver INFO Listening on 127.0.0.1:41417
1657626746340 mozrunner::runner INFO Running command: "/usr/bin/firefox" "--marionette" "-headless" "--remote-debugging-port" "60721" "--remote-allow-hosts" "localhost" "-no-remote" "-profile" "/tmp/rust_mozprofiledcHxq3"
*** You are running in headless mode.
1657626746766 Marionette INFO Marionette enabled
Crash Annotation GraphicsCriticalError: |[0][GFX1-]: RenderCompositorSWGL failed mapping default framebuffer, no dt (t=0.842475) [GFX1-]: RenderCompositorSWGL failed mapping default framebuffer, no dt
console.warn: SearchSettings: "get: No settings file exists, new profile?" (new NotFoundError("Could not open the file at /tmp/rust_mozprofiledcHxq3/search.json.mozlz4", (void 0)))
DevTools listening on ws://localhost:60721/devtools/browser/37951a1e-1d6b-4c7d-9bd7-bcaa9074772b
1657626747621 Marionette INFO Listening on port 33675
1657626747650 RemoteAgent WARN TLS certificate errors will be ignored for this session
JavaScript error: http://tools.iedb.org/static/js/sequence_validation.js, line 89: TypeError: document.querySelector(...) is null
JavaScript error: http://tools.iedb.org/static/js/sequence_validation.js, line 89: TypeError: document.querySelector(...) is null
JavaScript error: http://tools.iedb.org/static/js/sequence_validation.js, line 89: TypeError: document.querySelector(...) is null
1657626763747 Marionette INFO Stopped listening on port 33675
JavaScript error: resource:///modules/Interactions.jsm, line 209: NS_ERROR_FAILURE: Component returned failure code: 0x80004005 (NS_ERROR_FAILURE) [nsIUserIdleService.removeIdleObserver]
!!! error running onStopped callback: TypeError: callback is not a function
###!!! [Parent][RunMessage] Error: Channel closing: too late to send/recv, messages will be lost
1657626763938 RemoteAgent ERROR unable to stop listener: [Exception... "Component returned failure code: 0x8000ffff (NS_ERROR_UNEXPECTED) [nsIWindowMediator.getEnumerator]" nsresult: "0x8000ffff (NS_ERROR_UNEXPECTED)" location: "JS frame :: chrome://remote/content/cdp/observers/TargetObserver.jsm :: stop :: line 64" data: no] Stack trace: stop()@TargetObserver.jsm:64
unwatchForTabs()@TargetList.jsm:70
unwatchForTargets()@TargetList.jsm:37
destructor()@TargetList.jsm:109
stop()@CDP.jsm:104
close()@RemoteAgent.jsm:138
1657626907500 geckodriver INFO Listening on 127.0.0.1:44583
1657626907535 mozrunner::runner INFO Running command: "/usr/bin/firefox" "--marionette" "-headless" "--remote-debugging-port" "36537" "--remote-allow-hosts" "localhost" "-no-remote" "-profile" "/tmp/rust_mozprofile47RRyd"
*** You are running in headless mode.
1657626907961 Marionette INFO Marionette enabled
Crash Annotation GraphicsCriticalError: |[0][GFX1-]: RenderCompositorSWGL failed mapping default framebuffer, no dt (t=0.841841) [GFX1-]: RenderCompositorSWGL failed mapping default framebuffer, no dt
console.warn: SearchSettings: "get: No settings file exists, new profile?" (new NotFoundError("Could not open the file at /tmp/rust_mozprofile47RRyd/search.json.mozlz4", (void 0)))
DevTools listening on ws://localhost:36537/devtools/browser/93deb5b0-acd5-4b65-a42d-cc9986f921ee
1657626908812 Marionette INFO Listening on port 35271
1657626908846 RemoteAgent WARN TLS certificate errors will be ignored for this session
JavaScript error: http://tools.iedb.org/static/js/sequence_validation.js, line 89: TypeError: document.querySelector(...) is null
JavaScript error: http://tools.iedb.org/static/js/sequence_validation.js, line 89: TypeError: document.querySelector(...) is null
JavaScript error: http://tools.iedb.org/static/js/sequence_validation.js, line 89: TypeError: document.querySelector(...) is null
1657626925235 Marionette INFO Stopped listening on port 35271
JavaScript error: resource:///modules/Interactions.jsm, line 209: NS_ERROR_FAILURE: Component returned failure code: 0x80004005 (NS_ERROR_FAILURE) [nsIUserIdleService.removeIdleObserver]
!!! error running onStopped callback: TypeError: callback is not a function
###!!! [Parent][RunMessage] Error: Channel closing: too late to send/recv, messages will be lost
1657626925426 RemoteAgent ERROR unable to stop listener: [Exception... "Component returned failure code: 0x8000ffff (NS_ERROR_UNEXPECTED) [nsIWindowMediator.getEnumerator]" nsresult: "0x8000ffff (NS_ERROR_UNEXPECTED)" location: "JS frame :: chrome://remote/content/cdp/observers/TargetObserver.jsm :: stop :: line 64" data: no] Stack trace: stop()@TargetObserver.jsm:64
unwatchForTabs()@TargetList.jsm:70
unwatchForTargets()@TargetList.jsm:37
destructor()@TargetList.jsm:109
stop()@CDP.jsm:104
close()@RemoteAgent.jsm:138
1657626995186 geckodriver INFO Listening on 127.0.0.1:49137
1657626995221 mozrunner::runner INFO Running command: "/usr/bin/firefox" "--marionette" "-headless" "--remote-debugging-port" "45653" "--remote-allow-hosts" "localhost" "-no-remote" "-profile" "/tmp/rust_mozprofiletkFw4u"
*** You are running in headless mode.
1657626995718 Marionette INFO Marionette enabled
Crash Annotation GraphicsCriticalError: |[0][GFX1-]: RenderCompositorSWGL failed mapping default framebuffer, no dt (t=0.909914) [GFX1-]: RenderCompositorSWGL failed mapping default framebuffer, no dt
console.warn: SearchSettings: "get: No settings file exists, new profile?" (new NotFoundError("Could not open the file at /tmp/rust_mozprofiletkFw4u/search.json.mozlz4", (void 0)))
DevTools listening on ws://localhost:45653/devtools/browser/7debd727-4c8e-4e38-821f-45bc589b38aa
1657626996537 Marionette INFO Listening on port 42105
1657626996631 RemoteAgent WARN TLS certificate errors will be ignored for this session
JavaScript error: http://tools.iedb.org/static/js/sequence_validation.js, line 89: TypeError: document.querySelector(...) is null
JavaScript error: http://tools.iedb.org/static/js/sequence_validation.js, line 89: TypeError: document.querySelector(...) is null
JavaScript error: http://tools.iedb.org/static/js/sequence_validation.js, line 89: TypeError: document.querySelector(...) is null
1657627011810 Marionette INFO Stopped listening on port 42105
JavaScript error: resource:///modules/Interactions.jsm, line 209: NS_ERROR_FAILURE: Component returned failure code: 0x80004005 (NS_ERROR_FAILURE) [nsIUserIdleService.removeIdleObserver]
!!! error running onStopped callback: TypeError: callback is not a function
###!!! [Parent][RunMessage] Error: Channel closing: too late to send/recv, messages will be lost
1657627012000 RemoteAgent ERROR unable to stop listener: [Exception... "Component returned failure code: 0x8000ffff (NS_ERROR_UNEXPECTED) [nsIWindowMediator.getEnumerator]" nsresult: "0x8000ffff (NS_ERROR_UNEXPECTED)" location: "JS frame :: chrome://remote/content/cdp/observers/TargetObserver.jsm :: stop :: line 64" data: no] Stack trace: stop()@TargetObserver.jsm:64
unwatchForTabs()@TargetList.jsm:70
unwatchForTargets()@TargetList.jsm:37
destructor()@TargetList.jsm:109
stop()@CDP.jsm:104
close()@RemoteAgent.jsm:138
1657627012049 geckodriver INFO Listening on 127.0.0.1:44943
1657627012083 mozrunner::runner INFO Running command: "/usr/bin/firefox" "--marionette" "-headless" "--remote-debugging-port" "45083" "--remote-allow-hosts" "localhost" "-no-remote" "-profile" "/tmp/rust_mozprofileplqAJJ"
*** You are running in headless mode.
1657627012504 Marionette INFO Marionette enabled
Crash Annotation GraphicsCriticalError: |[0][GFX1-]: RenderCompositorSWGL failed mapping default framebuffer, no dt (t=0.835252) [GFX1-]: RenderCompositorSWGL failed mapping default framebuffer, no dt
console.warn: SearchSettings: "get: No settings file exists, new profile?" (new NotFoundError("Could not open the file at /tmp/rust_mozprofileplqAJJ/search.json.mozlz4", (void 0)))
DevTools listening on ws://localhost:45083/devtools/browser/3e1be25c-ee1e-4284-b8ab-22a1208dae67
1657627013341 Marionette INFO Listening on port 39341
1657627013393 RemoteAgent WARN TLS certificate errors will be ignored for this session
JavaScript error: http://tools.iedb.org/static/js/sequence_validation.js, line 89: TypeError: document.querySelector(...) is null
JavaScript error: http://tools.iedb.org/static/js/sequence_validation.js, line 89: TypeError: document.querySelector(...) is null
JavaScript error: http://tools.iedb.org/static/js/sequence_validation.js, line 89: TypeError: document.querySelector(...) is null
1657627209182 Marionette INFO Stopped listening on port 39341
JavaScript error: resource:///modules/Interactions.jsm, line 209: NS_ERROR_FAILURE: Component returned failure code: 0x80004005 (NS_ERROR_FAILURE) [nsIUserIdleService.removeIdleObserver]
!!! error running onStopped callback: TypeError: callback is not a function
###!!! [Parent][MessageChannel] Error: (msgtype=0x390076,name=PContent::Msg_DestroyBrowsingContextGroup) Closed channel: cannot send/recv
###!!! [Child][RunMessage] Error: Channel closing: too late to send/recv, messages will be lost
###!!! [Parent][RunMessage] Error: Channel closing: too late to send/recv, messages will be lost
1657627209254 RemoteAgent ERROR unable to stop listener: [Exception... "Component returned failure code: 0x8000ffff (NS_ERROR_UNEXPECTED) [nsIWindowMediator.getEnumerator]" nsresult: "0x8000ffff (NS_ERROR_UNEXPECTED)" location: "JS frame :: chrome://remote/content/cdp/observers/TargetObserver.jsm :: stop :: line 64" data: no] Stack trace: stop()@TargetObserver.jsm:64
unwatchForTabs()@TargetList.jsm:70
unwatchForTargets()@TargetList.jsm:37
destructor()@TargetList.jsm:109
stop()@CDP.jsm:104
close()@RemoteAgent.jsm:138
1657786546326 geckodriver INFO Listening on 127.0.0.1:44655
1657786546657 mozrunner::runner INFO Running command: "/usr/bin/firefox" "--marionette" "-headless" "--remote-debugging-port" "41889" "--remote-allow-hosts" "localhost" "-no-remote" "-profile" "/tmp/rust_mozprofileEFgxG2"
*** You are running in headless mode.
1657786547085 Marionette INFO Marionette enabled
Crash Annotation GraphicsCriticalError: |[0][GFX1-]: RenderCompositorSWGL failed mapping default framebuffer, no dt (t=0.845913) [GFX1-]: RenderCompositorSWGL failed mapping default framebuffer, no dt
console.warn: SearchSettings: "get: No settings file exists, new profile?" (new NotFoundError("Could not open the file at /tmp/rust_mozprofileEFgxG2/search.json.mozlz4", (void 0)))
DevTools listening on ws://localhost:41889/devtools/browser/2b5c6200-543f-4385-a034-fcd20ed40c72
1657786547938 Marionette INFO Listening on port 34085
1657786547968 RemoteAgent WARN TLS certificate errors will be ignored for this session
JavaScript error: http://tools.iedb.org/static/js/sequence_validation.js, line 89: TypeError: document.querySelector(...) is null
JavaScript error: http://tools.iedb.org/static/js/sequence_validation.js, line 89: TypeError: document.querySelector(...) is null
JavaScript error: http://tools.iedb.org/static/js/sequence_validation.js, line 89: TypeError: document.querySelector(...) is null
1657786554481 Marionette INFO Stopped listening on port 34085
JavaScript error: resource:///modules/Interactions.jsm, line 209: NS_ERROR_FAILURE: Component returned failure code: 0x80004005 (NS_ERROR_FAILURE) [nsIUserIdleService.removeIdleObserver]
!!! error running onStopped callback: TypeError: callback is not a function
###!!! [Parent][RunMessage] Error: Channel closing: too late to send/recv, messages will be lost
1657786554674 RemoteAgent ERROR unable to stop listener: [Exception... "Component returned failure code: 0x8000ffff (NS_ERROR_UNEXPECTED) [nsIWindowMediator.getEnumerator]" nsresult: "0x8000ffff (NS_ERROR_UNEXPECTED)" location: "JS frame :: chrome://remote/content/cdp/observers/TargetObserver.jsm :: stop :: line 64" data: no] Stack trace: stop()@TargetObserver.jsm:64
unwatchForTabs()@TargetList.jsm:70
unwatchForTargets()@TargetList.jsm:37
destructor()@TargetList.jsm:109
stop()@CDP.jsm:104
close()@RemoteAgent.jsm:138
1657786554720 geckodriver INFO Listening on 127.0.0.1:57207
1657786554756 mozrunner::runner INFO Running command: "/usr/bin/firefox" "--marionette" "-headless" "--remote-debugging-port" "36585" "--remote-allow-hosts" "localhost" "-no-remote" "-profile" "/tmp/rust_mozprofiletOeGA8"
*** You are running in headless mode.
1657786555187 Marionette INFO Marionette enabled
Crash Annotation GraphicsCriticalError: |[0][GFX1-]: RenderCompositorSWGL failed mapping default framebuffer, no dt (t=0.848227) [GFX1-]: RenderCompositorSWGL failed mapping default framebuffer, no dt
console.warn: SearchSettings: "get: No settings file exists, new profile?" (new NotFoundError("Could not open the file at /tmp/rust_mozprofiletOeGA8/search.json.mozlz4", (void 0)))
DevTools listening on ws://localhost:36585/devtools/browser/e809f649-6ece-44f3-b960-6fada4a5677a
1657786556029 Marionette INFO Listening on port 43183
1657786556066 RemoteAgent WARN TLS certificate errors will be ignored for this session
JavaScript error: http://tools.iedb.org/static/js/sequence_validation.js, line 89: TypeError: document.querySelector(...) is null
JavaScript error: http://tools.iedb.org/static/js/sequence_validation.js, line 89: TypeError: document.querySelector(...) is null
JavaScript error: http://tools.iedb.org/static/js/sequence_validation.js, line 89: TypeError: document.querySelector(...) is null
1657786565262 Marionette INFO Stopped listening on port 43183
JavaScript error: resource:///modules/Interactions.jsm, line 209: NS_ERROR_FAILURE: Component returned failure code: 0x80004005 (NS_ERROR_FAILURE) [nsIUserIdleService.removeIdleObserver]
!!! error running onStopped callback: TypeError: callback is not a function
###!!! [Parent][RunMessage] Error: Channel closing: too late to send/recv, messages will be lost
1657786565455 RemoteAgent ERROR unable to stop listener: [Exception... "Component returned failure code: 0x8000ffff (NS_ERROR_UNEXPECTED) [nsIWindowMediator.getEnumerator]" nsresult: "0x8000ffff (NS_ERROR_UNEXPECTED)" location: "JS frame :: chrome://remote/content/cdp/observers/TargetObserver.jsm :: stop :: line 64" data: no] Stack trace: stop()@TargetObserver.jsm:64
unwatchForTabs()@TargetList.jsm:70
unwatchForTargets()@TargetList.jsm:37
destructor()@TargetList.jsm:109
stop()@CDP.jsm:104
close()@RemoteAgent.jsm:138
1657786636528 geckodriver INFO Listening on 127.0.0.1:57103
1657786636566 mozrunner::runner INFO Running command: "/usr/bin/firefox" "--marionette" "-headless" "--remote-debugging-port" "53913" "--remote-allow-hosts" "localhost" "-no-remote" "-profile" "/tmp/rust_mozprofileV7iOHe"
*** You are running in headless mode.
1657786636996 Marionette INFO Marionette enabled
Crash Annotation GraphicsCriticalError: |[0][GFX1-]: RenderCompositorSWGL failed mapping default framebuffer, no dt (t=0.848321) [GFX1-]: RenderCompositorSWGL failed mapping default framebuffer, no dt
console.warn: SearchSettings: "get: No settings file exists, new profile?" (new NotFoundError("Could not open the file at /tmp/rust_mozprofileV7iOHe/search.json.mozlz4", (void 0)))
DevTools listening on ws://localhost:53913/devtools/browser/7fa70003-dd06-47e1-86b3-5647db53f67b
1657786637855 Marionette INFO Listening on port 33725
1657786637877 RemoteAgent WARN TLS certificate errors will be ignored for this session
JavaScript error: http://tools.iedb.org/static/js/sequence_validation.js, line 89: TypeError: document.querySelector(...) is null
JavaScript error: http://tools.iedb.org/static/js/sequence_validation.js, line 89: TypeError: document.querySelector(...) is null
JavaScript error: http://tools.iedb.org/static/js/sequence_validation.js, line 89: TypeError: document.querySelector(...) is null
1657786647063 Marionette INFO Stopped listening on port 33725
JavaScript error: resource:///modules/Interactions.jsm, line 209: NS_ERROR_FAILURE: Component returned failure code: 0x80004005 (NS_ERROR_FAILURE) [nsIUserIdleService.removeIdleObserver]
!!! error running onStopped callback: TypeError: callback is not a function
###!!! [Parent][RunMessage] Error: Channel closing: too late to send/recv, messages will be lost
1657786647260 RemoteAgent ERROR unable to stop listener: [Exception... "Component returned failure code: 0x8000ffff (NS_ERROR_UNEXPECTED) [nsIWindowMediator.getEnumerator]" nsresult: "0x8000ffff (NS_ERROR_UNEXPECTED)" location: "JS frame :: chrome://remote/content/cdp/observers/TargetObserver.jsm :: stop :: line 64" data: no] Stack trace: stop()@TargetObserver.jsm:64
unwatchForTabs()@TargetList.jsm:70
unwatchForTargets()@TargetList.jsm:37
destructor()@TargetList.jsm:109
stop()@CDP.jsm:104
close()@RemoteAgent.jsm:138
1657787643742 geckodriver INFO Listening on 127.0.0.1:48241
1657787643784 mozrunner::runner INFO Running command: "/usr/bin/firefox" "--marionette" "-headless" "--remote-debugging-port" "48731" "--remote-allow-hosts" "localhost" "-no-remote" "-profile" "/tmp/rust_mozprofilexAVIek"
*** You are running in headless mode.
1657787644212 Marionette INFO Marionette enabled
Crash Annotation GraphicsCriticalError: |[0][GFX1-]: RenderCompositorSWGL failed mapping default framebuffer, no dt (t=0.845635) [GFX1-]: RenderCompositorSWGL failed mapping default framebuffer, no dt
console.warn: SearchSettings: "get: No settings file exists, new profile?" (new NotFoundError("Could not open the file at /tmp/rust_mozprofilexAVIek/search.json.mozlz4", (void 0)))
DevTools listening on ws://localhost:48731/devtools/browser/0939bc3f-e780-4cdc-9d5d-7831251901ed
1657787645055 Marionette INFO Listening on port 45431
1657787645095 RemoteAgent WARN TLS certificate errors will be ignored for this session
JavaScript error: http://tools.iedb.org/static/js/sequence_validation.js, line 89: TypeError: document.querySelector(...) is null
JavaScript error: http://tools.iedb.org/static/js/sequence_validation.js, line 89: TypeError: document.querySelector(...) is null
JavaScript error: http://tools.iedb.org/static/js/sequence_validation.js, line 89: TypeError: document.querySelector(...) is null
1657787652939 Marionette INFO Stopped listening on port 45431
JavaScript error: resource:///modules/Interactions.jsm, line 209: NS_ERROR_FAILURE: Component returned failure code: 0x80004005 (NS_ERROR_FAILURE) [nsIUserIdleService.removeIdleObserver]
!!! error running onStopped callback: TypeError: callback is not a function
###!!! [Parent][RunMessage] Error: Channel closing: too late to send/recv, messages will be lost
1657787653131 RemoteAgent ERROR unable to stop listener: [Exception... "Component returned failure code: 0x8000ffff (NS_ERROR_UNEXPECTED) [nsIWindowMediator.getEnumerator]" nsresult: "0x8000ffff (NS_ERROR_UNEXPECTED)" location: "JS frame :: chrome://remote/content/cdp/observers/TargetObserver.jsm :: stop :: line 64" data: no] Stack trace: stop()@TargetObserver.jsm:64
unwatchForTabs()@TargetList.jsm:70
unwatchForTargets()@TargetList.jsm:37
destructor()@TargetList.jsm:109
stop()@CDP.jsm:104
close()@RemoteAgent.jsm:138
1657787917184 geckodriver INFO Listening on 127.0.0.1:39749
1657787917219 mozrunner::runner INFO Running command: "/usr/bin/firefox" "--marionette" "-headless" "--remote-debugging-port" "52301" "--remote-allow-hosts" "localhost" "-no-remote" "-profile" "/tmp/rust_mozprofilenFiPml"
*** You are running in headless mode.
1657787917659 Marionette INFO Marionette enabled
Crash Annotation GraphicsCriticalError: |[0][GFX1-]: RenderCompositorSWGL failed mapping default framebuffer, no dt (t=0.873705) [GFX1-]: RenderCompositorSWGL failed mapping default framebuffer, no dt
console.warn: SearchSettings: "get: No settings file exists, new profile?" (new NotFoundError("Could not open the file at /tmp/rust_mozprofilenFiPml/search.json.mozlz4", (void 0)))
DevTools listening on ws://localhost:52301/devtools/browser/012b4956-c280-43de-93a8-b73e99407199
1657787918525 Marionette INFO Listening on port 41691
1657787918630 RemoteAgent WARN TLS certificate errors will be ignored for this session
JavaScript error: http://tools.iedb.org/static/js/sequence_validation.js, line 89: TypeError: document.querySelector(...) is null
JavaScript error: http://tools.iedb.org/static/js/sequence_validation.js, line 89: TypeError: document.querySelector(...) is null
JavaScript error: http://tools.iedb.org/static/js/sequence_validation.js, line 89: TypeError: document.querySelector(...) is null
1657787924992 Marionette INFO Stopped listening on port 41691
JavaScript error: resource:///modules/Interactions.jsm, line 209: NS_ERROR_FAILURE: Component returned failure code: 0x80004005 (NS_ERROR_FAILURE) [nsIUserIdleService.removeIdleObserver]
!!! error running onStopped callback: TypeError: callback is not a function
###!!! [Parent][RunMessage] Error: Channel closing: too late to send/recv, messages will be lost
1657787925187 RemoteAgent ERROR unable to stop listener: [Exception... "Component returned failure code: 0x8000ffff (NS_ERROR_UNEXPECTED) [nsIWindowMediator.getEnumerator]" nsresult: "0x8000ffff (NS_ERROR_UNEXPECTED)" location: "JS frame :: chrome://remote/content/cdp/observers/TargetObserver.jsm :: stop :: line 64" data: no] Stack trace: stop()@TargetObserver.jsm:64
unwatchForTabs()@TargetList.jsm:70
unwatchForTargets()@TargetList.jsm:37
destructor()@TargetList.jsm:109
stop()@CDP.jsm:104
close()@RemoteAgent.jsm:138
1657787991500 geckodriver INFO Listening on 127.0.0.1:49049
1657787991537 mozrunner::runner INFO Running command: "/usr/bin/firefox" "--marionette" "-headless" "--remote-debugging-port" "55887" "--remote-allow-hosts" "localhost" "-no-remote" "-profile" "/tmp/rust_mozprofilejZMyGH"
*** You are running in headless mode.
1657787991976 Marionette INFO Marionette enabled
Crash Annotation GraphicsCriticalError: |[0][GFX1-]: RenderCompositorSWGL failed mapping default framebuffer, no dt (t=0.857028) [GFX1-]: RenderCompositorSWGL failed mapping default framebuffer, no dt
console.warn: SearchSettings: "get: No settings file exists, new profile?" (new NotFoundError("Could not open the file at /tmp/rust_mozprofilejZMyGH/search.json.mozlz4", (void 0)))
DevTools listening on ws://localhost:55887/devtools/browser/9ed3547b-7433-427e-91f8-58960aab218c
1657787992796 Marionette INFO Listening on port 45439
1657787992848 RemoteAgent WARN TLS certificate errors will be ignored for this session
JavaScript error: http://tools.iedb.org/static/js/sequence_validation.js, line 89: TypeError: document.querySelector(...) is null
JavaScript error: http://tools.iedb.org/static/js/sequence_validation.js, line 89: TypeError: document.querySelector(...) is null
JavaScript error: http://tools.iedb.org/static/js/sequence_validation.js, line 89: TypeError: document.querySelector(...) is null
1657787999184 Marionette INFO Stopped listening on port 45439
JavaScript error: resource:///modules/Interactions.jsm, line 209: NS_ERROR_FAILURE: Component returned failure code: 0x80004005 (NS_ERROR_FAILURE) [nsIUserIdleService.removeIdleObserver]
!!! error running onStopped callback: TypeError: callback is not a function
###!!! [Parent][RunMessage] Error: Channel closing: too late to send/recv, messages will be lost
1657787999376 RemoteAgent ERROR unable to stop listener: [Exception... "Component returned failure code: 0x8000ffff (NS_ERROR_UNEXPECTED) [nsIWindowMediator.getEnumerator]" nsresult: "0x8000ffff (NS_ERROR_UNEXPECTED)" location: "JS frame :: chrome://remote/content/cdp/observers/TargetObserver.jsm :: stop :: line 64" data: no] Stack trace: stop()@TargetObserver.jsm:64
unwatchForTabs()@TargetList.jsm:70
unwatchForTargets()@TargetList.jsm:37
destructor()@TargetList.jsm:109
stop()@CDP.jsm:104
close()@RemoteAgent.jsm:138
1657787999423 geckodriver INFO Listening on 127.0.0.1:37719
1657787999458 mozrunner::runner INFO Running command: "/usr/bin/firefox" "--marionette" "-headless" "--remote-debugging-port" "60569" "--remote-allow-hosts" "localhost" "-no-remote" "-profile" "/tmp/rust_mozprofileH1uClY"
*** You are running in headless mode.
1657787999886 Marionette INFO Marionette enabled
Crash Annotation GraphicsCriticalError: |[0][GFX1-]: RenderCompositorSWGL failed mapping default framebuffer, no dt (t=0.843284) [GFX1-]: RenderCompositorSWGL failed mapping default framebuffer, no dt
console.warn: SearchSettings: "get: No settings file exists, new profile?" (new NotFoundError("Could not open the file at /tmp/rust_mozprofileH1uClY/search.json.mozlz4", (void 0)))
DevTools listening on ws://localhost:60569/devtools/browser/ab48b7a1-0419-4a5e-8a15-c9a104ead9f6
1657788000730 Marionette INFO Listening on port 39589
1657788000769 RemoteAgent WARN TLS certificate errors will be ignored for this session
JavaScript error: http://tools.iedb.org/static/js/sequence_validation.js, line 89: TypeError: document.querySelector(...) is null
JavaScript error: http://tools.iedb.org/static/js/sequence_validation.js, line 89: TypeError: document.querySelector(...) is null
JavaScript error: http://tools.iedb.org/static/js/sequence_validation.js, line 89: TypeError: document.querySelector(...) is null
1657788010247 Marionette INFO Stopped listening on port 39589
JavaScript error: resource:///modules/Interactions.jsm, line 209: NS_ERROR_FAILURE: Component returned failure code: 0x80004005 (NS_ERROR_FAILURE) [nsIUserIdleService.removeIdleObserver]
!!! error running onStopped callback: TypeError: callback is not a function
###!!! [Child][RunMessage] Error: Channel closing: too late to send/recv, messages will be lost
###!!! [Parent][RunMessage] Error: Channel closing: too late to send/recv, messages will be lost
1657788010441 RemoteAgent ERROR unable to stop listener: [Exception... "Component returned failure code: 0x8000ffff (NS_ERROR_UNEXPECTED) [nsIWindowMediator.getEnumerator]" nsresult: "0x8000ffff (NS_ERROR_UNEXPECTED)" location: "JS frame :: chrome://remote/content/cdp/observers/TargetObserver.jsm :: stop :: line 64" data: no] Stack trace: stop()@TargetObserver.jsm:64
unwatchForTabs()@TargetList.jsm:70
unwatchForTargets()@TargetList.jsm:37
destructor()@TargetList.jsm:109
stop()@CDP.jsm:104
close()@RemoteAgent.jsm:138
1657793112005 geckodriver INFO Listening on 127.0.0.1:33711
1657793112042 mozrunner::runner INFO Running command: "/usr/bin/firefox" "--marionette" "-headless" "--remote-debugging-port" "55193" "--remote-allow-hosts" "localhost" "-no-remote" "-profile" "/tmp/rust_mozprofileuw3Qvx"
*** You are running in headless mode.
1657793112469 Marionette INFO Marionette enabled
Crash Annotation GraphicsCriticalError: |[0][GFX1-]: RenderCompositorSWGL failed mapping default framebuffer, no dt (t=0.841495) [GFX1-]: RenderCompositorSWGL failed mapping default framebuffer, no dt
console.warn: SearchSettings: "get: No settings file exists, new profile?" (new NotFoundError("Could not open the file at /tmp/rust_mozprofileuw3Qvx/search.json.mozlz4", (void 0)))
DevTools listening on ws://localhost:55193/devtools/browser/35bc25e1-898f-427c-845a-d49bd608c887
1657793113306 Marionette INFO Listening on port 41559
1657793113352 RemoteAgent WARN TLS certificate errors will be ignored for this session
JavaScript error: http://tools.iedb.org/static/js/sequence_validation.js, line 89: TypeError: document.querySelector(...) is null
JavaScript error: http://tools.iedb.org/static/js/sequence_validation.js, line 89: TypeError: document.querySelector(...) is null
JavaScript error: http://tools.iedb.org/static/js/sequence_validation.js, line 89: TypeError: document.querySelector(...) is null
1657793119113 Marionette INFO Stopped listening on port 41559
JavaScript error: resource:///modules/Interactions.jsm, line 209: NS_ERROR_FAILURE: Component returned failure code: 0x80004005 (NS_ERROR_FAILURE) [nsIUserIdleService.removeIdleObserver]
!!! error running onStopped callback: TypeError: callback is not a function
###!!! [Parent][RunMessage] Error: Channel closing: too late to send/recv, messages will be lost
1657793119304 RemoteAgent ERROR unable to stop listener: [Exception... "Component returned failure code: 0x8000ffff (NS_ERROR_UNEXPECTED) [nsIWindowMediator.getEnumerator]" nsresult: "0x8000ffff (NS_ERROR_UNEXPECTED)" location: "JS frame :: chrome://remote/content/cdp/observers/TargetObserver.jsm :: stop :: line 64" data: no] Stack trace: stop()@TargetObserver.jsm:64
unwatchForTabs()@TargetList.jsm:70
unwatchForTargets()@TargetList.jsm:37
destructor()@TargetList.jsm:109
stop()@CDP.jsm:104
close()@RemoteAgent.jsm:138
1657793119394 geckodriver INFO Listening on 127.0.0.1:47487
1657793119430 mozrunner::runner INFO Running command: "/usr/bin/firefox" "--marionette" "-headless" "--remote-debugging-port" "34653" "--remote-allow-hosts" "localhost" "-no-remote" "-profile" "/tmp/rust_mozprofileMlI6If"
*** You are running in headless mode.
1657793119856 Marionette INFO Marionette enabled
Crash Annotation GraphicsCriticalError: |[0][GFX1-]: RenderCompositorSWGL failed mapping default framebuffer, no dt (t=0.840945) [GFX1-]: RenderCompositorSWGL failed mapping default framebuffer, no dt
console.warn: SearchSettings: "get: No settings file exists, new profile?" (new NotFoundError("Could not open the file at /tmp/rust_mozprofileMlI6If/search.json.mozlz4", (void 0)))
DevTools listening on ws://localhost:34653/devtools/browser/c8cdb3ac-41ba-4181-a38b-c612864f55e2
1657793120693 Marionette INFO Listening on port 45105
1657793120741 RemoteAgent WARN TLS certificate errors will be ignored for this session
JavaScript error: http://tools.iedb.org/static/js/sequence_validation.js, line 89: TypeError: document.querySelector(...) is null
JavaScript error: http://tools.iedb.org/static/js/sequence_validation.js, line 89: TypeError: document.querySelector(...) is null
JavaScript error: http://tools.iedb.org/static/js/sequence_validation.js, line 89: TypeError: document.querySelector(...) is null
1657793130639 Marionette INFO Stopped listening on port 45105
JavaScript error: resource:///modules/Interactions.jsm, line 209: NS_ERROR_FAILURE: Component returned failure code: 0x80004005 (NS_ERROR_FAILURE) [nsIUserIdleService.removeIdleObserver]
!!! error running onStopped callback: TypeError: callback is not a function
###!!! [Parent][RunMessage] Error: Channel closing: too late to send/recv, messages will be lost
1657793130834 RemoteAgent ERROR unable to stop listener: [Exception... "Component returned failure code: 0x8000ffff (NS_ERROR_UNEXPECTED) [nsIWindowMediator.getEnumerator]" nsresult: "0x8000ffff (NS_ERROR_UNEXPECTED)" location: "JS frame :: chrome://remote/content/cdp/observers/TargetObserver.jsm :: stop :: line 64" data: no] Stack trace: stop()@TargetObserver.jsm:64
unwatchForTabs()@TargetList.jsm:70
unwatchForTargets()@TargetList.jsm:37
destructor()@TargetList.jsm:109
stop()@CDP.jsm:104
close()@RemoteAgent.jsm:138
1657793927007 geckodriver INFO Listening on 127.0.0.1:42045
1657793927043 mozrunner::runner INFO Running command: "/usr/bin/firefox" "--marionette" "-headless" "--remote-debugging-port" "47449" "--remote-allow-hosts" "localhost" "-no-remote" "-profile" "/tmp/rust_mozprofileRrkq3x"
*** You are running in headless mode.
1657793927464 Marionette INFO Marionette enabled
Crash Annotation GraphicsCriticalError: |[0][GFX1-]: RenderCompositorSWGL failed mapping default framebuffer, no dt (t=0.837775) [GFX1-]: RenderCompositorSWGL failed mapping default framebuffer, no dt
console.warn: SearchSettings: "get: No settings file exists, new profile?" (new NotFoundError("Could not open the file at /tmp/rust_mozprofileRrkq3x/search.json.mozlz4", (void 0)))
DevTools listening on ws://localhost:47449/devtools/browser/e6ddf8ae-47a7-4a9e-a436-1474809d6314
1657793928298 Marionette INFO Listening on port 43127
1657793928353 RemoteAgent WARN TLS certificate errors will be ignored for this session
JavaScript error: http://tools.iedb.org/static/js/sequence_validation.js, line 89: TypeError: document.querySelector(...) is null
JavaScript error: http://tools.iedb.org/static/js/sequence_validation.js, line 89: TypeError: document.querySelector(...) is null
JavaScript error: http://tools.iedb.org/static/js/sequence_validation.js, line 89: TypeError: document.querySelector(...) is null
1657793935116 Marionette INFO Stopped listening on port 43127
JavaScript error: resource:///modules/Interactions.jsm, line 209: NS_ERROR_FAILURE: Component returned failure code: 0x80004005 (NS_ERROR_FAILURE) [nsIUserIdleService.removeIdleObserver]
!!! error running onStopped callback: TypeError: callback is not a function
###!!! [Parent][RunMessage] Error: Channel closing: too late to send/recv, messages will be lost
1657793935309 RemoteAgent ERROR unable to stop listener: [Exception... "Component returned failure code: 0x8000ffff (NS_ERROR_UNEXPECTED) [nsIWindowMediator.getEnumerator]" nsresult: "0x8000ffff (NS_ERROR_UNEXPECTED)" location: "JS frame :: chrome://remote/content/cdp/observers/TargetObserver.jsm :: stop :: line 64" data: no] Stack trace: stop()@TargetObserver.jsm:64
unwatchForTabs()@TargetList.jsm:70
unwatchForTargets()@TargetList.jsm:37
destructor()@TargetList.jsm:109
stop()@CDP.jsm:104
close()@RemoteAgent.jsm:138
1657794037422 geckodriver INFO Listening on 127.0.0.1:51669
1657794037458 mozrunner::runner INFO Running command: "/usr/bin/firefox" "--marionette" "-headless" "--remote-debugging-port" "37987" "--remote-allow-hosts" "localhost" "-no-remote" "-profile" "/tmp/rust_mozprofileswsfrk"
*** You are running in headless mode.
1657794037881 Marionette INFO Marionette enabled
Crash Annotation GraphicsCriticalError: |[0][GFX1-]: RenderCompositorSWGL failed mapping default framebuffer, no dt (t=0.837176) [GFX1-]: RenderCompositorSWGL failed mapping default framebuffer, no dt
console.warn: SearchSettings: "get: No settings file exists, new profile?" (new NotFoundError("Could not open the file at /tmp/rust_mozprofileswsfrk/search.json.mozlz4", (void 0)))
DevTools listening on ws://localhost:37987/devtools/browser/e3dcd248-9089-40df-9f87-1103aa45d769
1657794038718 Marionette INFO Listening on port 37121
1657794038769 RemoteAgent WARN TLS certificate errors will be ignored for this session
JavaScript error: http://tools.iedb.org/static/js/sequence_validation.js, line 89: TypeError: document.querySelector(...) is null
JavaScript error: http://tools.iedb.org/static/js/sequence_validation.js, line 89: TypeError: document.querySelector(...) is null
JavaScript error: http://tools.iedb.org/static/js/sequence_validation.js, line 89: TypeError: document.querySelector(...) is null
1657794044829 Marionette INFO Stopped listening on port 37121
JavaScript error: resource:///modules/Interactions.jsm, line 209: NS_ERROR_FAILURE: Component returned failure code: 0x80004005 (NS_ERROR_FAILURE) [nsIUserIdleService.removeIdleObserver]
!!! error running onStopped callback: TypeError: callback is not a function
###!!! [Parent][RunMessage] Error: Channel closing: too late to send/recv, messages will be lost
1657794045019 RemoteAgent ERROR unable to stop listener: [Exception... "Component returned failure code: 0x8000ffff (NS_ERROR_UNEXPECTED) [nsIWindowMediator.getEnumerator]" nsresult: "0x8000ffff (NS_ERROR_UNEXPECTED)" location: "JS frame :: chrome://remote/content/cdp/observers/TargetObserver.jsm :: stop :: line 64" data: no] Stack trace: stop()@TargetObserver.jsm:64
unwatchForTabs()@TargetList.jsm:70
unwatchForTargets()@TargetList.jsm:37
destructor()@TargetList.jsm:109
stop()@CDP.jsm:104
close()@RemoteAgent.jsm:138
1657798020651 geckodriver INFO Listening on 127.0.0.1:48617
1657798020687 mozrunner::runner INFO Running command: "/usr/bin/firefox" "--marionette" "-headless" "--remote-debugging-port" "56759" "--remote-allow-hosts" "localhost" "-no-remote" "-profile" "/tmp/rust_mozprofilep4A7iY"
*** You are running in headless mode.
1657798021130 Marionette INFO Marionette enabled
Crash Annotation GraphicsCriticalError: |[0][GFX1-]: RenderCompositorSWGL failed mapping default framebuffer, no dt (t=0.863437) [GFX1-]: RenderCompositorSWGL failed mapping default framebuffer, no dt
console.warn: SearchSettings: "get: No settings file exists, new profile?" (new NotFoundError("Could not open the file at /tmp/rust_mozprofilep4A7iY/search.json.mozlz4", (void 0)))
DevTools listening on ws://localhost:56759/devtools/browser/50e43e44-4231-47e9-88f1-3936e65c852e
1657798022003 Marionette INFO Listening on port 33553
1657798022098 RemoteAgent WARN TLS certificate errors will be ignored for this session
JavaScript error: http://tools.iedb.org/static/js/sequence_validation.js, line 89: TypeError: document.querySelector(...) is null
JavaScript error: http://tools.iedb.org/static/js/sequence_validation.js, line 89: TypeError: document.querySelector(...) is null
JavaScript error: http://tools.iedb.org/static/js/sequence_validation.js, line 89: TypeError: document.querySelector(...) is null
1657798029933 Marionette INFO Stopped listening on port 33553
JavaScript error: resource:///modules/Interactions.jsm, line 209: NS_ERROR_FAILURE: Component returned failure code: 0x80004005 (NS_ERROR_FAILURE) [nsIUserIdleService.removeIdleObserver]
!!! error running onStopped callback: TypeError: callback is not a function
###!!! [Child][MessageChannel] Error: (msgtype=0x6B0025,name=PNecko::Msg_RemoveRequestContext) Channel closing: too late to send/recv, messages will be lost
###!!! [Parent][MessageChannel] Error: (msgtype=0x390076,name=PContent::Msg_DestroyBrowsingContextGroup) Closed channel: cannot send/recv
###!!! [Parent][RunMessage] Error: Channel closing: too late to send/recv, messages will be lost
1657798030129 RemoteAgent ERROR unable to stop listener: [Exception... "Component returned failure code: 0x8000ffff (NS_ERROR_UNEXPECTED) [nsIWindowMediator.getEnumerator]" nsresult: "0x8000ffff (NS_ERROR_UNEXPECTED)" location: "JS frame :: chrome://remote/content/cdp/observers/TargetObserver.jsm :: stop :: line 64" data: no] Stack trace: stop()@TargetObserver.jsm:64
unwatchForTabs()@TargetList.jsm:70
unwatchForTargets()@TargetList.jsm:37
destructor()@TargetList.jsm:109
stop()@CDP.jsm:104
close()@RemoteAgent.jsm:138
1657798123853 geckodriver INFO Listening on 127.0.0.1:49875
1657798123888 mozrunner::runner INFO Running command: "/usr/bin/firefox" "--marionette" "-headless" "--remote-debugging-port" "47883" "--remote-allow-hosts" "localhost" "-no-remote" "-profile" "/tmp/rust_mozprofileteqGI8"
*** You are running in headless mode.
1657798124321 Marionette INFO Marionette enabled
Crash Annotation GraphicsCriticalError: |[0][GFX1-]: RenderCompositorSWGL failed mapping default framebuffer, no dt (t=0.849608) [GFX1-]: RenderCompositorSWGL failed mapping default framebuffer, no dt
console.warn: SearchSettings: "get: No settings file exists, new profile?" (new NotFoundError("Could not open the file at /tmp/rust_mozprofileteqGI8/search.json.mozlz4", (void 0)))
DevTools listening on ws://localhost:47883/devtools/browser/3618a417-9165-43b6-a8e0-7e348b2ba8df
1657798125177 Marionette INFO Listening on port 43917
1657798125209 RemoteAgent WARN TLS certificate errors will be ignored for this session
JavaScript error: http://tools.iedb.org/static/js/sequence_validation.js, line 89: TypeError: document.querySelector(...) is null
JavaScript error: http://tools.iedb.org/static/js/sequence_validation.js, line 89: TypeError: document.querySelector(...) is null
JavaScript error: http://tools.iedb.org/static/js/sequence_validation.js, line 89: TypeError: document.querySelector(...) is null
1657798162032 Marionette INFO Stopped listening on port 43917
JavaScript error: resource:///modules/Interactions.jsm, line 209: NS_ERROR_FAILURE: Component returned failure code: 0x80004005 (NS_ERROR_FAILURE) [nsIUserIdleService.removeIdleObserver]
!!! error running onStopped callback: TypeError: callback is not a function
###!!! [Parent][RunMessage] Error: Channel closing: too late to send/recv, messages will be lost
1657798162225 RemoteAgent ERROR unable to stop listener: [Exception... "Component returned failure code: 0x8000ffff (NS_ERROR_UNEXPECTED) [nsIWindowMediator.getEnumerator]" nsresult: "0x8000ffff (NS_ERROR_UNEXPECTED)" location: "JS frame :: chrome://remote/content/cdp/observers/TargetObserver.jsm :: stop :: line 64" data: no] Stack trace: stop()@TargetObserver.jsm:64
unwatchForTabs()@TargetList.jsm:70
unwatchForTargets()@TargetList.jsm:37
destructor()@TargetList.jsm:109
stop()@CDP.jsm:104
close()@RemoteAgent.jsm:138
1657798407179 geckodriver INFO Listening on 127.0.0.1:59979
1657798407216 mozrunner::runner INFO Running command: "/usr/bin/firefox" "--marionette" "-headless" "--remote-debugging-port" "42937" "--remote-allow-hosts" "localhost" "-no-remote" "-profile" "/tmp/rust_mozprofileDyO5eg"
*** You are running in headless mode.
1657798407644 Marionette INFO Marionette enabled
Crash Annotation GraphicsCriticalError: |[0][GFX1-]: RenderCompositorSWGL failed mapping default framebuffer, no dt (t=0.843278) [GFX1-]: RenderCompositorSWGL failed mapping default framebuffer, no dt
console.warn: SearchSettings: "get: No settings file exists, new profile?" (new NotFoundError("Could not open the file at /tmp/rust_mozprofileDyO5eg/search.json.mozlz4", (void 0)))
DevTools listening on ws://localhost:42937/devtools/browser/801b500b-3353-462d-9d8e-454e938c50ef
1657798408487 Marionette INFO Listening on port 40721
1657798408527 RemoteAgent WARN TLS certificate errors will be ignored for this session
JavaScript error: http://tools.iedb.org/static/js/sequence_validation.js, line 89: TypeError: document.querySelector(...) is null
Exiting due to channel error.
Exiting due to channel error.
Exiting due to channel error.
1657798450151 geckodriver INFO Listening on 127.0.0.1:43307
1657798450187 mozrunner::runner INFO Running command: "/usr/bin/firefox" "--marionette" "-headless" "--remote-debugging-port" "42635" "--remote-allow-hosts" "localhost" "-no-remote" "-profile" "/tmp/rust_mozprofileM0MUHK"
*** You are running in headless mode.
1657798450615 Marionette INFO Marionette enabled
Crash Annotation GraphicsCriticalError: |[0][GFX1-]: RenderCompositorSWGL failed mapping default framebuffer, no dt (t=0.843989) [GFX1-]: RenderCompositorSWGL failed mapping default framebuffer, no dt
console.warn: SearchSettings: "get: No settings file exists, new profile?" (new NotFoundError("Could not open the file at /tmp/rust_mozprofileM0MUHK/search.json.mozlz4", (void 0)))
DevTools listening on ws://localhost:42635/devtools/browser/3804648c-a211-4850-b1fe-730960dc27a9
1657798451457 Marionette INFO Listening on port 42581
1657798451498 RemoteAgent WARN TLS certificate errors will be ignored for this session
JavaScript error: http://tools.iedb.org/static/js/sequence_validation.js, line 89: TypeError: document.querySelector(...) is null
JavaScript error: http://tools.iedb.org/static/js/sequence_validation.js, line 89: TypeError: document.querySelector(...) is null
JavaScript error: http://tools.iedb.org/static/js/sequence_validation.js, line 89: TypeError: document.querySelector(...) is null
1657798458152 Marionette INFO Stopped listening on port 42581
JavaScript error: resource:///modules/Interactions.jsm, line 209: NS_ERROR_FAILURE: Component returned failure code: 0x80004005 (NS_ERROR_FAILURE) [nsIUserIdleService.removeIdleObserver]
!!! error running onStopped callback: TypeError: callback is not a function
###!!! [Parent][RunMessage] Error: Channel closing: too late to send/recv, messages will be lost
1657798458345 RemoteAgent ERROR unable to stop listener: [Exception... "Component returned failure code: 0x8000ffff (NS_ERROR_UNEXPECTED) [nsIWindowMediator.getEnumerator]" nsresult: "0x8000ffff (NS_ERROR_UNEXPECTED)" location: "JS frame :: chrome://remote/content/cdp/observers/TargetObserver.jsm :: stop :: line 64" data: no] Stack trace: stop()@TargetObserver.jsm:64
unwatchForTabs()@TargetList.jsm:70
unwatchForTargets()@TargetList.jsm:37
destructor()@TargetList.jsm:109
stop()@CDP.jsm:104
close()@RemoteAgent.jsm:138
1657798458395 geckodriver INFO Listening on 127.0.0.1:55591
1657798458431 mozrunner::runner INFO Running command: "/usr/bin/firefox" "--marionette" "-headless" "--remote-debugging-port" "38569" "--remote-allow-hosts" "localhost" "-no-remote" "-profile" "/tmp/rust_mozprofileFxzcbM"
*** You are running in headless mode.
1657798458866 Marionette INFO Marionette enabled
Crash Annotation GraphicsCriticalError: |[0][GFX1-]: RenderCompositorSWGL failed mapping default framebuffer, no dt (t=0.845098) [GFX1-]: RenderCompositorSWGL failed mapping default framebuffer, no dt
console.warn: SearchSettings: "get: No settings file exists, new profile?" (new NotFoundError("Could not open the file at /tmp/rust_mozprofileFxzcbM/search.json.mozlz4", (void 0)))
DevTools listening on ws://localhost:38569/devtools/browser/306fda3e-8bff-4725-bf7a-34d269a1d063
1657798459711 Marionette INFO Listening on port 34283
1657798459742 RemoteAgent WARN TLS certificate errors will be ignored for this session
JavaScript error: http://tools.iedb.org/static/js/sequence_validation.js, line 89: TypeError: document.querySelector(...) is null
Exiting due to channel error.
Exiting due to channel error.
Exiting due to channel error.
1657798646142 geckodriver INFO Listening on 127.0.0.1:57647
1657798646180 mozrunner::runner INFO Running command: "/usr/bin/firefox" "--marionette" "-headless" "--remote-debugging-port" "39875" "--remote-allow-hosts" "localhost" "-no-remote" "-profile" "/tmp/rust_mozprofilef46m1k"
*** You are running in headless mode.
1657798646612 Marionette INFO Marionette enabled
Crash Annotation GraphicsCriticalError: |[0][GFX1-]: RenderCompositorSWGL failed mapping default framebuffer, no dt (t=0.847471) [GFX1-]: RenderCompositorSWGL failed mapping default framebuffer, no dt
console.warn: SearchSettings: "get: No settings file exists, new profile?" (new NotFoundError("Could not open the file at /tmp/rust_mozprofilef46m1k/search.json.mozlz4", (void 0)))
DevTools listening on ws://localhost:39875/devtools/browser/4fcea8c5-9101-4ac7-9a1e-60a405b88721
1657798647449 Marionette INFO Listening on port 41437
1657798647491 RemoteAgent WARN TLS certificate errors will be ignored for this session
JavaScript error: http://tools.iedb.org/static/js/sequence_validation.js, line 89: TypeError: document.querySelector(...) is null
JavaScript error: http://tools.iedb.org/static/js/sequence_validation.js, line 89: TypeError: document.querySelector(...) is null
JavaScript error: http://tools.iedb.org/static/js/sequence_validation.js, line 89: TypeError: document.querySelector(...) is null
1657798658532 Marionette INFO Stopped listening on port 41437
JavaScript error: resource:///modules/Interactions.jsm, line 209: NS_ERROR_FAILURE: Component returned failure code: 0x80004005 (NS_ERROR_FAILURE) [nsIUserIdleService.removeIdleObserver]
!!! error running onStopped callback: TypeError: callback is not a function
###!!! [Parent][RunMessage] Error: Channel closing: too late to send/recv, messages will be lost
1657798658723 RemoteAgent ERROR unable to stop listener: [Exception... "Component returned failure code: 0x8000ffff (NS_ERROR_UNEXPECTED) [nsIWindowMediator.getEnumerator]" nsresult: "0x8000ffff (NS_ERROR_UNEXPECTED)" location: "JS frame :: chrome://remote/content/cdp/observers/TargetObserver.jsm :: stop :: line 64" data: no] Stack trace: stop()@TargetObserver.jsm:64
unwatchForTabs()@TargetList.jsm:70
unwatchForTargets()@TargetList.jsm:37
destructor()@TargetList.jsm:109
stop()@CDP.jsm:104
close()@RemoteAgent.jsm:138
1657798658778 geckodriver INFO Listening on 127.0.0.1:33661
1657798658813 mozrunner::runner INFO Running command: "/usr/bin/firefox" "--marionette" "-headless" "--remote-debugging-port" "37943" "--remote-allow-hosts" "localhost" "-no-remote" "-profile" "/tmp/rust_mozprofileCCTbbV"
*** You are running in headless mode.
1657798659248 Marionette INFO Marionette enabled
Crash Annotation GraphicsCriticalError: |[0][GFX1-]: RenderCompositorSWGL failed mapping default framebuffer, no dt (t=0.852303) [GFX1-]: RenderCompositorSWGL failed mapping default framebuffer, no dt
console.warn: SearchSettings: "get: No settings file exists, new profile?" (new NotFoundError("Could not open the file at /tmp/rust_mozprofileCCTbbV/search.json.mozlz4", (void 0)))
DevTools listening on ws://localhost:37943/devtools/browser/63b4bd12-8c12-4e00-8a7c-ff92d3b7d94e
1657798660101 Marionette INFO Listening on port 33717
1657798660125 RemoteAgent WARN TLS certificate errors will be ignored for this session
JavaScript error: http://tools.iedb.org/static/js/sequence_validation.js, line 89: TypeError: document.querySelector(...) is null
JavaScript error: http://tools.iedb.org/static/js/sequence_validation.js, line 89: TypeError: document.querySelector(...) is null
JavaScript error: http://tools.iedb.org/static/js/sequence_validation.js, line 89: TypeError: document.querySelector(...) is null
1657798669683 Marionette INFO Stopped listening on port 33717
JavaScript error: resource:///modules/Interactions.jsm, line 209: NS_ERROR_FAILURE: Component returned failure code: 0x80004005 (NS_ERROR_FAILURE) [nsIUserIdleService.removeIdleObserver]
!!! error running onStopped callback: TypeError: callback is not a function
###!!! [Parent][MessageChannel] Error: (msgtype=0x390076,name=PContent::Msg_DestroyBrowsingContextGroup) Closed channel: cannot send/recv
###!!! [Parent][RunMessage] Error: Channel closing: too late to send/recv, messages will be lost
1657798669876 RemoteAgent ERROR unable to stop listener: [Exception... "Component returned failure code: 0x8000ffff (NS_ERROR_UNEXPECTED) [nsIWindowMediator.getEnumerator]" nsresult: "0x8000ffff (NS_ERROR_UNEXPECTED)" location: "JS frame :: chrome://remote/content/cdp/observers/TargetObserver.jsm :: stop :: line 64" data: no] Stack trace: stop()@TargetObserver.jsm:64
unwatchForTabs()@TargetList.jsm:70
unwatchForTargets()@TargetList.jsm:37
destructor()@TargetList.jsm:109
stop()@CDP.jsm:104
close()@RemoteAgent.jsm:138
1657798720651 geckodriver INFO Listening on 127.0.0.1:37463
1657798720686 mozrunner::runner INFO Running command: "/usr/bin/firefox" "--marionette" "-headless" "--remote-debugging-port" "59527" "--remote-allow-hosts" "localhost" "-no-remote" "-profile" "/tmp/rust_mozprofileFQLZbr"
*** You are running in headless mode.
1657798721119 Marionette INFO Marionette enabled
Crash Annotation GraphicsCriticalError: |[0][GFX1-]: RenderCompositorSWGL failed mapping default framebuffer, no dt (t=0.85023) [GFX1-]: RenderCompositorSWGL failed mapping default framebuffer, no dt
console.warn: SearchSettings: "get: No settings file exists, new profile?" (new NotFoundError("Could not open the file at /tmp/rust_mozprofileFQLZbr/search.json.mozlz4", (void 0)))
DevTools listening on ws://localhost:59527/devtools/browser/3010a397-6b77-4e4b-aa29-902e95bbdd65
1657798721972 Marionette INFO Listening on port 41051
1657798721997 RemoteAgent WARN TLS certificate errors will be ignored for this session
JavaScript error: http://tools.iedb.org/static/js/sequence_validation.js, line 89: TypeError: document.querySelector(...) is null
JavaScript error: http://tools.iedb.org/static/js/sequence_validation.js, line 89: TypeError: document.querySelector(...) is null
JavaScript error: http://tools.iedb.org/static/js/sequence_validation.js, line 89: TypeError: document.querySelector(...) is null
1657798745834 Marionette INFO Stopped listening on port 41051
JavaScript error: resource:///modules/Interactions.jsm, line 209: NS_ERROR_FAILURE: Component returned failure code: 0x80004005 (NS_ERROR_FAILURE) [nsIUserIdleService.removeIdleObserver]
!!! error running onStopped callback: TypeError: callback is not a function
###!!! [Parent][RunMessage] Error: Channel closing: too late to send/recv, messages will be lost
1657798746029 RemoteAgent ERROR unable to stop listener: [Exception... "Component returned failure code: 0x8000ffff (NS_ERROR_UNEXPECTED) [nsIWindowMediator.getEnumerator]" nsresult: "0x8000ffff (NS_ERROR_UNEXPECTED)" location: "JS frame :: chrome://remote/content/cdp/observers/TargetObserver.jsm :: stop :: line 64" data: no] Stack trace: stop()@TargetObserver.jsm:64
unwatchForTabs()@TargetList.jsm:70
unwatchForTargets()@TargetList.jsm:37
destructor()@TargetList.jsm:109
stop()@CDP.jsm:104
close()@RemoteAgent.jsm:138
1657798746081 geckodriver INFO Listening on 127.0.0.1:48869
1657798746115 mozrunner::runner INFO Running command: "/usr/bin/firefox" "--marionette" "-headless" "--remote-debugging-port" "35611" "--remote-allow-hosts" "localhost" "-no-remote" "-profile" "/tmp/rust_mozprofileho2hAt"
*** You are running in headless mode.
1657798746550 Marionette INFO Marionette enabled
Crash Annotation GraphicsCriticalError: |[0][GFX1-]: RenderCompositorSWGL failed mapping default framebuffer, no dt (t=0.854358) [GFX1-]: RenderCompositorSWGL failed mapping default framebuffer, no dt
console.warn: SearchSettings: "get: No settings file exists, new profile?" (new NotFoundError("Could not open the file at /tmp/rust_mozprofileho2hAt/search.json.mozlz4", (void 0)))
DevTools listening on ws://localhost:35611/devtools/browser/2f8c3fef-41d4-4757-ae80-f340d9addbd2
1657798747398 Marionette INFO Listening on port 36949
1657798747426 RemoteAgent WARN TLS certificate errors will be ignored for this session
JavaScript error: http://tools.iedb.org/static/js/sequence_validation.js, line 89: TypeError: document.querySelector(...) is null
JavaScript error: http://tools.iedb.org/static/js/sequence_validation.js, line 89: TypeError: document.querySelector(...) is null
JavaScript error: http://tools.iedb.org/static/js/sequence_validation.js, line 89: TypeError: document.querySelector(...) is null
1657798765992 Marionette INFO Stopped listening on port 36949
JavaScript error: resource:///modules/Interactions.jsm, line 209: NS_ERROR_FAILURE: Component returned failure code: 0x80004005 (NS_ERROR_FAILURE) [nsIUserIdleService.removeIdleObserver]
!!! error running onStopped callback: TypeError: callback is not a function
###!!! [Parent][MessageChannel] Error: (msgtype=0x390076,name=PContent::Msg_DestroyBrowsingContextGroup) Closed channel: cannot send/recv
###!!! [Parent][RunMessage] Error: Channel closing: too late to send/recv, messages will be lost
1657798766184 RemoteAgent ERROR unable to stop listener: [Exception... "Component returned failure code: 0x8000ffff (NS_ERROR_UNEXPECTED) [nsIWindowMediator.getEnumerator]" nsresult: "0x8000ffff (NS_ERROR_UNEXPECTED)" location: "JS frame :: chrome://remote/content/cdp/observers/TargetObserver.jsm :: stop :: line 64" data: no] Stack trace: stop()@TargetObserver.jsm:64
unwatchForTabs()@TargetList.jsm:70
unwatchForTargets()@TargetList.jsm:37
destructor()@TargetList.jsm:109
stop()@CDP.jsm:104
close()@RemoteAgent.jsm:138
1657799618163 geckodriver INFO Listening on 127.0.0.1:43041
1657799618199 mozrunner::runner INFO Running command: "/usr/bin/firefox" "--marionette" "-headless" "--remote-debugging-port" "40599" "--remote-allow-hosts" "localhost" "-no-remote" "-profile" "/tmp/rust_mozprofileJeA771"
*** You are running in headless mode.
1657799618629 Marionette INFO Marionette enabled
Crash Annotation GraphicsCriticalError: |[0][GFX1-]: RenderCompositorSWGL failed mapping default framebuffer, no dt (t=0.847305) [GFX1-]: RenderCompositorSWGL failed mapping default framebuffer, no dt
console.warn: SearchSettings: "get: No settings file exists, new profile?" (new NotFoundError("Could not open the file at /tmp/rust_mozprofileJeA771/search.json.mozlz4", (void 0)))
DevTools listening on ws://localhost:40599/devtools/browser/95e1973d-47e2-4a7f-bde3-48cf61a0a9e0
1657799619480 Marionette INFO Listening on port 37019
1657799619510 RemoteAgent WARN TLS certificate errors will be ignored for this session
JavaScript error: http://tools.iedb.org/static/js/sequence_validation.js, line 89: TypeError: document.querySelector(...) is null
JavaScript error: http://tools.iedb.org/static/js/sequence_validation.js, line 89: TypeError: document.querySelector(...) is null
JavaScript error: http://tools.iedb.org/static/js/sequence_validation.js, line 89: TypeError: document.querySelector(...) is null
1657799638586 Marionette INFO Stopped listening on port 37019
JavaScript error: resource:///modules/Interactions.jsm, line 209: NS_ERROR_FAILURE: Component returned failure code: 0x80004005 (NS_ERROR_FAILURE) [nsIUserIdleService.removeIdleObserver]
!!! error running onStopped callback: TypeError: callback is not a function
###!!! [Parent][RunMessage] Error: Channel closing: too late to send/recv, messages will be lost
1657799638779 RemoteAgent ERROR unable to stop listener: [Exception... "Component returned failure code: 0x8000ffff (NS_ERROR_UNEXPECTED) [nsIWindowMediator.getEnumerator]" nsresult: "0x8000ffff (NS_ERROR_UNEXPECTED)" location: "JS frame :: chrome://remote/content/cdp/observers/TargetObserver.jsm :: stop :: line 64" data: no] Stack trace: stop()@TargetObserver.jsm:64
unwatchForTabs()@TargetList.jsm:70
unwatchForTargets()@TargetList.jsm:37
destructor()@TargetList.jsm:109
stop()@CDP.jsm:104
close()@RemoteAgent.jsm:138
1657799638842 geckodriver INFO Listening on 127.0.0.1:42309
1657799638865 mozrunner::runner INFO Running command: "/usr/bin/firefox" "--marionette" "-headless" "--remote-debugging-port" "46781" "--remote-allow-hosts" "localhost" "-no-remote" "-profile" "/tmp/rust_mozprofileVWRvP2"
*** You are running in headless mode.
1657799639300 Marionette INFO Marionette enabled
Crash Annotation GraphicsCriticalError: |[0][GFX1-]: RenderCompositorSWGL failed mapping default framebuffer, no dt (t=0.849777) [GFX1-]: RenderCompositorSWGL failed mapping default framebuffer, no dt
console.warn: SearchSettings: "get: No settings file exists, new profile?" (new NotFoundError("Could not open the file at /tmp/rust_mozprofileVWRvP2/search.json.mozlz4", (void 0)))
DevTools listening on ws://localhost:46781/devtools/browser/0d57a841-29d1-486f-8df2-b60730a6e04e
1657799640142 Marionette INFO Listening on port 44649
1657799640176 RemoteAgent WARN TLS certificate errors will be ignored for this session
JavaScript error: http://tools.iedb.org/static/js/sequence_validation.js, line 89: TypeError: document.querySelector(...) is null
Exiting due to channel error.
Exiting due to channel error.
Exiting due to channel error.
1657799915111 geckodriver INFO Listening on 127.0.0.1:39067
1657799915147 mozrunner::runner INFO Running command: "/usr/bin/firefox" "--marionette" "-headless" "--remote-debugging-port" "41599" "--remote-allow-hosts" "localhost" "-no-remote" "-profile" "/tmp/rust_mozprofilewSrZQY"
*** You are running in headless mode.
1657799915594 Marionette INFO Marionette enabled
Crash Annotation GraphicsCriticalError: |[0][GFX1-]: RenderCompositorSWGL failed mapping default framebuffer, no dt (t=0.868854) [GFX1-]: RenderCompositorSWGL failed mapping default framebuffer, no dt
console.warn: SearchSettings: "get: No settings file exists, new profile?" (new NotFoundError("Could not open the file at /tmp/rust_mozprofilewSrZQY/search.json.mozlz4", (void 0)))
DevTools listening on ws://localhost:41599/devtools/browser/84eaac4f-465a-4e98-85e2-bbaa08a0e853
1657799916468 Marionette INFO Listening on port 36375
1657799916559 RemoteAgent WARN TLS certificate errors will be ignored for this session
JavaScript error: http://tools.iedb.org/static/js/sequence_validation.js, line 89: TypeError: document.querySelector(...) is null
JavaScript error: http://tools.iedb.org/static/js/sequence_validation.js, line 89: TypeError: document.querySelector(...) is null
JavaScript error: http://tools.iedb.org/static/js/sequence_validation.js, line 89: TypeError: document.querySelector(...) is null
1657799934473 Marionette INFO Stopped listening on port 36375
JavaScript error: resource:///modules/Interactions.jsm, line 209: NS_ERROR_FAILURE: Component returned failure code: 0x80004005 (NS_ERROR_FAILURE) [nsIUserIdleService.removeIdleObserver]
!!! error running onStopped callback: TypeError: callback is not a function
###!!! [Parent][RunMessage] Error: Channel closing: too late to send/recv, messages will be lost
1657799934670 RemoteAgent ERROR unable to stop listener: [Exception... "Component returned failure code: 0x8000ffff (NS_ERROR_UNEXPECTED) [nsIWindowMediator.getEnumerator]" nsresult: "0x8000ffff (NS_ERROR_UNEXPECTED)" location: "JS frame :: chrome://remote/content/cdp/observers/TargetObserver.jsm :: stop :: line 64" data: no] Stack trace: stop()@TargetObserver.jsm:64
unwatchForTabs()@TargetList.jsm:70
unwatchForTargets()@TargetList.jsm:37
destructor()@TargetList.jsm:109
stop()@CDP.jsm:104
close()@RemoteAgent.jsm:138
1657799934724 geckodriver INFO Listening on 127.0.0.1:40785
1657799934759 mozrunner::runner INFO Running command: "/usr/bin/firefox" "--marionette" "-headless" "--remote-debugging-port" "46865" "--remote-allow-hosts" "localhost" "-no-remote" "-profile" "/tmp/rust_mozprofileYxWsMV"
*** You are running in headless mode.
1657799935205 Marionette INFO Marionette enabled
Crash Annotation GraphicsCriticalError: |[0][GFX1-]: RenderCompositorSWGL failed mapping default framebuffer, no dt (t=0.884492) [GFX1-]: RenderCompositorSWGL failed mapping default framebuffer, no dt
console.warn: SearchSettings: "get: No settings file exists, new profile?" (new NotFoundError("Could not open the file at /tmp/rust_mozprofileYxWsMV/search.json.mozlz4", (void 0)))
DevTools listening on ws://localhost:46865/devtools/browser/1a9d3460-b51e-4482-bf4d-2bc61f15f4ec
1657799936101 Marionette INFO Listening on port 35227
1657799936170 RemoteAgent WARN TLS certificate errors will be ignored for this session
JavaScript error: http://tools.iedb.org/static/js/sequence_validation.js, line 89: TypeError: document.querySelector(...) is null
JavaScript error: http://tools.iedb.org/static/js/sequence_validation.js, line 89: TypeError: document.querySelector(...) is null
JavaScript error: http://tools.iedb.org/static/js/sequence_validation.js, line 89: TypeError: document.querySelector(...) is null
1657800120017 Marionette INFO Stopped listening on port 35227
JavaScript error: resource:///modules/Interactions.jsm, line 209: NS_ERROR_FAILURE: Component returned failure code: 0x80004005 (NS_ERROR_FAILURE) [nsIUserIdleService.removeIdleObserver]
!!! error running onStopped callback: TypeError: callback is not a function
###!!! [Child][RunMessage] Error: Channel closing: too late to send/recv, messages will be lost
###!!! [Child][RunMessage] Error: Channel closing: too late to send/recv, messages will be lost
###!!! [Parent][RunMessage] Error: Channel closing: too late to send/recv, messages will be lost
1657800120093 RemoteAgent ERROR unable to stop listener: [Exception... "Component returned failure code: 0x8000ffff (NS_ERROR_UNEXPECTED) [nsIWindowMediator.getEnumerator]" nsresult: "0x8000ffff (NS_ERROR_UNEXPECTED)" location: "JS frame :: chrome://remote/content/cdp/observers/TargetObserver.jsm :: stop :: line 64" data: no] Stack trace: stop()@TargetObserver.jsm:64
unwatchForTabs()@TargetList.jsm:70
unwatchForTargets()@TargetList.jsm:37
destructor()@TargetList.jsm:109
stop()@CDP.jsm:104
close()@RemoteAgent.jsm:138
1659966167115 geckodriver INFO Listening on 127.0.0.1:57551
1659966167651 mozrunner::runner INFO Running command: "/usr/bin/firefox" "--marionette" "-headless" "--remote-debugging-port" "50815" "--remote-allow-hosts" "localhost" "-no-remote" "-profile" "/tmp/rust_mozprofileM36Zsu"
*** You are running in headless mode.
1659966168080 Marionette INFO Marionette enabled
Crash Annotation GraphicsCriticalError: |[0][GFX1-]: RenderCompositorSWGL failed mapping default framebuffer, no dt (t=0.84299) [GFX1-]: RenderCompositorSWGL failed mapping default framebuffer, no dt
console.warn: SearchSettings: "get: No settings file exists, new profile?" (new NotFoundError("Could not open the file at /tmp/rust_mozprofileM36Zsu/search.json.mozlz4", (void 0)))
DevTools listening on ws://localhost:50815/devtools/browser/7afe3385-c152-4088-b76b-45c9ef51c33f
1659966168913 Marionette INFO Listening on port 40093
1659966168963 RemoteAgent WARN TLS certificate errors will be ignored for this session
JavaScript error: http://tools.iedb.org/static/js/sequence_validation.js, line 89: TypeError: document.querySelector(...) is null
JavaScript error: http://tools.iedb.org/static/js/sequence_validation.js, line 89: TypeError: document.querySelector(...) is null
JavaScript error: http://tools.iedb.org/static/js/sequence_validation.js, line 89: TypeError: document.querySelector(...) is null
1659966174803 Marionette INFO Stopped listening on port 40093
JavaScript error: resource:///modules/Interactions.jsm, line 209: NS_ERROR_FAILURE: Component returned failure code: 0x80004005 (NS_ERROR_FAILURE) [nsIUserIdleService.removeIdleObserver]
!!! error running onStopped callback: TypeError: callback is not a function
###!!! [Parent][RunMessage] Error: Channel closing: too late to send/recv, messages will be lost
1659966175001 RemoteAgent ERROR unable to stop listener: [Exception... "Component returned failure code: 0x8000ffff (NS_ERROR_UNEXPECTED) [nsIWindowMediator.getEnumerator]" nsresult: "0x8000ffff (NS_ERROR_UNEXPECTED)" location: "JS frame :: chrome://remote/content/cdp/observers/TargetObserver.jsm :: stop :: line 64" data: no] Stack trace: stop()@TargetObserver.jsm:64
unwatchForTabs()@TargetList.jsm:70
unwatchForTargets()@TargetList.jsm:37
destructor()@TargetList.jsm:109
stop()@CDP.jsm:104
close()@RemoteAgent.jsm:138
1659966175041 geckodriver INFO Listening on 127.0.0.1:57185
1659966175562 mozrunner::runner INFO Running command: "/usr/bin/firefox" "--marionette" "-headless" "--remote-debugging-port" "42963" "--remote-allow-hosts" "localhost" "-no-remote" "-profile" "/tmp/rust_mozprofileV8u74k"
*** You are running in headless mode.
1659966175989 Marionette INFO Marionette enabled
Crash Annotation GraphicsCriticalError: |[0][GFX1-]: RenderCompositorSWGL failed mapping default framebuffer, no dt (t=0.842387) [GFX1-]: RenderCompositorSWGL failed mapping default framebuffer, no dt
console.warn: SearchSettings: "get: No settings file exists, new profile?" (new NotFoundError("Could not open the file at /tmp/rust_mozprofileV8u74k/search.json.mozlz4", (void 0)))
DevTools listening on ws://localhost:42963/devtools/browser/d8d755e1-1de7-466a-b4ff-8c6ab6dcf30e
1659966176832 Marionette INFO Listening on port 32901
1659966176873 RemoteAgent WARN TLS certificate errors will be ignored for this session
JavaScript error: http://tools.iedb.org/static/js/sequence_validation.js, line 89: TypeError: document.querySelector(...) is null
JavaScript error: http://tools.iedb.org/static/js/sequence_validation.js, line 89: TypeError: document.querySelector(...) is null
JavaScript error: http://tools.iedb.org/static/js/sequence_validation.js, line 89: TypeError: document.querySelector(...) is null
1659966182248 Marionette INFO Stopped listening on port 32901
JavaScript error: resource:///modules/Interactions.jsm, line 209: NS_ERROR_FAILURE: Component returned failure code: 0x80004005 (NS_ERROR_FAILURE) [nsIUserIdleService.removeIdleObserver]
!!! error running onStopped callback: TypeError: callback is not a function
###!!! [Parent][RunMessage] Error: Channel closing: too late to send/recv, messages will be lost
1659966182442 RemoteAgent ERROR unable to stop listener: [Exception... "Component returned failure code: 0x8000ffff (NS_ERROR_UNEXPECTED) [nsIWindowMediator.getEnumerator]" nsresult: "0x8000ffff (NS_ERROR_UNEXPECTED)" location: "JS frame :: chrome://remote/content/cdp/observers/TargetObserver.jsm :: stop :: line 64" data: no] Stack trace: stop()@TargetObserver.jsm:64
unwatchForTabs()@TargetList.jsm:70
unwatchForTargets()@TargetList.jsm:37
destructor()@TargetList.jsm:109
stop()@CDP.jsm:104
close()@RemoteAgent.jsm:138
1659968611805 geckodriver INFO Listening on 127.0.0.1:51645
1659968611839 mozrunner::runner INFO Running command: "/usr/bin/firefox" "--marionette" "-headless" "--remote-debugging-port" "35555" "--remote-allow-hosts" "localhost" "-no-remote" "-profile" "/tmp/rust_mozprofileiTX84z"
*** You are running in headless mode.
1659968612261 Marionette INFO Marionette enabled
Crash Annotation GraphicsCriticalError: |[0][GFX1-]: RenderCompositorSWGL failed mapping default framebuffer, no dt (t=0.835027) [GFX1-]: RenderCompositorSWGL failed mapping default framebuffer, no dt
console.warn: SearchSettings: "get: No settings file exists, new profile?" (new NotFoundError("Could not open the file at /tmp/rust_mozprofileiTX84z/search.json.mozlz4", (void 0)))
DevTools listening on ws://localhost:35555/devtools/browser/6d385c45-48db-479c-a610-c6817c109691
1659968613096 Marionette INFO Listening on port 46565
1659968613150 RemoteAgent WARN TLS certificate errors will be ignored for this session
JavaScript error: http://tools.iedb.org/static/js/sequence_validation.js, line 89: TypeError: document.querySelector(...) is null
JavaScript error: http://tools.iedb.org/static/js/sequence_validation.js, line 89: TypeError: document.querySelector(...) is null
1659968759213 geckodriver INFO Listening on 127.0.0.1:55487
1659968759249 mozrunner::runner INFO Running command: "/usr/bin/firefox" "--marionette" "-headless" "--remote-debugging-port" "44037" "--remote-allow-hosts" "localhost" "-no-remote" "-profile" "/tmp/rust_mozprofile86JZdw"
*** You are running in headless mode.
1659968759691 Marionette INFO Marionette enabled
Crash Annotation GraphicsCriticalError: |[0][GFX1-]: RenderCompositorSWGL failed mapping default framebuffer, no dt (t=0.86392) [GFX1-]: RenderCompositorSWGL failed mapping default framebuffer, no dt
console.warn: SearchSettings: "get: No settings file exists, new profile?" (new NotFoundError("Could not open the file at /tmp/rust_mozprofile86JZdw/search.json.mozlz4", (void 0)))
DevTools listening on ws://localhost:44037/devtools/browser/af413be1-f7ea-4286-b619-bd2eecfeb1e5
1659968760565 Marionette INFO Listening on port 41319
1659968760660 RemoteAgent WARN TLS certificate errors will be ignored for this session
JavaScript error: http://tools.iedb.org/static/js/sequence_validation.js, line 89: TypeError: document.querySelector(...) is null
JavaScript error: http://tools.iedb.org/static/js/sequence_validation.js, line 89: TypeError: document.querySelector(...) is null
1659968790548 geckodriver INFO Listening on 127.0.0.1:50331
1659968790582 mozrunner::runner INFO Running command: "/usr/bin/firefox" "--marionette" "-headless" "--remote-debugging-port" "59545" "--remote-allow-hosts" "localhost" "-no-remote" "-profile" "/tmp/rust_mozprofileOX2Wlu"
*** You are running in headless mode.
1659968791006 Marionette INFO Marionette enabled
Crash Annotation GraphicsCriticalError: |[0][GFX1-]: RenderCompositorSWGL failed mapping default framebuffer, no dt (t=0.838023) [GFX1-]: RenderCompositorSWGL failed mapping default framebuffer, no dt
console.warn: SearchSettings: "get: No settings file exists, new profile?" (new NotFoundError("Could not open the file at /tmp/rust_mozprofileOX2Wlu/search.json.mozlz4", (void 0)))
DevTools listening on ws://localhost:59545/devtools/browser/1626b79b-10d5-47a6-96bc-e69d7af5128f
1659968791843 Marionette INFO Listening on port 44939
1659968791893 RemoteAgent WARN TLS certificate errors will be ignored for this session
JavaScript error: http://tools.iedb.org/static/js/sequence_validation.js, line 89: TypeError: document.querySelector(...) is null
JavaScript error: http://tools.iedb.org/static/js/sequence_validation.js, line 89: TypeError: document.querySelector(...) is null
JavaScript error: http://tools.iedb.org/static/js/sequence_validation.js, line 89: TypeError: document.querySelector(...) is null
1659968796477 Marionette INFO Stopped listening on port 44939
JavaScript error: resource:///modules/Interactions.jsm, line 209: NS_ERROR_FAILURE: Component returned failure code: 0x80004005 (NS_ERROR_FAILURE) [nsIUserIdleService.removeIdleObserver]
!!! error running onStopped callback: TypeError: callback is not a function
###!!! [Parent][RunMessage] Error: Channel closing: too late to send/recv, messages will be lost
1659968796669 RemoteAgent ERROR unable to stop listener: [Exception... "Component returned failure code: 0x8000ffff (NS_ERROR_UNEXPECTED) [nsIWindowMediator.getEnumerator]" nsresult: "0x8000ffff (NS_ERROR_UNEXPECTED)" location: "JS frame :: chrome://remote/content/cdp/observers/TargetObserver.jsm :: stop :: line 64" data: no] Stack trace: stop()@TargetObserver.jsm:64
unwatchForTabs()@TargetList.jsm:70
unwatchForTargets()@TargetList.jsm:37
destructor()@TargetList.jsm:109
stop()@CDP.jsm:104
close()@RemoteAgent.jsm:138
1659968796715 geckodriver INFO Listening on 127.0.0.1:44599
1659968796749 mozrunner::runner INFO Running command: "/usr/bin/firefox" "--marionette" "-headless" "--remote-debugging-port" "59079" "--remote-allow-hosts" "localhost" "-no-remote" "-profile" "/tmp/rust_mozprofilenyM0pi"
*** You are running in headless mode.
1659968797175 Marionette INFO Marionette enabled
Crash Annotation GraphicsCriticalError: |[0][GFX1-]: RenderCompositorSWGL failed mapping default framebuffer, no dt (t=0.843817) [GFX1-]: RenderCompositorSWGL failed mapping default framebuffer, no dt
console.warn: SearchSettings: "get: No settings file exists, new profile?" (new NotFoundError("Could not open the file at /tmp/rust_mozprofilenyM0pi/search.json.mozlz4", (void 0)))
DevTools listening on ws://localhost:59079/devtools/browser/33cd6ff3-5f72-4533-92c2-7f813f253fe5
1659968798014 Marionette INFO Listening on port 44171
1659968798060 RemoteAgent WARN TLS certificate errors will be ignored for this session
JavaScript error: http://tools.iedb.org/static/js/sequence_validation.js, line 89: TypeError: document.querySelector(...) is null
JavaScript error: http://tools.iedb.org/static/js/sequence_validation.js, line 89: TypeError: document.querySelector(...) is null
JavaScript error: http://tools.iedb.org/static/js/sequence_validation.js, line 89: TypeError: document.querySelector(...) is null
1659968804440 Marionette INFO Stopped listening on port 44171
JavaScript error: resource:///modules/Interactions.jsm, line 209: NS_ERROR_FAILURE: Component returned failure code: 0x80004005 (NS_ERROR_FAILURE) [nsIUserIdleService.removeIdleObserver]
!!! error running onStopped callback: TypeError: callback is not a function
###!!! [Parent][RunMessage] Error: Channel closing: too late to send/recv, messages will be lost
1659968804632 RemoteAgent ERROR unable to stop listener: [Exception... "Component returned failure code: 0x8000ffff (NS_ERROR_UNEXPECTED) [nsIWindowMediator.getEnumerator]" nsresult: "0x8000ffff (NS_ERROR_UNEXPECTED)" location: "JS frame :: chrome://remote/content/cdp/observers/TargetObserver.jsm :: stop :: line 64" data: no] Stack trace: stop()@TargetObserver.jsm:64
unwatchForTabs()@TargetList.jsm:70
unwatchForTargets()@TargetList.jsm:37
destructor()@TargetList.jsm:109
stop()@CDP.jsm:104
close()@RemoteAgent.jsm:138
1659968974459 geckodriver INFO Listening on 127.0.0.1:45429
1659968974494 mozrunner::runner INFO Running command: "/usr/bin/firefox" "--marionette" "-headless" "--remote-debugging-port" "47603" "--remote-allow-hosts" "localhost" "-no-remote" "-profile" "/tmp/rust_mozprofilevDlTIl"
*** You are running in headless mode.
1659968974919 Marionette INFO Marionette enabled
Crash Annotation GraphicsCriticalError: |[0][GFX1-]: RenderCompositorSWGL failed mapping default framebuffer, no dt (t=0.840234) [GFX1-]: RenderCompositorSWGL failed mapping default framebuffer, no dt
console.warn: SearchSettings: "get: No settings file exists, new profile?" (new NotFoundError("Could not open the file at /tmp/rust_mozprofilevDlTIl/search.json.mozlz4", (void 0)))
DevTools listening on ws://localhost:47603/devtools/browser/4d3c5849-b962-4fb1-b850-2b5874b08401
1659968975756 Marionette INFO Listening on port 33995
1659968975805 RemoteAgent WARN TLS certificate errors will be ignored for this session
JavaScript error: http://tools.iedb.org/static/js/sequence_validation.js, line 89: TypeError: document.querySelector(...) is null
JavaScript error: http://tools.iedb.org/static/js/sequence_validation.js, line 89: TypeError: document.querySelector(...) is null
JavaScript error: http://tools.iedb.org/static/js/sequence_validation.js, line 89: TypeError: document.querySelector(...) is null
1659968980215 Marionette INFO Stopped listening on port 33995
JavaScript error: resource:///modules/Interactions.jsm, line 209: NS_ERROR_FAILURE: Component returned failure code: 0x80004005 (NS_ERROR_FAILURE) [nsIUserIdleService.removeIdleObserver]
!!! error running onStopped callback: TypeError: callback is not a function
###!!! [Parent][RunMessage] Error: Channel closing: too late to send/recv, messages will be lost
1659968980407 RemoteAgent ERROR unable to stop listener: [Exception... "Component returned failure code: 0x8000ffff (NS_ERROR_UNEXPECTED) [nsIWindowMediator.getEnumerator]" nsresult: "0x8000ffff (NS_ERROR_UNEXPECTED)" location: "JS frame :: chrome://remote/content/cdp/observers/TargetObserver.jsm :: stop :: line 64" data: no] Stack trace: stop()@TargetObserver.jsm:64
unwatchForTabs()@TargetList.jsm:70
unwatchForTargets()@TargetList.jsm:37
destructor()@TargetList.jsm:109
stop()@CDP.jsm:104
close()@RemoteAgent.jsm:138
1659968980450 geckodriver INFO Listening on 127.0.0.1:51719
1659968980484 mozrunner::runner INFO Running command: "/usr/bin/firefox" "--marionette" "-headless" "--remote-debugging-port" "50825" "--remote-allow-hosts" "localhost" "-no-remote" "-profile" "/tmp/rust_mozprofileBtTNMz"
*** You are running in headless mode.
1659968980908 Marionette INFO Marionette enabled
Crash Annotation GraphicsCriticalError: |[0][GFX1-]: RenderCompositorSWGL failed mapping default framebuffer, no dt (t=0.836762) [GFX1-]: RenderCompositorSWGL failed mapping default framebuffer, no dt
console.warn: SearchSettings: "get: No settings file exists, new profile?" (new NotFoundError("Could not open the file at /tmp/rust_mozprofileBtTNMz/search.json.mozlz4", (void 0)))
DevTools listening on ws://localhost:50825/devtools/browser/499ffeb9-25f8-49c7-849c-9659303508c3
1659968981745 Marionette INFO Listening on port 32785
1659968981795 RemoteAgent WARN TLS certificate errors will be ignored for this session
JavaScript error: http://tools.iedb.org/static/js/sequence_validation.js, line 89: TypeError: document.querySelector(...) is null
JavaScript error: http://tools.iedb.org/static/js/sequence_validation.js, line 89: TypeError: document.querySelector(...) is null
JavaScript error: http://tools.iedb.org/static/js/sequence_validation.js, line 89: TypeError: document.querySelector(...) is null
1659968988452 Marionette INFO Stopped listening on port 32785
JavaScript error: resource:///modules/Interactions.jsm, line 209: NS_ERROR_FAILURE: Component returned failure code: 0x80004005 (NS_ERROR_FAILURE) [nsIUserIdleService.removeIdleObserver]
!!! error running onStopped callback: TypeError: callback is not a function
###!!! [Parent][RunMessage] Error: Channel closing: too late to send/recv, messages will be lost
1659968988643 RemoteAgent ERROR unable to stop listener: [Exception... "Component returned failure code: 0x8000ffff (NS_ERROR_UNEXPECTED) [nsIWindowMediator.getEnumerator]" nsresult: "0x8000ffff (NS_ERROR_UNEXPECTED)" location: "JS frame :: chrome://remote/content/cdp/observers/TargetObserver.jsm :: stop :: line 64" data: no] Stack trace: stop()@TargetObserver.jsm:64
unwatchForTabs()@TargetList.jsm:70
unwatchForTargets()@TargetList.jsm:37
destructor()@TargetList.jsm:109
stop()@CDP.jsm:104
close()@RemoteAgent.jsm:138
1659969077300 geckodriver INFO Listening on 127.0.0.1:33847
1659969077334 mozrunner::runner INFO Running command: "/usr/bin/firefox" "--marionette" "-headless" "--remote-debugging-port" "39583" "--remote-allow-hosts" "localhost" "-no-remote" "-profile" "/tmp/rust_mozprofileqFOYDx"
*** You are running in headless mode.
1659969077755 Marionette INFO Marionette enabled
Crash Annotation GraphicsCriticalError: |[0][GFX1-]: RenderCompositorSWGL failed mapping default framebuffer, no dt (t=0.835301) [GFX1-]: RenderCompositorSWGL failed mapping default framebuffer, no dt
console.warn: SearchSettings: "get: No settings file exists, new profile?" (new NotFoundError("Could not open the file at /tmp/rust_mozprofileqFOYDx/search.json.mozlz4", (void 0)))
DevTools listening on ws://localhost:39583/devtools/browser/dc47658c-713f-4eda-9a67-8f4bfc5db2ff
1659969078558 Marionette INFO Listening on port 33363
1659969078644 RemoteAgent WARN TLS certificate errors will be ignored for this session
JavaScript error: http://tools.iedb.org/static/js/sequence_validation.js, line 89: TypeError: document.querySelector(...) is null
JavaScript error: http://tools.iedb.org/static/js/sequence_validation.js, line 89: TypeError: document.querySelector(...) is null
JavaScript error: http://tools.iedb.org/static/js/sequence_validation.js, line 89: TypeError: document.querySelector(...) is null
1659969083490 Marionette INFO Stopped listening on port 33363
JavaScript error: resource:///modules/Interactions.jsm, line 209: NS_ERROR_FAILURE: Component returned failure code: 0x80004005 (NS_ERROR_FAILURE) [nsIUserIdleService.removeIdleObserver]
!!! error running onStopped callback: TypeError: callback is not a function
###!!! [Parent][RunMessage] Error: Channel closing: too late to send/recv, messages will be lost
1659969083683 RemoteAgent ERROR unable to stop listener: [Exception... "Component returned failure code: 0x8000ffff (NS_ERROR_UNEXPECTED) [nsIWindowMediator.getEnumerator]" nsresult: "0x8000ffff (NS_ERROR_UNEXPECTED)" location: "JS frame :: chrome://remote/content/cdp/observers/TargetObserver.jsm :: stop :: line 64" data: no] Stack trace: stop()@TargetObserver.jsm:64
unwatchForTabs()@TargetList.jsm:70
unwatchForTargets()@TargetList.jsm:37
destructor()@TargetList.jsm:109
stop()@CDP.jsm:104
close()@RemoteAgent.jsm:138
1659969083728 geckodriver INFO Listening on 127.0.0.1:35529
1659969083762 mozrunner::runner INFO Running command: "/usr/bin/firefox" "--marionette" "-headless" "--remote-debugging-port" "56829" "--remote-allow-hosts" "localhost" "-no-remote" "-profile" "/tmp/rust_mozprofileHB5inh"
*** You are running in headless mode.
1659969084185 Marionette INFO Marionette enabled
Crash Annotation GraphicsCriticalError: |[0][GFX1-]: RenderCompositorSWGL failed mapping default framebuffer, no dt (t=0.837945) [GFX1-]: RenderCompositorSWGL failed mapping default framebuffer, no dt
console.warn: SearchSettings: "get: No settings file exists, new profile?" (new NotFoundError("Could not open the file at /tmp/rust_mozprofileHB5inh/search.json.mozlz4", (void 0)))
DevTools listening on ws://localhost:56829/devtools/browser/d05af9d9-f036-441a-98e6-811ab724c4f9
1659969085025 Marionette INFO Listening on port 39793
1659969085073 RemoteAgent WARN TLS certificate errors will be ignored for this session
JavaScript error: http://tools.iedb.org/static/js/sequence_validation.js, line 89: TypeError: document.querySelector(...) is null
JavaScript error: http://tools.iedb.org/static/js/sequence_validation.js, line 89: TypeError: document.querySelector(...) is null
JavaScript error: http://tools.iedb.org/static/js/sequence_validation.js, line 89: TypeError: document.querySelector(...) is null
1659969090581 Marionette INFO Stopped listening on port 39793
JavaScript error: resource:///modules/Interactions.jsm, line 209: NS_ERROR_FAILURE: Component returned failure code: 0x80004005 (NS_ERROR_FAILURE) [nsIUserIdleService.removeIdleObserver]
!!! error running onStopped callback: TypeError: callback is not a function
###!!! [Parent][RunMessage] Error: Channel closing: too late to send/recv, messages will be lost
1659969090772 RemoteAgent ERROR unable to stop listener: [Exception... "Component returned failure code: 0x8000ffff (NS_ERROR_UNEXPECTED) [nsIWindowMediator.getEnumerator]" nsresult: "0x8000ffff (NS_ERROR_UNEXPECTED)" location: "JS frame :: chrome://remote/content/cdp/observers/TargetObserver.jsm :: stop :: line 64" data: no] Stack trace: stop()@TargetObserver.jsm:64
unwatchForTabs()@TargetList.jsm:70
unwatchForTargets()@TargetList.jsm:37
destructor()@TargetList.jsm:109
stop()@CDP.jsm:104
close()@RemoteAgent.jsm:138
1659969823403 geckodriver INFO Listening on 127.0.0.1:51637
1659969823437 mozrunner::runner INFO Running command: "/usr/bin/firefox" "--marionette" "-headless" "--remote-debugging-port" "38577" "--remote-allow-hosts" "localhost" "-no-remote" "-profile" "/tmp/rust_mozprofiletf6YjH"
*** You are running in headless mode.
1659969823856 Marionette INFO Marionette enabled
Crash Annotation GraphicsCriticalError: |[0][GFX1-]: RenderCompositorSWGL failed mapping default framebuffer, no dt (t=0.850006) [GFX1-]: RenderCompositorSWGL failed mapping default framebuffer, no dt
console.warn: SearchSettings: "get: No settings file exists, new profile?" (new NotFoundError("Could not open the file at /tmp/rust_mozprofiletf6YjH/search.json.mozlz4", (void 0)))
DevTools listening on ws://localhost:38577/devtools/browser/9c12e79c-b833-473c-9f91-f44af2a57000
1659969824726 Marionette INFO Listening on port 46451
1659969824747 RemoteAgent WARN TLS certificate errors will be ignored for this session
JavaScript error: http://tools.iedb.org/static/js/sequence_validation.js, line 89: TypeError: document.querySelector(...) is null
JavaScript error: http://tools.iedb.org/static/js/sequence_validation.js, line 89: TypeError: document.querySelector(...) is null
JavaScript error: http://tools.iedb.org/static/js/sequence_validation.js, line 89: TypeError: document.querySelector(...) is null
1659969829243 Marionette INFO Stopped listening on port 46451
JavaScript error: resource:///modules/Interactions.jsm, line 209: NS_ERROR_FAILURE: Component returned failure code: 0x80004005 (NS_ERROR_FAILURE) [nsIUserIdleService.removeIdleObserver]
!!! error running onStopped callback: TypeError: callback is not a function
###!!! [Parent][RunMessage] Error: Channel closing: too late to send/recv, messages will be lost
1659969829435 RemoteAgent ERROR unable to stop listener: [Exception... "Component returned failure code: 0x8000ffff (NS_ERROR_UNEXPECTED) [nsIWindowMediator.getEnumerator]" nsresult: "0x8000ffff (NS_ERROR_UNEXPECTED)" location: "JS frame :: chrome://remote/content/cdp/observers/TargetObserver.jsm :: stop :: line 64" data: no] Stack trace: stop()@TargetObserver.jsm:64
unwatchForTabs()@TargetList.jsm:70
unwatchForTargets()@TargetList.jsm:37
destructor()@TargetList.jsm:109
stop()@CDP.jsm:104
close()@RemoteAgent.jsm:138
1659969829478 geckodriver INFO Listening on 127.0.0.1:47317
1659969829512 mozrunner::runner INFO Running command: "/usr/bin/firefox" "--marionette" "-headless" "--remote-debugging-port" "35775" "--remote-allow-hosts" "localhost" "-no-remote" "-profile" "/tmp/rust_mozprofilegYCUDf"
*** You are running in headless mode.
1659969829934 Marionette INFO Marionette enabled
Crash Annotation GraphicsCriticalError: |[0][GFX1-]: RenderCompositorSWGL failed mapping default framebuffer, no dt (t=0.837842) [GFX1-]: RenderCompositorSWGL failed mapping default framebuffer, no dt
console.warn: SearchSettings: "get: No settings file exists, new profile?" (new NotFoundError("Could not open the file at /tmp/rust_mozprofilegYCUDf/search.json.mozlz4", (void 0)))
DevTools listening on ws://localhost:35775/devtools/browser/03e65e65-95cf-4444-8f65-55f701417340
1659969830789 Marionette INFO Listening on port 44969
1659969830823 RemoteAgent WARN TLS certificate errors will be ignored for this session
JavaScript error: http://tools.iedb.org/static/js/sequence_validation.js, line 89: TypeError: document.querySelector(...) is null
JavaScript error: http://tools.iedb.org/static/js/sequence_validation.js, line 89: TypeError: document.querySelector(...) is null
JavaScript error: http://tools.iedb.org/static/js/sequence_validation.js, line 89: TypeError: document.querySelector(...) is null
1659969837269 Marionette INFO Stopped listening on port 44969
JavaScript error: resource:///modules/Interactions.jsm, line 209: NS_ERROR_FAILURE: Component returned failure code: 0x80004005 (NS_ERROR_FAILURE) [nsIUserIdleService.removeIdleObserver]
!!! error running onStopped callback: TypeError: callback is not a function
###!!! [Child][RunMessage] Error: Channel closing: too late to send/recv, messages will be lost
###!!! [Parent][RunMessage] Error: Channel closing: too late to send/recv, messages will be lost
1659969837462 RemoteAgent ERROR unable to stop listener: [Exception... "Component returned failure code: 0x8000ffff (NS_ERROR_UNEXPECTED) [nsIWindowMediator.getEnumerator]" nsresult: "0x8000ffff (NS_ERROR_UNEXPECTED)" location: "JS frame :: chrome://remote/content/cdp/observers/TargetObserver.jsm :: stop :: line 64" data: no] Stack trace: stop()@TargetObserver.jsm:64
unwatchForTabs()@TargetList.jsm:70
unwatchForTargets()@TargetList.jsm:37
destructor()@TargetList.jsm:109
stop()@CDP.jsm:104
close()@RemoteAgent.jsm:138