Skip to content

Commit f8f41c8

Browse files
committed
don't need to have a deprecated method that was never released :)
1 parent b770492 commit f8f41c8

File tree

1 file changed

+0
-6
lines changed

1 file changed

+0
-6
lines changed

py/selenium/webdriver/remote/webdriver.py

Lines changed: 0 additions & 6 deletions
Original file line numberDiff line numberDiff line change
@@ -502,12 +502,6 @@ def switch_to_frame(self, frame_reference):
502502
warnings.warn("use driver.switch_to.frame instead", DeprecationWarning)
503503
self.switch_to.frame(frame_reference)
504504

505-
def switch_to_parent_frame(self):
506-
""" Deprecated use driver.switch_to.parent_frame
507-
"""
508-
warnings.warn("use driver.switch_to.parent_frame instead", DeprecationWarning)
509-
self.switch_to.parent_frame()
510-
511505
def switch_to_default_content(self):
512506
""" Deprecated use driver.switch_to.default_content
513507
"""

0 commit comments

Comments
 (0)