Skip to content

Commit 24299b2

Browse files
Fix typo in python webdriver for IE (#9801) [skip ci]
1 parent 339bd90 commit 24299b2

1 file changed

Lines changed: 2 additions & 2 deletions

File tree

py/selenium/webdriver/ie/webdriver.py

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -60,8 +60,8 @@ def __init__(self, executable_path='IEDriverServer.exe', capabilities=None,
6060
warnings.warn('executable_path has been deprecated, please pass in a Service object',
6161
DeprecationWarning, stacklevel=2)
6262
if capabilities:
63-
warnings.warn('capabilities has been deprecated, please pass in a Options object.'
64-
'This field will be ignored if Options object also used.',
63+
warnings.warn('capabilities has been deprecated, please pass in an Options object.'
64+
'This field will be ignored if an Options object is also used.',
6565
DeprecationWarning, stacklevel=2)
6666
if port != DEFAULT_PORT:
6767
warnings.warn('port has been deprecated, please pass in a Service object',

0 commit comments

Comments
 (0)