元素states增加is_checked

This commit is contained in:
g1879 2023-03-27 14:46:53 +08:00
parent 7a34e4d5f6
commit f60f91b85d
4 changed files with 21 additions and 2 deletions

View File

@ -369,7 +369,7 @@ class ChromiumBase(BasePage):
if error == 'Cannot find context with specified id':
raise ContextLossError
elif error in ('Could not find node with given id', 'Could not find object with given id',
'No node with given id found'):
'No node with given id found', 'Node with given id does not belong to the document'):
raise ElementLossError
elif error == 'tab closed':
raise TabClosedError
@ -1061,6 +1061,14 @@ class ChromiumBaseWaiter(object):
"""
return self._loading(timeout=timeout, start=False)
def data_package(self, target, timeout=None):
"""
:param target:
:param timeout:
:return:
"""
pass
def upload_paths_inputted(self):
"""等待自动填写上传文件路径"""
while self._driver._upload_list:

View File

@ -7,14 +7,15 @@ from pathlib import Path
from typing import Union, Tuple, List, Any
from DataRecorder import Recorder
from FlowViewer.listener import ResponseData
from requests import Session
from requests.cookies import RequestsCookieJar
from .commons.constants import NoneElement
from .base import BasePage
from .chromium_driver import ChromiumDriver
from .chromium_element import ChromiumElement, ChromiumScroll
from .chromium_frame import ChromiumFrame
from .commons.constants import NoneElement
from .session_element import SessionElement
@ -229,6 +230,8 @@ class ChromiumBaseWaiter(object):
def load_complete(self, timeout: float = None) -> bool: ...
def data_package(self, target, timeout: float = None) -> Union[ResponseData, None]: ...
def upload_paths_inputted(self) -> None: ...

View File

@ -1534,6 +1534,11 @@ class ChromiumElementStates(object):
"""返回元素是否被选择"""
return self._ele.run_js('return this.selected;')
@property
def is_checked(self):
"""返回元素是否被选择"""
return self._ele.run_js('return this.checked;')
@property
def is_displayed(self):
"""返回元素是否显示"""

View File

@ -213,6 +213,9 @@ class ChromiumElementStates(object):
@property
def is_selected(self) -> bool: ...
@property
def is_checked(self) -> bool: ...
@property
def is_displayed(self) -> bool: ...