修改注释

This commit is contained in:
g1879 2020-08-06 00:00:27 +08:00
parent bda0f9972a
commit 19ff6ba9f6
4 changed files with 11 additions and 7 deletions

View File

@ -114,8 +114,9 @@ class DriverElement(DrissionElement):
mode: str = None,
show_errmsg: bool = False,
timeout: float = None):
"""根据loc获取元素或列表可用用字符串控制获取方式可选'id','class','name','tagName'
ele.find('id:ele_id')
"""根据loc获取元素或列表可用字符串控制获取方式可选'@属性名:''tag:''text:''css:''xpath:'
如没有控制关键字会按字符串文本搜索
ele.ele('@id:ele_id')ele.ele('首页')
"""
if isinstance(loc_or_str, str):
loc_or_str = get_loc_from_str(loc_or_str)

View File

@ -74,8 +74,9 @@ class DriverPage(object):
mode: str = None,
timeout: float = None,
show_errmsg: bool = False) -> Union[DriverElement, List[DriverElement], None]:
"""根据loc获取元素或列表可用用字符串控制获取方式可选'id','class','name','tagName'
ele.find('id:ele_id')
"""根据loc获取元素或列表可用字符串控制获取方式可选'@属性名:''tag:''text:''css:''xpath:'
如没有控制关键字会按字符串文本搜索
page.ele('@id:ele_id')page.ele('首页')
:param loc_or_ele: 页面元素地址
:param mode: 以某种方式查找元素可选'single' , 'all', 'visible'
:param timeout: 是否显示错误信息

View File

@ -90,9 +90,9 @@ class SessionElement(DrissionElement):
return None
def ele(self, loc_or_str: Union[tuple, str], mode: str = None, show_errmsg: bool = False):
"""根据loc获取元素或列表可用字符串控制获取方式,可选'@属性名:''tag:''text:''css:''xpath:'
"""根据loc获取元素或列表可用字符串控制获取方式,可选'@属性名:''tag:''text:''css:''xpath:'
如没有控制关键字会按字符串文本搜索
ele.find('id:ele_id')ele.find('首页')
ele.ele('@id:ele_id')ele.ele('首页')
"""
if isinstance(loc_or_str, str):
loc_or_str = get_loc_from_str(loc_or_str)

View File

@ -67,7 +67,9 @@ class SessionPage(object):
loc_or_ele: Union[tuple, str, SessionElement],
mode: str = None,
show_errmsg: bool = False) -> Union[SessionElement, List[SessionElement], None]:
"""查找一个元素
"""根据loc获取元素或列表可用字符串控制获取方式可选'@属性名:''tag:''text:''css:''xpath:'
如没有控制关键字会按字符串文本搜索
page.ele('@id:ele_id')page.ele('首页')
:param loc_or_ele: 页面元素地址
:param mode: 以某种方式查找元素可选'single','all'
:param show_errmsg: 是否显示错误信息