From a8468f65a0469be85dffd41b15f8d0b32b445dba Mon Sep 17 00:00:00 2001 From: Diego Molina Date: Wed, 13 Dec 2023 14:20:06 +0100 Subject: [PATCH] [python] Tracking SM language binding in Python Helps with #13288 --- py/selenium/webdriver/common/selenium_manager.py | 2 ++ 1 file changed, 2 insertions(+) diff --git a/py/selenium/webdriver/common/selenium_manager.py b/py/selenium/webdriver/common/selenium_manager.py index b182225453612..a64ef0e41da7b 100644 --- a/py/selenium/webdriver/common/selenium_manager.py +++ b/py/selenium/webdriver/common/selenium_manager.py @@ -122,6 +122,8 @@ def run(args: List[str]) -> dict: """ if logger.getEffectiveLevel() == logging.DEBUG: args.append("--debug") + args.append("--language-binding") + args.append("python") args.append("--output") args.append("json")