Skip to content

Commit

Permalink
[py] Deprecate Blackberry Driver support
Browse files Browse the repository at this point in the history
  • Loading branch information
AutomatedTester committed Nov 28, 2018
1 parent c621a76 commit 2ad4480
Showing 1 changed file with 5 additions and 0 deletions.
5 changes: 5 additions & 0 deletions py/selenium/webdriver/blackberry/webdriver.py
Original file line number Diff line number Diff line change
Expand Up @@ -52,6 +52,11 @@ class WebDriver(RemoteWebDriver):
"""
def __init__(self, device_password, bb_tools_dir=None,
hostip='169.254.0.1', port=1338, desired_capabilities={}):
import warnings
warnings.warn('BlackBerry Driver is no longer supported and will be '
'removed in future versions',
DeprecationWarning, stacklevel=2)

remote_addr = 'http://{}:{}'.format(hostip, port)

filename = 'blackberry-deploy'
Expand Down

0 comments on commit 2ad4480

Please sign in to comment.