def find_elements_by_id(self, id_):
"""Finds a list of elements within this element's children by ID.
:Args:
- id_ - Id of child element to find.
"""
return self.find_elements(by=By.ID, value=id_)
webelement.py 文件源码
python
阅读 28
收藏 0
点赞 0
评论 0
评论列表
文章目录