4.0.3.2增加reconnect()方法;优化关闭标签页逻辑;修复s_ele()后定位问题

This commit is contained in:
g1879 2024-01-19 01:00:16 +08:00
parent f485cfc7a6
commit aea5aace53
3 changed files with 4 additions and 3 deletions

View File

@ -14,4 +14,4 @@ from ._configs.chromium_options import ChromiumOptions
from ._configs.session_options import SessionOptions from ._configs.session_options import SessionOptions
__all__ = ['ChromiumPage', 'ChromiumOptions', 'SessionOptions', 'SessionPage', 'WebPage', '__version__'] __all__ = ['ChromiumPage', 'ChromiumOptions', 'SessionOptions', 'SessionPage', 'WebPage', '__version__']
__version__ = '4.0.3.1' __version__ = '4.0.3.2'

View File

@ -834,9 +834,10 @@ class ChromiumBase(BasePage):
:param wait: 断开后等待若干秒再连接 :param wait: 断开后等待若干秒再连接
:return: None :return: None
""" """
t_id = self._target_id
self.disconnect() self.disconnect()
sleep(wait) sleep(wait)
self._driver = self.browser._get_driver(self._target_id, self) self._driver = self.browser._get_driver(t_id, self)
def handle_alert(self, accept=True, send=None, timeout=None, next_one=False): def handle_alert(self, accept=True, send=None, timeout=None, next_one=False):
r = self._handle_alert(accept=accept, send=send, timeout=timeout, next_one=next_one) r = self._handle_alert(accept=accept, send=send, timeout=timeout, next_one=next_one)

View File

@ -6,7 +6,7 @@ with open("README.md", "r", encoding='utf-8') as fh:
setup( setup(
name="DrissionPage", name="DrissionPage",
version="4.0.3.1", version="4.0.3.2",
author="g1879", author="g1879",
author_email="g1879@qq.com", author_email="g1879@qq.com",
description="Python based web automation tool. It can control the browser and send and receive data packets.", description="Python based web automation tool. It can control the browser and send and receive data packets.",