mirror of
https://gitee.com/g1879/DrissionPage.git
synced 2024-12-10 04:00:23 +08:00
77 lines
2.5 KiB
Python
77 lines
2.5 KiB
Python
# -*- coding:utf-8 -*-
|
|
"""
|
|
@Author : g1879
|
|
@Contact : g1879@qq.com
|
|
"""
|
|
from typing import Union, Tuple, Any
|
|
|
|
from .._base.chromium_driver import ChromiumDriver
|
|
from .._elements.chromium_element import ChromiumElement
|
|
from .._pages.chromium_base import ChromiumBase
|
|
|
|
|
|
class Actions:
|
|
|
|
def __init__(self, page: ChromiumBase):
|
|
self.page: ChromiumBase = ...
|
|
self._dr: ChromiumDriver = ...
|
|
self.modifier: int = ...
|
|
self.curr_x: int = ...
|
|
self.curr_y: int = ...
|
|
|
|
def move_to(self, ele_or_loc: Union[ChromiumElement, Tuple[int, int], str],
|
|
offset_x: int = 0, offset_y: int = 0, duration: float = .5) -> Actions: ...
|
|
|
|
def move(self, offset_x: int = 0, offset_y: int = 0, duration: float = .5) -> Actions: ...
|
|
|
|
def click(self, on_ele: Union[ChromiumElement, str] = None) -> Actions: ...
|
|
|
|
def r_click(self, on_ele: Union[ChromiumElement, str] = None) -> Actions: ...
|
|
|
|
def m_click(self, on_ele: Union[ChromiumElement, str] = None) -> Actions: ...
|
|
|
|
def db_click(self, on_ele: Union[ChromiumElement, str] = None) -> Actions: ...
|
|
|
|
def hold(self, on_ele: Union[ChromiumElement, str] = None) -> Actions: ...
|
|
|
|
def release(self, on_ele: Union[ChromiumElement, str] = None) -> Actions: ...
|
|
|
|
def r_hold(self, on_ele: Union[ChromiumElement, str] = None) -> Actions: ...
|
|
|
|
def r_release(self, on_ele: Union[ChromiumElement, str] = None) -> Actions: ...
|
|
|
|
def m_hold(self, on_ele: Union[ChromiumElement, str] = None) -> Actions: ...
|
|
|
|
def m_release(self, on_ele: Union[ChromiumElement, str] = None) -> Actions: ...
|
|
|
|
def _hold(self, on_ele: Union[ChromiumElement, str] = None, button: str = 'left',
|
|
count: int = 1) -> Actions: ...
|
|
|
|
def _release(self, button: str) -> Actions: ...
|
|
|
|
def scroll(self, delta_x: int = 0, delta_y: int = 0,
|
|
on_ele: Union[ChromiumElement, str] = None) -> Actions: ...
|
|
|
|
def up(self, pixel: int) -> Actions: ...
|
|
|
|
def down(self, pixel: int) -> Actions: ...
|
|
|
|
def left(self, pixel: int) -> Actions: ...
|
|
|
|
def right(self, pixel: int) -> Actions: ...
|
|
|
|
def key_down(self, key: str) -> Actions: ...
|
|
|
|
def key_up(self, key: str) -> Actions: ...
|
|
|
|
def type(self, text: Union[str, list, tuple]) -> Actions: ...
|
|
|
|
def input(self, text_or_keys: Any) -> Actions: ...
|
|
|
|
def wait(self, second: float) -> Actions: ...
|
|
|
|
def _get_key_data(self, key: str, action: str) -> dict: ...
|
|
|
|
|
|
def location_to_client(page, lx: int, ly: int) -> tuple: ...
|