We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent f4977af commit 6f0287fCopy full SHA for 6f0287f
iarp_utils/browser/driver_mixins.py
@@ -1,3 +1,5 @@
1
+import os
2
+
3
4
class FirefoxPrintToPDFMixin:
5
@@ -23,3 +25,10 @@ def get_driver_options(self):
23
25
opts.set_preference("geo.prompt.testing.allow", False)
24
26
27
return opts
28
29
30
+class FirefoxDisableGeckodriverLogMixin:
31
32
+ def get_driver_service(self, *args, **kwargs):
33
+ kwargs.setdefault('log_path', os.devnull)
34
+ return super().get_driver_service(*args, **kwargs)
0 commit comments