Skip to content

Commit b80c1ce

Browse files
authored
Merge pull request #2660 from seleniumbase/fun-with-cookies
Add more cookie methods
2 parents ef2fed2 + f6e994e commit b80c1ce

File tree

7 files changed

+75
-32
lines changed

7 files changed

+75
-32
lines changed

README.md

+3-3
Original file line numberDiff line numberDiff line change
@@ -9,9 +9,9 @@
99

1010
<h1>SeleniumBase</h1>
1111

12-
<p align="center"><a href="https://github.com/seleniumbase/SeleniumBase/"><img src="https://seleniumbase.github.io/cdn/img/sb_logo_10t.png" alt="SeleniumBase" title="SeleniumBase" width="266" /></a></p>
12+
<p align="center"><a href="https://github.com/seleniumbase/SeleniumBase/"><img src="https://seleniumbase.github.io/cdn/img/mac_sb_logo_b.png" alt="SeleniumBase" title="SeleniumBase" width="440" /></a></p>
1313

14-
<p align="center" class="hero__title"><b>All-in-one Browser Automation Framework:<br />Web Crawling / Scraping / Testing / Reporting</b></p>
14+
<h3 align="center" class="hero__title"><b>Web Automation and Testing with Python have evolved.</h3>
1515

1616
<p align="center"><a href="https://pypi.python.org/pypi/seleniumbase" target="_blank"><img src="https://img.shields.io/pypi/v/seleniumbase.svg?color=3399EE" alt="PyPI version" /></a> <a href="https://github.com/seleniumbase/SeleniumBase/releases" target="_blank"><img src="https://img.shields.io/github/v/release/seleniumbase/SeleniumBase.svg?color=22AAEE" alt="GitHub version" /></a> <a href="https://seleniumbase.io"><img src="https://img.shields.io/badge/docs-seleniumbase.io-11BBAA.svg" alt="SeleniumBase Docs" /></a> <a href="https://github.com/seleniumbase/SeleniumBase/actions" target="_blank"><img src="https://github.com/seleniumbase/SeleniumBase/workflows/CI%20build/badge.svg" alt="SeleniumBase GitHub Actions" /></a> <a href="https://gitter.im/seleniumbase/SeleniumBase" target="_blank"><img src="https://img.shields.io/gitter/room/seleniumbase/SeleniumBase.svg" alt="Gitter chat"/></a></p>
1717

@@ -57,7 +57,7 @@
5757

