-
Notifications
You must be signed in to change notification settings - Fork 1
/
Copy pathgeckodriver.log
10495 lines (9834 loc) · 896 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
1631578645338 geckodriver INFO Listening on 127.0.0.1:56559
1631578646290 mozrunner::runner INFO Running command: "/usr/bin/firefox" "--marionette" "-foreground" "-no-remote" "-profile" "/tmp/rust_mozprofilept8Wjg"
console.error: Enterprise Policies:
Error parsing JSON file
1631578653252 Marionette INFO Marionette enabled
console.warn: SearchSettings: "get: No settings file exists, new profile?" (new NotFoundError("Could not open the file at /tmp/rust_mozprofilept8Wjg/search.json.mozlz4", (void 0)))
console.error: Region.jsm: "Error fetching region" (new Error("TIMEOUT", "resource://gre/modules/Region.jsm", 772))
console.error: Region.jsm: "Failed to fetch region" (new Error("TIMEOUT", "resource://gre/modules/Region.jsm", 419))
1631578669192 Marionette INFO Listening on port 44615
1631578669266 Marionette WARN TLS certificate errors will be ignored for this session
console.error: (new Error("Connection closed before committing the transaction.", "resource://gre/modules/Sqlite.jsm", 687))
1631578686026 Marionette INFO Stopped listening on port 44615
1631578720917 geckodriver INFO Listening on 127.0.0.1:41027
1631578720934 mozrunner::runner INFO Running command: "/usr/bin/firefox" "--marionette" "-foreground" "-no-remote" "-profile" "/tmp/rust_mozprofileqalW7n"
console.error: Enterprise Policies:
Error parsing JSON file
1631578721552 Marionette INFO Marionette enabled
console.warn: SearchSettings: "get: No settings file exists, new profile?" (new NotFoundError("Could not open the file at /tmp/rust_mozprofileqalW7n/search.json.mozlz4", (void 0)))
console.error: Region.jsm: "Error fetching region" (new Error("TIMEOUT", "resource://gre/modules/Region.jsm", 772))
console.error: Region.jsm: "Failed to fetch region" (new Error("TIMEOUT", "resource://gre/modules/Region.jsm", 419))
1631578733782 Marionette INFO Listening on port 46631
1631578733860 Marionette WARN TLS certificate errors will be ignored for this session
1631578747991 Marionette INFO Stopped listening on port 46631
1631578838431 geckodriver INFO Listening on 127.0.0.1:49885
1631578838448 mozrunner::runner INFO Running command: "/usr/bin/firefox" "--marionette" "-foreground" "-no-remote" "-profile" "/tmp/rust_mozprofilee3PSa1"
console.error: Enterprise Policies:
Error parsing JSON file
1631578839151 Marionette INFO Marionette enabled
console.warn: SearchSettings: "get: No settings file exists, new profile?" (new NotFoundError("Could not open the file at /tmp/rust_mozprofilee3PSa1/search.json.mozlz4", (void 0)))
console.error: Region.jsm: "Error fetching region" (new Error("TIMEOUT", "resource://gre/modules/Region.jsm", 772))
console.error: Region.jsm: "Failed to fetch region" (new Error("TIMEOUT", "resource://gre/modules/Region.jsm", 419))
1631578851702 Marionette INFO Listening on port 33209
1631578851775 Marionette WARN TLS certificate errors will be ignored for this session
console.warn: LoginRecipes: "getRecipes: falling back to a synchronous message for:" "https://m.facebook.com"
JavaScript error: resource://devtools/server/actors/network-monitor/network-event-actor.js, line 108: Error: Got a request https://static.xx.fbcdn.net/rsrc.php/v3/y5/l/0,cross/9u32mt5rGoX.css?_nc_x=Ij3Wp8lg5Kz without a browsingContextID set
JavaScript error: resource://devtools/server/actors/network-monitor/network-event-actor.js, line 108: Error: Got a request https://static.xx.fbcdn.net/rsrc.php/v3/y1/l/0,cross/IubRTz9mS2_.css?_nc_x=Ij3Wp8lg5Kz without a browsingContextID set
JavaScript error: resource://devtools/server/actors/network-monitor/network-event-actor.js, line 108: Error: Got a request https://static.xx.fbcdn.net/rsrc.php/v3/yw/l/0,cross/Wj1RQxTNsR9.css?_nc_x=Ij3Wp8lg5Kz without a browsingContextID set
JavaScript error: resource://devtools/server/actors/network-monitor/network-event-actor.js, line 108: Error: Got a request https://static.xx.fbcdn.net/rsrc.php/v3/y6/l/0,cross/Ln2PxSqwzPm.css?_nc_x=Ij3Wp8lg5Kz without a browsingContextID set
console.warn: LoginRecipes: "getRecipes: falling back to a synchronous message for:" "https://m.facebook.com"
console.error: "stylesheets: fetch failed for https://static.xx.fbcdn.net/rsrc.php/v3/y6/l/0,cross/Ln2PxSqwzPm.css?_nc_x=Ij3Wp8lg5Kz, using system principal instead."
console.error: "stylesheets: fetch failed for https://static.xx.fbcdn.net/rsrc.php/v3/y6/l/0,cross/Ln2PxSqwzPm.css?_nc_x=Ij3Wp8lg5Kz, using system principal instead."
console.error: (new Error("Connection closed, pending request to server0.conn0.child4/pagestyle27, type getLayout failed\n\nRequest stack:\nrequest@resource://devtools/shared/protocol/Front.js:292:14\ngenerateRequestMethods/</frontProto[name]@resource://devtools/shared/protocol/Front/FrontClassWithSpec.js:46:19\nupdateBoxModel/lastRequest<@resource://devtools/client/inspector/boxmodel/box-model.js:177:36\nupdateBoxModel@resource://devtools/client/inspector/boxmodel/box-model.js:217:18\n_emit@resource://devtools/shared/event-emitter.js:226:34\nemit@resource://devtools/shared/event-emitter.js:172:18\nemit@resource://devtools/shared/event-emitter.js:324:18\nonReflowInSelection@resource://devtools/client/inspector/inspector.js:1549:10\n_emit@resource://devtools/shared/event-emitter.js:226:34\nemit@resource://devtools/shared/event-emitter.js:172:18\nemit@resource://devtools/shared/event-emitter.js:324:18\nonPacket@resource://devtools/shared/protocol/Front.js:336:13\nonPacket@resource://devtools/client/devtools-client.js:482:13\nsend/<@resource://devtools/shared/transport/local-transport.js:68:25\nexports.makeInfallible/<@resource://devtools/shared/ThreadSafeDevToolsUtils.js:103:22\nexports.makeInfallible/<@resource://devtools/shared/ThreadSafeDevToolsUtils.js:103:22\n", "resource://devtools/shared/protocol/Front.js", 103))
console.error: (new Error("Connection closed, pending request to server0.conn0.child4/pagestyle27, type getApplied failed\n\nRequest stack:\nrequest@resource://devtools/shared/protocol/Front.js:292:14\ngenerateRequestMethods/</frontProto[name]@resource://devtools/shared/protocol/Front/FrontClassWithSpec.js:46:19\ngetApplied@resource://devtools/client/fronts/page-style.js:59:29\nupdateBoxModel/lastRequest<@resource://devtools/client/inspector/boxmodel/box-model.js:181:44\n", "resource://devtools/shared/protocol/Front.js", 103))
console.log: WebExtensions: reset-default-search: starting.
console.log: WebExtensions: reset-default-search: No addons in our list are installed.
1631579384297 geckodriver INFO Listening on 127.0.0.1:59537
1631579384325 mozrunner::runner INFO Running command: "/usr/bin/firefox" "--marionette" "-foreground" "-no-remote" "-profile" "/tmp/rust_mozprofileuu1vb2"
console.error: Enterprise Policies:
Error parsing JSON file
1631579388157 Marionette INFO Marionette enabled
1631579389399 Marionette INFO Stopped listening on port 33209
console.warn: SearchSettings: "get: No settings file exists, new profile?" (new NotFoundError("Could not open the file at /tmp/rust_mozprofileuu1vb2/search.json.mozlz4", (void 0)))
console.error: Region.jsm: "Error fetching region" (new Error("TIMEOUT", "resource://gre/modules/Region.jsm", 772))
console.error: Region.jsm: "Failed to fetch region" (new Error("TIMEOUT", "resource://gre/modules/Region.jsm", 419))
1631579400056 Marionette INFO Listening on port 44999
1631579400137 Marionette WARN TLS certificate errors will be ignored for this session
1631579434702 Marionette INFO Stopped listening on port 44999
###!!! [Parent][RunMessage] Error: Channel closing: too late to send/recv, messages will be lost
1631579447573 geckodriver INFO Listening on 127.0.0.1:41345
1631579447587 mozrunner::runner INFO Running command: "/usr/bin/firefox" "--marionette" "-foreground" "-no-remote" "-profile" "/tmp/rust_mozprofilemnh9rQ"
console.error: Enterprise Policies:
Error parsing JSON file
1631579448214 Marionette INFO Marionette enabled
console.warn: SearchSettings: "get: No settings file exists, new profile?" (new NotFoundError("Could not open the file at /tmp/rust_mozprofilemnh9rQ/search.json.mozlz4", (void 0)))
console.error: Region.jsm: "Error fetching region" (new Error("TIMEOUT", "resource://gre/modules/Region.jsm", 772))
console.error: Region.jsm: "Failed to fetch region" (new Error("TIMEOUT", "resource://gre/modules/Region.jsm", 419))
1631579461032 Marionette INFO Listening on port 43769
1631579461111 Marionette WARN TLS certificate errors will be ignored for this session
1631579501142 Marionette INFO Stopped listening on port 43769
###!!! [Parent][RunMessage] Error: Channel closing: too late to send/recv, messages will be lost
1631579513834 geckodriver INFO Listening on 127.0.0.1:45991
1631579513852 mozrunner::runner INFO Running command: "/usr/bin/firefox" "--marionette" "-foreground" "-no-remote" "-profile" "/tmp/rust_mozprofileQC4BzT"
console.error: Enterprise Policies:
Error parsing JSON file
1631579514476 Marionette INFO Marionette enabled
console.warn: SearchSettings: "get: No settings file exists, new profile?" (new NotFoundError("Could not open the file at /tmp/rust_mozprofileQC4BzT/search.json.mozlz4", (void 0)))
console.error: Region.jsm: "Error fetching region" (new Error("TIMEOUT", "resource://gre/modules/Region.jsm", 772))
console.error: Region.jsm: "Failed to fetch region" (new Error("TIMEOUT", "resource://gre/modules/Region.jsm", 419))
1631579528458 Marionette INFO Listening on port 41733
1631579528503 Marionette WARN TLS certificate errors will be ignored for this session
JavaScript error: resource://devtools/server/actors/network-monitor/network-event-actor.js, line 108: Error: Got a request https://static.xx.fbcdn.net/rsrc.php/v3/y5/l/0,cross/9u32mt5rGoX.css?_nc_x=Ij3Wp8lg5Kz without a browsingContextID set
JavaScript error: resource://devtools/server/actors/network-monitor/network-event-actor.js, line 108: Error: Got a request https://static.xx.fbcdn.net/rsrc.php/v3/yr/l/0,cross/klFMTAWNiIy.css?_nc_x=Ij3Wp8lg5Kz without a browsingContextID set
JavaScript error: resource://devtools/server/actors/network-monitor/network-event-actor.js, line 108: Error: Got a request https://static.xx.fbcdn.net/rsrc.php/v3/yw/l/0,cross/Wj1RQxTNsR9.css?_nc_x=Ij3Wp8lg5Kz without a browsingContextID set
JavaScript error: resource://devtools/server/actors/network-monitor/network-event-actor.js, line 108: Error: Got a request https://static.xx.fbcdn.net/rsrc.php/v3/y6/l/0,cross/Ln2PxSqwzPm.css?_nc_x=Ij3Wp8lg5Kz without a browsingContextID set
1631579634257 geckodriver INFO Listening on 127.0.0.1:49171
1631579634278 mozrunner::runner INFO Running command: "/usr/bin/firefox" "--marionette" "-foreground" "-no-remote" "-profile" "/tmp/rust_mozprofileW67GEK"
console.error: Enterprise Policies:
Error parsing JSON file
1631579634918 Marionette INFO Marionette enabled
1631579636958 Marionette INFO Stopped listening on port 41733
###!!! [Parent][RunMessage] Error: Channel closing: too late to send/recv, messages will be lost
console.warn: SearchSettings: "get: No settings file exists, new profile?" (new NotFoundError("Could not open the file at /tmp/rust_mozprofileW67GEK/search.json.mozlz4", (void 0)))
console.error: Region.jsm: "Error fetching region" (new Error("TIMEOUT", "resource://gre/modules/Region.jsm", 772))
console.error: Region.jsm: "Failed to fetch region" (new Error("TIMEOUT", "resource://gre/modules/Region.jsm", 419))
1631579649375 Marionette INFO Listening on port 46761
1631579649428 Marionette WARN TLS certificate errors will be ignored for this session
1631579718934 Marionette INFO Stopped listening on port 46761
###!!! [Parent][RunMessage] Error: Channel closing: too late to send/recv, messages will be lost
1631579786298 geckodriver INFO Listening on 127.0.0.1:51767
1631579786313 mozrunner::runner INFO Running command: "/usr/bin/firefox" "--marionette" "-foreground" "-no-remote" "-profile" "/tmp/rust_mozprofileQYOrdP"
console.error: Enterprise Policies:
Error parsing JSON file
1631579787154 Marionette INFO Marionette enabled
console.warn: SearchSettings: "get: No settings file exists, new profile?" (new NotFoundError("Could not open the file at /tmp/rust_mozprofileQYOrdP/search.json.mozlz4", (void 0)))
console.error: Region.jsm: "Error fetching region" (new Error("TIMEOUT", "resource://gre/modules/Region.jsm", 772))
console.error: Region.jsm: "Failed to fetch region" (new Error("TIMEOUT", "resource://gre/modules/Region.jsm", 419))
1631579799253 Marionette INFO Listening on port 46359
1631579799372 Marionette WARN TLS certificate errors will be ignored for this session
console.warn: LoginRecipes: "getRecipes: falling back to a synchronous message for:" "https://www.facebook.com"
console.warn: LoginRecipes: "getRecipes: falling back to a synchronous message for:" "https://www.facebook.com"
console.warn: LoginRecipes: "getRecipes: falling back to a synchronous message for:" "https://www.facebook.com"
1631579909184 geckodriver INFO Listening on 127.0.0.1:49591
1631579909202 mozrunner::runner INFO Running command: "/usr/bin/firefox" "--marionette" "-foreground" "-no-remote" "-profile" "/tmp/rust_mozprofilemuq5Xw"
console.error: Enterprise Policies:
Error parsing JSON file
1631579910893 Marionette INFO Marionette enabled
1631579911811 Marionette INFO Stopped listening on port 46359
console.warn: SearchSettings: "get: No settings file exists, new profile?" (new NotFoundError("Could not open the file at /tmp/rust_mozprofilemuq5Xw/search.json.mozlz4", (void 0)))
console.error: Region.jsm: "Error fetching region" (new Error("TIMEOUT", "resource://gre/modules/Region.jsm", 772))
console.error: Region.jsm: "Failed to fetch region" (new Error("TIMEOUT", "resource://gre/modules/Region.jsm", 419))
1631579925124 Marionette INFO Listening on port 34007
1631579925200 Marionette WARN TLS certificate errors will be ignored for this session
console.log: WebExtensions: reset-default-search: starting.
console.log: WebExtensions: reset-default-search: No addons in our list are installed.
console.error: Region.jsm: "Error fetching region" (new Error("TIMEOUT", "resource://gre/modules/Region.jsm", 772))
console.error: Region.jsm: "Failed to fetch region" (new Error("TIMEOUT", "resource://gre/modules/Region.jsm", 419))
1631583282351 geckodriver INFO Listening on 127.0.0.1:53329
1631583282359 Marionette INFO Stopped listening on port 34007
1631583282362 mozrunner::runner INFO Running command: "/usr/bin/firefox" "--marionette" "-foreground" "-no-remote" "-profile" "/tmp/rust_mozprofileNnJm2j"
console.error: Enterprise Policies:
Error parsing JSON file
1631583283001 Marionette INFO Marionette enabled
console.warn: SearchSettings: "get: No settings file exists, new profile?" (new NotFoundError("Could not open the file at /tmp/rust_mozprofileNnJm2j/search.json.mozlz4", (void 0)))
console.error: Region.jsm: "Error fetching region" (new Error("TIMEOUT", "resource://gre/modules/Region.jsm", 772))
console.error: Region.jsm: "Failed to fetch region" (new Error("TIMEOUT", "resource://gre/modules/Region.jsm", 419))
1631583297270 Marionette INFO Listening on port 35927
1631583297330 Marionette WARN TLS certificate errors will be ignored for this session
1631583337854 Marionette INFO Stopped listening on port 35927
###!!! [Parent][RunMessage] Error: Channel closing: too late to send/recv, messages will be lost
1631583373607 geckodriver INFO Listening on 127.0.0.1:40325
1631583373624 mozrunner::runner INFO Running command: "/usr/bin/firefox" "--marionette" "-foreground" "-no-remote" "-profile" "/tmp/rust_mozprofileWZbIgY"
console.error: Enterprise Policies:
Error parsing JSON file
1631583374249 Marionette INFO Marionette enabled
console.warn: SearchSettings: "get: No settings file exists, new profile?" (new NotFoundError("Could not open the file at /tmp/rust_mozprofileWZbIgY/search.json.mozlz4", (void 0)))
console.error: Region.jsm: "Error fetching region" (new Error("TIMEOUT", "resource://gre/modules/Region.jsm", 772))
console.error: Region.jsm: "Failed to fetch region" (new Error("TIMEOUT", "resource://gre/modules/Region.jsm", 419))
1631583387489 Marionette INFO Listening on port 37909
1631583387563 Marionette WARN TLS certificate errors will be ignored for this session
console.warn: LoginRecipes: "getRecipes: falling back to a synchronous message for:" "https://www.facebook.com"
1631583497657 geckodriver INFO Listening on 127.0.0.1:32873
1631583497676 mozrunner::runner INFO Running command: "/usr/bin/firefox" "--marionette" "-foreground" "-no-remote" "-profile" "/tmp/rust_mozprofileZhZJle"
console.error: Enterprise Policies:
Error parsing JSON file
1631583499910 Marionette INFO Marionette enabled
1631583506563 Marionette INFO Stopped listening on port 37909
###!!! [Parent][RunMessage] Error: Channel closing: too late to send/recv, messages will be lost
console.warn: SearchSettings: "get: No settings file exists, new profile?" (new NotFoundError("Could not open the file at /tmp/rust_mozprofileZhZJle/search.json.mozlz4", (void 0)))
console.error: Region.jsm: "Error fetching region" (new Error("TIMEOUT", "resource://gre/modules/Region.jsm", 772))
console.error: Region.jsm: "Failed to fetch region" (new Error("TIMEOUT", "resource://gre/modules/Region.jsm", 419))
1631583512913 Marionette INFO Listening on port 39457
1631583513022 Marionette WARN TLS certificate errors will be ignored for this session
JavaScript error: resource://gre/actors/AutoCompleteChild.jsm, line 125: Error: Invalid autocomplete selectedIndex
JavaScript error: resource://gre/actors/AutoCompleteChild.jsm, line 125: Error: Invalid autocomplete selectedIndex
JavaScript error: resource://gre/modules/LoginManagerChild.jsm, line 194: NS_ERROR_XPC_JAVASCRIPT_ERROR_WITH_DETAILS: [JavaScript Error: "Invalid autocomplete selectedIndex" {file: "resource://gre/actors/AutoCompleteChild.jsm" line: 125}]'[JavaScript Error: "Invalid autocomplete selectedIndex" {file: "resource://gre/actors/AutoCompleteChild.jsm" line: 125}]' when calling method: [nsIAutoCompletePopup::selectedIndex]
1631583543356 Marionette INFO Stopped listening on port 39457
1631583583113 geckodriver INFO Listening on 127.0.0.1:42227
1631583583129 mozrunner::runner INFO Running command: "/usr/bin/firefox" "--marionette" "-foreground" "-no-remote" "-profile" "/tmp/rust_mozprofileDh4w7O"
console.error: Enterprise Policies:
Error parsing JSON file
1631583583756 Marionette INFO Marionette enabled
console.warn: SearchSettings: "get: No settings file exists, new profile?" (new NotFoundError("Could not open the file at /tmp/rust_mozprofileDh4w7O/search.json.mozlz4", (void 0)))
console.error: Region.jsm: "Error fetching region" (new Error("TIMEOUT", "resource://gre/modules/Region.jsm", 772))
console.error: Region.jsm: "Failed to fetch region" (new Error("TIMEOUT", "resource://gre/modules/Region.jsm", 419))
1631583596188 Marionette INFO Listening on port 41673
1631583596294 Marionette WARN TLS certificate errors will be ignored for this session
JavaScript error: resource://gre/actors/AutoCompleteChild.jsm, line 125: Error: Invalid autocomplete selectedIndex
JavaScript error: resource://gre/actors/AutoCompleteChild.jsm, line 125: Error: Invalid autocomplete selectedIndex
JavaScript error: resource://gre/modules/LoginManagerChild.jsm, line 194: NS_ERROR_XPC_JAVASCRIPT_ERROR_WITH_DETAILS: [JavaScript Error: "Invalid autocomplete selectedIndex" {file: "resource://gre/actors/AutoCompleteChild.jsm" line: 125}]'[JavaScript Error: "Invalid autocomplete selectedIndex" {file: "resource://gre/actors/AutoCompleteChild.jsm" line: 125}]' when calling method: [nsIAutoCompletePopup::selectedIndex]
1631583611751 Marionette WARN TimedPromise timed out after 500 ms: stacktrace:
TimedPromise/<@chrome://marionette/content/sync.js:237:19
TimedPromise@chrome://marionette/content/sync.js:222:10
interaction.flushEventLoop@chrome://marionette/content/interaction.js:431:10
webdriverClickElement@chrome://marionette/content/interaction.js:179:31
JavaScript error: https://talesdaily.com/wp-content/plugins/ad-ace/assets/js/slideup.js?ver=0.1, line 22: ReferenceError: jQuery is not defined
JavaScript error: https://talesdaily.com/wp-includes/js/jquery/jquery-migrate.min.js?ver=3.3.2, line 2: ReferenceError: jQuery is not defined
JavaScript error: https://talesdaily.com/wp-content/themes/hueman-pro/assets/front/js/scripts.min.js?ver=1.4.16, line 7: ReferenceError: _ is not defined
JavaScript error: , line 0: uncaught exception: Object
JavaScript error: , line 0: uncaught exception: Object
JavaScript error: , line 0: uncaught exception: Object
JavaScript error: https://static.xx.fbcdn.net/rsrc.php/v3im4T4/yI/l/es_LA/Tmn9VoDLxDW.js?_nc_x=qN6fN0Jck0O, line 106: cancelled: operation is cancelled: destroyed
JavaScript error: , line 0: TypeError: NetworkError when attempting to fetch resource.
JavaScript error: , line 0: TypeError: NetworkError when attempting to fetch resource.
JavaScript error: , line 0: TypeError: NetworkError when attempting to fetch resource.
console.log: WebExtensions: reset-default-search: starting.
console.log: WebExtensions: reset-default-search: No addons in our list are installed.
1631584100793 Marionette INFO Stopped listening on port 41673
1631584111725 geckodriver INFO Listening on 127.0.0.1:52295
1631584111790 mozrunner::runner INFO Running command: "/usr/bin/firefox" "--marionette" "-foreground" "-no-remote" "-profile" "/tmp/rust_mozprofileuWai1A"
console.error: Enterprise Policies:
Error parsing JSON file
1631584113382 Marionette INFO Marionette enabled
console.warn: SearchSettings: "get: No settings file exists, new profile?" (new NotFoundError("Could not open the file at /tmp/rust_mozprofileuWai1A/search.json.mozlz4", (void 0)))
console.error: Region.jsm: "Error fetching region" (new Error("TIMEOUT", "resource://gre/modules/Region.jsm", 772))
console.error: Region.jsm: "Failed to fetch region" (new Error("TIMEOUT", "resource://gre/modules/Region.jsm", 419))
1631584128797 Marionette INFO Listening on port 46619
1631584128888 Marionette WARN TLS certificate errors will be ignored for this session
JavaScript error: resource://gre/actors/AutoCompleteChild.jsm, line 125: Error: Invalid autocomplete selectedIndex
JavaScript error: resource://gre/actors/AutoCompleteChild.jsm, line 125: Error: Invalid autocomplete selectedIndex
JavaScript error: resource://gre/modules/LoginManagerChild.jsm, line 194: NS_ERROR_XPC_JAVASCRIPT_ERROR_WITH_DETAILS: [JavaScript Error: "Invalid autocomplete selectedIndex" {file: "resource://gre/actors/AutoCompleteChild.jsm" line: 125}]'[JavaScript Error: "Invalid autocomplete selectedIndex" {file: "resource://gre/actors/AutoCompleteChild.jsm" line: 125}]' when calling method: [nsIAutoCompletePopup::selectedIndex]
1631584152252 Marionette WARN TimedPromise timed out after 500 ms: stacktrace:
TimedPromise/<@chrome://marionette/content/sync.js:237:19
TimedPromise@chrome://marionette/content/sync.js:222:10
interaction.flushEventLoop@chrome://marionette/content/interaction.js:431:10
webdriverClickElement@chrome://marionette/content/interaction.js:179:31
console.log: WebExtensions: reset-default-search: starting.
console.log: WebExtensions: reset-default-search: No addons in our list are installed.
console.error: Region.jsm: "Error fetching region" (new Error("TIMEOUT", "resource://gre/modules/Region.jsm", 772))
console.error: Region.jsm: "Failed to fetch region" (new Error("TIMEOUT", "resource://gre/modules/Region.jsm", 419))
1631584770898 Marionette INFO Stopped listening on port 46619
###!!! [Parent][RunMessage] Error: Channel closing: too late to send/recv, messages will be lost
1631584866798 geckodriver INFO Listening on 127.0.0.1:42533
1631584866835 mozrunner::runner INFO Running command: "/usr/bin/firefox" "--marionette" "-foreground" "-no-remote" "-profile" "/tmp/rust_mozprofileNvyAJb"
console.error: Enterprise Policies:
Error parsing JSON file
1631584867635 Marionette INFO Marionette enabled
console.warn: SearchSettings: "get: No settings file exists, new profile?" (new NotFoundError("Could not open the file at /tmp/rust_mozprofileNvyAJb/search.json.mozlz4", (void 0)))
console.error: Region.jsm: "Error fetching region" (new Error("TIMEOUT", "resource://gre/modules/Region.jsm", 772))
console.error: Region.jsm: "Failed to fetch region" (new Error("TIMEOUT", "resource://gre/modules/Region.jsm", 419))
1631584883114 Marionette INFO Listening on port 44173
1631584883211 Marionette WARN TLS certificate errors will be ignored for this session
1631584910726 Marionette INFO Stopped listening on port 44173
1631584931860 geckodriver INFO Listening on 127.0.0.1:38961
1631584931877 mozrunner::runner INFO Running command: "/usr/bin/firefox" "--marionette" "-foreground" "-no-remote" "-profile" "/tmp/rust_mozprofileoP7WBt"
console.error: Enterprise Policies:
Error parsing JSON file
1631584932496 Marionette INFO Marionette enabled
console.warn: SearchSettings: "get: No settings file exists, new profile?" (new NotFoundError("Could not open the file at /tmp/rust_mozprofileoP7WBt/search.json.mozlz4", (void 0)))
console.error: Region.jsm: "Error fetching region" (new Error("TIMEOUT", "resource://gre/modules/Region.jsm", 772))
console.error: Region.jsm: "Failed to fetch region" (new Error("TIMEOUT", "resource://gre/modules/Region.jsm", 419))
1631584949113 Marionette INFO Listening on port 35119
1631584949151 Marionette WARN TLS certificate errors will be ignored for this session
1631584981349 Marionette INFO Stopped listening on port 35119
1631585008177 geckodriver INFO Listening on 127.0.0.1:41759
1631585008192 mozrunner::runner INFO Running command: "/usr/bin/firefox" "--marionette" "-foreground" "-no-remote" "-profile" "/tmp/rust_mozprofile7KWM55"
console.error: Enterprise Policies:
Error parsing JSON file
1631585008817 Marionette INFO Marionette enabled
console.warn: SearchSettings: "get: No settings file exists, new profile?" (new NotFoundError("Could not open the file at /tmp/rust_mozprofile7KWM55/search.json.mozlz4", (void 0)))
console.error: Region.jsm: "Error fetching region" (new Error("TIMEOUT", "resource://gre/modules/Region.jsm", 772))
console.error: Region.jsm: "Failed to fetch region" (new Error("TIMEOUT", "resource://gre/modules/Region.jsm", 419))
1631585021732 Marionette INFO Listening on port 43457
1631585021829 Marionette WARN TLS certificate errors will be ignored for this session
1631585058547 Marionette INFO Stopped listening on port 43457
JavaScript error: resource://gre/modules/UrlClassifierListManager.jsm, line 446: NS_ERROR_NOT_INITIALIZED: Component returned failure code: 0xc1f30001 (NS_ERROR_NOT_INITIALIZED) [nsIUrlClassifierDBService.getTables]
###!!! [Parent][RunMessage] Error: Channel closing: too late to send/recv, messages will be lost
1631585061080 geckodriver INFO Listening on 127.0.0.1:44233
1631585061097 mozrunner::runner INFO Running command: "/usr/bin/firefox" "--marionette" "-foreground" "-no-remote" "-profile" "/tmp/rust_mozprofilef8og9B"
console.error: Enterprise Policies:
Error parsing JSON file
1631585061810 Marionette INFO Marionette enabled
console.warn: SearchSettings: "get: No settings file exists, new profile?" (new NotFoundError("Could not open the file at /tmp/rust_mozprofilef8og9B/search.json.mozlz4", (void 0)))
console.error: Region.jsm: "Error fetching region" (new Error("TIMEOUT", "resource://gre/modules/Region.jsm", 772))
console.error: Region.jsm: "Failed to fetch region" (new Error("TIMEOUT", "resource://gre/modules/Region.jsm", 419))
1631585076883 Marionette INFO Listening on port 38003
1631585077003 Marionette WARN TLS certificate errors will be ignored for this session
1631585240957 Marionette INFO Stopped listening on port 38003
1631585241672 geckodriver INFO Listening on 127.0.0.1:51291
1631585241686 mozrunner::runner INFO Running command: "/usr/bin/firefox" "--marionette" "-foreground" "-no-remote" "-profile" "/tmp/rust_mozprofilewmynwG"
console.error: Enterprise Policies:
Error parsing JSON file
1631585242315 Marionette INFO Marionette enabled
console.warn: SearchSettings: "get: No settings file exists, new profile?" (new NotFoundError("Could not open the file at /tmp/rust_mozprofilewmynwG/search.json.mozlz4", (void 0)))
console.error: Region.jsm: "Error fetching region" (new Error("TIMEOUT", "resource://gre/modules/Region.jsm", 772))
console.error: Region.jsm: "Failed to fetch region" (new Error("TIMEOUT", "resource://gre/modules/Region.jsm", 419))
1631585256067 Marionette INFO Listening on port 37321
1631585256124 Marionette WARN TLS certificate errors will be ignored for this session
JavaScript error: resource://gre/actors/AutoCompleteChild.jsm, line 125: Error: Invalid autocomplete selectedIndex
JavaScript error: resource://gre/actors/AutoCompleteChild.jsm, line 125: Error: Invalid autocomplete selectedIndex
JavaScript error: resource://gre/modules/LoginManagerChild.jsm, line 194: NS_ERROR_XPC_JAVASCRIPT_ERROR_WITH_DETAILS: [JavaScript Error: "Invalid autocomplete selectedIndex" {file: "resource://gre/actors/AutoCompleteChild.jsm" line: 125}]'[JavaScript Error: "Invalid autocomplete selectedIndex" {file: "resource://gre/actors/AutoCompleteChild.jsm" line: 125}]' when calling method: [nsIAutoCompletePopup::selectedIndex]
1631585273591 Marionette WARN TimedPromise timed out after 500 ms: stacktrace:
TimedPromise/<@chrome://marionette/content/sync.js:237:19
TimedPromise@chrome://marionette/content/sync.js:222:10
interaction.flushEventLoop@chrome://marionette/content/interaction.js:431:10
webdriverClickElement@chrome://marionette/content/interaction.js:179:31
JavaScript error: , line 0: NotFoundError: No such JSWindowActor 'MarionetteEvents'
1631585330559 Marionette INFO Stopped listening on port 37321
###!!! [Parent][RunMessage] Error: Channel closing: too late to send/recv, messages will be lost
1631585334037 geckodriver INFO Listening on 127.0.0.1:35751
1631585334054 mozrunner::runner INFO Running command: "/usr/bin/firefox" "--marionette" "-foreground" "-no-remote" "-profile" "/tmp/rust_mozprofilev2zpha"
console.error: Enterprise Policies:
Error parsing JSON file
1631585334674 Marionette INFO Marionette enabled
console.warn: SearchSettings: "get: No settings file exists, new profile?" (new NotFoundError("Could not open the file at /tmp/rust_mozprofilev2zpha/search.json.mozlz4", (void 0)))
console.error: Region.jsm: "Error fetching region" (new Error("TIMEOUT", "resource://gre/modules/Region.jsm", 772))
console.error: Region.jsm: "Failed to fetch region" (new Error("TIMEOUT", "resource://gre/modules/Region.jsm", 419))
1631585348459 Marionette INFO Listening on port 35803
1631585348580 Marionette WARN TLS certificate errors will be ignored for this session
JavaScript error: resource://gre/actors/AutoCompleteChild.jsm, line 125: Error: Invalid autocomplete selectedIndex
JavaScript error: resource://gre/actors/AutoCompleteChild.jsm, line 125: Error: Invalid autocomplete selectedIndex
JavaScript error: resource://gre/modules/LoginManagerChild.jsm, line 194: NS_ERROR_XPC_JAVASCRIPT_ERROR_WITH_DETAILS: [JavaScript Error: "Invalid autocomplete selectedIndex" {file: "resource://gre/actors/AutoCompleteChild.jsm" line: 125}]'[JavaScript Error: "Invalid autocomplete selectedIndex" {file: "resource://gre/actors/AutoCompleteChild.jsm" line: 125}]' when calling method: [nsIAutoCompletePopup::selectedIndex]
1631585406152 Marionette INFO Stopped listening on port 35803
1631585410333 geckodriver INFO Listening on 127.0.0.1:38223
1631585410350 mozrunner::runner INFO Running command: "/usr/bin/firefox" "--marionette" "-foreground" "-no-remote" "-profile" "/tmp/rust_mozprofile6uNCiN"
console.error: Enterprise Policies:
Error parsing JSON file
1631585411048 Marionette INFO Marionette enabled
console.warn: SearchSettings: "get: No settings file exists, new profile?" (new NotFoundError("Could not open the file at /tmp/rust_mozprofile6uNCiN/search.json.mozlz4", (void 0)))
console.error: Region.jsm: "Error fetching region" (new Error("TIMEOUT", "resource://gre/modules/Region.jsm", 772))
console.error: Region.jsm: "Failed to fetch region" (new Error("TIMEOUT", "resource://gre/modules/Region.jsm", 419))
1631585424297 Marionette INFO Listening on port 36557
1631585424371 Marionette WARN TLS certificate errors will be ignored for this session
console.log: WebExtensions: reset-default-search: starting.
console.log: WebExtensions: reset-default-search: No addons in our list are installed.
console.error: Region.jsm: "Error fetching region" (new Error("TIMEOUT", "resource://gre/modules/Region.jsm", 772))
console.error: Region.jsm: "Failed to fetch region" (new Error("TIMEOUT", "resource://gre/modules/Region.jsm", 419))
1631588256226 geckodriver INFO Listening on 127.0.0.1:39599
1631588256324 mozrunner::runner INFO Running command: "/usr/bin/firefox" "--marionette" "-foreground" "-no-remote" "-profile" "/tmp/rust_mozprofileaGRUl7"
console.error: Enterprise Policies:
Error parsing JSON file
1631588261429 Marionette INFO Marionette enabled
console.warn: SearchSettings: "get: No settings file exists, new profile?" (new NotFoundError("Could not open the file at /tmp/rust_mozprofileaGRUl7/search.json.mozlz4", (void 0)))
console.error: Region.jsm: "Error fetching region" (new Error("TIMEOUT", "resource://gre/modules/Region.jsm", 772))
console.error: Region.jsm: "Failed to fetch region" (new Error("TIMEOUT", "resource://gre/modules/Region.jsm", 419))
1631588279236 Marionette INFO Listening on port 36987
1631588279334 Marionette WARN TLS certificate errors will be ignored for this session
###!!! [Parent][MessageChannel] Error: (msgtype=0x190003,name=PBackgroundLocalStorageCache::Msg_Observe) Channel error: cannot send/recv
###!!! [Parent][MessageChannel] Error: (msgtype=0x190003,name=PBackgroundLocalStorageCache::Msg_Observe) Channel error: cannot send/recv
###!!! [Parent][MessageChannel] Error: (msgtype=0x5F0001,name=PIdleScheduler::Msg_IdleTime) Channel error: cannot send/recv
1631588360792 Marionette INFO Stopped listening on port 36987
1631588361520 geckodriver INFO Listening on 127.0.0.1:35879
1631588361536 mozrunner::runner INFO Running command: "/usr/bin/firefox" "--marionette" "-foreground" "-no-remote" "-profile" "/tmp/rust_mozprofilegbM41c"
console.error: Enterprise Policies:
Error parsing JSON file
1631588362470 Marionette INFO Marionette enabled
console.warn: SearchSettings: "get: No settings file exists, new profile?" (new NotFoundError("Could not open the file at /tmp/rust_mozprofilegbM41c/search.json.mozlz4", (void 0)))
console.error: Region.jsm: "Error fetching region" (new Error("TIMEOUT", "resource://gre/modules/Region.jsm", 772))
console.error: Region.jsm: "Failed to fetch region" (new Error("TIMEOUT", "resource://gre/modules/Region.jsm", 419))
1631588379911 Marionette INFO Listening on port 43333
1631588380089 Marionette WARN TLS certificate errors will be ignored for this session
JavaScript error: , line 0: NotFoundError: No such JSWindowActor 'MarionetteEvents'
JavaScript error: , line 0: NotFoundError: No such JSWindowActor 'MarionetteEvents'
JavaScript error: , line 0: NotFoundError: No such JSWindowActor 'MarionetteEvents'
JavaScript error: , line 0: NotFoundError: No such JSWindowActor 'MarionetteEvents'
JavaScript error: , line 0: NotFoundError: No such JSWindowActor 'MarionetteEvents'
JavaScript error: , line 0: NotFoundError: No such JSWindowActor 'MarionetteEvents'
JavaScript error: , line 0: NotFoundError: No such JSWindowActor 'MarionetteEvents'
JavaScript error: , line 0: NotFoundError: No such JSWindowActor 'MarionetteEvents'
###!!! [Child][RunMessage] Error: Channel closing: too late to send/recv, messages will be lost
###!!! [Child][RunMessage] Error: Channel closing: too late to send/recv, messages will be lost
###!!! [Child][RunMessage] Error: Channel closing: too late to send/recv, messages will be lost
###!!! [Child][RunMessage] Error: Channel closing: too late to send/recv, messages will be lost
###!!! [Child][RunMessage] Error: Channel closing: too late to send/recv, messages will be lost
###!!! [Child][RunMessage] Error: Channel closing: too late to send/recv, messages will be lost
###!!! [Child][RunMessage] Error: Channel closing: too late to send/recv, messages will be lost
###!!! [Child][RunMessage] Error: Channel closing: too late to send/recv, messages will be lost
###!!! [Child][RunMessage] Error: Channel closing: too late to send/recv, messages will be lost
1631588511125 Marionette INFO Stopped listening on port 43333
1631588511693 geckodriver INFO Listening on 127.0.0.1:57903
1631588511717 mozrunner::runner INFO Running command: "/usr/bin/firefox" "--marionette" "-foreground" "-no-remote" "-profile" "/tmp/rust_mozprofileDcZNU4"
console.error: Enterprise Policies:
Error parsing JSON file
1631588513132 Marionette INFO Marionette enabled
console.warn: SearchSettings: "get: No settings file exists, new profile?" (new NotFoundError("Could not open the file at /tmp/rust_mozprofileDcZNU4/search.json.mozlz4", (void 0)))
console.error: Region.jsm: "Error fetching region" (new Error("TIMEOUT", "resource://gre/modules/Region.jsm", 772))
console.error: Region.jsm: "Failed to fetch region" (new Error("TIMEOUT", "resource://gre/modules/Region.jsm", 419))
1631588536177 Marionette INFO Listening on port 43367
1631588536305 Marionette WARN TLS certificate errors will be ignored for this session
1631588881545 Marionette INFO Stopped listening on port 43367
###!!! [Parent][RunMessage] Error: Channel closing: too late to send/recv, messages will be lost
1631588894351 geckodriver INFO Listening on 127.0.0.1:41851
1631588894382 mozrunner::runner INFO Running command: "/usr/bin/firefox" "--marionette" "-foreground" "-no-remote" "-profile" "/tmp/rust_mozprofilenExFkg"
console.error: Enterprise Policies:
Error parsing JSON file
1631588895928 Marionette INFO Marionette enabled
console.warn: SearchSettings: "get: No settings file exists, new profile?" (new NotFoundError("Could not open the file at /tmp/rust_mozprofilenExFkg/search.json.mozlz4", (void 0)))
console.error: Region.jsm: "Error fetching region" (new Error("TIMEOUT", "resource://gre/modules/Region.jsm", 772))
console.error: Region.jsm: "Failed to fetch region" (new Error("TIMEOUT", "resource://gre/modules/Region.jsm", 419))
1631588907518 Marionette INFO Listening on port 34015
1631588907589 Marionette WARN TLS certificate errors will be ignored for this session
1631589019887 Marionette INFO Stopped listening on port 34015
1631589142913 geckodriver INFO Listening on 127.0.0.1:59771
1631589142936 mozrunner::runner INFO Running command: "/usr/bin/firefox" "--marionette" "-foreground" "-no-remote" "-profile" "/tmp/rust_mozprofileUajTdV"
console.error: Enterprise Policies:
Error parsing JSON file
1631589143929 Marionette INFO Marionette enabled
console.warn: SearchSettings: "get: No settings file exists, new profile?" (new NotFoundError("Could not open the file at /tmp/rust_mozprofileUajTdV/search.json.mozlz4", (void 0)))
console.error: Region.jsm: "Error fetching region" (new Error("TIMEOUT", "resource://gre/modules/Region.jsm", 772))
console.error: Region.jsm: "Failed to fetch region" (new Error("TIMEOUT", "resource://gre/modules/Region.jsm", 419))
1631589158559 Marionette INFO Listening on port 36665
1631589158617 Marionette WARN TLS certificate errors will be ignored for this session
JavaScript warning: https://static.xx.fbcdn.net/rsrc.php/v3iMyU4/y5/l/es_LA/6eUBC_s1K7Hb8Hk6PIRU7ZPo5Vo6IANIAeqOISA4_X8iKxpbY1sPNVzmC2m-LqQrQxKsFh1ZyeVfOvW5sqtyLC4lb3gpPG7IsayY2zecSLN8iPlaqU3FaIRFXNdYhD3Zq96mhYl89LcqLJoKcVAUaD7sLniR7UlfNDva3OspX0pjw2L8-qmJqDm4JQqIKwfDyAmSF9P8rVdbSHuIQ.js?_nc_x=qN6fN0Jck0O, line 638: WebGL context was lost.
Handler function threw an exception: [Exception... "Component returned failure code: 0x80040111 (NS_ERROR_NOT_AVAILABLE) [nsIHttpChannelInternal.remoteAddress]" nsresult: "0x80040111 (NS_ERROR_NOT_AVAILABLE)" location: "JS frame :: resource://devtools/server/actors/network-monitor/network-observer.js :: _onResponseHeader :: line 1043" data: no]
Stack: _onResponseHeader@resource://devtools/server/actors/network-monitor/network-observer.js:1043:5
_dispatchActivity@resource://devtools/server/actors/network-monitor/network-observer.js:620:14
NetworkObserver.prototype.observeActivity<@resource://devtools/server/actors/network-monitor/network-observer.js:729:12
exports.makeInfallible/<@resource://devtools/shared/ThreadSafeDevToolsUtils.js:103:22
Line: 1043, column: 0
console.error: ({})
Handler function threw an exception: TypeError: undefined has no properties
Stack: _getWaitTiming@resource://devtools/server/actors/network-monitor/network-observer.js:1142:1
_setupHarTimings@resource://devtools/server/actors/network-monitor/network-observer.js:1367:28
_onTransactionClose@resource://devtools/server/actors/network-monitor/network-observer.js:1090:27
_dispatchActivity@resource://devtools/server/actors/network-monitor/network-observer.js:623:14
NetworkObserver.prototype.observeActivity<@resource://devtools/server/actors/network-monitor/network-observer.js:729:12
exports.makeInfallible/<@resource://devtools/shared/ThreadSafeDevToolsUtils.js:103:22
Line: 1142, column: 1
console.error: (new TypeError("undefined has no properties", "resource://devtools/server/actors/network-monitor/network-observer.js", 1142))
console.log: WebExtensions: reset-default-search: starting.
console.log: WebExtensions: reset-default-search: No addons in our list are installed.
1631589557355 Marionette INFO Stopped listening on port 36665
###!!! [Parent][RunMessage] Error: Channel closing: too late to send/recv, messages will be lost
1631589566480 geckodriver INFO Listening on 127.0.0.1:50335
1631589566497 mozrunner::runner INFO Running command: "/usr/bin/firefox" "--marionette" "-foreground" "-no-remote" "-profile" "/tmp/rust_mozprofileWv0aGJ"
console.error: Enterprise Policies:
Error parsing JSON file
1631589567752 Marionette INFO Marionette enabled
console.warn: SearchSettings: "get: No settings file exists, new profile?" (new NotFoundError("Could not open the file at /tmp/rust_mozprofileWv0aGJ/search.json.mozlz4", (void 0)))
console.error: Region.jsm: "Error fetching region" (new Error("TIMEOUT", "resource://gre/modules/Region.jsm", 772))
console.error: Region.jsm: "Failed to fetch region" (new Error("TIMEOUT", "resource://gre/modules/Region.jsm", 419))
1631589582162 Marionette INFO Listening on port 33685
1631589582276 Marionette WARN TLS certificate errors will be ignored for this session
1631589739218 Marionette INFO Stopped listening on port 33685
1631590607752 geckodriver INFO Listening on 127.0.0.1:36715
1631590607775 mozrunner::runner INFO Running command: "/usr/bin/firefox" "--marionette" "-foreground" "-no-remote" "-profile" "/tmp/rust_mozprofileoHBkHh"
console.error: Enterprise Policies:
Error parsing JSON file
1631590608801 Marionette INFO Marionette enabled
console.warn: SearchSettings: "get: No settings file exists, new profile?" (new NotFoundError("Could not open the file at /tmp/rust_mozprofileoHBkHh/search.json.mozlz4", (void 0)))
console.error: Region.jsm: "Error fetching region" (new Error("TIMEOUT", "resource://gre/modules/Region.jsm", 772))
console.error: Region.jsm: "Failed to fetch region" (new Error("TIMEOUT", "resource://gre/modules/Region.jsm", 419))
1631590623967 Marionette INFO Listening on port 32977
1631590624130 Marionette WARN TLS certificate errors will be ignored for this session
1631590678142 Marionette WARN TimedPromise timed out after 500 ms: stacktrace:
TimedPromise/<@chrome://marionette/content/sync.js:237:19
TimedPromise@chrome://marionette/content/sync.js:222:10
interaction.flushEventLoop@chrome://marionette/content/interaction.js:431:10
webdriverClickElement@chrome://marionette/content/interaction.js:179:31
1631590785369 Marionette INFO Stopped listening on port 32977
###!!! [Parent][RunMessage] Error: Channel closing: too late to send/recv, messages will be lost
1631591228806 geckodriver INFO Listening on 127.0.0.1:34429
1631591228841 mozrunner::runner INFO Running command: "/usr/bin/firefox" "--marionette" "-foreground" "-no-remote" "-profile" "/tmp/rust_mozprofilem9AULN"
console.error: Enterprise Policies:
Error parsing JSON file
1631591229665 Marionette INFO Marionette enabled
console.warn: SearchSettings: "get: No settings file exists, new profile?" (new NotFoundError("Could not open the file at /tmp/rust_mozprofilem9AULN/search.json.mozlz4", (void 0)))
console.error: Region.jsm: "Error fetching region" (new Error("TIMEOUT", "resource://gre/modules/Region.jsm", 772))
console.error: Region.jsm: "Failed to fetch region" (new Error("TIMEOUT", "resource://gre/modules/Region.jsm", 419))
1631591240199 Marionette INFO Listening on port 40693
1631591240338 Marionette WARN TLS certificate errors will be ignored for this session
Handler function threw an exception: [Exception... "Component returned failure code: 0x80040111 (NS_ERROR_NOT_AVAILABLE) [nsIHttpChannelInternal.remoteAddress]" nsresult: "0x80040111 (NS_ERROR_NOT_AVAILABLE)" location: "JS frame :: resource://devtools/server/actors/network-monitor/network-observer.js :: _onResponseHeader :: line 1043" data: no]
Stack: _onResponseHeader@resource://devtools/server/actors/network-monitor/network-observer.js:1043:5
_dispatchActivity@resource://devtools/server/actors/network-monitor/network-observer.js:620:14
NetworkObserver.prototype.observeActivity<@resource://devtools/server/actors/network-monitor/network-observer.js:729:12
exports.makeInfallible/<@resource://devtools/shared/ThreadSafeDevToolsUtils.js:103:22
Line: 1043, column: 0
console.error: ({})
Handler function threw an exception: TypeError: undefined has no properties
Stack: _getWaitTiming@resource://devtools/server/actors/network-monitor/network-observer.js:1142:1
_setupHarTimings@resource://devtools/server/actors/network-monitor/network-observer.js:1367:28
_onTransactionClose@resource://devtools/server/actors/network-monitor/network-observer.js:1090:27
_dispatchActivity@resource://devtools/server/actors/network-monitor/network-observer.js:623:14
NetworkObserver.prototype.observeActivity<@resource://devtools/server/actors/network-monitor/network-observer.js:729:12
exports.makeInfallible/<@resource://devtools/shared/ThreadSafeDevToolsUtils.js:103:22
Line: 1142, column: 1
console.error: (new TypeError("undefined has no properties", "resource://devtools/server/actors/network-monitor/network-observer.js", 1142))
1631591420610 Marionette INFO Stopped listening on port 40693
1631591428214 geckodriver INFO Listening on 127.0.0.1:53313
1631591428228 mozrunner::runner INFO Running command: "/usr/bin/firefox" "--marionette" "-foreground" "-no-remote" "-profile" "/tmp/rust_mozprofilecXt4p4"
console.error: Enterprise Policies:
Error parsing JSON file
1631591428852 Marionette INFO Marionette enabled
console.warn: SearchSettings: "get: No settings file exists, new profile?" (new NotFoundError("Could not open the file at /tmp/rust_mozprofilecXt4p4/search.json.mozlz4", (void 0)))
console.error: Region.jsm: "Error fetching region" (new Error("TIMEOUT", "resource://gre/modules/Region.jsm", 772))
console.error: Region.jsm: "Failed to fetch region" (new Error("TIMEOUT", "resource://gre/modules/Region.jsm", 419))
1631591439776 Marionette INFO Listening on port 42771
1631591439823 Marionette WARN TLS certificate errors will be ignored for this session
1631591763468 Marionette INFO Stopped listening on port 42771
1631591769186 geckodriver INFO Listening on 127.0.0.1:57997
1631591769200 mozrunner::runner INFO Running command: "/usr/bin/firefox" "--marionette" "-foreground" "-no-remote" "-profile" "/tmp/rust_mozprofileLNRV1f"
console.error: Enterprise Policies:
Error parsing JSON file
1631591769817 Marionette INFO Marionette enabled
console.warn: SearchSettings: "get: No settings file exists, new profile?" (new NotFoundError("Could not open the file at /tmp/rust_mozprofileLNRV1f/search.json.mozlz4", (void 0)))
console.error: Region.jsm: "Error fetching region" (new Error("TIMEOUT", "resource://gre/modules/Region.jsm", 772))
console.error: Region.jsm: "Failed to fetch region" (new Error("TIMEOUT", "resource://gre/modules/Region.jsm", 419))
1631591780323 Marionette INFO Listening on port 35587
1631591780393 Marionette WARN TLS certificate errors will be ignored for this session
1631591884556 geckodriver INFO Listening on 127.0.0.1:52463
1631591884575 mozrunner::runner INFO Running command: "/usr/bin/firefox" "--marionette" "-foreground" "-no-remote" "-profile" "/tmp/rust_mozprofile51WRWq"
console.error: Enterprise Policies:
Error parsing JSON file
1631591885501 Marionette INFO Marionette enabled
1631591889076 Marionette INFO Stopped listening on port 35587
console.warn: SearchSettings: "get: No settings file exists, new profile?" (new NotFoundError("Could not open the file at /tmp/rust_mozprofile51WRWq/search.json.mozlz4", (void 0)))
console.error: Region.jsm: "Error fetching region" (new Error("TIMEOUT", "resource://gre/modules/Region.jsm", 772))
console.error: Region.jsm: "Failed to fetch region" (new Error("TIMEOUT", "resource://gre/modules/Region.jsm", 419))
1631591896613 Marionette INFO Listening on port 44631
1631591896693 Marionette WARN TLS certificate errors will be ignored for this session
console.log: WebExtensions: reset-default-search: starting.
console.log: WebExtensions: reset-default-search: No addons in our list are installed.
1631592306565 Marionette INFO Stopped listening on port 44631
###!!! [Parent][RunMessage] Error: Channel closing: too late to send/recv, messages will be lost
1631592312077 geckodriver INFO Listening on 127.0.0.1:60301
1631592312096 mozrunner::runner INFO Running command: "/usr/bin/firefox" "--marionette" "-foreground" "-no-remote" "-profile" "/tmp/rust_mozprofilexrfWId"
console.error: Enterprise Policies:
Error parsing JSON file
1631592312815 Marionette INFO Marionette enabled
console.warn: SearchSettings: "get: No settings file exists, new profile?" (new NotFoundError("Could not open the file at /tmp/rust_mozprofilexrfWId/search.json.mozlz4", (void 0)))
1631592323224 Marionette INFO Listening on port 46847
1631592323274 Marionette WARN TLS certificate errors will be ignored for this session
console.error: Region.jsm: "Error fetching region" (new Error("TIMEOUT", "resource://gre/modules/Region.jsm", 772))
console.error: Region.jsm: "Failed to fetch region" (new Error("TIMEOUT", "resource://gre/modules/Region.jsm", 419))
console.warn: LoginRecipes: "getRecipes: falling back to a synchronous message for:" "https://www.facebook.com"
JavaScript error: resource:///actors/ContextMenuChild.jsm, line 540: TypeError: doc is null
console.warn: LoginRecipes: "getRecipes: falling back to a synchronous message for:" "https://www.facebook.com"
Handler function threw an exception: [Exception... "Component returned failure code: 0x80040111 (NS_ERROR_NOT_AVAILABLE) [nsIHttpChannelInternal.remoteAddress]" nsresult: "0x80040111 (NS_ERROR_NOT_AVAILABLE)" location: "JS frame :: resource://devtools/server/actors/network-monitor/network-observer.js :: _onResponseHeader :: line 1043" data: no]
Stack: _onResponseHeader@resource://devtools/server/actors/network-monitor/network-observer.js:1043:5
_dispatchActivity@resource://devtools/server/actors/network-monitor/network-observer.js:620:14
NetworkObserver.prototype.observeActivity<@resource://devtools/server/actors/network-monitor/network-observer.js:729:12
exports.makeInfallible/<@resource://devtools/shared/ThreadSafeDevToolsUtils.js:103:22
Line: 1043, column: 0
console.error: ({})
Handler function threw an exception: TypeError: undefined has no properties
Stack: _getWaitTiming@resource://devtools/server/actors/network-monitor/network-observer.js:1142:1
_setupHarTimings@resource://devtools/server/actors/network-monitor/network-observer.js:1367:28
_onTransactionClose@resource://devtools/server/actors/network-monitor/network-observer.js:1090:27
_dispatchActivity@resource://devtools/server/actors/network-monitor/network-observer.js:623:14
NetworkObserver.prototype.observeActivity<@resource://devtools/server/actors/network-monitor/network-observer.js:729:12
exports.makeInfallible/<@resource://devtools/shared/ThreadSafeDevToolsUtils.js:103:22
Line: 1142, column: 1
console.error: (new TypeError("undefined has no properties", "resource://devtools/server/actors/network-monitor/network-observer.js", 1142))
console.warn: LoginRecipes: "getRecipes: falling back to a synchronous message for:" "https://www.facebook.com"
console.log: WebExtensions: reset-default-search: starting.
console.log: WebExtensions: reset-default-search: No addons in our list are installed.
1631592783294 geckodriver INFO Listening on 127.0.0.1:45207
1631592783309 mozrunner::runner INFO Running command: "/usr/bin/firefox" "--marionette" "-foreground" "-no-remote" "-profile" "/tmp/rust_mozprofileTqmAti"
console.error: Enterprise Policies:
Error parsing JSON file
1631592784185 Marionette INFO Marionette enabled
console.error: "Panel inspector:" (new TypeError("event is undefined", "resource://devtools/client/shared/telemetry.js", 700))
console.warn: SearchSettings: "get: No settings file exists, new profile?" (new NotFoundError("Could not open the file at /tmp/rust_mozprofileTqmAti/search.json.mozlz4", (void 0)))
1631592794065 Marionette INFO Stopped listening on port 46847
###!!! [Parent][RunMessage] Error: Channel closing: too late to send/recv, messages will be lost
console.error: Region.jsm: "Error fetching region" (new Error("TIMEOUT", "resource://gre/modules/Region.jsm", 772))
console.error: Region.jsm: "Failed to fetch region" (new Error("TIMEOUT", "resource://gre/modules/Region.jsm", 419))
1631592797532 Marionette INFO Listening on port 44115
1631592797651 Marionette WARN TLS certificate errors will be ignored for this session
Handler function threw an exception: [Exception... "Component returned failure code: 0x80040111 (NS_ERROR_NOT_AVAILABLE) [nsIHttpChannelInternal.remoteAddress]" nsresult: "0x80040111 (NS_ERROR_NOT_AVAILABLE)" location: "JS frame :: resource://devtools/server/actors/network-monitor/network-observer.js :: _onResponseHeader :: line 1043" data: no]
Stack: _onResponseHeader@resource://devtools/server/actors/network-monitor/network-observer.js:1043:5
_dispatchActivity@resource://devtools/server/actors/network-monitor/network-observer.js:620:14
NetworkObserver.prototype.observeActivity<@resource://devtools/server/actors/network-monitor/network-observer.js:729:12
exports.makeInfallible/<@resource://devtools/shared/ThreadSafeDevToolsUtils.js:103:22
Line: 1043, column: 0
console.error: ({})
Handler function threw an exception: TypeError: undefined has no properties
Stack: _getWaitTiming@resource://devtools/server/actors/network-monitor/network-observer.js:1142:1
_setupHarTimings@resource://devtools/server/actors/network-monitor/network-observer.js:1367:28
_onTransactionClose@resource://devtools/server/actors/network-monitor/network-observer.js:1090:27
_dispatchActivity@resource://devtools/server/actors/network-monitor/network-observer.js:623:14
NetworkObserver.prototype.observeActivity<@resource://devtools/server/actors/network-monitor/network-observer.js:729:12
exports.makeInfallible/<@resource://devtools/shared/ThreadSafeDevToolsUtils.js:103:22
Line: 1142, column: 1
console.error: (new TypeError("undefined has no properties", "resource://devtools/server/actors/network-monitor/network-observer.js", 1142))
Handler function threw an exception: [Exception... "Component returned failure code: 0x80040111 (NS_ERROR_NOT_AVAILABLE) [nsIHttpChannelInternal.remoteAddress]" nsresult: "0x80040111 (NS_ERROR_NOT_AVAILABLE)" location: "JS frame :: resource://devtools/server/actors/network-monitor/network-observer.js :: _onResponseHeader :: line 1043" data: no]
Stack: _onResponseHeader@resource://devtools/server/actors/network-monitor/network-observer.js:1043:5
_dispatchActivity@resource://devtools/server/actors/network-monitor/network-observer.js:620:14
NetworkObserver.prototype.observeActivity<@resource://devtools/server/actors/network-monitor/network-observer.js:729:12
exports.makeInfallible/<@resource://devtools/shared/ThreadSafeDevToolsUtils.js:103:22
Line: 1043, column: 0
console.error: ({})
Handler function threw an exception: TypeError: undefined has no properties
Stack: _getWaitTiming@resource://devtools/server/actors/network-monitor/network-observer.js:1142:1
_setupHarTimings@resource://devtools/server/actors/network-monitor/network-observer.js:1367:28
_onTransactionClose@resource://devtools/server/actors/network-monitor/network-observer.js:1090:27
_dispatchActivity@resource://devtools/server/actors/network-monitor/network-observer.js:623:14
NetworkObserver.prototype.observeActivity<@resource://devtools/server/actors/network-monitor/network-observer.js:729:12
exports.makeInfallible/<@resource://devtools/shared/ThreadSafeDevToolsUtils.js:103:22
Line: 1142, column: 1
console.error: (new TypeError("undefined has no properties", "resource://devtools/server/actors/network-monitor/network-observer.js", 1142))
JavaScript error: resource://gre/modules/XULStore.jsm, line 66: Error: Can't find profile directory.
console.log: WebExtensions: reset-default-search: starting.
console.log: WebExtensions: reset-default-search: No addons in our list are installed.
JavaScript error: resource:///modules/sessionstore/SessionStore.jsm, line 1235: TypeError: aBrowser is null
JavaScript error: resource://gre/modules/XULStore.jsm, line 66: Error: Can't find profile directory.
JavaScript error: resource://gre/modules/XULStore.jsm, line 66: Error: Can't find profile directory.
JavaScript error: https://es.pornhub.com/view_video.php?viewkey=ph5b5b0a9692daa, line 13223: TypeError: t.className.indexOf is not a function
console.error: Region.jsm: "Error fetching region" (new Error("TIMEOUT", "resource://gre/modules/Region.jsm", 772))
console.error: Region.jsm: "Failed to fetch region" (new Error("TIMEOUT", "resource://gre/modules/Region.jsm", 419))
1631593652836 Marionette INFO Stopped listening on port 44115
1631593658209 geckodriver INFO Listening on 127.0.0.1:43855
1631593658226 mozrunner::runner INFO Running command: "/usr/bin/firefox" "--marionette" "-foreground" "-no-remote" "-profile" "/tmp/rust_mozprofileVXm6Ab"
console.error: Enterprise Policies:
Error parsing JSON file
1631593659067 Marionette INFO Marionette enabled
console.warn: SearchSettings: "get: No settings file exists, new profile?" (new NotFoundError("Could not open the file at /tmp/rust_mozprofileVXm6Ab/search.json.mozlz4", (void 0)))
1631593669647 Marionette INFO Listening on port 33515
console.error: Region.jsm: "Error fetching region" (new Error("TIMEOUT", "resource://gre/modules/Region.jsm", 772))
console.error: Region.jsm: "Failed to fetch region" (new Error("TIMEOUT", "resource://gre/modules/Region.jsm", 419))
1631593669711 Marionette WARN TLS certificate errors will be ignored for this session
1631593861765 Marionette INFO Stopped listening on port 33515
###!!! [Parent][RunMessage] Error: Channel closing: too late to send/recv, messages will be lost
1631593865529 geckodriver INFO Listening on 127.0.0.1:35567
1631593865543 mozrunner::runner INFO Running command: "/usr/bin/firefox" "--marionette" "-foreground" "-no-remote" "-profile" "/tmp/rust_mozprofileC38VKd"
console.error: Enterprise Policies:
Error parsing JSON file
1631593866222 Marionette INFO Marionette enabled
console.warn: SearchSettings: "get: No settings file exists, new profile?" (new NotFoundError("Could not open the file at /tmp/rust_mozprofileC38VKd/search.json.mozlz4", (void 0)))
console.error: Region.jsm: "Error fetching region" (new Error("TIMEOUT", "resource://gre/modules/Region.jsm", 772))
console.error: Region.jsm: "Failed to fetch region" (new Error("TIMEOUT", "resource://gre/modules/Region.jsm", 419))
1631593877775 Marionette INFO Listening on port 35129
1631593877856 Marionette WARN TLS certificate errors will be ignored for this session
1631594088120 Marionette INFO Stopped listening on port 35129
###!!! [Parent][RunMessage] Error: Channel closing: too late to send/recv, messages will be lost
1631594098703 geckodriver INFO Listening on 127.0.0.1:33161
1631594098720 mozrunner::runner INFO Running command: "/usr/bin/firefox" "--marionette" "-foreground" "-no-remote" "-profile" "/tmp/rust_mozprofileBkfpQa"
console.error: Enterprise Policies:
Error parsing JSON file
1631594099371 Marionette INFO Marionette enabled
console.warn: SearchSettings: "get: No settings file exists, new profile?" (new NotFoundError("Could not open the file at /tmp/rust_mozprofileBkfpQa/search.json.mozlz4", (void 0)))
console.error: Region.jsm: "Error fetching region" (new Error("TIMEOUT", "resource://gre/modules/Region.jsm", 772))
console.error: Region.jsm: "Failed to fetch region" (new Error("TIMEOUT", "resource://gre/modules/Region.jsm", 419))
1631594110915 Marionette INFO Listening on port 36633
1631594111033 Marionette WARN TLS certificate errors will be ignored for this session
1631594232474 Marionette INFO Stopped listening on port 36633
1631594235794 geckodriver INFO Listening on 127.0.0.1:45103
1631594235810 mozrunner::runner INFO Running command: "/usr/bin/firefox" "--marionette" "-foreground" "-no-remote" "-profile" "/tmp/rust_mozprofileAlXrP5"
console.error: Enterprise Policies:
Error parsing JSON file
1631594236449 Marionette INFO Marionette enabled
console.warn: SearchSettings: "get: No settings file exists, new profile?" (new NotFoundError("Could not open the file at /tmp/rust_mozprofileAlXrP5/search.json.mozlz4", (void 0)))
console.error: Region.jsm: "Error fetching region" (new Error("TIMEOUT", "resource://gre/modules/Region.jsm", 772))
console.error: Region.jsm: "Failed to fetch region" (new Error("TIMEOUT", "resource://gre/modules/Region.jsm", 419))
1631594247845 Marionette INFO Listening on port 40941
1631594247913 Marionette WARN TLS certificate errors will be ignored for this session
console.log: WebExtensions: reset-default-search: starting.
console.log: WebExtensions: reset-default-search: No addons in our list are installed.
1631594737081 Marionette INFO Stopped listening on port 40941
1631594738478 geckodriver INFO Listening on 127.0.0.1:59967
1631594738491 mozrunner::runner INFO Running command: "/usr/bin/firefox" "--marionette" "-foreground" "-no-remote" "-profile" "/tmp/rust_mozprofilewTcJUn"
console.error: Enterprise Policies:
Error parsing JSON file
1631594739115 Marionette INFO Marionette enabled
console.warn: SearchSettings: "get: No settings file exists, new profile?" (new NotFoundError("Could not open the file at /tmp/rust_mozprofilewTcJUn/search.json.mozlz4", (void 0)))
console.error: Region.jsm: "Error fetching region" (new Error("TIMEOUT", "resource://gre/modules/Region.jsm", 772))
console.error: Region.jsm: "Failed to fetch region" (new Error("TIMEOUT", "resource://gre/modules/Region.jsm", 419))
1631594751015 Marionette INFO Listening on port 39877
1631594751100 Marionette WARN TLS certificate errors will be ignored for this session
console.log: WebExtensions: reset-default-search: starting.
console.log: WebExtensions: reset-default-search: No addons in our list are installed.
1631595160099 Marionette INFO Stopped listening on port 39877
###!!! [Parent][RunMessage] Error: Channel closing: too late to send/recv, messages will be lost
1631595182067 geckodriver INFO Listening on 127.0.0.1:38639
1631595182079 mozrunner::runner INFO Running command: "/usr/bin/firefox" "--marionette" "-foreground" "-no-remote" "-profile" "/tmp/rust_mozprofileNOEvwc"
console.error: Enterprise Policies:
Error parsing JSON file
1631595182799 Marionette INFO Marionette enabled
console.warn: SearchSettings: "get: No settings file exists, new profile?" (new NotFoundError("Could not open the file at /tmp/rust_mozprofileNOEvwc/search.json.mozlz4", (void 0)))
console.error: Region.jsm: "Error fetching region" (new Error("TIMEOUT", "resource://gre/modules/Region.jsm", 772))
console.error: Region.jsm: "Failed to fetch region" (new Error("TIMEOUT", "resource://gre/modules/Region.jsm", 419))
1631595195634 Marionette INFO Listening on port 43239
1631595195713 Marionette WARN TLS certificate errors will be ignored for this session
Handler function threw an exception: [Exception... "Component returned failure code: 0x80040111 (NS_ERROR_NOT_AVAILABLE) [nsIHttpChannelInternal.remoteAddress]" nsresult: "0x80040111 (NS_ERROR_NOT_AVAILABLE)" location: "JS frame :: resource://devtools/server/actors/network-monitor/network-observer.js :: _onResponseHeader :: line 1043" data: no]
Stack: _onResponseHeader@resource://devtools/server/actors/network-monitor/network-observer.js:1043:5
_dispatchActivity@resource://devtools/server/actors/network-monitor/network-observer.js:620:14
NetworkObserver.prototype.observeActivity<@resource://devtools/server/actors/network-monitor/network-observer.js:729:12
exports.makeInfallible/<@resource://devtools/shared/ThreadSafeDevToolsUtils.js:103:22
Line: 1043, column: 0
console.error: ({})
Handler function threw an exception: TypeError: undefined has no properties
Stack: _getWaitTiming@resource://devtools/server/actors/network-monitor/network-observer.js:1142:1
_setupHarTimings@resource://devtools/server/actors/network-monitor/network-observer.js:1367:28
_onTransactionClose@resource://devtools/server/actors/network-monitor/network-observer.js:1090:27
_dispatchActivity@resource://devtools/server/actors/network-monitor/network-observer.js:623:14
NetworkObserver.prototype.observeActivity<@resource://devtools/server/actors/network-monitor/network-observer.js:729:12
exports.makeInfallible/<@resource://devtools/shared/ThreadSafeDevToolsUtils.js:103:22
Line: 1142, column: 1
console.error: (new TypeError("undefined has no properties", "resource://devtools/server/actors/network-monitor/network-observer.js", 1142))
console.error: (new TypeError("nodeFront.walkerFront is null", "resource://devtools/client/inspector/markup/markup.js", 952))
TypeError: nodeFront.walkerFront is null: _onNewSelection@resource://devtools/client/inspector/markup/markup.js:952:7
_emit@resource://devtools/shared/event-emitter.js:226:34
emit@resource://devtools/shared/event-emitter.js:172:18
emit@resource://devtools/shared/event-emitter.js:324:18
setNodeFront@resource://devtools/client/framework/selection.js:161:10
onDetached@resource://devtools/client/inspector/inspector.js:1616:20
_emit@resource://devtools/shared/event-emitter.js:226:34
emit@resource://devtools/shared/event-emitter.js:172:18
emit@resource://devtools/shared/event-emitter.js:324:18
_onMutations@resource://devtools/client/framework/selection.js:104:12
_emit@resource://devtools/shared/event-emitter.js:226:34
emit@resource://devtools/shared/event-emitter.js:172:18
emit@resource://devtools/shared/event-emitter.js:324:18
getMutations@resource://devtools/client/fronts/walker.js:358:10
console.error: (new Error("Can not send request 'getAllSelectors' because front 'domnode' is already destroyed.", "resource://devtools/shared/protocol/Front/FrontClassWithSpec.js", 28))
Error: Can not send request 'getAllSelectors' because front 'domnode' is already destroyed.: generateRequestMethods/</frontProto[name]@resource://devtools/shared/protocol/Front/FrontClassWithSpec.js:28:15
updateSelectionCssSelectors@resource://devtools/client/inspector/inspector.js:1430:32
onNewSelection@resource://devtools/client/inspector/inspector.js:1501:10
_emit@resource://devtools/shared/event-emitter.js:226:34
emit@resource://devtools/shared/event-emitter.js:172:18
emit@resource://devtools/shared/event-emitter.js:324:18
setNodeFront@resource://devtools/client/framework/selection.js:161:10
onDetached@resource://devtools/client/inspector/inspector.js:1616:20
_emit@resource://devtools/shared/event-emitter.js:226:34
emit@resource://devtools/shared/event-emitter.js:172:18
emit@resource://devtools/shared/event-emitter.js:324:18
_onMutations@resource://devtools/client/framework/selection.js:104:12
_emit@resource://devtools/shared/event-emitter.js:226:34
emit@resource://devtools/shared/event-emitter.js:172:18
emit@resource://devtools/shared/event-emitter.js:324:18
getMutations@resource://devtools/client/fronts/walker.js:358:10
console.error: (new TypeError("container.node.targetFront is null", "resource://devtools/client/inspector/markup/markup.js", 2310))
console.error: (new TypeError("parent is null", "resource://devtools/client/inspector/shared/style-change-tracker.js", 67))
TypeError: parent is null: canMutationImpactCurrentStyles@resource://devtools/client/inspector/shared/style-change-tracker.js:67:24
onMutations@resource://devtools/client/inspector/shared/style-change-tracker.js:84:41
_emit@resource://devtools/shared/event-emitter.js:226:34
emit@resource://devtools/shared/event-emitter.js:172:18
emit@resource://devtools/shared/event-emitter.js:324:18
getMutations@resource://devtools/client/fronts/walker.js:358:10
console.error: (new TypeError("parent is null", "resource://devtools/client/inspector/shared/style-change-tracker.js", 67))
TypeError: parent is null: canMutationImpactCurrentStyles@resource://devtools/client/inspector/shared/style-change-tracker.js:67:24
onMutations@resource://devtools/client/inspector/shared/style-change-tracker.js:84:41
_emit@resource://devtools/shared/event-emitter.js:226:34
emit@resource://devtools/shared/event-emitter.js:172:18
emit@resource://devtools/shared/event-emitter.js:324:18
getMutations@resource://devtools/client/fronts/walker.js:358:10
console.error: (new TypeError("parent is null", "resource://devtools/client/inspector/shared/style-change-tracker.js", 67))
TypeError: parent is null: canMutationImpactCurrentStyles@resource://devtools/client/inspector/shared/style-change-tracker.js:67:24
onMutations@resource://devtools/client/inspector/shared/style-change-tracker.js:84:41
_emit@resource://devtools/shared/event-emitter.js:226:34
emit@resource://devtools/shared/event-emitter.js:172:18
emit@resource://devtools/shared/event-emitter.js:324:18
getMutations@resource://devtools/client/fronts/walker.js:358:10
JavaScript error: resource://devtools/client/inspector/grids/grid-inspector.js, line 101: TypeError: this.inspector is null
console.log: WebExtensions: reset-default-search: starting.
console.log: WebExtensions: reset-default-search: No addons in our list are installed.
###!!! [Child][MessageChannel] Error: (msgtype=0x390141,name=PContent::Msg_ScriptError) Channel closing: too late to send/recv, messages will be lost
###!!! [Child][MessageChannel] Error: (msgtype=0xAC0006,name=PWebSocket::Msg_DeleteSelf) Channel closing: too late to send/recv, messages will be lost
###!!! [Child][MessageChannel] Error: (msgtype=0x390141,name=PContent::Msg_ScriptError) Channel closing: too late to send/recv, messages will be lost
###!!! [Child][MessageChannel] Error: (msgtype=0xAC0006,name=PWebSocket::Msg_DeleteSelf) Channel closing: too late to send/recv, messages will be lost
###!!! [Child][MessageChannel] Error: (msgtype=0x390141,name=PContent::Msg_ScriptError) Channel closing: too late to send/recv, messages will be lost
###!!! [Child][MessageChannel] Error: (msgtype=0xAC0006,name=PWebSocket::Msg_DeleteSelf) Channel closing: too late to send/recv, messages will be lost
###!!! [Child][MessageChannel] Error: (msgtype=0x390141,name=PContent::Msg_ScriptError) Channel closing: too late to send/recv, messages will be lost
###!!! [Child][MessageChannel] Error: (msgtype=0xAC0006,name=PWebSocket::Msg_DeleteSelf) Channel closing: too late to send/recv, messages will be lost
1631595601146 Marionette INFO Stopped listening on port 43239
1631595602826 geckodriver INFO Listening on 127.0.0.1:51969
1631595602839 mozrunner::runner INFO Running command: "/usr/bin/firefox" "--marionette" "-foreground" "-no-remote" "-profile" "/tmp/rust_mozprofileD1hw7Q"
console.error: Enterprise Policies:
Error parsing JSON file
1631595603543 Marionette INFO Marionette enabled
console.warn: SearchSettings: "get: No settings file exists, new profile?" (new NotFoundError("Could not open the file at /tmp/rust_mozprofileD1hw7Q/search.json.mozlz4", (void 0)))
console.error: Region.jsm: "Error fetching region" (new Error("TIMEOUT", "resource://gre/modules/Region.jsm", 772))
console.error: Region.jsm: "Failed to fetch region" (new Error("TIMEOUT", "resource://gre/modules/Region.jsm", 419))
1631595619258 Marionette INFO Listening on port 33329
1631595619326 Marionette WARN TLS certificate errors will be ignored for this session
1631595745086 Marionette INFO Stopped listening on port 33329
1631595747238 geckodriver INFO Listening on 127.0.0.1:48211
1631595747251 mozrunner::runner INFO Running command: "/usr/bin/firefox" "--marionette" "-foreground" "-no-remote" "-profile" "/tmp/rust_mozprofile1vkGYh"
console.error: Enterprise Policies:
Error parsing JSON file
1631595747866 Marionette INFO Marionette enabled
console.warn: SearchSettings: "get: No settings file exists, new profile?" (new NotFoundError("Could not open the file at /tmp/rust_mozprofile1vkGYh/search.json.mozlz4", (void 0)))
console.error: Region.jsm: "Error fetching region" (new Error("TIMEOUT", "resource://gre/modules/Region.jsm", 772))
console.error: Region.jsm: "Failed to fetch region" (new Error("TIMEOUT", "resource://gre/modules/Region.jsm", 419))
1631595760360 Marionette INFO Listening on port 42719
1631595760483 Marionette WARN TLS certificate errors will be ignored for this session
1631595887210 Marionette INFO Stopped listening on port 42719
1631620101930 geckodriver INFO Listening on 127.0.0.1:58817
1631620101968 mozrunner::runner INFO Running command: "/usr/bin/firefox" "--marionette" "-foreground" "-no-remote" "-profile" "/tmp/rust_mozprofilei7W2Fm"
console.error: Enterprise Policies:
Error parsing JSON file
1631620107214 Marionette INFO Marionette enabled
console.warn: SearchSettings: "get: No settings file exists, new profile?" (new NotFoundError("Could not open the file at /tmp/rust_mozprofilei7W2Fm/search.json.mozlz4", (void 0)))
console.error: Region.jsm: "Error fetching region" (new Error("TIMEOUT", "resource://gre/modules/Region.jsm", 772))
console.error: Region.jsm: "Failed to fetch region" (new Error("TIMEOUT", "resource://gre/modules/Region.jsm", 419))
1631620122738 Marionette INFO Listening on port 39577
1631620122813 Marionette WARN TLS certificate errors will be ignored for this session
Handler function threw an exception: [Exception... "Component returned failure code: 0x80040111 (NS_ERROR_NOT_AVAILABLE) [nsIHttpChannelInternal.remoteAddress]" nsresult: "0x80040111 (NS_ERROR_NOT_AVAILABLE)" location: "JS frame :: resource://devtools/server/actors/network-monitor/network-observer.js :: _onResponseHeader :: line 1043" data: no]
Stack: _onResponseHeader@resource://devtools/server/actors/network-monitor/network-observer.js:1043:5
_dispatchActivity@resource://devtools/server/actors/network-monitor/network-observer.js:620:14
NetworkObserver.prototype.observeActivity<@resource://devtools/server/actors/network-monitor/network-observer.js:729:12
exports.makeInfallible/<@resource://devtools/shared/ThreadSafeDevToolsUtils.js:103:22
Line: 1043, column: 0
console.error: ({})
Handler function threw an exception: TypeError: undefined has no properties
Stack: _getWaitTiming@resource://devtools/server/actors/network-monitor/network-observer.js:1142:1
_setupHarTimings@resource://devtools/server/actors/network-monitor/network-observer.js:1367:28
_onTransactionClose@resource://devtools/server/actors/network-monitor/network-observer.js:1090:27
_dispatchActivity@resource://devtools/server/actors/network-monitor/network-observer.js:623:14
NetworkObserver.prototype.observeActivity<@resource://devtools/server/actors/network-monitor/network-observer.js:729:12
exports.makeInfallible/<@resource://devtools/shared/ThreadSafeDevToolsUtils.js:103:22
Line: 1142, column: 1
console.error: (new TypeError("undefined has no properties", "resource://devtools/server/actors/network-monitor/network-observer.js", 1142))
console.log: WebExtensions: reset-default-search: starting.
console.log: WebExtensions: reset-default-search: No addons in our list are installed.
JavaScript warning: https://www.facebook.com/rsrc.php/v3iyPM4/l/es_LA/44e7JW3vg4meH9yeiGzUdc6eUBC_s1K7Ha6Vhn2shAGOe2h-5VMUMUD.js?_nc_x=qN6fN0Jck0O, line 63: unreachable code after return statement
JavaScript warning: https://www.facebook.com/rsrc.php/v3iyPM4/l/es_LA/44e7JW3vg4meH9yeiGzUdc6eUBC_s1K7Ha6Vhn2shAGOe2h-5VMUMUD.js?_nc_x=qN6fN0Jck0O, line 698: unreachable code after return statement
1631620583669 Marionette INFO Stopped listening on port 39577
1631620596578 geckodriver INFO Listening on 127.0.0.1:42123
1631620596668 mozrunner::runner INFO Running command: "/usr/bin/firefox" "--marionette" "-foreground" "-no-remote" "-profile" "/tmp/rust_mozprofileSyoYVO"
console.error: Enterprise Policies:
Error parsing JSON file
1631620601335 Marionette INFO Marionette enabled
console.warn: SearchSettings: "get: No settings file exists, new profile?" (new NotFoundError("Could not open the file at /tmp/rust_mozprofileSyoYVO/search.json.mozlz4", (void 0)))
console.error: Region.jsm: "Error fetching region" (new Error("TIMEOUT", "resource://gre/modules/Region.jsm", 772))
console.error: Region.jsm: "Failed to fetch region" (new Error("TIMEOUT", "resource://gre/modules/Region.jsm", 419))
1631620617949 Marionette INFO Listening on port 36879
1631620618001 Marionette WARN TLS certificate errors will be ignored for this session
Handler function threw an exception: [Exception... "Component returned failure code: 0x80040111 (NS_ERROR_NOT_AVAILABLE) [nsIHttpChannelInternal.remoteAddress]" nsresult: "0x80040111 (NS_ERROR_NOT_AVAILABLE)" location: "JS frame :: resource://devtools/server/actors/network-monitor/network-observer.js :: _onResponseHeader :: line 1043" data: no]
Stack: _onResponseHeader@resource://devtools/server/actors/network-monitor/network-observer.js:1043:5
_dispatchActivity@resource://devtools/server/actors/network-monitor/network-observer.js:620:14
NetworkObserver.prototype.observeActivity<@resource://devtools/server/actors/network-monitor/network-observer.js:729:12
exports.makeInfallible/<@resource://devtools/shared/ThreadSafeDevToolsUtils.js:103:22
Line: 1043, column: 0
console.error: ({})
Handler function threw an exception: TypeError: undefined has no properties
Stack: _getWaitTiming@resource://devtools/server/actors/network-monitor/network-observer.js:1142:1
_setupHarTimings@resource://devtools/server/actors/network-monitor/network-observer.js:1367:28
_onTransactionClose@resource://devtools/server/actors/network-monitor/network-observer.js:1090:27
_dispatchActivity@resource://devtools/server/actors/network-monitor/network-observer.js:623:14
NetworkObserver.prototype.observeActivity<@resource://devtools/server/actors/network-monitor/network-observer.js:729:12
exports.makeInfallible/<@resource://devtools/shared/ThreadSafeDevToolsUtils.js:103:22
Line: 1142, column: 1
console.error: (new TypeError("undefined has no properties", "resource://devtools/server/actors/network-monitor/network-observer.js", 1142))
Handler function threw an exception: [Exception... "Component returned failure code: 0x80040111 (NS_ERROR_NOT_AVAILABLE) [nsIHttpChannelInternal.remoteAddress]" nsresult: "0x80040111 (NS_ERROR_NOT_AVAILABLE)" location: "JS frame :: resource://devtools/server/actors/network-monitor/network-observer.js :: _onResponseHeader :: line 1043" data: no]
Stack: _onResponseHeader@resource://devtools/server/actors/network-monitor/network-observer.js:1043:5
_dispatchActivity@resource://devtools/server/actors/network-monitor/network-observer.js:620:14
NetworkObserver.prototype.observeActivity<@resource://devtools/server/actors/network-monitor/network-observer.js:729:12
exports.makeInfallible/<@resource://devtools/shared/ThreadSafeDevToolsUtils.js:103:22
Line: 1043, column: 0
console.error: ({})
Handler function threw an exception: TypeError: undefined has no properties
Stack: _getWaitTiming@resource://devtools/server/actors/network-monitor/network-observer.js:1142:1
_setupHarTimings@resource://devtools/server/actors/network-monitor/network-observer.js:1367:28
_onTransactionClose@resource://devtools/server/actors/network-monitor/network-observer.js:1090:27
_dispatchActivity@resource://devtools/server/actors/network-monitor/network-observer.js:623:14
NetworkObserver.prototype.observeActivity<@resource://devtools/server/actors/network-monitor/network-observer.js:729:12
exports.makeInfallible/<@resource://devtools/shared/ThreadSafeDevToolsUtils.js:103:22
Line: 1142, column: 1
console.error: (new TypeError("undefined has no properties", "resource://devtools/server/actors/network-monitor/network-observer.js", 1142))
JavaScript error: resource://devtools/client/inspector/markup/views/element-editor.js, line 1058: TypeError: markupContainer.editor.setOverflowHighlight is not a function
Handler function threw an exception: [Exception... "Component returned failure code: 0x80040111 (NS_ERROR_NOT_AVAILABLE) [nsIHttpChannelInternal.remoteAddress]" nsresult: "0x80040111 (NS_ERROR_NOT_AVAILABLE)" location: "JS frame :: resource://devtools/server/actors/network-monitor/network-observer.js :: _onResponseHeader :: line 1043" data: no]
Stack: _onResponseHeader@resource://devtools/server/actors/network-monitor/network-observer.js:1043:5
_dispatchActivity@resource://devtools/server/actors/network-monitor/network-observer.js:620:14
NetworkObserver.prototype.observeActivity<@resource://devtools/server/actors/network-monitor/network-observer.js:729:12
exports.makeInfallible/<@resource://devtools/shared/ThreadSafeDevToolsUtils.js:103:22
Line: 1043, column: 0
console.error: ({})
Handler function threw an exception: TypeError: undefined has no properties
Stack: _getWaitTiming@resource://devtools/server/actors/network-monitor/network-observer.js:1142:1
_setupHarTimings@resource://devtools/server/actors/network-monitor/network-observer.js:1367:28
_onTransactionClose@resource://devtools/server/actors/network-monitor/network-observer.js:1090:27
_dispatchActivity@resource://devtools/server/actors/network-monitor/network-observer.js:623:14
NetworkObserver.prototype.observeActivity<@resource://devtools/server/actors/network-monitor/network-observer.js:729:12
exports.makeInfallible/<@resource://devtools/shared/ThreadSafeDevToolsUtils.js:103:22
Line: 1142, column: 1
console.error: (new TypeError("undefined has no properties", "resource://devtools/server/actors/network-monitor/network-observer.js", 1142))
console.error: (new TypeError("parent is null", "resource://devtools/client/inspector/shared/style-change-tracker.js", 67))
TypeError: parent is null: canMutationImpactCurrentStyles@resource://devtools/client/inspector/shared/style-change-tracker.js:67:24
onMutations@resource://devtools/client/inspector/shared/style-change-tracker.js:84:41
_emit@resource://devtools/shared/event-emitter.js:226:34
emit@resource://devtools/shared/event-emitter.js:172:18
emit@resource://devtools/shared/event-emitter.js:324:18
getMutations@resource://devtools/client/fronts/walker.js:358:10
console.error: "Error while calling actor 'pagestyle's method 'getLayout'" "node is null"
console.error: (new TypeError("node is null", "resource://devtools/server/actors/page-style.js", 1001))
console.error: "Error while calling actor 'pagestyle's method 'getApplied'" "node is null"
console.error: (new TypeError("node is null", "resource://devtools/server/actors/page-style.js", 570))
console.error: "Error while calling actor 'pagestyle's method 'getLayout'" "node is null"
console.error: (new TypeError("node is null", "resource://devtools/server/actors/page-style.js", 1001))
console.error: (new TypeError("nodeFront.walkerFront is null", "resource://devtools/client/inspector/markup/markup.js", 952))
TypeError: nodeFront.walkerFront is null: _onNewSelection@resource://devtools/client/inspector/markup/markup.js:952:7
_emit@resource://devtools/shared/event-emitter.js:226:34
emit@resource://devtools/shared/event-emitter.js:172:18
emit@resource://devtools/shared/event-emitter.js:324:18
setNodeFront@resource://devtools/client/framework/selection.js:161:10
onDetached@resource://devtools/client/inspector/inspector.js:1616:20
_emit@resource://devtools/shared/event-emitter.js:226:34
emit@resource://devtools/shared/event-emitter.js:172:18
emit@resource://devtools/shared/event-emitter.js:324:18
_onMutations@resource://devtools/client/framework/selection.js:104:12
_emit@resource://devtools/shared/event-emitter.js:226:34
emit@resource://devtools/shared/event-emitter.js:172:18
emit@resource://devtools/shared/event-emitter.js:324:18
getMutations@resource://devtools/client/fronts/walker.js:358:10
console.error: (new Error("Can not send request 'getAllSelectors' because front 'domnode' is already destroyed.", "resource://devtools/shared/protocol/Front/FrontClassWithSpec.js", 28))
Error: Can not send request 'getAllSelectors' because front 'domnode' is already destroyed.: generateRequestMethods/</frontProto[name]@resource://devtools/shared/protocol/Front/FrontClassWithSpec.js:28:15
updateSelectionCssSelectors@resource://devtools/client/inspector/inspector.js:1430:32
onNewSelection@resource://devtools/client/inspector/inspector.js:1501:10
_emit@resource://devtools/shared/event-emitter.js:226:34
emit@resource://devtools/shared/event-emitter.js:172:18
emit@resource://devtools/shared/event-emitter.js:324:18
setNodeFront@resource://devtools/client/framework/selection.js:161:10
onDetached@resource://devtools/client/inspector/inspector.js:1616:20
_emit@resource://devtools/shared/event-emitter.js:226:34
emit@resource://devtools/shared/event-emitter.js:172:18
emit@resource://devtools/shared/event-emitter.js:324:18
_onMutations@resource://devtools/client/framework/selection.js:104:12
_emit@resource://devtools/shared/event-emitter.js:226:34
emit@resource://devtools/shared/event-emitter.js:172:18
emit@resource://devtools/shared/event-emitter.js:324:18
getMutations@resource://devtools/client/fronts/walker.js:358:10
console.error: (new TypeError("container.node.targetFront is null", "resource://devtools/client/inspector/markup/markup.js", 2310))
console.error: (new Error("Protocol error (TypeError): node is null from: server0.conn0.child4/pagestyle25 (resource://devtools/server/actors/page-style.js:1001:5)", "resource://devtools/shared/protocol/Front.js", 365))
console.error: (new Error("Protocol error (TypeError): node is null from: server0.conn0.child4/pagestyle25 (resource://devtools/server/actors/page-style.js:1001:5)", "resource://devtools/shared/protocol/Front.js", 365))
console.log: WebExtensions: reset-default-search: starting.
console.log: WebExtensions: reset-default-search: No addons in our list are installed.
console.error: Region.jsm: "Error fetching region" (new Error("TIMEOUT", "resource://gre/modules/Region.jsm", 772))
console.error: Region.jsm: "Failed to fetch region" (new Error("TIMEOUT", "resource://gre/modules/Region.jsm", 419))
JavaScript error: resource://devtools/shared/protocol/Front.js, line 103: Error: Connection closed, pending request to server0.conn0.child4/domnode907, type setNodeValue failed
Request stack:
request@resource://devtools/shared/protocol/Front.js:292:14
generateRequestMethods/</frontProto[name]@resource://devtools/shared/protocol/Front/FrontClassWithSpec.js:46:19
showTextEditor/done/</<@resource://devtools/client/inspector/markup/views/text-editor.js:101:25
do@resource://devtools/client/shared/undo.js:70:16
endBatch@resource://devtools/client/shared/undo.js:81:11
do@resource://devtools/client/shared/undo.js:93:10
showTextEditor/done/<@resource://devtools/client/inspector/markup/views/text-editor.js:99:31