mirror of
https://gitee.com/g1879/DrissionPage.git
synced 2024-12-10 04:00:23 +08:00
2.5.8 传递Page到download取代传递session
This commit is contained in:
parent
be91da38ef
commit
bd4a180235
@ -218,9 +218,7 @@ class SessionPage(BasePage):
|
|||||||
@property
|
@property
|
||||||
def download(self) -> DownloadKit:
|
def download(self) -> DownloadKit:
|
||||||
if self._download_kit is None:
|
if self._download_kit is None:
|
||||||
self._download_kit = DownloadKit(session=self.session, timeout=self.timeout)
|
self._download_kit = DownloadKit(session=self, timeout=self.timeout)
|
||||||
self._download_kit.retry = self.retry_times
|
|
||||||
self._download_kit.interval = self.retry_interval
|
|
||||||
|
|
||||||
return self._download_kit
|
return self._download_kit
|
||||||
|
|
||||||
|
2
setup.py
2
setup.py
@ -6,7 +6,7 @@ with open("README.md", "r", encoding='utf-8') as fh:
|
|||||||
|
|
||||||
setup(
|
setup(
|
||||||
name="DrissionPage",
|
name="DrissionPage",
|
||||||
version="2.5.7",
|
version="2.5.8",
|
||||||
author="g1879",
|
author="g1879",
|
||||||
author_email="g1879@qq.com",
|
author_email="g1879@qq.com",
|
||||||
description="A module that integrates selenium and requests session, encapsulates common page operations.",
|
description="A module that integrates selenium and requests session, encapsulates common page operations.",
|
||||||
|
Loading…
x
Reference in New Issue
Block a user