mirror of
https://gitee.com/g1879/DrissionPage.git
synced 2024-12-10 04:00:23 +08:00
74 lines
2.5 KiB
Python
74 lines
2.5 KiB
Python
# -*- coding:utf-8 -*-
|
|
"""
|
|
@Author : g1879
|
|
@Contact : g1879@qq.com
|
|
@Copyright: (c) 2024 by g1879, Inc. All Rights Reserved.
|
|
@License : BSD 3-Clause.
|
|
"""
|
|
from typing import Union, Tuple, List
|
|
|
|
from .._elements.chromium_element import ChromiumElement
|
|
|
|
|
|
class SelectElement(object):
|
|
def __init__(self, ele: ChromiumElement):
|
|
self._ele: ChromiumElement = ...
|
|
|
|
def __call__(self, text_or_index: Union[str, int, list, tuple], timeout: float = None) -> bool: ...
|
|
|
|
@property
|
|
def is_multi(self) -> bool: ...
|
|
|
|
@property
|
|
def options(self) -> List[ChromiumElement]: ...
|
|
|
|
@property
|
|
def selected_option(self) -> Union[ChromiumElement, None]: ...
|
|
|
|
@property
|
|
def selected_options(self) -> List[ChromiumElement]: ...
|
|
|
|
def clear(self) -> None: ...
|
|
|
|
def all(self) -> None: ...
|
|
|
|
def by_text(self, text: Union[str, list, tuple], timeout: float = None) -> bool: ...
|
|
|
|
def by_value(self, value: Union[str, list, tuple], timeout: float = None) -> bool: ...
|
|
|
|
def by_index(self, index: Union[int, list, tuple], timeout: float = None) -> bool: ...
|
|
|
|
def by_loc(self, loc: Union[str, Tuple[str, str]], timeout: float = None) -> bool: ...
|
|
|
|
def by_option(self, option: Union[ChromiumElement, List[ChromiumElement], Tuple[ChromiumElement]]) -> None: ...
|
|
|
|
def cancel_by_text(self, text: Union[str, list, tuple], timeout: float = None) -> bool: ...
|
|
|
|
def cancel_by_value(self, value: Union[str, list, tuple], timeout: float = None) -> bool: ...
|
|
|
|
def cancel_by_index(self, index: Union[int, list, tuple], timeout: float = None) -> bool: ...
|
|
|
|
def cancel_by_loc(self, loc: Union[str, Tuple[str, str]], timeout: float = None) -> bool: ...
|
|
|
|
def cancel_by_option(self,
|
|
option: Union[ChromiumElement, List[ChromiumElement], Tuple[ChromiumElement]]) -> None: ...
|
|
|
|
def invert(self) -> None: ...
|
|
|
|
def _by_loc(self, loc: Union[str, Tuple[str, str]], timeout: float = None, cancel: bool = False) -> bool: ...
|
|
|
|
def _select(self,
|
|
condition: Union[str, int, list, tuple] = None,
|
|
para_type: str = 'text',
|
|
cancel: bool = False,
|
|
timeout: float = None) -> bool: ...
|
|
|
|
def _text_value(self, condition: Union[list, set], para_type: str, mode: str, timeout: float) -> bool: ...
|
|
|
|
def _index(self, condition: set, mode: str, timeout: float) -> bool: ...
|
|
|
|
def _select_options(self, option: Union[ChromiumElement, List[ChromiumElement], Tuple[ChromiumElement]],
|
|
mode: str) -> None: ...
|
|
|
|
def _dispatch_change(self) -> None: ...
|