优化check_page()

This commit is contained in:
g1879 2020-08-17 10:26:07 +08:00
parent adeba1fec6
commit 74f4653e9a
3 changed files with 24 additions and 8 deletions

View File

@ -154,10 +154,18 @@ class MixPage(Null, SessionPage, DriverPage):
u = url or self.session_url
self._drission.cookies_to_driver(u)
def check_page(self) -> Union[bool, None]:
return
# if self.session_url == self.url:
# return True if self._response and self._response.ok else False
def check_page(self, by_requests: bool = False) -> Union[bool, None]:
"""d模式时检查网页是否符合预期 \n
默认由response状态检查可重载实现针对性检查 \n
:param by_requests: 是否用内置response检查
:return: bool或NoneNone代表不知道结果
"""
if self.session_url and self.session_url == self.url:
return self._response.ok
if by_requests:
self.cookies_to_session()
r = self._make_response(self.url, **{'timeout': 3})[0]
return r.ok if r else False
# ----------------重写SessionPage的函数-----------------------

View File

@ -907,9 +907,13 @@ The following methods and attributes only take effect in driver mode, and will a
### check_page()
check_page() -> bool
check_page(by_requests: bool = False) -> Union[bool, None]
After the subclass is derived, it is used to check whether the domain name meets expectations, and the function is implemented by the subclass.
In d mode, check whether the web page meets expectations. The response status is checked by default, and can be overloaded to achieve targeted checks.
Parameter Description:
- by_requests - 强制使用内置response进行检查
### run_script()

View File

@ -906,9 +906,13 @@ MixPage封装了页面操作的常用功能可在driver和session模式间无
### check_page()
check_page() -> bool
check_page(by_requests: bool = False) -> Union[bool, None]
派生子类后用于检查域名是否符合预期,功能由子类实现。
d模式时检查网页是否符合预期。默认由response状态检查可重载实现针对性检查。
参数说明:
- by_requests - 强制使用内置response进行检查
### run_script()