PlaywrightCapture 1.41.2__tar.gz → 1.41.3__tar.gz
This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
- {playwrightcapture-1.41.2 → playwrightcapture-1.41.3}/PKG-INFO +1 -1
- {playwrightcapture-1.41.2 → playwrightcapture-1.41.3}/playwrightcapture/capture.py +2 -1
- {playwrightcapture-1.41.2 → playwrightcapture-1.41.3}/pyproject.toml +2 -2
- {playwrightcapture-1.41.2 → playwrightcapture-1.41.3}/LICENSE +0 -0
- {playwrightcapture-1.41.2 → playwrightcapture-1.41.3}/README.md +0 -0
- {playwrightcapture-1.41.2 → playwrightcapture-1.41.3}/playwrightcapture/__init__.py +0 -0
- {playwrightcapture-1.41.2 → playwrightcapture-1.41.3}/playwrightcapture/exceptions.py +0 -0
- {playwrightcapture-1.41.2 → playwrightcapture-1.41.3}/playwrightcapture/helpers.py +0 -0
- {playwrightcapture-1.41.2 → playwrightcapture-1.41.3}/playwrightcapture/py.typed +0 -0
- {playwrightcapture-1.41.2 → playwrightcapture-1.41.3}/playwrightcapture/socks5dnslookup.py +0 -0
|
@@ -1237,9 +1237,10 @@ class Capture():
|
|
|
1237
1237
|
self.should_retry = True
|
|
1238
1238
|
|
|
1239
1239
|
# Collect storage state, including IndexedDB, to capture the full browser state.
|
|
1240
|
+
# 2026-09-08: add WebAuth credentials
|
|
1240
1241
|
try:
|
|
1241
1242
|
async with timeout(15):
|
|
1242
|
-
to_return['storage'] = await self.context.storage_state(indexed_db=True)
|
|
1243
|
+
to_return['storage'] = await self.context.storage_state(indexed_db=True, credentials=True)
|
|
1243
1244
|
except (TimeoutError, asyncio.TimeoutError):
|
|
1244
1245
|
self.logger.warning("Unable to get storage (timeout).")
|
|
1245
1246
|
errors.append("Unable to get the storage (timeout).")
|
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
[project]
|
|
2
2
|
name = "PlaywrightCapture"
|
|
3
|
-
version = "1.41.
|
|
3
|
+
version = "1.41.3"
|
|
4
4
|
description = "A simple library to capture websites using playwright"
|
|
5
5
|
authors = [
|
|
6
6
|
{name="Raphaël Vinot", email= "raphael.vinot@circl.lu"}
|
|
@@ -53,7 +53,7 @@ recaptcha = [
|
|
|
53
53
|
types-beautifulsoup4 = "^4.12.0.20250516"
|
|
54
54
|
pytest = "^9.1.1"
|
|
55
55
|
mypy = "^2.3.1"
|
|
56
|
-
types-dateparser = "^1.4.
|
|
56
|
+
types-dateparser = "^1.4.3.20260907"
|
|
57
57
|
types-pytz = "^2026.3.1.20260727"
|
|
58
58
|
|
|
59
59
|
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|