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 928ad44 commit 1126a38Copy full SHA for 1126a38
py/conftest.py
@@ -102,17 +102,6 @@ def pytest_generate_tests(metafunc):
102
metafunc.parametrize("driver", metafunc.config.option.drivers, indirect=True)
103
104
105
-def get_driver_class(driver_option):
106
- """Generate the driver class name from the lowercase driver option."""
107
- if driver_option == "webkitgtk":
108
- driver_class = "WebKitGTK"
109
- elif driver_option == "wpewebkit":
110
- driver_class = "WPEWebKit"
111
- else:
112
- driver_class = driver_option.capitalize()
113
- return driver_class
114
-
115
116
driver_instance = None
117
selenium_driver = None
118
0 commit comments