mirror of
https://gitee.com/g1879/DrissionPage.git
synced 2024-12-10 04:00:23 +08:00
3.2.5修复传入driver时初始化不正确的问题
This commit is contained in:
parent
53165f0337
commit
66a840bfdd
@ -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独有的运行配置"""
|
||||
|
2
setup.py
2
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.",
|
||||
|
Loading…
x
Reference in New Issue
Block a user