mirror of
https://gitee.com/g1879/DrissionPage.git
synced 2024-12-10 04:00:23 +08:00
110 lines
3.6 KiB
Python
110 lines
3.6 KiB
Python
# -*- coding:utf-8 -*-
|
||
from typing import Union, List, Tuple
|
||
|
||
from lxml.html import HtmlElement
|
||
|
||
from .base import DrissionElement, BasePage, BaseElement
|
||
from .session_page import SessionPage
|
||
|
||
|
||
class SessionElement(DrissionElement):
|
||
"""session模式的元素对象,包装了一个lxml的Element对象,并封装了常用功能"""
|
||
|
||
def __init__(self, ele: HtmlElement, page: Union[SessionPage, None] = ...):
|
||
self._inner_ele: HtmlElement = ...
|
||
self.page: SessionPage = ...
|
||
|
||
@property
|
||
def inner_ele(self) -> HtmlElement: ...
|
||
|
||
def __repr__(self) -> str: ...
|
||
|
||
def __call__(self,
|
||
loc_or_str: Union[Tuple[str, str], str],
|
||
timeout: float = ...) -> Union['SessionElement', str, None]: ...
|
||
|
||
@property
|
||
def tag(self) -> str: ...
|
||
|
||
@property
|
||
def html(self) -> str: ...
|
||
|
||
@property
|
||
def inner_html(self) -> str: ...
|
||
|
||
@property
|
||
def attrs(self) -> dict: ...
|
||
|
||
@property
|
||
def text(self) -> str: ...
|
||
|
||
@property
|
||
def raw_text(self) -> str: ...
|
||
|
||
def parent(self, level_or_loc: Union[tuple, str, int] = ...) -> Union['SessionElement', None]: ...
|
||
|
||
def prev(self,
|
||
index: int = ...,
|
||
filter_loc: Union[tuple, str] = ...,
|
||
timeout: float = ...) -> Union['SessionElement', str, None]: ...
|
||
|
||
def next(self,
|
||
index: int = ...,
|
||
filter_loc: Union[tuple, str] = ...,
|
||
timeout: float = ...) -> Union['SessionElement', str, None]: ...
|
||
|
||
def before(self,
|
||
index: int = ...,
|
||
filter_loc: Union[tuple, str] = ...,
|
||
timeout: float = ...) -> Union['SessionElement', str, None]: ...
|
||
|
||
def after(self,
|
||
index: int = ...,
|
||
filter_loc: Union[tuple, str] = ...,
|
||
timeout: float = ...) -> Union['SessionElement', str, None]: ...
|
||
|
||
def prevs(self,
|
||
filter_loc: Union[tuple, str] = ...,
|
||
timeout: float = ...) -> List[Union['SessionElement', str]]: ...
|
||
|
||
def nexts(self,
|
||
filter_loc: Union[tuple, str] = ...,
|
||
timeout: float = ...) -> List[Union['SessionElement', str]]: ...
|
||
|
||
def befores(self,
|
||
filter_loc: Union[tuple, str] = ...,
|
||
timeout: float = ...) -> List[Union['SessionElement', str]]: ...
|
||
|
||
def afters(self,
|
||
filter_loc: Union[tuple, str] = ...,
|
||
timeout: float = ...) -> List[Union['SessionElement', str]]: ...
|
||
|
||
def attr(self, attr: str) -> Union[str, None]: ...
|
||
|
||
def ele(self,
|
||
loc_or_str: Union[Tuple[str, str], str],
|
||
timeout: float = ...) -> Union['SessionElement', str, None]: ...
|
||
|
||
def eles(self,
|
||
loc_or_str: Union[Tuple[str, str], str],
|
||
timeout: float = ...) -> List[Union['SessionElement', str]]: ...
|
||
|
||
def s_ele(self,
|
||
loc_or_str: Union[Tuple[str, str], str] = ...) -> Union['SessionElement', str, None]: ...
|
||
|
||
def s_eles(self,
|
||
loc_or_str: Union[Tuple[str, str], str] = ...) -> List[Union['SessionElement', str]]: ...
|
||
|
||
def _ele(self,
|
||
loc_or_str: Union[Tuple[str, str], str],
|
||
timeout: float = ...,
|
||
single: bool = ...,
|
||
relative: bool = ...) -> Union['SessionElement', str, None, List[Union['SessionElement', str]]]: ...
|
||
|
||
def _get_ele_path(self, mode: str) -> str: ...
|
||
|
||
|
||
def make_session_ele(html_or_ele: Union[str, BaseElement, BasePage],
|
||
loc: Union[str, Tuple[str, str]] = ...,
|
||
single: bool = ...) -> Union[SessionElement, str, None, List[Union[SessionElement, str]]]: ...
|