2.5.9 修复创建下载对象时的问题

This commit is contained in:
g1879 2022-04-17 14:55:29 +08:00
parent 72c143e77d
commit 34b76d9446
2 changed files with 2 additions and 2 deletions

View File

@ -153,7 +153,7 @@ class SessionPage(BasePage):
@property
def download(self) -> DownloadKit:
if self._download_kit is None:
self._download_kit = DownloadKit(session=self, timeout=self.timeout)
self._download_kit = DownloadKit(session=self)
return self._download_kit

View File

@ -6,7 +6,7 @@ with open("README.md", "r", encoding='utf-8') as fh:
setup(
name="DrissionPage",
version="2.5.8",
version="2.5.9",
author="g1879",
author_email="g1879@qq.com",
description="A module that integrates selenium and requests session, encapsulates common page operations.",