mirror of
https://gitee.com/g1879/DrissionPage.git
synced 2024-12-10 04:00:23 +08:00
优化元素筛选,未完成
This commit is contained in:
parent
5ffff60118
commit
5221ea3cb0
@ -120,6 +120,11 @@ class ChromiumElementsList(SessionElementsList):
|
|||||||
class SessionFilterOne(object):
|
class SessionFilterOne(object):
|
||||||
def __init__(self, _list):
|
def __init__(self, _list):
|
||||||
self._list = _list
|
self._list = _list
|
||||||
|
self._index = 1
|
||||||
|
|
||||||
|
def __call__(self, index=1):
|
||||||
|
self._index = index
|
||||||
|
return self
|
||||||
|
|
||||||
def attr(self, name, value, equal=True):
|
def attr(self, name, value, equal=True):
|
||||||
"""以是否拥有某个attribute值为条件筛选元素
|
"""以是否拥有某个attribute值为条件筛选元素
|
||||||
@ -138,15 +143,21 @@ class SessionFilterOne(object):
|
|||||||
:return: 筛选结果
|
:return: 筛选结果
|
||||||
"""
|
"""
|
||||||
if contain:
|
if contain:
|
||||||
|
num = 0
|
||||||
for i in self._list:
|
for i in self._list:
|
||||||
t = i.raw_text
|
t = i.raw_text
|
||||||
if (fuzzy and text in t) or (not fuzzy and text == t):
|
if (fuzzy and text in t) or (not fuzzy and text == t):
|
||||||
return i
|
num += 1
|
||||||
|
if self._index == num:
|
||||||
|
return i
|
||||||
else:
|
else:
|
||||||
|
num = 0
|
||||||
for i in self._list:
|
for i in self._list:
|
||||||
t = i.raw_text
|
t = i.raw_text
|
||||||
if (fuzzy and text not in t) or (not fuzzy and text != t):
|
if (fuzzy and text not in t) or (not fuzzy and text != t):
|
||||||
return i
|
num += 1
|
||||||
|
if self._index == num:
|
||||||
|
return i
|
||||||
return NoneElement(self._list._page, 'text()', args={'text': text, 'fuzzy': fuzzy, 'contain': contain})
|
return NoneElement(self._list._page, 'text()', args={'text': text, 'fuzzy': fuzzy, 'contain': contain})
|
||||||
|
|
||||||
def _get_attr(self, name, value, method, equal=True):
|
def _get_attr(self, name, value, method, equal=True):
|
||||||
@ -157,13 +168,19 @@ class SessionFilterOne(object):
|
|||||||
:return: 筛选结果
|
:return: 筛选结果
|
||||||
"""
|
"""
|
||||||
if equal:
|
if equal:
|
||||||
|
num = 0
|
||||||
for i in self._list:
|
for i in self._list:
|
||||||
if getattr(i, method)(name) == value:
|
if getattr(i, method)(name) == value:
|
||||||
return i
|
num += 1
|
||||||
|
if self._index == num:
|
||||||
|
return i
|
||||||
else:
|
else:
|
||||||
|
num = 0
|
||||||
for i in self._list:
|
for i in self._list:
|
||||||
if getattr(i, method)(name) != value:
|
if getattr(i, method)(name) != value:
|
||||||
return i
|
num += 1
|
||||||
|
if self._index == num:
|
||||||
|
return i
|
||||||
return NoneElement(self._list._page, f'{method}()', args={'name': name, 'value': value, 'equal': equal})
|
return NoneElement(self._list._page, f'{method}()', args={'name': name, 'value': value, 'equal': equal})
|
||||||
|
|
||||||
|
|
||||||
@ -296,13 +313,19 @@ class ChromiumFilterOne(SessionFilterOne):
|
|||||||
:return: 选中的元素
|
:return: 选中的元素
|
||||||
"""
|
"""
|
||||||
if equal:
|
if equal:
|
||||||
|
num = 0
|
||||||
for i in self._list:
|
for i in self._list:
|
||||||
if getattr(i.states, name):
|
if getattr(i.states, name):
|
||||||
return i
|
num += 1
|
||||||
|
if self._index == num:
|
||||||
|
return i
|
||||||
else:
|
else:
|
||||||
|
num = 0
|
||||||
for i in self._list:
|
for i in self._list:
|
||||||
if not getattr(i.states, name):
|
if not getattr(i.states, name):
|
||||||
return i
|
num += 1
|
||||||
|
if self._index == num:
|
||||||
|
return i
|
||||||
return NoneElement(self._list._page, f'{name}()', args={'equal': equal})
|
return NoneElement(self._list._page, f'{name}()', args={'equal': equal})
|
||||||
|
|
||||||
|
|
||||||
|
@ -72,9 +72,12 @@ class ChromiumElementsList(SessionElementsList):
|
|||||||
|
|
||||||
class SessionFilterOne(object):
|
class SessionFilterOne(object):
|
||||||
_list: SessionElementsList = ...
|
_list: SessionElementsList = ...
|
||||||
|
_index: int = ...
|
||||||
|
|
||||||
def __init__(self, _list: SessionElementsList, index: int = 1): ...
|
def __init__(self, _list: SessionElementsList, index: int = 1): ...
|
||||||
|
|
||||||
|
def __call__(self, index: int = 1) -> SessionFilterOne: ...
|
||||||
|
|
||||||
def attr(self, name: str, value: str, equal: bool = True) -> SessionElement: ...
|
def attr(self, name: str, value: str, equal: bool = True) -> SessionElement: ...
|
||||||
|
|
||||||
def text(self, text: str, fuzzy: bool = True, contain: bool = True) -> SessionElement: ...
|
def text(self, text: str, fuzzy: bool = True, contain: bool = True) -> SessionElement: ...
|
||||||
@ -115,6 +118,8 @@ class ChromiumFilterOne(SessionFilterOne):
|
|||||||
|
|
||||||
def __init__(self, _list: ChromiumElementsList): ...
|
def __init__(self, _list: ChromiumElementsList): ...
|
||||||
|
|
||||||
|
def __call__(self, index: int = 1) -> ChromiumFilterOne: ...
|
||||||
|
|
||||||
def displayed(self, equal: bool = True) -> ChromiumElement: ...
|
def displayed(self, equal: bool = True) -> ChromiumElement: ...
|
||||||
|
|
||||||
def checked(self, equal: bool = True) -> ChromiumElement: ...
|
def checked(self, equal: bool = True) -> ChromiumElement: ...
|
||||||
|
Loading…
x
Reference in New Issue
Block a user