update DrissionPage/_elements/chromium_element.pyi.

Signed-off-by: Wen-Ming21 <3348431908@qq.com>
This commit is contained in:
Wen-Ming21 2024-10-02 07:01:10 +00:00 committed by Gitee
parent 5fc8ca2773
commit 6b7ae3c3ee
No known key found for this signature in database
GPG Key ID: 173E9B9CA92EEF8F

View File

@ -550,10 +550,21 @@ class ChromiumElement(DrissionElement):
"""使元素获取焦点"""
...
def hover(self, offset_x: int = None, offset_y: int = None) -> ChromiumElement:
"""鼠标悬停可接受偏移量偏移量相对于元素左上角坐标。不传入offset_x和offset_y值时悬停在元素中点
def force_pseudo_state(self, keep_state: bool = True,
forcedPseudoClasses: list[str] = ['hover']) -> ChromiumElement:
"""
强制元素保持状态如鼠标悬停keep_state为True时需再次调用取消强制元素保持状态
:param keep_state: 是否强制元素保持某个状态默认为True
:param forcedPseudoClasses: 默认为['hover']可用参数active,hover,focus,focus-within,focus-visible,target
:return: None
"""
...
def hover(self, offset_x: int = None, offset_y: int = None, keep_hover: bool = False) -> ChromiumElement:
"""鼠标悬停可接受偏移量偏移量相对于元素左上角坐标。不传入offset_x和offset_y值时悬停在元素中点keep_hover为True时需再次调用取消强制hover
:param offset_x: 相对元素左上角坐标的x轴偏移量
:param offset_y: 相对元素左上角坐标的y轴偏移量
:param keep_hover: 为True时保持元素hover时的样式,为False时取消强制hover
:return: None
"""
...