鬼扯灯 发表于 2021-11-24 10:28

python新手入门学习想实现鼠标垂直移动复制、粘贴。

本帖最后由 鬼扯灯 于 2021-11-24 10:31 编辑

import pyautogui
xnumber = 0
while xnumber <= 5:
    x_position = -81
    y_position = 360
    pyautogui.moveTo(x = x_position,y = y_position,duration = 0.5)
    pyautogui.doubleClick(x = -81,y = 360, button='left', duration=0.5)
    # pyautogui.moveTo(x=-1194, y=384, duration=0.55)
    # pyautogui.doubleClick(x=-1194, y=384, button='left', duration=0.25)
    # pyautogui.hotkey('command', 'c')
    # pyautogui.moveTo(x=-1097, y=723, duration=0.25)
    # pyautogui.click(x=-1097, y=723, button='left', duration=0.55)
    # pyautogui.hotkey('command', 'v')
    # pyautogui.moveTo(x=-675, y=854, duration=0.25)
    # pyautogui.click(x=-675, y=854, button='left', duration=0.55)
    y_position += 30
    xnumber += 1




想实现y轴 循环垂直移动 鼠标点击后复制粘贴,新手才入门。测试了几次 都不能垂直移动,只能执行第一步。

tuoluo348 发表于 2021-11-24 11:06

moveRel (x坐标,y坐标)相对于当前位置移动鼠标。

pyautogui.moveRel(0,100) 鼠标向下移动100像素

zxc9989 发表于 2021-11-24 11:06

import pyautogui
offset = 50
i = 0
while i < 3:
    x, y = pyautogui.position()
    x_position = x
    y_position = y + offset
    pyautogui.moveTo(x = x_position, y = y_position, duration = 0.5)
    offset = -offset
    i += 1

cxb2468 发表于 2021-11-24 11:07

sleep() 方法用下你的点击速度太快了   要缓点时间 在点击!!!!

鬼扯灯 发表于 2021-11-24 11:32

tuoluo348 发表于 2021-11-24 11:06
moveRel (x坐标,y坐标)相对于当前位置移动鼠标。

pyautogui.moveRel(0,100) 鼠标向下移动100像素

谢谢,我试试看

鬼扯灯 发表于 2021-11-24 11:34

zxc9989 发表于 2021-11-24 11:06
import pyautogui
offset = 50
i = 0


谢谢大佬,我感觉这个应该是正确打开方式{:1_893:}

haonanyxp 发表于 2021-11-24 15:40

谢谢大佬,我感觉这个应该是正确打开方式
页: [1]
查看完整版本: python新手入门学习想实现鼠标垂直移动复制、粘贴。