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 95c75ae commit e77a182Copy full SHA for e77a182
py/conftest.py
@@ -14,7 +14,7 @@
14
# KIND, either express or implied. See the License for the
15
# specific language governing permissions and limitations
16
# under the License.
17
-
+import logging
18
import os
19
import platform
20
import socket
@@ -140,6 +140,9 @@ def fin():
140
driver_path = request.config.option.executable
141
options = None
142
143
+ if os.environ.get("DEBUG"):
144
+ logging.getLogger("selenium").setLevel(logging.DEBUG)
145
+
146
global driver_instance
147
if driver_instance is None:
148
if driver_class == "Firefox":
0 commit comments