From 00ebb717db8fbf524561c605f5a42ac5aae50370 Mon Sep 17 00:00:00 2001 From: Corey Goldberg <1113081+cgoldberg@users.noreply.github.com> Date: Wed, 9 Apr 2025 13:52:37 -0400 Subject: [PATCH] [py] Fix PyTest configuration for WPEWebKit --- py/conftest.py | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/py/conftest.py b/py/conftest.py index dbc3910c1e57b..b32f8e0ff8830 100644 --- a/py/conftest.py +++ b/py/conftest.py @@ -160,7 +160,7 @@ def fin(): options = get_options(driver_class, request.config) if driver_class == "WebKitGTK": options = get_options(driver_class, request.config) - if driver_class.lower() == "WPEWebKit": + if driver_class == "WPEWebKit": options = get_options(driver_class, request.config) if driver_class == "Remote": options = get_options("Firefox", request.config) or webdriver.FirefoxOptions()