4.0.0b22修复小问题

This commit is contained in:
g1879 2023-12-15 09:15:52 +08:00
parent cd9439be5c
commit 7284b108ef
5 changed files with 16 additions and 4 deletions

View File

@ -13,4 +13,4 @@ from ._configs.chromium_options import ChromiumOptions
from ._configs.session_options import SessionOptions
__all__ = ['ChromiumPage', 'ChromiumOptions', 'SessionOptions', 'SessionPage', 'WebPage', '__version__']
__version__ = '4.0.0b21'
__version__ = '4.0.0b22'

View File

@ -57,7 +57,8 @@ class ChromiumFrame(ChromiumBase):
self._rect = None
end_time = perf_counter() + 5
while perf_counter() < end_time:
if self.url is None or self.url == 'about:blank':
if self.url not in (None, 'about:blank'):
break
sleep(.1)
def __call__(self, loc_or_str, timeout=None):

View File

@ -171,3 +171,8 @@ class FrameStates(object):
return not (self._frame.frame_ele.style('visibility') == 'hidden'
or self._frame.frame_ele.run_js('return this.offsetParent === null;')
or self._frame.frame_ele.style('display') == 'none')
@property
def has_alert(self):
"""返回当前页面是否存在弹窗"""
return self._frame._has_alert

View File

@ -85,3 +85,9 @@ class FrameStates(object):
@property
def ready_state(self) -> str: ...
@property
def is_displayed(self) -> bool: ...
@property
def has_alert(self) -> bool: ...

View File

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