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)