5858
📚 Learn from [**over 200 examples** in the **SeleniumBase/examples/**](https://github.com/seleniumbase/SeleniumBase/tree/master/examples) folder.
5959

60-
<p align="left">📗 Here's <a href="https://github.com/seleniumbase/SeleniumBase/blob/master/examples/my_first_test.py">my_first_test.py</a>, which covers login, shopping, and checkout:</p>
60+
<p align="left">📗 Here's <a href="https://github.com/seleniumbase/SeleniumBase/blob/master/examples/my_first_test.py">my_first_test.py</a>, which tests login, shopping, and checkout:</p>
6161

6262
```bash
6363
pytest my_first_test.py

help_docs/method_summary.md

+12
Original file line numberDiff line numberDiff line change
@@ -336,6 +336,16 @@ self.delete_all_cookies()
336336

337337
self.delete_saved_cookies(name="cookies.txt")
338338

339+
self.get_saved_cookies(name="cookies.txt")
340+
341+
self.get_cookie(name)
342+
343+
self.get_cookies()
344+
345+
self.add_cookie(cookie_dict)
346+
347+
self.add_cookies(cookies)
348+
339349
self.wait_for_ready_state_complete(timeout=None)
340350

341351
self.wait_for_angularjs(timeout=None)
@@ -596,6 +606,7 @@ self.get_local_storage_item(key)
596606
self.remove_local_storage_item(key)
597607

598608
self.clear_local_storage()
609+
# Duplicates: delete_local_storage()
599610

600611
self.get_local_storage_keys()
601612

@@ -608,6 +619,7 @@ self.get_session_storage_item(key)
608619
self.remove_session_storage_item(key)
609620

610621
self.clear_session_storage()
622+
# Duplicates: delete_session_storage()
611623

612624
self.get_session_storage_keys()
613625

mkdocs_build/requirements.txt

+2-2
Original file line numberDiff line numberDiff line change
@@ -16,11 +16,11 @@ cairocffi==1.6.1
1616
pathspec==0.12.1
1717
Babel==2.14.0
1818
paginate==0.5.6
19-
lxml==5.1.1
19+
lxml==5.2.1
2020
pyquery==2.0.0
2121
readtime==3.0.0
2222
mkdocs==1.5.3
23-
mkdocs-material==9.5.15
23+
mkdocs-material==9.5.17
2424
mkdocs-exclude-search==0.6.6
2525
mkdocs-simple-hooks==0.1.5
2626
mkdocs-material-extensions==1.3.1

requirements.txt

+2-2
Original file line numberDiff line numberDiff line change
@@ -70,9 +70,9 @@ rich==13.7.1
7070
# ("pip install -r requirements.txt" also installs this, but "pip install -e ." won't.)
7171

7272
coverage==7.2.7;python_version<"3.8"
73-
coverage==7.4.4;python_version>="3.8"
73+
coverage>=7.4.4;python_version>="3.8"
7474
pytest-cov==4.1.0;python_version<"3.8"
75-
pytest-cov==5.0.0;python_version>="3.8"
75+
pytest-cov>=5.0.0;python_version>="3.8"
7676
flake8==5.0.4;python_version<"3.9"
7777
flake8==7.0.0;python_version>="3.9"
7878
mccabe==0.7.0

seleniumbase/__version__.py

+1-1
Original file line numberDiff line numberDiff line change
@@ -1,2 +1,2 @@
11
# seleniumbase package
2-
__version__ = "4.25.0"
2+
__version__ = "4.25.1"

seleniumbase/fixtures/base_case.py

+49-18
Original file line numberDiff line numberDiff line change
@@ -4308,25 +4308,8 @@ def save_cookies(self, name="cookies.txt"):
43084308

43094309
def load_cookies(self, name="cookies.txt"):
43104310
"""Loads the page cookies from the "saved_cookies" folder."""
4311+
cookies = self.get_saved_cookies(name)
43114312
self.wait_for_ready_state_complete()
4312-
if name.endswith("/"):
4313-
raise Exception("Invalid filename for Cookies!")
4314-
if "/" in name:
4315-
name = name.split("/")[-1]
4316-
if "\\" in name:
4317-
name = name.split("\\")[-1]
4318-
if len(name) < 1:
4319-
raise Exception("Filename for Cookies is too short!")
4320-
if not name.endswith(".txt"):
4321-
name = name + ".txt"
4322-
folder = constants.SavedCookies.STORAGE_FOLDER
4323-
abs_path = os.path.abspath(".")
4324-
file_path = os.path.join(abs_path, folder)
4325-
cookies_file_path = os.path.join(file_path, name)
4326-
json_cookies = None
4327-
with open(cookies_file_path, "r") as f:
4328-
json_cookies = f.read().strip()
4329-
cookies = json.loads(json_cookies)
43304313
for cookie in cookies:
43314314
if "expiry" in cookie:
43324315
del cookie["expiry"]
@@ -4363,6 +4346,46 @@ def delete_saved_cookies(self, name="cookies.txt"):
43634346
if cookies_file_path.endswith(".txt"):
43644347
os.remove(cookies_file_path)
43654348

4349+
def get_saved_cookies(self, name="cookies.txt"):
4350+
"""Gets the page cookies from the "saved_cookies" folder."""
4351+
if name.endswith("/"):
4352+
raise Exception("Invalid filename for Cookies!")
4353+
if "/" in name:
4354+
name = name.split("/")[-1]
4355+
if "\\" in name:
4356+
name = name.split("\\")[-1]
4357+
if len(name) < 1:
4358+
raise Exception("Filename for Cookies is too short!")
4359+
if not name.endswith(".txt"):
4360+
name = name + ".txt"
4361+
folder = constants.SavedCookies.STORAGE_FOLDER
4362+
abs_path = os.path.abspath(".")
4363+
file_path = os.path.join(abs_path, folder)
4364+
cookies_file_path = os.path.join(file_path, name)
4365+
json_cookies = None
4366+
with open(cookies_file_path, "r") as f:
4367+
json_cookies = f.read().strip()
4368+
return json.loads(json_cookies)
4369+
4370+
def get_cookie(self, name):
4371+
return self.driver.get_cookie(name)
4372+
4373+
def get_cookies(self):
4374+
return self.driver.get_cookies()
4375+
4376+
def add_cookie(self, cookie_dict):
4377+
"""Usage examples:
4378+
self.add_cookie({'name': 'foo', 'value': 'bar'})
4379+
self.add_cookie({'name': 'foo', 'value': 'bar', 'path': '/'})
4380+
self.add_cookie({'name': 'foo', 'value': 'bar', 'secure': True})
4381+
self.add_cookie({'name': 'foo', 'value': 'bar', 'sameSite': 'Strict'})
4382+
"""
4383+
self.driver.add_cookie(cookie_dict)
4384+
4385+
def add_cookies(self, cookies):
4386+
for cookie_dict in cookies:
4387+
self.driver.add_cookie(cookie_dict)
4388+
43664389
def wait_for_ready_state_complete(self, timeout=None):
43674390
"""Waits for the "readyState" of the page to be "complete".
43684391
Returns True when the method completes."""
@@ -8718,6 +8741,14 @@ def clear_all_cookies(self):
87188741
"""Same as self.delete_all_cookies()"""
87198742
self.delete_all_cookies()
87208743

8744+
def delete_local_storage(self):
8745+
"""Same as self.clear_local_storage()"""
8746+
self.clear_local_storage()
8747+
8748+
def delete_session_storage(self):
8749+
"""Same as clear_session_storage()"""
8750+
self.clear_session_storage()
8751+
87218752
def assert_no_broken_links(self, multithreaded=True):
87228753
"""Same as self.assert_no_404_errors()"""
87238754
self.assert_no_404_errors(multithreaded=multithreaded)

setup.py

+6-6
Original file line numberDiff line numberDiff line change
@@ -219,17 +219,17 @@
219219
# Usage: pytest --alluredir=allure_results
220220
# Serve: allure serve allure_results
221221
"allure": [
222-
'allure-pytest==2.13.4',
223-
'allure-python-commons==2.13.4',
224-
'allure-behave==2.13.4',
222+
'allure-pytest>=2.13.5',
223+
'allure-python-commons>=2.13.5',
224+
'allure-behave>=2.13.5',
225225
],
226226
# pip install -e .[coverage]
227227
# Usage: coverage run -m pytest; coverage html; coverage report
228228
"coverage": [
229229
'coverage==7.2.7;python_version<"3.8"',
230-
'coverage==7.4.4;python_version>="3.8"',
230+
'coverage>=7.4.4;python_version>="3.8"',
231231
'pytest-cov==4.1.0;python_version<"3.8"',
232-
'pytest-cov==5.0.0;python_version>="3.8"',
232+
'pytest-cov>=5.0.0;python_version>="3.8"',
233233
],
234234
# pip install -e .[flake8]
235235
# Usage: flake8
@@ -263,7 +263,7 @@
263263
# (An optional library for image-processing.)
264264
"pillow": [
265265
'Pillow==9.5.0;python_version<"3.8"',
266-
'Pillow==10.2.0;python_version>="3.8"',
266+
'Pillow>=10.3.0;python_version>="3.8"',
267267
],
268268
# pip install -e .[pip-system-certs]
269269
# (If you see [SSL: CERTIFICATE_VERIFY_FAILED], then get this.)

0 commit comments

Comments
 (0)