-
Notifications
You must be signed in to change notification settings - Fork 1
/
geckodriver.log
1062 lines (1058 loc) · 80.1 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
1707393322093 geckodriver INFO Listening on 127.0.0.1:53519
1707393325172 mozrunner::runner INFO Running command: "C:\\Program Files\\Mozilla Firefox\\firefox.exe" "--marionette" "-no-remote" "-profile" "C:\\Users\\hamid\\AppData\\Local\\Temp\\rust_mozprofileGrMMla"
console.warn: services.settings: Ignoring preference override of remote settings server
console.warn: services.settings: Allow by setting MOZ_REMOTE_SETTINGS_DEVTOOLS=1 in the environment
1707393325390 Marionette INFO Marionette enabled
Dynamically enable window occlusion 0
1707393325440 Marionette INFO Listening on port 53530
Read port: 53530
1707393325558 RemoteAgent WARN TLS certificate errors will be ignored for this session
1707393337660 Marionette INFO Stopped listening on port 53530
Dynamically enable window occlusion 1
1707393347175 geckodriver INFO Listening on 127.0.0.1:53565
1707393350261 mozrunner::runner INFO Running command: "C:\\Program Files\\Mozilla Firefox\\firefox.exe" "--marionette" "-no-remote" "-profile" "C:\\Users\\hamid\\AppData\\Local\\Temp\\rust_mozprofilewI2qpY"
console.warn: services.settings: Ignoring preference override of remote settings server
console.warn: services.settings: Allow by setting MOZ_REMOTE_SETTINGS_DEVTOOLS=1 in the environment
1707393350462 Marionette INFO Marionette enabled
Dynamically enable window occlusion 0
1707393350507 Marionette INFO Listening on port 53575
Read port: 53575
1707393350614 RemoteAgent WARN TLS certificate errors will be ignored for this session
JavaScript warning: https://pagead2.googlesyndication.com/bg/s6Lo-ySsTFszeicWuLCsm9BIHYA2isJaSryvoQutTtY.js line 2 > eval line 3180 > eval line 1 > eval line 1 > eval, line 1: WEBGL_debug_renderer_info is deprecated in Firefox and will be removed. Please use RENDERER.
1707393380674 addons.xpi ERROR System addon update list error SyntaxError: XMLHttpRequest.open: 'http://%(server)s/dummy-system-addons.xml' is not a valid URL.
Exiting due to channel error.
Listening on 127.0.0.1:53655
1707393550239 mozrunner::runner INFO Running command: "C:\\Program Files\\Mozilla Firefox\\firefox.exe" "--marionette" "-no-remote" "-profile" "C:\\Users\\hamid\\AppData\\Local\\Temp\\rust_mozprofilealHRGM"
console.warn: services.settings: Ignoring preference override of remote settings server
console.warn: services.settings: Allow by setting MOZ_REMOTE_SETTINGS_DEVTOOLS=1 in the environment
1707393550439 Marionette INFO Marionette enabled
Dynamically enable window occlusion 0
1707393550484 Marionette INFO Listening on port 53666
Read port: 53666
1707393550591 RemoteAgent WARN TLS certificate errors will be ignored for this session
1707393553016 Marionette INFO Stopped listening on port 53666
Dynamically enable window occlusion 1
1707393593654 geckodriver INFO Listening on 127.0.0.1:53706
1707393596740 mozrunner::runner INFO Running command: "C:\\Program Files\\Mozilla Firefox\\firefox.exe" "--marionette" "-no-remote" "-profile" "C:\\Users\\hamid\\AppData\\Local\\Temp\\rust_mozprofileQE4x6j"
console.warn: services.settings: Ignoring preference override of remote settings server
console.warn: services.settings: Allow by setting MOZ_REMOTE_SETTINGS_DEVTOOLS=1 in the environment
1707393596938 Marionette INFO Marionette enabled
Dynamically enable window occlusion 0
1707393596985 Marionette INFO Listening on port 53716
Read port: 53716
1707393597091 RemoteAgent WARN TLS certificate errors will be ignored for this session
1707393599449 Marionette INFO Stopped listening on port 53716
Dynamically enable window occlusion 1
1707393717483 geckodriver INFO Listening on 127.0.0.1:53791
1707393720550 mozrunner::runner INFO Running command: "C:\\Program Files\\Mozilla Firefox\\firefox.exe" "--marionette" "-no-remote" "-profile" "C:\\Users\\hamid\\AppData\\Local\\Temp\\rust_mozprofileWglZ6U"
console.warn: services.settings: Ignoring preference override of remote settings server
console.warn: services.settings: Allow by setting MOZ_REMOTE_SETTINGS_DEVTOOLS=1 in the environment
1707393720748 Marionette INFO Marionette enabled
Dynamically enable window occlusion 0
1707393720793 Marionette INFO Listening on port 53804
Read port: 53804
1707393720898 RemoteAgent WARN TLS certificate errors will be ignored for this session
JavaScript warning: https://pagead2.googlesyndication.com/bg/s6Lo-ySsTFszeicWuLCsm9BIHYA2isJaSryvoQutTtY.js line 2 > eval line 807 > eval line 1 > eval line 1 > eval, line 1: WEBGL_debug_renderer_info is deprecated in Firefox and will be removed. Please use RENDERER.
1707393733609 Marionette INFO Stopped listening on port 53804
Dynamically enable window occlusion 1
1707394407417 geckodriver INFO Listening on 127.0.0.1:54214
1707394410473 mozrunner::runner INFO Running command: "C:\\Program Files\\Mozilla Firefox\\firefox.exe" "--marionette" "-no-remote" "-profile" "C:\\Users\\hamid\\AppData\\Local\\Temp\\rust_mozprofileyOsQGQ"
console.warn: services.settings: Ignoring preference override of remote settings server
console.warn: services.settings: Allow by setting MOZ_REMOTE_SETTINGS_DEVTOOLS=1 in the environment
1707394410704 Marionette INFO Marionette enabled
Dynamically enable window occlusion 0
1707394410762 Marionette INFO Listening on port 54226
Read port: 54226
1707394410905 RemoteAgent WARN TLS certificate errors will be ignored for this session
1707394414645 Marionette INFO Stopped listening on port 54226
Dynamically enable window occlusion 1
1707394446472 geckodriver INFO Listening on 127.0.0.1:54281
1707394449545 mozrunner::runner INFO Running command: "C:\\Program Files\\Mozilla Firefox\\firefox.exe" "--marionette" "-no-remote" "-profile" "C:\\Users\\hamid\\AppData\\Local\\Temp\\rust_mozprofilezS0Ob5"
console.warn: services.settings: Ignoring preference override of remote settings server
console.warn: services.settings: Allow by setting MOZ_REMOTE_SETTINGS_DEVTOOLS=1 in the environment
1707394449741 Marionette INFO Marionette enabled
Dynamically enable window occlusion 0
1707394449787 Marionette INFO Listening on port 54294
Read port: 54294
1707394449896 RemoteAgent WARN TLS certificate errors will be ignored for this session
JavaScript warning: https://pagead2.googlesyndication.com/bg/s6Lo-ySsTFszeicWuLCsm9BIHYA2isJaSryvoQutTtY.js line 2 > eval line 1653 > eval line 1 > eval line 1 > eval, line 1: WEBGL_debug_renderer_info is deprecated in Firefox and will be removed. Please use RENDERER.
1707394478884 Marionette INFO Stopped listening on port 54294
Dynamically enable window occlusion 1
1707394490132 geckodriver INFO Listening on 127.0.0.1:54361
1707394493214 mozrunner::runner INFO Running command: "C:\\Program Files\\Mozilla Firefox\\firefox.exe" "--marionette" "-no-remote" "-profile" "C:\\Users\\hamid\\AppData\\Local\\Temp\\rust_mozprofileAMWoqC"
console.warn: services.settings: Ignoring preference override of remote settings server
console.warn: services.settings: Allow by setting MOZ_REMOTE_SETTINGS_DEVTOOLS=1 in the environment
1707394493414 Marionette INFO Marionette enabled
Dynamically enable window occlusion 0
1707394493459 Marionette INFO Listening on port 54373
Read port: 54373
1707394493566 RemoteAgent WARN TLS certificate errors will be ignored for this session
JavaScript warning: https://pagead2.googlesyndication.com/bg/s6Lo-ySsTFszeicWuLCsm9BIHYA2isJaSryvoQutTtY.js line 2 > eval line 168 > eval line 1 > eval line 1 > eval, line 1: WEBGL_debug_renderer_info is deprecated in Firefox and will be removed. Please use RENDERER.
1707394524322 addons.xpi ERROR System addon update list error SyntaxError: XMLHttpRequest.open: 'http://%(server)s/dummy-system-addons.xml' is not a valid URL.
1707394563399 Marionette INFO Stopped listening on port 54373
Dynamically enable window occlusion 1
1707394733283 geckodriver INFO Listening on 127.0.0.1:54553
1707394736366 mozrunner::runner INFO Running command: "C:\\Program Files\\Mozilla Firefox\\firefox.exe" "--marionette" "-no-remote" "-profile" "C:\\Users\\hamid\\AppData\\Local\\Temp\\rust_mozprofilecaWbxQ"
console.warn: services.settings: Ignoring preference override of remote settings server
console.warn: services.settings: Allow by setting MOZ_REMOTE_SETTINGS_DEVTOOLS=1 in the environment
1707394736570 Marionette INFO Marionette enabled
Dynamically enable window occlusion 0
1707394736613 Marionette INFO Listening on port 54566
Read port: 54566
1707394736721 RemoteAgent WARN TLS certificate errors will be ignored for this session
JavaScript warning: https://pagead2.googlesyndication.com/bg/s6Lo-ySsTFszeicWuLCsm9BIHYA2isJaSryvoQutTtY.js line 2 > eval line 6572 > eval line 1 > eval line 1 > eval, line 1: WEBGL_debug_renderer_info is deprecated in Firefox and will be removed. Please use RENDERER.
1707394756547 Marionette INFO Stopped listening on port 54566
Dynamically enable window occlusion 1
1707395011365 geckodriver INFO Listening on 127.0.0.1:54768
1707395014423 mozrunner::runner INFO Running command: "C:\\Program Files\\Mozilla Firefox\\firefox.exe" "--marionette" "-no-remote" "-profile" "C:\\Users\\hamid\\AppData\\Local\\Temp\\rust_mozprofile2n65Xr"
console.warn: services.settings: Ignoring preference override of remote settings server
console.warn: services.settings: Allow by setting MOZ_REMOTE_SETTINGS_DEVTOOLS=1 in the environment
1707395014624 Marionette INFO Marionette enabled
Dynamically enable window occlusion 0
1707395014669 Marionette INFO Listening on port 54779
Read port: 54779
1707395014775 RemoteAgent WARN TLS certificate errors will be ignored for this session
1707395018162 Marionette INFO Stopped listening on port 54779
Dynamically enable window occlusion 1
1707395307554 geckodriver INFO Listening on 127.0.0.1:54991
1707395310636 mozrunner::runner INFO Running command: "C:\\Program Files\\Mozilla Firefox\\firefox.exe" "--marionette" "-no-remote" "-profile" "C:\\Users\\hamid\\AppData\\Local\\Temp\\rust_mozprofilen5NtYx"
console.warn: services.settings: Ignoring preference override of remote settings server
console.warn: services.settings: Allow by setting MOZ_REMOTE_SETTINGS_DEVTOOLS=1 in the environment
1707395310829 Marionette INFO Marionette enabled
Dynamically enable window occlusion 0
1707395310876 Marionette INFO Listening on port 55002
Read port: 55002
1707395310983 RemoteAgent WARN TLS certificate errors will be ignored for this session
1707395314024 Marionette INFO Stopped listening on port 55002
Dynamically enable window occlusion 1
1707395363765 geckodriver INFO Listening on 127.0.0.1:55065
1707395366852 mozrunner::runner INFO Running command: "C:\\Program Files\\Mozilla Firefox\\firefox.exe" "--marionette" "-no-remote" "-profile" "C:\\Users\\hamid\\AppData\\Local\\Temp\\rust_mozprofilekwEky5"
console.warn: services.settings: Ignoring preference override of remote settings server
console.warn: services.settings: Allow by setting MOZ_REMOTE_SETTINGS_DEVTOOLS=1 in the environment
1707395367049 Marionette INFO Marionette enabled
Dynamically enable window occlusion 0
1707395367093 Marionette INFO Listening on port 55077
Read port: 55077
1707395367197 RemoteAgent WARN TLS certificate errors will be ignored for this session
JavaScript warning: https://pagead2.googlesyndication.com/bg/s6Lo-ySsTFszeicWuLCsm9BIHYA2isJaSryvoQutTtY.js line 2 > eval line 6152 > eval line 1 > eval line 1 > eval, line 1: WEBGL_debug_renderer_info is deprecated in Firefox and will be removed. Please use RENDERER.
1707395386584 Marionette INFO Stopped listening on port 55077
Dynamically enable window occlusion 1
1707395404102 geckodriver INFO Listening on 127.0.0.1:55145
1707395407172 mozrunner::runner INFO Running command: "C:\\Program Files\\Mozilla Firefox\\firefox.exe" "--marionette" "-no-remote" "-profile" "C:\\Users\\hamid\\AppData\\Local\\Temp\\rust_mozprofileoHYnsp"
console.warn: services.settings: Ignoring preference override of remote settings server
console.warn: services.settings: Allow by setting MOZ_REMOTE_SETTINGS_DEVTOOLS=1 in the environment
1707395407371 Marionette INFO Marionette enabled
Dynamically enable window occlusion 0
1707395407416 Marionette INFO Listening on port 55156
Read port: 55156
1707395407524 RemoteAgent WARN TLS certificate errors will be ignored for this session
JavaScript warning: https://pagead2.googlesyndication.com/bg/s6Lo-ySsTFszeicWuLCsm9BIHYA2isJaSryvoQutTtY.js line 2 > eval line 4890 > eval line 1 > eval line 1 > eval, line 1: WEBGL_debug_renderer_info is deprecated in Firefox and will be removed. Please use RENDERER.
1707395414736 Marionette INFO Stopped listening on port 55156
Dynamically enable window occlusion 1
1707395859595 geckodriver INFO Listening on 127.0.0.1:55459
1707395862678 mozrunner::runner INFO Running command: "C:\\Program Files\\Mozilla Firefox\\firefox.exe" "--marionette" "-no-remote" "-profile" "C:\\Users\\hamid\\AppData\\Local\\Temp\\rust_mozprofilehWp4F2"
console.warn: services.settings: Ignoring preference override of remote settings server
console.warn: services.settings: Allow by setting MOZ_REMOTE_SETTINGS_DEVTOOLS=1 in the environment
1707395862875 Marionette INFO Marionette enabled
Dynamically enable window occlusion 0
1707395862921 Marionette INFO Listening on port 55471
Read port: 55471
1707395863028 RemoteAgent WARN TLS certificate errors will be ignored for this session
1707395866321 Marionette INFO Stopped listening on port 55471
Dynamically enable window occlusion 1
1707395907421 geckodriver INFO Listening on 127.0.0.1:55534
1707395910498 mozrunner::runner INFO Running command: "C:\\Program Files\\Mozilla Firefox\\firefox.exe" "--marionette" "-no-remote" "-profile" "C:\\Users\\hamid\\AppData\\Local\\Temp\\rust_mozprofileaTpgfQ"
console.warn: services.settings: Ignoring preference override of remote settings server
console.warn: services.settings: Allow by setting MOZ_REMOTE_SETTINGS_DEVTOOLS=1 in the environment
1707395910691 Marionette INFO Marionette enabled
Dynamically enable window occlusion 0
1707395910736 Marionette INFO Listening on port 55545
Read port: 55545
1707395910843 RemoteAgent WARN TLS certificate errors will be ignored for this session
JavaScript warning: https://pagead2.googlesyndication.com/bg/s6Lo-ySsTFszeicWuLCsm9BIHYA2isJaSryvoQutTtY.js line 2 > eval line 1650 > eval line 1 > eval line 1 > eval, line 1: WEBGL_debug_renderer_info is deprecated in Firefox and will be removed. Please use RENDERER.
1707395926139 Marionette INFO Stopped listening on port 55545
Dynamically enable window occlusion 1
1707396374854 geckodriver INFO Listening on 127.0.0.1:55865
1707396377899 mozrunner::runner INFO Running command: "C:\\Program Files\\Mozilla Firefox\\firefox.exe" "--marionette" "-no-remote" "-profile" "C:\\Users\\hamid\\AppData\\Local\\Temp\\rust_mozprofileD4e8Sk"
console.warn: services.settings: Ignoring preference override of remote settings server
console.warn: services.settings: Allow by setting MOZ_REMOTE_SETTINGS_DEVTOOLS=1 in the environment
1707396378098 Marionette INFO Marionette enabled
Dynamically enable window occlusion 0
1707396378144 Marionette INFO Listening on port 55877
Read port: 55877
1707396378251 RemoteAgent WARN TLS certificate errors will be ignored for this session
JavaScript warning: https://pagead2.googlesyndication.com/bg/s6Lo-ySsTFszeicWuLCsm9BIHYA2isJaSryvoQutTtY.js line 2 > eval line 4917 > eval line 1 > eval line 1 > eval, line 1: WEBGL_debug_renderer_info is deprecated in Firefox and will be removed. Please use RENDERER.
1707396391419 Marionette INFO Stopped listening on port 55877
Dynamically enable window occlusion 1
1707396423444 geckodriver INFO Listening on 127.0.0.1:55945
1707396426518 mozrunner::runner INFO Running command: "C:\\Program Files\\Mozilla Firefox\\firefox.exe" "--marionette" "-no-remote" "-profile" "C:\\Users\\hamid\\AppData\\Local\\Temp\\rust_mozprofile3DsSaF"
console.warn: services.settings: Ignoring preference override of remote settings server
console.warn: services.settings: Allow by setting MOZ_REMOTE_SETTINGS_DEVTOOLS=1 in the environment
1707396426714 Marionette INFO Marionette enabled
Dynamically enable window occlusion 0
1707396426758 Marionette INFO Listening on port 55958
Read port: 55958
1707396426864 RemoteAgent WARN TLS certificate errors will be ignored for this session
JavaScript warning: https://pagead2.googlesyndication.com/bg/s6Lo-ySsTFszeicWuLCsm9BIHYA2isJaSryvoQutTtY.js line 2 > eval line 3990 > eval line 1 > eval line 1 > eval, line 1: WEBGL_debug_renderer_info is deprecated in Firefox and will be removed. Please use RENDERER.
1707396441777 Marionette INFO Stopped listening on port 55958
Dynamically enable window occlusion 1
1707396518816 geckodriver INFO Listening on 127.0.0.1:56053
1707396521878 mozrunner::runner INFO Running command: "C:\\Program Files\\Mozilla Firefox\\firefox.exe" "--marionette" "-no-remote" "-profile" "C:\\Users\\hamid\\AppData\\Local\\Temp\\rust_mozprofileDoV36F"
console.warn: services.settings: Ignoring preference override of remote settings server
console.warn: services.settings: Allow by setting MOZ_REMOTE_SETTINGS_DEVTOOLS=1 in the environment
1707396522076 Marionette INFO Marionette enabled
Dynamically enable window occlusion 0
1707396522121 Marionette INFO Listening on port 56065
Read port: 56065
1707396522228 RemoteAgent WARN TLS certificate errors will be ignored for this session
JavaScript warning: https://pagead2.googlesyndication.com/bg/s6Lo-ySsTFszeicWuLCsm9BIHYA2isJaSryvoQutTtY.js line 2 > eval line 5485 > eval line 1 > eval line 1 > eval, line 1: WEBGL_debug_renderer_info is deprecated in Firefox and will be removed. Please use RENDERER.
1707396552991 addons.xpi ERROR System addon update list error SyntaxError: XMLHttpRequest.open: 'http://%(server)s/dummy-system-addons.xml' is not a valid URL.
1707396667643 Marionette INFO Stopped listening on port 56065
Dynamically enable window occlusion 1
ng command: "C:\\Program Files\\Mozilla Firefox\\firefox.exe" "--marionette" "-no-remote" "-profile" "C:\\Users\\hamid\\AppData\\Local\\Temp\\rust_mozprofilexHHr9m"
console.warn: services.settings: Ignoring preference override of remote settings server
console.warn: services.settings: Allow by setting MOZ_REMOTE_SETTINGS_DEVTOOLS=1 in the environment
1707396591828 Marionette INFO Marionette enabled
Dynamically enable window occlusion 0
1707396591873 Marionette INFO Listening on port 56172
Read port: 56172
1707396591979 RemoteAgent WARN TLS certificate errors will be ignored for this session
JavaScript warning: https://pagead2.googlesyndication.com/bg/s6Lo-ySsTFszeicWuLCsm9BIHYA2isJaSryvoQutTtY.js line 2 > eval line 7503 > eval line 1 > eval line 1 > eval, line 1: WEBGL_debug_renderer_info is deprecated in Firefox and will be removed. Please use RENDERER.
1707396622210 addons.xpi ERROR System addon update list error SyntaxError: XMLHttpRequest.open: 'http://%(server)s/dummy-system-addons.xml' is not a valid URL.
JavaScript error: https://old-epaper.jugantor.com/2020/07/27/index.php, line 39: ReferenceError: getSummary is not defined
1707396645212 Marionette INFO Stopped listening on port 56172
Dynamically enable window occlusion 1
1707397257053 geckodriver INFO Listening on 127.0.0.1:56581
1707397260126 mozrunner::runner INFO Running command: "C:\\Program Files\\Mozilla Firefox\\firefox.exe" "--marionette" "-no-remote" "-profile" "C:\\Users\\hamid\\AppData\\Local\\Temp\\rust_mozprofilezv0Ac3"
console.warn: services.settings: Ignoring preference override of remote settings server
console.warn: services.settings: Allow by setting MOZ_REMOTE_SETTINGS_DEVTOOLS=1 in the environment
1707397260324 Marionette INFO Marionette enabled
Dynamically enable window occlusion 0
1707397260369 Marionette INFO Listening on port 56593
Read port: 56593
1707397260476 RemoteAgent WARN TLS certificate errors will be ignored for this session
JavaScript warning: https://pagead2.googlesyndication.com/bg/s6Lo-ySsTFszeicWuLCsm9BIHYA2isJaSryvoQutTtY.js line 2 > eval line 1302 > eval line 1 > eval line 1 > eval, line 1: WEBGL_debug_renderer_info is deprecated in Firefox and will be removed. Please use RENDERER.
1707397274817 Marionette INFO Stopped listening on port 56593
Dynamically enable window occlusion 1
1707397279148 geckodriver INFO Listening on 127.0.0.1:56657
1707397282225 mozrunner::runner INFO Running command: "C:\\Program Files\\Mozilla Firefox\\firefox.exe" "--marionette" "-no-remote" "-profile" "C:\\Users\\hamid\\AppData\\Local\\Temp\\rust_mozprofilebmZRpQ"
console.warn: services.settings: Ignoring preference override of remote settings server
console.warn: services.settings: Allow by setting MOZ_REMOTE_SETTINGS_DEVTOOLS=1 in the environment
1707397282424 Marionette INFO Marionette enabled
Dynamically enable window occlusion 0
1707397282469 Marionette INFO Listening on port 56669
Read port: 56669
1707397282578 RemoteAgent WARN TLS certificate errors will be ignored for this session
1707397285495 Marionette INFO Stopped listening on port 56669
Dynamically enable window occlusion 1
1707397519253 geckodriver INFO Listening on 127.0.0.1:56829
1707397522320 mozrunner::runner INFO Running command: "C:\\Program Files\\Mozilla Firefox\\firefox.exe" "--marionette" "-no-remote" "-profile" "C:\\Users\\hamid\\AppData\\Local\\Temp\\rust_mozprofileb23utx"
console.warn: services.settings: Ignoring preference override of remote settings server
console.warn: services.settings: Allow by setting MOZ_REMOTE_SETTINGS_DEVTOOLS=1 in the environment
1707397522529 Marionette INFO Marionette enabled
Dynamically enable window occlusion 0
1707397522576 Marionette INFO Listening on port 56842
Read port: 56842
1707397522691 RemoteAgent WARN TLS certificate errors will be ignored for this session
JavaScript warning: https://pagead2.googlesyndication.com/bg/s6Lo-ySsTFszeicWuLCsm9BIHYA2isJaSryvoQutTtY.js line 2 > eval line 2766 > eval line 1 > eval line 1 > eval, line 1: WEBGL_debug_renderer_info is deprecated in Firefox and will be removed. Please use RENDERER.
1707397549150 Marionette INFO Stopped listening on port 56842
Dynamically enable window occlusion 1
ng command: "C:\\Program Files\\Mozilla Firefox\\firefox.exe" "--marionette" "-no-remote" "-profile" "C:\\Users\\hamid\\AppData\\Local\\Temp\\rust_mozprofile0jiWtL"
console.warn: services.settings: Ignoring preference override of remote settings server
console.warn: services.settings: Allow by setting MOZ_REMOTE_SETTINGS_DEVTOOLS=1 in the environment
1707397549119 Marionette INFO Marionette enabled
Dynamically enable window occlusion 0
1707397549178 Marionette INFO Listening on port 56905
Read port: 56905
1707397549325 RemoteAgent WARN TLS certificate errors will be ignored for this session
JavaScript error: https://old-epaper.jugantor.com/2020/07/27/index.php, line 39: ReferenceError: getSummary is not defined
1707397552608 Marionette INFO Stopped listening on port 56905
JavaScript warning: https://old-epaper.jugantor.com/img/jquery_005.js, line 16: Script terminated by timeout at:
tick@https://old-epaper.jugantor.com/img/jquery_005.js:16:78925
Dynamically enable window occlusion 1
1707397580194 geckodriver INFO Listening on 127.0.0.1:56958
1707397583278 mozrunner::runner INFO Running command: "C:\\Program Files\\Mozilla Firefox\\firefox.exe" "--marionette" "-no-remote" "-profile" "C:\\Users\\hamid\\AppData\\Local\\Temp\\rust_mozprofilepw1l9q"
console.warn: services.settings: Ignoring preference override of remote settings server
console.warn: services.settings: Allow by setting MOZ_REMOTE_SETTINGS_DEVTOOLS=1 in the environment
1707397583474 Marionette INFO Marionette enabled
Dynamically enable window occlusion 0
1707397583518 Marionette INFO Listening on port 56969
Read port: 56969
1707397583625 RemoteAgent WARN TLS certificate errors will be ignored for this session
1707397586506 Marionette INFO Stopped listening on port 56969
Dynamically enable window occlusion 1
1707397797531 geckodriver INFO Listening on 127.0.0.1:57115
1707397800602 mozrunner::runner INFO Running command: "C:\\Program Files\\Mozilla Firefox\\firefox.exe" "--marionette" "-no-remote" "-profile" "C:\\Users\\hamid\\AppData\\Local\\Temp\\rust_mozprofilePgHRtN"
console.warn: services.settings: Ignoring preference override of remote settings server
console.warn: services.settings: Allow by setting MOZ_REMOTE_SETTINGS_DEVTOOLS=1 in the environment
1707397800799 Marionette INFO Marionette enabled
Dynamically enable window occlusion 0
1707397800845 Marionette INFO Listening on port 57128
Read port: 57128
1707397800952 RemoteAgent WARN TLS certificate errors will be ignored for this session
1707397804008 Marionette INFO Stopped listening on port 57128
Dynamically enable window occlusion 1
1707397824718 geckodriver INFO Listening on 127.0.0.1:57171
1707397827798 mozrunner::runner INFO Running command: "C:\\Program Files\\Mozilla Firefox\\firefox.exe" "--marionette" "-no-remote" "-profile" "C:\\Users\\hamid\\AppData\\Local\\Temp\\rust_mozprofileWF3hoz"
console.warn: services.settings: Ignoring preference override of remote settings server
console.warn: services.settings: Allow by setting MOZ_REMOTE_SETTINGS_DEVTOOLS=1 in the environment
1707397827994 Marionette INFO Marionette enabled
Dynamically enable window occlusion 0
1707397828038 Marionette INFO Listening on port 57184
Read port: 57184
1707397828145 RemoteAgent WARN TLS certificate errors will be ignored for this session
JavaScript warning: https://pagead2.googlesyndication.com/bg/s6Lo-ySsTFszeicWuLCsm9BIHYA2isJaSryvoQutTtY.js line 2 > eval line 4522 > eval line 1 > eval line 1 > eval, line 1: WEBGL_debug_renderer_info is deprecated in Firefox and will be removed. Please use RENDERER.
1707397841227 Marionette INFO Stopped listening on port 57184
Dynamically enable window occlusion 1
1707398362882 geckodriver INFO Listening on 127.0.0.1:57502
1707398365977 mozrunner::runner INFO Running command: "C:\\Program Files\\Mozilla Firefox\\firefox.exe" "--marionette" "-no-remote" "-profile" "C:\\Users\\hamid\\AppData\\Local\\Temp\\rust_mozprofile8G7P9j"
console.warn: services.settings: Ignoring preference override of remote settings server
console.warn: services.settings: Allow by setting MOZ_REMOTE_SETTINGS_DEVTOOLS=1 in the environment
1707398366175 Marionette INFO Marionette enabled
Dynamically enable window occlusion 0
1707398366220 Marionette INFO Listening on port 57513
Read port: 57513
1707398366327 RemoteAgent WARN TLS certificate errors will be ignored for this session
JavaScript warning: https://pagead2.googlesyndication.com/bg/s6Lo-ySsTFszeicWuLCsm9BIHYA2isJaSryvoQutTtY.js line 2 > eval line 5561 > eval line 1 > eval line 1 > eval, line 1: WEBGL_debug_renderer_info is deprecated in Firefox and will be removed. Please use RENDERER.
1707398382521 Marionette INFO Stopped listening on port 57513
Dynamically enable window occlusion 1
1707398468092 geckodriver INFO Listening on 127.0.0.1:57611
1707398471169 mozrunner::runner INFO Running command: "C:\\Program Files\\Mozilla Firefox\\firefox.exe" "--marionette" "-no-remote" "-profile" "C:\\Users\\hamid\\AppData\\Local\\Temp\\rust_mozprofileellwyL"
console.warn: services.settings: Ignoring preference override of remote settings server
console.warn: services.settings: Allow by setting MOZ_REMOTE_SETTINGS_DEVTOOLS=1 in the environment
1707398471370 Marionette INFO Marionette enabled
Dynamically enable window occlusion 0
1707398471415 Marionette INFO Listening on port 57622
Read port: 57622
1707398471523 RemoteAgent WARN TLS certificate errors will be ignored for this session
JavaScript warning: https://pagead2.googlesyndication.com/bg/s6Lo-ySsTFszeicWuLCsm9BIHYA2isJaSryvoQutTtY.js line 2 > eval line 1762 > eval line 1 > eval line 1 > eval, line 1: WEBGL_debug_renderer_info is deprecated in Firefox and will be removed. Please use RENDERER.
JavaScript error: resource://gre/modules/AsyncShutdown.sys.mjs, line 573: NotFoundError: No such JSWindowActor 'DevToolsFrame'
JavaScript error: resource://gre/modules/AsyncShutdown.sys.mjs, line 573: NotFoundError: No such JSWindowActor 'DevToolsFrame'
JavaScript error: resource://gre/modules/AsyncShutdown.sys.mjs, line 573: NotFoundError: No such JSWindowActor 'DevToolsFrame'
JavaScript error: resource://gre/modules/AsyncShutdown.sys.mjs, line 573: NotFoundError: No such JSWindowActor 'DevToolsFrame'
JavaScript error: resource://gre/modules/AsyncShutdown.sys.mjs, line 573: NotFoundError: No such JSWindowActor 'DevToolsFrame'
JavaScript error: resource://gre/modules/AsyncShutdown.sys.mjs, line 573: NotFoundError: No such JSWindowActor 'DevToolsFrame'
1707398499027 Marionette INFO Stopped listening on port 57622
Dynamically enable window occlusion 1
1707398586422 geckodriver INFO Listening on 127.0.0.1:57735
1707398589488 mozrunner::runner INFO Running command: "C:\\Program Files\\Mozilla Firefox\\firefox.exe" "--marionette" "-no-remote" "-profile" "C:\\Users\\hamid\\AppData\\Local\\Temp\\rust_mozprofilev1TBNj"
console.warn: services.settings: Ignoring preference override of remote settings server
console.warn: services.settings: Allow by setting MOZ_REMOTE_SETTINGS_DEVTOOLS=1 in the environment
1707398589684 Marionette INFO Marionette enabled
Dynamically enable window occlusion 0
1707398589730 Marionette INFO Listening on port 57747
Read port: 57747
1707398589842 RemoteAgent WARN TLS certificate errors will be ignored for this session
JavaScript warning: https://pagead2.googlesyndication.com/bg/s6Lo-ySsTFszeicWuLCsm9BIHYA2isJaSryvoQutTtY.js line 2 > eval line 6725 > eval line 1 > eval line 1 > eval, line 1: WEBGL_debug_renderer_info is deprecated in Firefox and will be removed. Please use RENDERER.
1707398618151 Marionette INFO Stopped listening on port 57747
Dynamically enable window occlusion 1
1707398618762 geckodriver INFO Listening on 127.0.0.1:57806
1707398621828 mozrunner::runner INFO Running command: "C:\\Program Files\\Mozilla Firefox\\firefox.exe" "--marionette" "-no-remote" "-profile" "C:\\Users\\hamid\\AppData\\Local\\Temp\\rust_mozprofilelLBAAe"
console.warn: services.settings: Ignoring preference override of remote settings server
console.warn: services.settings: Allow by setting MOZ_REMOTE_SETTINGS_DEVTOOLS=1 in the environment
1707398622029 Marionette INFO Marionette enabled
Dynamically enable window occlusion 0
1707398622074 Marionette INFO Listening on port 57817
Read port: 57817
1707398622182 RemoteAgent WARN TLS certificate errors will be ignored for this session
JavaScript error: https://old-epaper.jugantor.com/2020/07/27/index.php, line 39: ReferenceError: getSummary is not defined
JavaScript warning: https://pagead2.googlesyndication.com/bg/s6Lo-ySsTFszeicWuLCsm9BIHYA2isJaSryvoQutTtY.js line 2 > eval line 4237 > eval line 1 > eval line 1 > eval, line 1: WEBGL_debug_renderer_info is deprecated in Firefox and will be removed. Please use RENDERER.
1707398630311 Marionette INFO Stopped listening on port 57817
Dynamically enable window occlusion 1
JavaScript error: chrome://remote/content/marionette/cert.sys.mjs, line 51: NS_ERROR_NOT_AVAILABLE: Component returned failure code: 0x80040111 (NS_ERROR_NOT_AVAILABLE) [nsICertOverrideService.setDisableAllSecurityChecksAndLetAttackersInterceptMyData]
1707398710813 geckodriver INFO Listening on 127.0.0.1:57928
1707398713888 mozrunner::runner INFO Running command: "C:\\Program Files\\Mozilla Firefox\\firefox.exe" "--marionette" "-no-remote" "-profile" "C:\\Users\\hamid\\AppData\\Local\\Temp\\rust_mozprofileOkHf2i"
console.warn: services.settings: Ignoring preference override of remote settings server
console.warn: services.settings: Allow by setting MOZ_REMOTE_SETTINGS_DEVTOOLS=1 in the environment
1707398714086 Marionette INFO Marionette enabled
Dynamically enable window occlusion 0
1707398714131 Marionette INFO Listening on port 57939
Read port: 57939
1707398714236 RemoteAgent WARN TLS certificate errors will be ignored for this session
JavaScript warning: https://pagead2.googlesyndication.com/bg/s6Lo-ySsTFszeicWuLCsm9BIHYA2isJaSryvoQutTtY.js line 2 > eval line 794 > eval line 1 > eval line 1 > eval, line 1: WEBGL_debug_renderer_info is deprecated in Firefox and will be removed. Please use RENDERER.
1707398746043 addons.xpi ERROR System addon update list error SyntaxError: XMLHttpRequest.open: 'http://%(server)s/dummy-system-addons.xml' is not a valid URL.
1707398776731 Marionette INFO Stopped listening on port 57939
Dynamically enable window occlusion 1
ng command: "C:\\Program Files\\Mozilla Firefox\\firefox.exe" "--marionette" "-no-remote" "-profile" "C:\\Users\\hamid\\AppData\\Local\\Temp\\rust_mozprofileq4jnXY"
console.warn: services.settings: Ignoring preference override of remote settings server
console.warn: services.settings: Allow by setting MOZ_REMOTE_SETTINGS_DEVTOOLS=1 in the environment
1707398765226 Marionette INFO Marionette enabled
Dynamically enable window occlusion 0
1707398765273 Marionette INFO Listening on port 58022
Read port: 58022
1707398765379 RemoteAgent WARN TLS certificate errors will be ignored for this session
JavaScript warning: https://pagead2.googlesyndication.com/bg/s6Lo-ySsTFszeicWuLCsm9BIHYA2isJaSryvoQutTtY.js line 2 > eval line 172 > eval line 1 > eval line 1 > eval, line 1: WEBGL_debug_renderer_info is deprecated in Firefox and will be removed. Please use RENDERER.
1707398775572 Marionette INFO Stopped listening on port 58022
Dynamically enable window occlusion 1
1707398898594 geckodriver INFO Listening on 127.0.0.1:58133
1707398901671 mozrunner::runner INFO Running command: "C:\\Program Files\\Mozilla Firefox\\firefox.exe" "--marionette" "-no-remote" "-profile" "C:\\Users\\hamid\\AppData\\Local\\Temp\\rust_mozprofileVP9Sok"
console.warn: services.settings: Ignoring preference override of remote settings server
console.warn: services.settings: Allow by setting MOZ_REMOTE_SETTINGS_DEVTOOLS=1 in the environment
1707398901869 Marionette INFO Marionette enabled
Dynamically enable window occlusion 0
1707398901912 Marionette INFO Listening on port 58145
Read port: 58145
1707398902019 RemoteAgent WARN TLS certificate errors will be ignored for this session
JavaScript warning: https://pagead2.googlesyndication.com/bg/s6Lo-ySsTFszeicWuLCsm9BIHYA2isJaSryvoQutTtY.js line 2 > eval line 1304 > eval line 1 > eval line 1 > eval, line 1: WEBGL_debug_renderer_info is deprecated in Firefox and will be removed. Please use RENDERER.
1707398908375 Marionette INFO Stopped listening on port 58145
Dynamically enable window occlusion 1
1707398916654 geckodriver INFO Listening on 127.0.0.1:58198
1707398919722 mozrunner::runner INFO Running command: "C:\\Program Files\\Mozilla Firefox\\firefox.exe" "--marionette" "-no-remote" "-profile" "C:\\Users\\hamid\\AppData\\Local\\Temp\\rust_mozprofile3v6p7h"
console.warn: services.settings: Ignoring preference override of remote settings server
console.warn: services.settings: Allow by setting MOZ_REMOTE_SETTINGS_DEVTOOLS=1 in the environment
1707398919917 Marionette INFO Marionette enabled
Dynamically enable window occlusion 0
1707398919964 Marionette INFO Listening on port 58209
Read port: 58209
1707398920070 RemoteAgent WARN TLS certificate errors will be ignored for this session
JavaScript error: https://old-epaper.jugantor.com/2020/07/27/index.php, line 39: ReferenceError: getSummary is not defined
JavaScript warning: https://pagead2.googlesyndication.com/bg/s6Lo-ySsTFszeicWuLCsm9BIHYA2isJaSryvoQutTtY.js line 2 > eval line 6758 > eval line 1 > eval line 1 > eval, line 1: WEBGL_debug_renderer_info is deprecated in Firefox and will be removed. Please use RENDERER.
JavaScript error: https://old-epaper.jugantor.com/2020/07/27/index.php, line 39: ReferenceError: getSummary is not defined
JavaScript error: https://old-epaper.jugantor.com/2020/07/27/index.php, line 39: ReferenceError: getSummary is not defined
Exiting due to channel error.
Exiting due to channel error.
1707399166104 geckodriver INFO Listening on 127.0.0.1:58431
1707399169199 mozrunner::runner INFO Running command: "C:\\Program Files\\Mozilla Firefox\\firefox.exe" "--marionette" "-no-remote" "-profile" "C:\\Users\\hamid\\AppData\\Local\\Temp\\rust_mozprofileUMZBaT"
console.warn: services.settings: Ignoring preference override of remote settings server
console.warn: services.settings: Allow by setting MOZ_REMOTE_SETTINGS_DEVTOOLS=1 in the environment
1707399169398 Marionette INFO Marionette enabled
Dynamically enable window occlusion 0
1707399169444 Marionette INFO Listening on port 58442
Read port: 58442
1707399169549 RemoteAgent WARN TLS certificate errors will be ignored for this session
JavaScript error: https://old-epaper.jugantor.com/2020/07/27/index.php, line 39: ReferenceError: getSummary is not defined
JavaScript warning: https://pagead2.googlesyndication.com/bg/s6Lo-ySsTFszeicWuLCsm9BIHYA2isJaSryvoQutTtY.js line 2 > eval line 446 > eval line 1 > eval line 1 > eval, line 1: WEBGL_debug_renderer_info is deprecated in Firefox and will be removed. Please use RENDERER.
JavaScript error: https://old-epaper.jugantor.com/2020/07/27/index.php, line 39: ReferenceError: getSummary is not defined
1707399181583 Marionette INFO Stopped listening on port 58442
Dynamically enable window occlusion 1
JavaScript error: chrome://remote/content/marionette/cert.sys.mjs, line 51: NS_ERROR_NOT_AVAILABLE: Component returned failure code: 0x80040111 (NS_ERROR_NOT_AVAILABLE) [nsICertOverrideService.setDisableAllSecurityChecksAndLetAttackersInterceptMyData]
1707400697910 geckodriver INFO Listening on 127.0.0.1:59308
1707400701000 mozrunner::runner INFO Running command: "C:\\Program Files\\Mozilla Firefox\\firefox.exe" "--marionette" "-no-remote" "-profile" "C:\\Users\\hamid\\AppData\\Local\\Temp\\rust_mozprofile7OywHJ"
console.warn: services.settings: Ignoring preference override of remote settings server
console.warn: services.settings: Allow by setting MOZ_REMOTE_SETTINGS_DEVTOOLS=1 in the environment
1707400701195 Marionette INFO Marionette enabled
Dynamically enable window occlusion 0
1707400701240 Marionette INFO Listening on port 59319
Read port: 59319
1707400701346 RemoteAgent WARN TLS certificate errors will be ignored for this session
JavaScript warning: https://pagead2.googlesyndication.com/bg/s6Lo-ySsTFszeicWuLCsm9BIHYA2isJaSryvoQutTtY.js line 2 > eval line 992 > eval line 1 > eval line 1 > eval, line 1: WEBGL_debug_renderer_info is deprecated in Firefox and will be removed. Please use RENDERER.
1707400728409 Marionette INFO Stopped listening on port 59319
Dynamically enable window occlusion 1
1707401117817 geckodriver INFO Listening on 127.0.0.1:59592
1707401120852 mozrunner::runner INFO Running command: "C:\\Program Files\\Mozilla Firefox\\firefox.exe" "--marionette" "-no-remote" "-profile" "C:\\Users\\hamid\\AppData\\Local\\Temp\\rust_mozprofileYnQuzx"
console.warn: services.settings: Ignoring preference override of remote settings server
console.warn: services.settings: Allow by setting MOZ_REMOTE_SETTINGS_DEVTOOLS=1 in the environment
1707401121112 Marionette INFO Marionette enabled
Dynamically enable window occlusion 0
1707401121171 Marionette INFO Listening on port 59604
Read port: 59604
1707401121316 RemoteAgent WARN TLS certificate errors will be ignored for this session
JavaScript warning: https://pagead2.googlesyndication.com/bg/s6Lo-ySsTFszeicWuLCsm9BIHYA2isJaSryvoQutTtY.js line 2 > eval line 2 > eval line 1 > eval line 1 > eval, line 1: WEBGL_debug_renderer_info is deprecated in Firefox and will be removed. Please use RENDERER.
1707401151130 addons.xpi ERROR System addon update list error SyntaxError: XMLHttpRequest.open: 'http://%(server)s/dummy-system-addons.xml' is not a valid URL.
Exiting due to channel error.
Listening on 127.0.0.1:59680
1707401183423 mozrunner::runner INFO Running command: "C:\\Program Files\\Mozilla Firefox\\firefox.exe" "--marionette" "-no-remote" "-profile" "C:\\Users\\hamid\\AppData\\Local\\Temp\\rust_mozprofileozN9mP"
console.warn: services.settings: Ignoring preference override of remote settings server
console.warn: services.settings: Allow by setting MOZ_REMOTE_SETTINGS_DEVTOOLS=1 in the environment
1707401183667 Marionette INFO Marionette enabled
Dynamically enable window occlusion 0
1707401183721 Marionette INFO Listening on port 59691
Read port: 59691
1707401183834 RemoteAgent WARN TLS certificate errors will be ignored for this session
JavaScript warning: https://pagead2.googlesyndication.com/bg/s6Lo-ySsTFszeicWuLCsm9BIHYA2isJaSryvoQutTtY.js line 2 > eval line 5123 > eval line 1 > eval line 1 > eval, line 1: WEBGL_debug_renderer_info is deprecated in Firefox and will be removed. Please use RENDERER.
JavaScript error: https://old-epaper.jugantor.com/2020/07/27/index.php, line 39: ReferenceError: getSummary is not defined
JavaScript error: https://old-epaper.jugantor.com/2020/07/27/index.php, line 39: ReferenceError: getSummary is not defined
JavaScript error: https://old-epaper.jugantor.com/2020/07/27/index.php, line 39: ReferenceError: getSummary is not defined
JavaScript error: https://old-epaper.jugantor.com/2020/07/27/index.php, line 39: ReferenceError: getSummary is not defined
1707401214342 addons.xpi ERROR System addon update list error SyntaxError: XMLHttpRequest.open: 'http://%(server)s/dummy-system-addons.xml' is not a valid URL.
JavaScript error: https://old-epaper.jugantor.com/2020/07/27/index.php, line 39: ReferenceError: getSummary is not defined
JavaScript error: https://old-epaper.jugantor.com/2020/07/27/index.php, line 39: ReferenceError: getSummary is not defined
JavaScript error: https://old-epaper.jugantor.com/2020/07/27/index.php, line 39: ReferenceError: getSummary is not defined
JavaScript error: https://old-epaper.jugantor.com/2020/07/27/index.php, line 39: ReferenceError: getSummary is not defined
JavaScript error: https://old-epaper.jugantor.com/2020/07/27/index.php, line 39: ReferenceError: getSummary is not defined
JavaScript error: https://old-epaper.jugantor.com/2020/07/27/index.php, line 39: ReferenceError: getSummary is not defined
JavaScript error: https://old-epaper.jugantor.com/2020/07/27/index.php, line 39: ReferenceError: getSummary is not defined
JavaScript error: https://old-epaper.jugantor.com/2020/07/27/index.php, line 39: ReferenceError: getSummary is not defined
JavaScript error: https://old-epaper.jugantor.com/2020/07/27/index.php, line 39: ReferenceError: getSummary is not defined
JavaScript error: https://old-epaper.jugantor.com/2020/07/27/index.php, line 39: ReferenceError: getSummary is not defined
JavaScript error: https://old-epaper.jugantor.com/2020/07/27/index.php, line 39: ReferenceError: getSummary is not defined
JavaScript error: https://old-epaper.jugantor.com/2020/07/27/index.php, line 39: ReferenceError: getSummary is not defined
1707401428694 Marionette INFO Stopped listening on port 59691
Dynamically enable window occlusion 1
1707413988086 geckodriver INFO Listening on 127.0.0.1:51578
1707413991153 mozrunner::runner INFO Running command: "C:\\Program Files\\Mozilla Firefox\\firefox.exe" "--marionette" "-no-remote" "-profile" "C:\\Users\\hamid\\AppData\\Local\\Temp\\rust_mozprofileYrdvMJ"
console.warn: services.settings: Ignoring preference override of remote settings server
console.warn: services.settings: Allow by setting MOZ_REMOTE_SETTINGS_DEVTOOLS=1 in the environment
1707413991354 Marionette INFO Marionette enabled
Dynamically enable window occlusion 0
1707413991401 Marionette INFO Listening on port 51590
Read port: 51590
1707413991511 RemoteAgent WARN TLS certificate errors will be ignored for this session
JavaScript warning: https://pagead2.googlesyndication.com/bg/s6Lo-ySsTFszeicWuLCsm9BIHYA2isJaSryvoQutTtY.js line 2 > eval line 827 > eval line 1 > eval line 1 > eval, line 1: WEBGL_debug_renderer_info is deprecated in Firefox and will be removed. Please use RENDERER.
JavaScript error: https://old-epaper.jugantor.com/2020/07/28/index.php, line 39: ReferenceError: getSummary is not defined
Exiting due to channel error.
Exiting due to channel error.
1707480082277 geckodriver INFO Listening on 127.0.0.1:54962
1707480085342 mozrunner::runner INFO Running command: "C:\\Program Files\\Mozilla Firefox\\firefox.exe" "--marionette" "-no-remote" "-profile" "C:\\Users\\hamid\\AppData\\Local\\Temp\\rust_mozprofileytUaFd"
console.warn: services.settings: Ignoring preference override of remote settings server
console.warn: services.settings: Allow by setting MOZ_REMOTE_SETTINGS_DEVTOOLS=1 in the environment
1707480085632 Marionette INFO Marionette enabled
Dynamically enable window occlusion 0
1707480085830 Marionette INFO Listening on port 54972
Read port: 54972
1707480085960 RemoteAgent WARN TLS certificate errors will be ignored for this session
1707480110937 Marionette INFO Stopped listening on port 54972
Dynamically enable window occlusion 1
1708781183536 geckodriver INFO Listening on 127.0.0.1:8586
1708781186602 mozrunner::runner INFO Running command: "C:\\Program Files\\Mozilla Firefox\\firefox.exe" "--marionette" "-no-remote" "-profile" "C:\\Users\\hamid\\AppData\\Local\\Temp\\rust_mozprofileX9bZ2N"
console.warn: services.settings: Ignoring preference override of remote settings server
console.warn: services.settings: Allow by setting MOZ_REMOTE_SETTINGS_DEVTOOLS=1 in the environment
1708781186873 Marionette INFO Marionette enabled
Dynamically enable window occlusion 0
1708781187085 Marionette INFO Listening on port 8596
Read port: 8596
1708781187210 RemoteAgent WARN TLS certificate errors will be ignored for this session
1708781192399 Marionette INFO Stopped listening on port 8596
Dynamically enable window occlusion 1
JavaScript error: chrome://remote/content/marionette/cert.sys.mjs, line 51: NS_ERROR_NOT_AVAILABLE: Component returned failure code: 0x80040111 (NS_ERROR_NOT_AVAILABLE) [nsICertOverrideService.setDisableAllSecurityChecksAndLetAttackersInterceptMyData]
JavaScript error: chrome://remote/content/marionette/cert.sys.mjs, line 51: NS_ERROR_NOT_AVAILABLE: Component returned failure code: 0x80040111 (NS_ERROR_NOT_AVAILABLE) [nsICertOverrideService.setDisableAllSecurityChecksAndLetAttackersInterceptMyData]
1708781637967 geckodriver INFO Listening on 127.0.0.1:8782
1708781641014 mozrunner::runner INFO Running command: "C:\\Program Files\\Mozilla Firefox\\firefox.exe" "--marionette" "-no-remote" "-profile" "C:\\Users\\hamid\\AppData\\Local\\Temp\\rust_mozprofileRwVeFH"
console.warn: services.settings: Ignoring preference override of remote settings server
console.warn: services.settings: Allow by setting MOZ_REMOTE_SETTINGS_DEVTOOLS=1 in the environment
1708781641258 Marionette INFO Marionette enabled
Dynamically enable window occlusion 0
1708781641442 Marionette INFO Listening on port 8795
Read port: 8795
1708781641550 RemoteAgent WARN TLS certificate errors will be ignored for this session
1708781671727 addons.xpi ERROR System addon update list error SyntaxError: XMLHttpRequest.open: 'http://%(server)s/dummy-system-addons.xml' is not a valid URL.
1708781687890 Marionette INFO Stopped listening on port 8795
Dynamically enable window occlusion 1
1709856675653 geckodriver INFO Listening on 127.0.0.1:7253
1709856678716 mozrunner::runner INFO Running command: "C:\\Program Files\\Mozilla Firefox\\firefox.exe" "--marionette" "-no-remote" "-profile" "C:\\Users\\hamid\\AppData\\Local\\Temp\\rust_mozprofilePvOzLO"
console.warn: services.settings: Ignoring preference override of remote settings server
console.warn: services.settings: Allow by setting MOZ_REMOTE_SETTINGS_DEVTOOLS=1 in the environment
1709856679043 Marionette INFO Marionette enabled
Dynamically enable window occlusion 0
1709856679276 Marionette INFO Listening on port 7263
Read port: 7263
1709856679416 RemoteAgent WARN TLS certificate errors will be ignored for this session
1709856710641 addons.xpi ERROR System addon update list error SyntaxError: XMLHttpRequest.open: 'http://%(server)s/dummy-system-addons.xml' is not a valid URL.
1709857115169 Marionette INFO Stopped listening on port 7263
Dynamically enable window occlusion 1
ng command: "C:\\Program Files\\Mozilla Firefox\\firefox.exe" "--marionette" "-no-remote" "-profile" "C:\\Users\\hamid\\AppData\\Local\\Temp\\rust_mozprofileITHfhh"
console.warn: services.settings: Ignoring preference override of remote settings server
console.warn: services.settings: Allow by setting MOZ_REMOTE_SETTINGS_DEVTOOLS=1 in the environment
1709856818554 Marionette INFO Marionette enabled
Dynamically enable window occlusion 0
1709856818625 Marionette INFO Listening on port 7350
Read port: 7350
1709856818841 RemoteAgent WARN TLS certificate errors will be ignored for this session
JavaScript error: https://get.s-onetag.com/underground-sync-portal/Portal.js, line 2: SecurityError: The operation is insecure.
JavaScript warning: https://pagead2.googlesyndication.com/bg/O8T1Km08OhS5_Tz58jKeajrFynp-IyfJlJwKv1268Sc.js line 2 > eval line 147 > eval line 1 > eval line 1 > eval, line 1: WEBGL_debug_renderer_info is deprecated in Firefox and will be removed. Please use RENDERER.
JavaScript error: https://get.s-onetag.com/underground-sync-portal/Portal.js, line 2: SecurityError: The operation is insecure.
JavaScript warning: https://get.s-onetag.com/f0c84061-4182-4398-8e37-5ff5b5698a6f/tag.min.js, line 12: Script terminated by timeout at:
G@https://get.s-onetag.com/f0c84061-4182-4398-8e37-5ff5b5698a6f/tag.min.js:12:300
1709856837909 Marionette INFO Stopped listening on port 7350
Dynamically enable window occlusion 1
1709856876300 geckodriver INFO Listening on 127.0.0.1:7458
1709856879344 mozrunner::runner INFO Running command: "C:\\Program Files\\Mozilla Firefox\\firefox.exe" "--marionette" "-no-remote" "-profile" "C:\\Users\\hamid\\AppData\\Local\\Temp\\rust_mozprofileWmNw2A"
console.warn: services.settings: Ignoring preference override of remote settings server
console.warn: services.settings: Allow by setting MOZ_REMOTE_SETTINGS_DEVTOOLS=1 in the environment
1709856879566 Marionette INFO Marionette enabled
Dynamically enable window occlusion 0
1709856879616 Marionette INFO Listening on port 7468
Read port: 7468
1709856879732 RemoteAgent WARN TLS certificate errors will be ignored for this session
JavaScript warning: https://pagead2.googlesyndication.com/bg/O8T1Km08OhS5_Tz58jKeajrFynp-IyfJlJwKv1268Sc.js line 2 > eval line 2322 > eval line 1 > eval line 1 > eval, line 1: WEBGL_debug_renderer_info is deprecated in Firefox and will be removed. Please use RENDERER.
JavaScript error: https://old-epaper.jugantor.com/2016/01/01/index.php, line 39: ReferenceError: getSummary is not defined
JavaScript error: https://old-epaper.jugantor.com/2016/01/01/index.php, line 39: ReferenceError: getSummary is not defined
JavaScript error: https://old-epaper.jugantor.com/2016/01/01/index.php, line 39: ReferenceError: getSummary is not defined
JavaScript error: https://old-epaper.jugantor.com/2016/01/01/index.php, line 39: ReferenceError: getSummary is not defined
1709856910212 addons.xpi ERROR System addon update list error SyntaxError: XMLHttpRequest.open: 'http://%(server)s/dummy-system-addons.xml' is not a valid URL.
JavaScript error: https://old-epaper.jugantor.com/2016/01/01/index.php, line 39: ReferenceError: getSummary is not defined
JavaScript error: https://old-epaper.jugantor.com/2016/01/01/index.php, line 39: ReferenceError: getSummary is not defined
JavaScript error: https://old-epaper.jugantor.com/2016/01/01/index.php, line 39: ReferenceError: getSummary is not defined
JavaScript error: https://old-epaper.jugantor.com/2016/01/01/index.php, line 39: ReferenceError: getSummary is not defined
JavaScript error: https://old-epaper.jugantor.com/2016/01/01/index.php, line 39: ReferenceError: getSummary is not defined
JavaScript error: https://old-epaper.jugantor.com/2016/01/01/index.php, line 39: ReferenceError: getSummary is not defined
JavaScript error: https://old-epaper.jugantor.com/2016/01/01/index.php, line 39: ReferenceError: getSummary is not defined
JavaScript error: https://old-epaper.jugantor.com/2016/01/01/index.php, line 39: ReferenceError: getSummary is not defined
JavaScript error: https://old-epaper.jugantor.com/2016/01/01/index.php, line 39: ReferenceError: getSummary is not defined
JavaScript error: https://old-epaper.jugantor.com/2016/01/01/index.php, line 39: ReferenceError: getSummary is not defined
JavaScript error: https://old-epaper.jugantor.com/2016/01/01/index.php, line 39: ReferenceError: getSummary is not defined
JavaScript error: https://old-epaper.jugantor.com/2016/01/01/index.php, line 39: ReferenceError: getSummary is not defined
JavaScript error: https://old-epaper.jugantor.com/2016/01/01/index.php, line 39: ReferenceError: getSummary is not defined
JavaScript error: https://old-epaper.jugantor.com/2016/01/01/index.php, line 39: ReferenceError: getSummary is not defined
JavaScript error: https://old-epaper.jugantor.com/2016/01/01/index.php, line 39: ReferenceError: getSummary is not defined
1709856979840 Marionette INFO Stopped listening on port 7468
Dynamically enable window occlusion 1
1709925256426 geckodriver INFO Listening on 127.0.0.1:7620
1709925259475 mozrunner::runner INFO Running command: "C:\\Program Files\\Mozilla Firefox\\firefox.exe" "--marionette" "-no-remote" "-profile" "C:\\Users\\hamid\\AppData\\Local\\Temp\\rust_mozprofileMNHSZG"
console.warn: services.settings: Ignoring preference override of remote settings server
console.warn: services.settings: Allow by setting MOZ_REMOTE_SETTINGS_DEVTOOLS=1 in the environment
1709925259785 Marionette INFO Marionette enabled
Dynamically enable window occlusion 0
1709925259999 Marionette INFO Listening on port 7630
Read port: 7630
1709925260129 RemoteAgent WARN TLS certificate errors will be ignored for this session
JavaScript warning: https://pagead2.googlesyndication.com/bg/O8T1Km08OhS5_Tz58jKeajrFynp-IyfJlJwKv1268Sc.js line 2 > eval line 2101 > eval line 1 > eval line 1 > eval, line 1: WEBGL_debug_renderer_info is deprecated in Firefox and will be removed. Please use RENDERER.
JavaScript warning: https://pagead2.googlesyndication.com/bg/O8T1Km08OhS5_Tz58jKeajrFynp-IyfJlJwKv1268Sc.js line 2 > eval line 2892 > eval line 1 > eval line 1 > eval, line 1: WEBGL_debug_renderer_info is deprecated in Firefox and will be removed. Please use RENDERER.
1709925271778 Marionette INFO Stopped listening on port 7630
Dynamically enable window occlusion 1
1709926259003 geckodriver INFO Listening on 127.0.0.1:8137
1709926262061 mozrunner::runner INFO Running command: "C:\\Program Files\\Mozilla Firefox\\firefox.exe" "--marionette" "-no-remote" "-profile" "C:\\Users\\hamid\\AppData\\Local\\Temp\\rust_mozprofileHlur7L"
console.warn: services.settings: Ignoring preference override of remote settings server
console.warn: services.settings: Allow by setting MOZ_REMOTE_SETTINGS_DEVTOOLS=1 in the environment
1709926262339 Marionette INFO Marionette enabled
Dynamically enable window occlusion 0
1709926262526 Marionette INFO Listening on port 8147
Read port: 8147
1709926262645 RemoteAgent WARN TLS certificate errors will be ignored for this session
1709926292362 addons.xpi ERROR System addon update list error SyntaxError: XMLHttpRequest.open: 'http://%(server)s/dummy-system-addons.xml' is not a valid URL.
1709926349038 Marionette INFO Stopped listening on port 8147
Dynamically enable window occlusion 1
1709926354739 geckodriver INFO Listening on 127.0.0.1:8210
1709926357818 mozrunner::runner INFO Running command: "C:\\Program Files\\Mozilla Firefox\\firefox.exe" "--marionette" "-no-remote" "-profile" "C:\\Users\\hamid\\AppData\\Local\\Temp\\rust_mozprofilesx0YOh"
console.warn: services.settings: Ignoring preference override of remote settings server
console.warn: services.settings: Allow by setting MOZ_REMOTE_SETTINGS_DEVTOOLS=1 in the environment
1709926358111 Marionette INFO Marionette enabled
Dynamically enable window occlusion 0
1709926358298 Marionette INFO Listening on port 8220
Read port: 8220
1709926358413 RemoteAgent WARN TLS certificate errors will be ignored for this session
1709926422235 geckodriver INFO Listening on 127.0.0.1:8272
1709926425277 mozrunner::runner INFO Running command: "C:\\Program Files\\Mozilla Firefox\\firefox.exe" "--marionette" "-no-remote" "-profile" "C:\\Users\\hamid\\AppData\\Local\\Temp\\rust_mozprofilerDSji6"
console.warn: services.settings: Ignoring preference override of remote settings server
console.warn: services.settings: Allow by setting MOZ_REMOTE_SETTINGS_DEVTOOLS=1 in the environment
1709926425566 Marionette INFO Marionette enabled
Dynamically enable window occlusion 0
1709926425889 Marionette INFO Listening on port 8284
Read port: 8284
1709926426007 RemoteAgent WARN TLS certificate errors will be ignored for this session
1709926456188 addons.xpi ERROR System addon update list error SyntaxError: XMLHttpRequest.open: 'http://%(server)s/dummy-system-addons.xml' is not a valid URL.
1709926601105 Marionette INFO Stopped listening on port 8284
Dynamically enable window occlusion 1
1709926604960 geckodriver INFO Listening on 127.0.0.1:8393
1709926608017 mozrunner::runner INFO Running command: "C:\\Program Files\\Mozilla Firefox\\firefox.exe" "--marionette" "-no-remote" "-profile" "C:\\Users\\hamid\\AppData\\Local\\Temp\\rust_mozprofilelCxB74"
console.warn: services.settings: Ignoring preference override of remote settings server
console.warn: services.settings: Allow by setting MOZ_REMOTE_SETTINGS_DEVTOOLS=1 in the environment
1709926608306 Marionette INFO Marionette enabled
Dynamically enable window occlusion 0
1709926608617 Marionette INFO Listening on port 8403
Read port: 8403
1709926608719 RemoteAgent WARN TLS certificate errors will be ignored for this session
1709926617653 Marionette INFO Stopped listening on port 8403
Dynamically enable window occlusion 1
1709927525846 geckodriver INFO Listening on 127.0.0.1:8853
1709927751887 geckodriver INFO Listening on 127.0.0.1:9267
1709928385822 geckodriver INFO Listening on 127.0.0.1:9529
1709929026261 geckodriver INFO Listening on 127.0.0.1:10388
1709932133902 geckodriver INFO Listening on 127.0.0.1:11710
1709933882201 geckodriver INFO Listening on 127.0.0.1:14689
1709934409688 geckodriver INFO Listening on 127.0.0.1:1640
1709934968537 geckodriver INFO Listening on 127.0.0.1:2475
1709935458247 geckodriver INFO Listening on 127.0.0.1:3225
1709935979399 geckodriver INFO Listening on 127.0.0.1:3986
1709939134114 geckodriver INFO Listening on 127.0.0.1:8773
1709939683163 geckodriver INFO Listening on 127.0.0.1:9573
1709940184356 geckodriver INFO Listening on 127.0.0.1:10333
1709941000388 geckodriver INFO Listening on 127.0.0.1:11209
1709942191603 geckodriver INFO Listening on 127.0.0.1:12160
1709949289733 geckodriver INFO Listening on 127.0.0.1:9424
1709950844799 geckodriver INFO Listening on 127.0.0.1:11278
1710004676748 geckodriver INFO Listening on 127.0.0.1:5139
1710009169750 geckodriver INFO Listening on 127.0.0.1:11179
1710009390151 geckodriver INFO Listening on 127.0.0.1:11302
1710009981121 geckodriver INFO Listening on 127.0.0.1:12202
1710010924249 geckodriver INFO Listening on 127.0.0.1:14368
1710011560843 geckodriver INFO Listening on 127.0.0.1:2027
1710012095112 geckodriver INFO Listening on 127.0.0.1:4021
1710012543362 geckodriver INFO Listening on 127.0.0.1:4549
1710012659968 geckodriver INFO Listening on 127.0.0.1:4631
1710012929068 geckodriver INFO Listening on 127.0.0.1:4842
1710013373086 geckodriver INFO Listening on 127.0.0.1:5016
1710013677811 geckodriver INFO Listening on 127.0.0.1:6079
1710014370241 geckodriver INFO Listening on 127.0.0.1:9140
1710024826866 geckodriver INFO Listening on 127.0.0.1:9469
1710084366916 geckodriver INFO Listening on 127.0.0.1:8593
1710084868468 geckodriver INFO Listening on 127.0.0.1:8684
1710086664475 geckodriver INFO Listening on 127.0.0.1:1702
1710178237838 geckodriver INFO Listening on 127.0.0.1:5852
1710483197848 geckodriver INFO Listening on 127.0.0.1:6430
1710483791846 geckodriver INFO Listening on 127.0.0.1:6743
1710484189076 geckodriver INFO Listening on 127.0.0.1:6950
1710484291225 geckodriver INFO Listening on 127.0.0.1:7038
1710484392983 geckodriver INFO Listening on 127.0.0.1:7119
1710484401491 geckodriver INFO Listening on 127.0.0.1:7131
1710484431709 geckodriver INFO Listening on 127.0.0.1:7177
1710484503597 geckodriver INFO Listening on 127.0.0.1:7292
1710484608357 geckodriver INFO Listening on 127.0.0.1:7357
1710484683035 geckodriver INFO Listening on 127.0.0.1:7445
1710484687886 geckodriver INFO Listening on 127.0.0.1:7460
1710484731344 geckodriver INFO Listening on 127.0.0.1:7520
1710484740140 geckodriver INFO Listening on 127.0.0.1:7535
1710485277355 geckodriver INFO Listening on 127.0.0.1:7817
1710485282680 geckodriver INFO Listening on 127.0.0.1:7829
1710485511951 geckodriver INFO Listening on 127.0.0.1:7972
1710485875003 geckodriver INFO Listening on 127.0.0.1:8159
1710485939893 geckodriver INFO Listening on 127.0.0.1:8225
1710485942852 geckodriver INFO Listening on 127.0.0.1:8235
1710486009961 geckodriver INFO Listening on 127.0.0.1:8301
1710486125787 geckodriver INFO Listening on 127.0.0.1:8380
1710486272724 geckodriver INFO Listening on 127.0.0.1:8510
1710486344650 geckodriver INFO Listening on 127.0.0.1:8586
1710486381252 geckodriver INFO Listening on 127.0.0.1:8637
1710486483104 geckodriver INFO Listening on 127.0.0.1:8705
1710486493810 geckodriver INFO Listening on 127.0.0.1:8720
1710486979481 geckodriver INFO Listening on 127.0.0.1:8935
1710487142282 geckodriver INFO Listening on 127.0.0.1:9053
1710487250887 geckodriver INFO Listening on 127.0.0.1:9139
1710487304554 geckodriver INFO Listening on 127.0.0.1:9168
1710487845040 geckodriver INFO Listening on 127.0.0.1:9795
1710488457446 geckodriver INFO Listening on 127.0.0.1:11822
1710488894065 geckodriver INFO Listening on 127.0.0.1:11969
1710489177780 geckodriver INFO Listening on 127.0.0.1:12100
1710499507462 geckodriver INFO Listening on 127.0.0.1:10041
1710510720684 geckodriver INFO Listening on 127.0.0.1:8694
1710510765536 geckodriver INFO Listening on 127.0.0.1:8741
1710535979503 geckodriver INFO Listening on 127.0.0.1:10547
1710566372758 geckodriver INFO Listening on 127.0.0.1:11683
1710568924953 geckodriver INFO Listening on 127.0.0.1:10648
1710631427540 geckodriver INFO Listening on 127.0.0.1:13336
1710632271552 geckodriver INFO Listening on 127.0.0.1:13794
1710632324975 geckodriver INFO Listening on 127.0.0.1:13839
1710632425905 geckodriver INFO Listening on 127.0.0.1:13909
1710634277329 geckodriver INFO Listening on 127.0.0.1:14971
1710634313982 geckodriver INFO Listening on 127.0.0.1:1029
1710634357979 geckodriver INFO Listening on 127.0.0.1:1081
1710634386154 geckodriver INFO Listening on 127.0.0.1:1110
1710634516402 geckodriver INFO Listening on 127.0.0.1:1214
1710634556763 geckodriver INFO Listening on 127.0.0.1:1255
1710634571356 geckodriver INFO Listening on 127.0.0.1:1274
1710634746844 geckodriver INFO Listening on 127.0.0.1:1403
1710634772260 geckodriver INFO Listening on 127.0.0.1:1434
1710659885820 geckodriver INFO Listening on 127.0.0.1:12964
1710660095655 geckodriver INFO Listening on 127.0.0.1:13142
1710660103047 geckodriver INFO Listening on 127.0.0.1:13157
1710660199578 geckodriver INFO Listening on 127.0.0.1:13248
1710660355617 geckodriver INFO Listening on 127.0.0.1:13415
1710660366372 geckodriver INFO Listening on 127.0.0.1:13435
1710660501521 geckodriver INFO Listening on 127.0.0.1:13555
1710660517977 geckodriver INFO Listening on 127.0.0.1:13579
1710660569844 geckodriver INFO Listening on 127.0.0.1:13637
1710660573945 geckodriver INFO Listening on 127.0.0.1:13651
1710660637677 geckodriver INFO Listening on 127.0.0.1:13719
1710661123751 geckodriver INFO Listening on 127.0.0.1:14149
1710661129661 geckodriver INFO Listening on 127.0.0.1:14164
1710661193235 geckodriver INFO Listening on 127.0.0.1:14236
1710663175478 geckodriver INFO Listening on 127.0.0.1:1896
1710663283879 geckodriver INFO Listening on 127.0.0.1:2021
1710663364008 geckodriver INFO Listening on 127.0.0.1:2125
1710663547200 geckodriver INFO Listening on 127.0.0.1:2295
1710663586185 geckodriver INFO Listening on 127.0.0.1:2365
1710663966401 geckodriver INFO Listening on 127.0.0.1:3115
1710665066092 geckodriver INFO Listening on 127.0.0.1:4243
1710665269578 geckodriver INFO Listening on 127.0.0.1:4756
1710665410510 geckodriver INFO Listening on 127.0.0.1:5176
1710665945440 geckodriver INFO Listening on 127.0.0.1:5974
1710665960847 geckodriver INFO Listening on 127.0.0.1:5993
1710666015950 geckodriver INFO Listening on 127.0.0.1:6155
1710666887431 geckodriver INFO Listening on 127.0.0.1:7203
1710667020450 geckodriver INFO Listening on 127.0.0.1:7341
1710667188173 geckodriver INFO Listening on 127.0.0.1:7554
1710668114248 geckodriver INFO Listening on 127.0.0.1:9015
1710718056453 geckodriver INFO Listening on 127.0.0.1:13433
1710718203743 geckodriver INFO Listening on 127.0.0.1:13485
1710718477236 geckodriver INFO Listening on 127.0.0.1:13569
1710718619047 geckodriver INFO Listening on 127.0.0.1:13610
1710719054121 geckodriver INFO Listening on 127.0.0.1:13740
1710719184856 geckodriver INFO Listening on 127.0.0.1:13787
1710719377126 geckodriver INFO Listening on 127.0.0.1:13845
1710719976968 geckodriver INFO Listening on 127.0.0.1:14100
1710720014329 geckodriver INFO Listening on 127.0.0.1:14121
1710720119318 geckodriver INFO Listening on 127.0.0.1:14165
1710763717853 geckodriver INFO Listening on 127.0.0.1:4006
1712131978002 geckodriver INFO Listening on 127.0.0.1:6174
1712132117759 geckodriver INFO Listening on 127.0.0.1:6359
1712132200557 geckodriver INFO Listening on 127.0.0.1:6447
1712132309967 geckodriver INFO Listening on 127.0.0.1:6604
1712132377413 geckodriver INFO Listening on 127.0.0.1:6717
1712132421128 geckodriver INFO Listening on 127.0.0.1:6780
1712132436384 geckodriver INFO Listening on 127.0.0.1:6819
1712132484802 geckodriver INFO Listening on 127.0.0.1:6879
1712132507466 geckodriver INFO Listening on 127.0.0.1:6917
1712132547086 geckodriver INFO Listening on 127.0.0.1:6974
1712132650376 geckodriver INFO Listening on 127.0.0.1:7067
1712132670382 geckodriver INFO Listening on 127.0.0.1:7118
1712132682750 geckodriver INFO Listening on 127.0.0.1:7153
1712132791959 geckodriver INFO Listening on 127.0.0.1:7263
1712132923890 geckodriver INFO Listening on 127.0.0.1:7381
1712133098373 geckodriver INFO Listening on 127.0.0.1:7528
1712133137028 geckodriver INFO Listening on 127.0.0.1:7586
1712133563207 geckodriver INFO Listening on 127.0.0.1:7924
1712133689740 geckodriver INFO Listening on 127.0.0.1:8054
1712133829119 geckodriver INFO Listening on 127.0.0.1:8181
1712134300874 geckodriver INFO Listening on 127.0.0.1:8564
1712134491874 geckodriver INFO Listening on 127.0.0.1:8738
1712134962420 geckodriver INFO Listening on 127.0.0.1:9143
1712135000991 geckodriver INFO Listening on 127.0.0.1:9210
1712135041037 geckodriver INFO Listening on 127.0.0.1:9270
1712135115328 geckodriver INFO Listening on 127.0.0.1:9382
1712135503107 geckodriver INFO Listening on 127.0.0.1:9701
1712135575290 geckodriver INFO Listening on 127.0.0.1:9772
1712136540976 geckodriver INFO Listening on 127.0.0.1:10520
1712136570378 geckodriver INFO Listening on 127.0.0.1:10573
1712136631550 geckodriver INFO Listening on 127.0.0.1:10663
1712136681456 geckodriver INFO Listening on 127.0.0.1:10734
1712136735498 geckodriver INFO Listening on 127.0.0.1:10797
1712136756013 geckodriver INFO Listening on 127.0.0.1:10854
1712136945376 geckodriver INFO Listening on 127.0.0.1:11038
1712136974961 geckodriver INFO Listening on 127.0.0.1:11095
1712137042363 geckodriver INFO Listening on 127.0.0.1:11176
1712137128743 geckodriver INFO Listening on 127.0.0.1:11281
1712137148488 geckodriver INFO Listening on 127.0.0.1:11324
1712137238683 geckodriver INFO Listening on 127.0.0.1:11421
1712137750415 geckodriver INFO Listening on 127.0.0.1:11848
1712137814326 geckodriver INFO Listening on 127.0.0.1:11934
1712138072306 geckodriver INFO Listening on 127.0.0.1:12174
1712138136805 geckodriver INFO Listening on 127.0.0.1:12266
1712138283102 geckodriver INFO Listening on 127.0.0.1:12406
1712138329300 geckodriver INFO Listening on 127.0.0.1:12505
1712138424616 geckodriver INFO Listening on 127.0.0.1:12605
1712138556969 geckodriver INFO Listening on 127.0.0.1:12737
1712138595926 geckodriver INFO Listening on 127.0.0.1:12800
1712138814994 geckodriver INFO Listening on 127.0.0.1:12980
1712138968916 geckodriver INFO Listening on 127.0.0.1:13159
1712139002601 geckodriver INFO Listening on 127.0.0.1:13214
1712139288460 geckodriver INFO Listening on 127.0.0.1:13467
1712139316317 geckodriver INFO Listening on 127.0.0.1:13517
1712139579972 geckodriver INFO Listening on 127.0.0.1:13764
1712139638807 geckodriver INFO Listening on 127.0.0.1:13838
1712139682450 geckodriver INFO Listening on 127.0.0.1:13899
1712140196452 geckodriver INFO Listening on 127.0.0.1:14333
1712140297719 geckodriver INFO Listening on 127.0.0.1:14438
1712140323016 geckodriver INFO Listening on 127.0.0.1:14483
1712140379256 geckodriver INFO Listening on 127.0.0.1:14555
1712140704743 geckodriver INFO Listening on 127.0.0.1:14817
1712140819640 geckodriver INFO Listening on 127.0.0.1:14933
1712140846629 geckodriver INFO Listening on 127.0.0.1:14980
1712140902050 geckodriver INFO Listening on 127.0.0.1:1079
1712141173243 geckodriver INFO Listening on 127.0.0.1:1360
1712141265453 geckodriver INFO Listening on 127.0.0.1:1447
1712141630268 geckodriver INFO Listening on 127.0.0.1:1774
1712141692014 geckodriver INFO Listening on 127.0.0.1:1852
1712141793757 geckodriver INFO Listening on 127.0.0.1:1945
1712141826471 geckodriver INFO Listening on 127.0.0.1:1991
1712141944554 geckodriver INFO Listening on 127.0.0.1:2164
1712141979743 geckodriver INFO Listening on 127.0.0.1:2245
1712142039318 geckodriver INFO Listening on 127.0.0.1:2323
1712142087603 geckodriver INFO Listening on 127.0.0.1:2399
1712142110663 geckodriver INFO Listening on 127.0.0.1:2444
1712142399619 geckodriver INFO Listening on 127.0.0.1:2675
1712142453516 geckodriver INFO Listening on 127.0.0.1:2757
1712142463721 geckodriver INFO Listening on 127.0.0.1:2768
1712142630502 geckodriver INFO Listening on 127.0.0.1:2926
1712146556830 geckodriver INFO Listening on 127.0.0.1:5925
1712223754258 geckodriver INFO Listening on 127.0.0.1:4400
1712223801778 geckodriver INFO Listening on 127.0.0.1:4505
1712223886339 geckodriver INFO Listening on 127.0.0.1:4573
1712223937746 geckodriver INFO Listening on 127.0.0.1:4621
1712224975784 geckodriver INFO Listening on 127.0.0.1:4970
1712225052080 geckodriver INFO Listening on 127.0.0.1:5023
1712225343717 geckodriver INFO Listening on 127.0.0.1:5152
1712226957560 geckodriver INFO Listening on 127.0.0.1:5649
1712227147979 geckodriver INFO Listening on 127.0.0.1:5729
1712227338314 geckodriver INFO Listening on 127.0.0.1:5840
1712227359900 geckodriver INFO Listening on 127.0.0.1:5869
1712349929493 geckodriver INFO Listening on 127.0.0.1:10328
1712350196590 geckodriver INFO Listening on 127.0.0.1:10563
1712350205852 geckodriver INFO Listening on 127.0.0.1:10581
1712350396266 geckodriver INFO Listening on 127.0.0.1:10743
1712350495935 geckodriver INFO Listening on 127.0.0.1:10862
1712350715061 geckodriver INFO Listening on 127.0.0.1:11030
1712350743993 geckodriver INFO Listening on 127.0.0.1:11082
1712350788313 geckodriver INFO Listening on 127.0.0.1:11142
1712351046318 geckodriver INFO Listening on 127.0.0.1:11332
1712351063509 geckodriver INFO Listening on 127.0.0.1:11361
1714593447531 geckodriver INFO Listening on 127.0.0.1:3230
1714593570982 geckodriver INFO Listening on 127.0.0.1:3266
1714593695882 geckodriver INFO Listening on 127.0.0.1:3305
1715000350772 geckodriver INFO Listening on 127.0.0.1:6661
1715000704563 geckodriver INFO Listening on 127.0.0.1:6788
1715001569188 geckodriver INFO Listening on 127.0.0.1:7179
1715001634971 geckodriver INFO Listening on 127.0.0.1:7207
1715002037666 geckodriver INFO Listening on 127.0.0.1:7349
1715002144838 geckodriver INFO Listening on 127.0.0.1:7397
1715002204034 geckodriver INFO Listening on 127.0.0.1:7429
1715002260231 geckodriver INFO Listening on 127.0.0.1:7461
1715002436637 geckodriver INFO Listening on 127.0.0.1:7512
1715002500973 geckodriver INFO Listening on 127.0.0.1:7544
1715002831117 geckodriver INFO Listening on 127.0.0.1:7635
1715002874427 geckodriver INFO Listening on 127.0.0.1:7665
1715003141704 geckodriver INFO Listening on 127.0.0.1:7752
1715003221793 geckodriver INFO Listening on 127.0.0.1:7787
1715003279501 geckodriver INFO Listening on 127.0.0.1:7815
1715003359036 geckodriver INFO Listening on 127.0.0.1:7860
1715003396405 geckodriver INFO Listening on 127.0.0.1:7884
1715004215529 geckodriver INFO Listening on 127.0.0.1:8093
1715004421463 geckodriver INFO Listening on 127.0.0.1:8172
1715004800690 geckodriver INFO Listening on 127.0.0.1:8274
1715005247740 geckodriver INFO Listening on 127.0.0.1:8383
1715005778515 geckodriver INFO Listening on 127.0.0.1:8532
1715005996980 geckodriver INFO Listening on 127.0.0.1:8628
1715006067824 geckodriver INFO Listening on 127.0.0.1:8667
1715006151286 geckodriver INFO Listening on 127.0.0.1:8707
1715006988960 geckodriver INFO Listening on 127.0.0.1:8908
1715008207169 geckodriver INFO Listening on 127.0.0.1:9235
1715008336950 geckodriver INFO Listening on 127.0.0.1:9286
1715008384449 geckodriver INFO Listening on 127.0.0.1:9308
1715008453593 geckodriver INFO Listening on 127.0.0.1:9338
1715008511206 geckodriver INFO Listening on 127.0.0.1:9372
1716190671784 geckodriver INFO Listening on 127.0.0.1:13102
1716190778911 geckodriver INFO Listening on 127.0.0.1:13157
1716281674681 geckodriver INFO Listening on 127.0.0.1:11942
1716281739001 geckodriver INFO Listening on 127.0.0.1:11982
1716287066057 geckodriver INFO Listening on 127.0.0.1:12700
1716287638128 geckodriver INFO Listening on 127.0.0.1:12779
1716287708454 geckodriver INFO Listening on 127.0.0.1:12806
1716287897816 geckodriver INFO Listening on 127.0.0.1:12939
1716288801025 geckodriver INFO Listening on 127.0.0.1:13070
1716288901026 geckodriver INFO Listening on 127.0.0.1:13092
1716289376743 geckodriver INFO Listening on 127.0.0.1:13167
1716289445008 geckodriver INFO Listening on 127.0.0.1:13195
1716289508679 geckodriver INFO Listening on 127.0.0.1:13224
1716289568003 geckodriver INFO Listening on 127.0.0.1:13246
1716289659990 geckodriver INFO Listening on 127.0.0.1:13274
1716290270571 geckodriver INFO Listening on 127.0.0.1:13338
1716290357648 geckodriver INFO Listening on 127.0.0.1:13366
1716290415930 geckodriver INFO Listening on 127.0.0.1:13393
1716291029568 geckodriver INFO Listening on 127.0.0.1:13468
1716291085572 geckodriver INFO Listening on 127.0.0.1:13489
1716291275927 geckodriver INFO Listening on 127.0.0.1:13520
1716291506786 geckodriver INFO Listening on 127.0.0.1:13567
1716291907535 geckodriver INFO Listening on 127.0.0.1:13644
1716292307233 geckodriver INFO Listening on 127.0.0.1:13725
1716292515891 geckodriver INFO Listening on 127.0.0.1:13772
1716293271056 geckodriver INFO Listening on 127.0.0.1:14250
1716293645893 geckodriver INFO Listening on 127.0.0.1:14322
1716297160044 geckodriver INFO Listening on 127.0.0.1:14987
1716297536964 geckodriver INFO Listening on 127.0.0.1:1153
1716297600777 geckodriver INFO Listening on 127.0.0.1:1182
1716299850507 geckodriver INFO Listening on 127.0.0.1:2299
1716299876723 geckodriver INFO Listening on 127.0.0.1:2390
1716299896456 geckodriver INFO Listening on 127.0.0.1:2469
1716300000927 geckodriver INFO Listening on 127.0.0.1:2577
1716300046511 geckodriver INFO Listening on 127.0.0.1:2651
1716300070763 geckodriver INFO Listening on 127.0.0.1:2681
1716300085734 geckodriver INFO Listening on 127.0.0.1:2709
1716300699337 geckodriver INFO Listening on 127.0.0.1:3127
1716300824144 geckodriver INFO Listening on 127.0.0.1:3233
1716301387621 geckodriver INFO Listening on 127.0.0.1:3608
1716301564735 geckodriver INFO Listening on 127.0.0.1:3749
1716301836405 geckodriver INFO Listening on 127.0.0.1:3974
1716301871946 geckodriver INFO Listening on 127.0.0.1:4080
1716302018739 geckodriver INFO Listening on 127.0.0.1:4244
1716302759189 geckodriver INFO Listening on 127.0.0.1:4745
1716476214799 geckodriver INFO Listening on 127.0.0.1:2773
1716476223397 geckodriver INFO Listening on 127.0.0.1:2782
1716476399058 geckodriver INFO Listening on 127.0.0.1:2869
1716476795589 geckodriver INFO Listening on 127.0.0.1:2979
1716476872098 geckodriver INFO Listening on 127.0.0.1:3049
1716476948605 geckodriver INFO Listening on 127.0.0.1:3104
1716477163051 geckodriver INFO Listening on 127.0.0.1:3258
1716477240518 geckodriver INFO Listening on 127.0.0.1:3412
1716477390195 geckodriver INFO Listening on 127.0.0.1:3458
1716478256742 geckodriver INFO Listening on 127.0.0.1:3863
1716478372243 geckodriver INFO Listening on 127.0.0.1:4266
1716479214642 geckodriver INFO Listening on 127.0.0.1:4695
1716479450405 geckodriver INFO Listening on 127.0.0.1:4933
1716480488183 geckodriver INFO Listening on 127.0.0.1:5174
1716480801150 geckodriver INFO Listening on 127.0.0.1:5675
1716480843459 geckodriver INFO Listening on 127.0.0.1:6012
1716480849428 geckodriver INFO Listening on 127.0.0.1:6025
1716481558239 geckodriver INFO Listening on 127.0.0.1:6260
1716482095891 geckodriver INFO Listening on 127.0.0.1:6376
1716482367386 geckodriver INFO Listening on 127.0.0.1:7060
1716484700215 geckodriver INFO Listening on 127.0.0.1:7594
1716484787778 geckodriver INFO Listening on 127.0.0.1:7657
1716489468724 geckodriver INFO Listening on 127.0.0.1:9753
1716490695116 geckodriver INFO Listening on 127.0.0.1:10352
1716490928317 geckodriver INFO Listening on 127.0.0.1:10433
1716491034162 geckodriver INFO Listening on 127.0.0.1:10475
1716491376603 geckodriver INFO Listening on 127.0.0.1:10567
C:\Users\hamid\.wdm\drivers\geckodriver\win64\v0.34.0\geckodriver.exe: error: unexpected argument '--headless' found
tip: a similar argument exists: '--help'
1716498148991 geckodriver INFO Listening on 127.0.0.1:13200
1716498251570 geckodriver INFO Listening on 127.0.0.1:13239
1716498423467 geckodriver INFO Listening on 127.0.0.1:13296
1716505739431 geckodriver INFO Listening on 127.0.0.1:1669
1716506493342 geckodriver INFO Listening on 127.0.0.1:3924
1716506533783 geckodriver INFO Listening on 127.0.0.1:3942
1716506649162 geckodriver INFO Listening on 127.0.0.1:4229
1716506769963 geckodriver INFO Listening on 127.0.0.1:4464
1716508579462 geckodriver INFO Listening on 127.0.0.1:5018
1716542970754 geckodriver INFO Listening on 127.0.0.1:1317
1716543073414 geckodriver INFO Listening on 127.0.0.1:1539