Skip to content

在 drag_from_to 方法中,傳遞參數給 _perform_action 的順序錯誤了。 #262

@dob730

Description

@dob730

def drag_from_to(self, x_start: int, y_start: int, x_end: int, y_end: int, interval_time: float = 1):
self._perform_action(x_start, x_end, y_start, y_end) # ❌ 順序錯誤!
# 應該是 (x_start, y_start, x_end, y_end)
# 但實際傳入 (x_start, x_end, y_start, y_end)

Metadata

Metadata

Assignees

No one assigned

    Labels

    No labels
    No labels

    Type

    No type

    Projects

    No projects

    Milestone

    No milestone

    Relationships

    None yet

    Development

    No branches or pull requests

    Issue actions