Skip to content

Commit 7cc56cc

Browse files
committed
[py] remove deprecated application cache support
1 parent f1f6886 commit 7cc56cc

File tree

4 files changed

+0
-73
lines changed

4 files changed

+0
-73
lines changed

py/selenium/webdriver/common/html5/__init__.py

Lines changed: 0 additions & 16 deletions
This file was deleted.

py/selenium/webdriver/common/html5/application_cache.py

Lines changed: 0 additions & 49 deletions
This file was deleted.

py/selenium/webdriver/remote/webdriver.py

Lines changed: 0 additions & 7 deletions
Original file line numberDiff line numberDiff line change
@@ -41,7 +41,6 @@
4141
from selenium.common.exceptions import NoSuchElementException
4242
from selenium.common.exceptions import WebDriverException
4343
from selenium.webdriver.common.by import By
44-
from selenium.webdriver.common.html5.application_cache import ApplicationCache
4544
from selenium.webdriver.common.options import BaseOptions
4645
from selenium.webdriver.common.print_page_options import PrintOptions
4746
from selenium.webdriver.common.timeouts import Timeouts
@@ -990,12 +989,6 @@ def orientation(self, value) -> None:
990989
else:
991990
raise WebDriverException("You can only set the orientation to 'LANDSCAPE' and 'PORTRAIT'")
992991

993-
@property
994-
def application_cache(self):
995-
"""Returns a ApplicationCache Object to interact with the browser app
996-
cache."""
997-
return ApplicationCache(self)
998-
999992
@property
1000993
def log_types(self):
1001994
"""Gets a list of the available log types. This only works with w3c

py/setup.py

Lines changed: 0 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -61,7 +61,6 @@
6161
'selenium.webdriver.chromium',
6262
'selenium.webdriver.chrome',
6363
'selenium.webdriver.common',
64-
'selenium.webdriver.common.html5',
6564
'selenium.webdriver.support',
6665
'selenium.webdriver.firefox',
6766
'selenium.webdriver.ie',

0 commit comments

Comments
 (0)