Skip to content

Commit

Permalink
Fix typo in python webdriver for IE (#9801) [skip ci]
Browse files Browse the repository at this point in the history
  • Loading branch information
jacobtylerwalls authored Sep 8, 2021
1 parent 339bd90 commit 24299b2
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions py/selenium/webdriver/ie/webdriver.py
Original file line number Diff line number Diff line change
Expand Up @@ -60,8 +60,8 @@ def __init__(self, executable_path='IEDriverServer.exe', capabilities=None,
warnings.warn('executable_path has been deprecated, please pass in a Service object',
DeprecationWarning, stacklevel=2)
if capabilities:
warnings.warn('capabilities has been deprecated, please pass in a Options object.'
'This field will be ignored if Options object also used.',
warnings.warn('capabilities has been deprecated, please pass in an Options object.'
'This field will be ignored if an Options object is also used.',
DeprecationWarning, stacklevel=2)
if port != DEFAULT_PORT:
warnings.warn('port has been deprecated, please pass in a Service object',
Expand Down

0 comments on commit 24299b2

Please sign in to comment.