Skip to content

Commit

Permalink
don't need to have a deprecated method that was never released :)
Browse files Browse the repository at this point in the history
  • Loading branch information
lukeis committed Mar 19, 2014
1 parent b770492 commit f8f41c8
Showing 1 changed file with 0 additions and 6 deletions.
6 changes: 0 additions & 6 deletions py/selenium/webdriver/remote/webdriver.py
Original file line number Diff line number Diff line change
Expand Up @@ -502,12 +502,6 @@ def switch_to_frame(self, frame_reference):
warnings.warn("use driver.switch_to.frame instead", DeprecationWarning)
self.switch_to.frame(frame_reference)

def switch_to_parent_frame(self):
""" Deprecated use driver.switch_to.parent_frame
"""
warnings.warn("use driver.switch_to.parent_frame instead", DeprecationWarning)
self.switch_to.parent_frame()

def switch_to_default_content(self):
""" Deprecated use driver.switch_to.default_content
"""
Expand Down

0 comments on commit f8f41c8

Please sign in to comment.