mirror of
https://gitee.com/g1879/DrissionPage.git
synced 2024-12-10 04:00:23 +08:00
解决打开网页弹窗错误问题
This commit is contained in:
parent
464238e99d
commit
ec4edf868b
@ -270,10 +270,10 @@ class ChromiumBase(BasePage):
|
||||
|
||||
@property
|
||||
def ready_state(self):
|
||||
"""返回当前页面加载状态,'loading' 'interactive' 'complete'"""
|
||||
"""返回当前页面加载状态,'loading' 'interactive' 'complete',有弹出框时返回None"""
|
||||
try:
|
||||
return self.run_cdp('Runtime.evaluate', expression='document.readyState;')['result']['value']
|
||||
except AlertExistsError:
|
||||
except (AlertExistsError, TypeError):
|
||||
return None
|
||||
|
||||
@property
|
||||
|
@ -96,7 +96,7 @@ class ChromiumBase(BasePage):
|
||||
def tab_id(self) -> str: ...
|
||||
|
||||
@property
|
||||
def ready_state(self) -> str: ...
|
||||
def ready_state(self) -> Union[str, None]: ...
|
||||
|
||||
@property
|
||||
def size(self) -> Tuple[int, int]: ...
|
||||
|
Loading…
x
Reference in New Issue
Block a user