From 6014af6cc92a27b8127d1d177f0e0e2b20b8c214 Mon Sep 17 00:00:00 2001 From: AutomatedTester Date: Thu, 30 Mar 2017 17:36:29 +0100 Subject: [PATCH] Add InvalidArgumentException --- py/selenium/common/exceptions.py | 7 +++++++ 1 file changed, 7 insertions(+) diff --git a/py/selenium/common/exceptions.py b/py/selenium/common/exceptions.py index 85002149a2b65..ff4cb2fc9b87f 100644 --- a/py/selenium/common/exceptions.py +++ b/py/selenium/common/exceptions.py @@ -240,3 +240,10 @@ class ImeActivationFailedException(WebDriverException): Thrown when activating an IME engine has failed. """ pass + + +class InvalidArgumentException(WebDriverException): + """ + The arguments passed to a command are either invalid or malformed. + """ + pass