吾爱破解 - 52pojie.cn

 找回密码
 注册[Register]

QQ登录

只需一步,快速开始

查看: 1232|回复: 6
收起左侧

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

[复制链接]
鬼扯灯 发表于 2021-11-24 10:28
本帖最后由 鬼扯灯 于 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
[Python] 纯文本查看 复制代码
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
[mw_shl_code=python,true]import pyautogui
offset = 50
i = 0

谢谢大佬,我感觉这个应该是正确打开方式
haonanyxp 发表于 2021-11-24 15:40
谢谢大佬,我感觉这个应该是正确打开方式
您需要登录后才可以回帖 登录 | 注册[Register]

本版积分规则

返回列表

RSS订阅|小黑屋|处罚记录|联系我们|吾爱破解 - LCG - LSG ( 京ICP备16042023号 | 京公网安备 11010502030087号 )

GMT+8, 2024-11-25 18:28

Powered by Discuz!

Copyright © 2001-2020, Tencent Cloud.

快速回复 返回顶部 返回列表