diff --git a/DrissionPage/chromium_page.py b/DrissionPage/chromium_page.py index 084fe1e..cd40e97 100644 --- a/DrissionPage/chromium_page.py +++ b/DrissionPage/chromium_page.py @@ -73,8 +73,8 @@ class ChromiumPage(ChromiumBase): :param tab_id: 要控制的标签页id,不指定默认为激活的 :return: None """ - self._chromium_init() # todo: 传递驱动器时是否须要 - if self._tab_obj: + self._chromium_init() + if self._tab_obj: # 传入driver的情况 self.process = None else: @@ -87,8 +87,9 @@ class ChromiumPage(ChromiumBase): tab_id = tab_id[0] self._driver_init(tab_id) - self._get_document() - self._first_run = False + + self._get_document() + self._first_run = False def _chromium_init(self): """添加ChromiumPage独有的运行配置""" diff --git a/setup.py b/setup.py index 56c9ef6..129b987 100644 --- a/setup.py +++ b/setup.py @@ -6,7 +6,7 @@ with open("README.md", "r", encoding='utf-8') as fh: setup( name="DrissionPage", - version="3.2.4", + version="3.2.5", author="g1879", author_email="g1879@qq.com", description="Python based web automation tool. It can control the browser and send and receive data packets.",