We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent 0041d75 commit deb441fCopy full SHA for deb441f
examples/python/tests/browsers/test_internet_explorer.py
@@ -38,7 +38,7 @@ def test_log_to_file(log_path):
38
driver.quit()
39
40
41
-@pytest.mark.skip(reason="this is not supported, yet")
+@pytest.mark.skipif(sys.platform != "win32", reason="requires Windows")
42
def test_log_to_stdout(capfd):
43
service = webdriver.IeService(log_output=subprocess.STDOUT)
44
@@ -62,7 +62,7 @@ def test_log_level(log_path):
62
63
64
65
66
def test_supporting_files(temp_dir):
67
service = webdriver.IeService(service_args=["–extract-path="+temp_dir])
68
0 commit comments