mirror of
https://gitee.com/g1879/DrissionPage.git
synced 2024-12-10 04:00:23 +08:00
元素states增加is_checked
This commit is contained in:
parent
7a34e4d5f6
commit
f60f91b85d
@ -369,7 +369,7 @@ class ChromiumBase(BasePage):
|
|||||||
if error == 'Cannot find context with specified id':
|
if error == 'Cannot find context with specified id':
|
||||||
raise ContextLossError
|
raise ContextLossError
|
||||||
elif error in ('Could not find node with given id', 'Could not find object with given id',
|
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
|
raise ElementLossError
|
||||||
elif error == 'tab closed':
|
elif error == 'tab closed':
|
||||||
raise TabClosedError
|
raise TabClosedError
|
||||||
@ -1061,6 +1061,14 @@ class ChromiumBaseWaiter(object):
|
|||||||
"""
|
"""
|
||||||
return self._loading(timeout=timeout, start=False)
|
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):
|
def upload_paths_inputted(self):
|
||||||
"""等待自动填写上传文件路径"""
|
"""等待自动填写上传文件路径"""
|
||||||
while self._driver._upload_list:
|
while self._driver._upload_list:
|
||||||
|
@ -7,14 +7,15 @@ from pathlib import Path
|
|||||||
from typing import Union, Tuple, List, Any
|
from typing import Union, Tuple, List, Any
|
||||||
|
|
||||||
from DataRecorder import Recorder
|
from DataRecorder import Recorder
|
||||||
|
from FlowViewer.listener import ResponseData
|
||||||
from requests import Session
|
from requests import Session
|
||||||
from requests.cookies import RequestsCookieJar
|
from requests.cookies import RequestsCookieJar
|
||||||
|
|
||||||
from .commons.constants import NoneElement
|
|
||||||
from .base import BasePage
|
from .base import BasePage
|
||||||
from .chromium_driver import ChromiumDriver
|
from .chromium_driver import ChromiumDriver
|
||||||
from .chromium_element import ChromiumElement, ChromiumScroll
|
from .chromium_element import ChromiumElement, ChromiumScroll
|
||||||
from .chromium_frame import ChromiumFrame
|
from .chromium_frame import ChromiumFrame
|
||||||
|
from .commons.constants import NoneElement
|
||||||
from .session_element import SessionElement
|
from .session_element import SessionElement
|
||||||
|
|
||||||
|
|
||||||
@ -229,6 +230,8 @@ class ChromiumBaseWaiter(object):
|
|||||||
|
|
||||||
def load_complete(self, timeout: float = None) -> bool: ...
|
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: ...
|
def upload_paths_inputted(self) -> None: ...
|
||||||
|
|
||||||
|
|
||||||
|
@ -1534,6 +1534,11 @@ class ChromiumElementStates(object):
|
|||||||
"""返回元素是否被选择"""
|
"""返回元素是否被选择"""
|
||||||
return self._ele.run_js('return this.selected;')
|
return self._ele.run_js('return this.selected;')
|
||||||
|
|
||||||
|
@property
|
||||||
|
def is_checked(self):
|
||||||
|
"""返回元素是否被选择"""
|
||||||
|
return self._ele.run_js('return this.checked;')
|
||||||
|
|
||||||
@property
|
@property
|
||||||
def is_displayed(self):
|
def is_displayed(self):
|
||||||
"""返回元素是否显示"""
|
"""返回元素是否显示"""
|
||||||
|
@ -213,6 +213,9 @@ class ChromiumElementStates(object):
|
|||||||
@property
|
@property
|
||||||
def is_selected(self) -> bool: ...
|
def is_selected(self) -> bool: ...
|
||||||
|
|
||||||
|
@property
|
||||||
|
def is_checked(self) -> bool: ...
|
||||||
|
|
||||||
@property
|
@property
|
||||||
def is_displayed(self) -> bool: ...
|
def is_displayed(self) -> bool: ...
|
||||||
|
|
||||||
|
Loading…
x
Reference in New Issue
Block a user