模块下载及查询网站

https://www.lfd.uci.edu/~gohlke/pythonlibs/

使用pymouse模拟鼠标操作需要用到的模块

1.pymouse
pip install pymouse

2.PyUserinput
pip install PyUserinput

使用pymouse模拟鼠标操作

# 导入模块
from pymouse import PyMouse
# 创建鼠标对象
m = PyMouse()
# 鼠标点击 
m.click(31,233) 
#鼠标移动到(31,223)
m.move(31, 223)   

使用pyautogui模拟鼠标操作需要安装的模块

pip install PyGetWindow==0.0.1
pip install pyautogui

pyautogui模拟移动

# 导入模块
import pyautogui
# 鼠标经过1秒的时间,移动到了(100,100)的位置
pyautogui.moveTo(100,100,duration = 1)
pyautogui.moveTo(100, 200) #绝对移动
pyautogui.moveRel(100, 200)#相对移动
#渐变移动
pyautogui.moveTo(100, 100, 2, pyautogui.easeInQuad)     # start slow, end fast
pyautogui.moveTo(100, 100, 2, pyautogui.easeOutQuad)    # start fast, end slow
pyautogui.moveTo(100, 100, 2, pyautogui.easeInOutQuad)  # start and end fast, slow in middle
pyautogui.moveTo(100, 100, 2, pyautogui.easeInBounce)   # bounce at the end
pyautogui.moveTo(100, 100, 2, pyautogui.easeInElastic)  # rubber band at the end

pyautogui模拟拖拽

#绝对移动
pyautogui.dragTo(100, 200, button='left')
#相对移动
pyautogui.dragRel(30, 0, 2, button='right')
# move mouse cursor to 100, 200, then scroll up 10 "clicks" 
pyautogui.scroll(10, x=100, y=100)  
# 在(10,5)单击鼠标,默认左键
pyautogui.click(10,5)          
pyautogui.click(100,150,button='left')
pyautogui.click(200,250,button='right')
# pyautogui.dragTo()  按键并拖动鼠标移动,参数为坐标,与moveTo相同
# pyautogui.dragRel()  按键并拖动鼠标移动,参数为距离,与moveRel相

pyautogui模拟鼠标按下

pyautogui.mouseDown()
pyautogui.mouseUp()

使用pyautogui及pymouse模拟拖拽网页侧边条完整代码清单

from pymouse import PyMouse
import pyautogui
m = PyMouse()
m.move(1355, 102)
pyautogui.dragTo(1357, 165, button='left')