2.5.3修复Drission初始化时self._session_options设置问题

This commit is contained in:
g1879 2022-02-19 10:10:14 +08:00
parent ca65c27d5f
commit 6738dd493c
3 changed files with 3 additions and 3 deletions

View File

@ -44,7 +44,7 @@ class Drission(object):
self._session_options = SessionOptions(ini_path=ini_path).as_dict() self._session_options = SessionOptions(ini_path=ini_path).as_dict()
elif session_or_options is False: elif session_or_options is False:
self._driver_options = SessionOptions(read_file=False).as_dict() self._session_options = SessionOptions(read_file=False).as_dict()
elif isinstance(session_or_options, Session): elif isinstance(session_or_options, Session):
self._session = session_or_options self._session = session_or_options

View File

@ -1,4 +1,4 @@
# v2.5.1 # v2.5.3
- `DriverPage`添加`run_cdp()`方法 - `DriverPage`添加`run_cdp()`方法
- `get()``post()`方法删除`go_anyway`参数 - `get()``post()`方法删除`go_anyway`参数

View File

@ -6,7 +6,7 @@ with open("README.md", "r", encoding='utf-8') as fh:
setup( setup(
name="DrissionPage", name="DrissionPage",
version="2.5.2", version="2.5.3",
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.",