File tree 2 files changed +4
-3
lines changed
iarp_utils/browser/mixins
2 files changed +4
-3
lines changed Original file line number Diff line number Diff line change
1
+ from . import firefox as firefox_mixins
Original file line number Diff line number Diff line change 1
1
import os
2
2
3
3
4
- class FirefoxPrintToPDFMixin :
4
+ class PrintToPDFMixin :
5
5
6
6
def get_driver_options (self ):
7
7
opts = super ().get_driver_options ()
@@ -14,7 +14,7 @@ def get_driver_options(self):
14
14
return opts
15
15
16
16
17
- class FirefoxDisableGeoLocationAbilitiesMixin :
17
+ class DisableGeoLocationAbilitiesMixin :
18
18
19
19
def get_driver_options (self ):
20
20
opts = super ().get_driver_options ()
@@ -27,7 +27,7 @@ def get_driver_options(self):
27
27
return opts
28
28
29
29
30
- class FirefoxDisableGeckodriverLogMixin :
30
+ class DisableGeckodriverLogMixin :
31
31
32
32
def get_driver_service (self , * args , ** kwargs ):
33
33
kwargs .setdefault ('log_path' , os .devnull )
You can’t perform that action at this time.
0 commit comments