Network Security Internet Technology Development Database Servers Mobile Phone Android Software Apple Software Computer Software News IT Information

In addition to Weibo, there is also WeChat

Please pay attention

WeChat public account

Shulou

How to use PyAutoGUI to operate the mouse

2025-04-07 Update From: SLTechnology News&Howtos shulou NAV: SLTechnology News&Howtos > Internet Technology >

Share

Shulou(Shulou.com)06/01 Report--

This article shows you how to use PyAutoGUI to operate the mouse, the content is concise and easy to understand, can definitely brighten your eyes, through the detailed introduction of this article, I hope you can get something.

Today, you will learn how to use PyAutoGUI to move your mouse, click on a folder and drag to a specified location. Let's get started:

First of all, PyAutoGUI obtains the mouse position through the (XMagney) coordinates on the screen. According to the resolution of the screen, the resolution of my computer is 2560x1440, and then we look at the code part:

Import pyautogui

# We may move the mouse to the upper left corner of the screen # pause the movement of the mouse by setting FAILSAFE pyautogui.FAILSAFE = True

# the position of the mouse cursor is provided in the form of (xmemy) pairs. The values of # x and y are determined by your resolution # monitor. My decision is 2720x1024. For example: # the upper right corner of my screen is (2560) # the lower left corner of my screen is (0meme1440)

# print width and height of screen resolution print (pyautogui.size ()) # Size (width=2560, height=1440)

# move the mouse to a fixed position, and here we do a circular demonstration: for i in range (3): pyautogui.moveTo (100prime100durationduration 0.25) pyautogui.moveTo (200pence100durationduration 0.25) pyautogui.moveTo (200pence200durationduration 0.25) pyautogui.moveTo (100meme200durationduration 0.25)

# move the mouse to a specific location pyautogui.moveRel (100,0, duration=0.25)

# place the mouse over a folder location # then go back to the coordinates of the location print (pyautogui.position ()) # here I get the test location coordinates on the computer desktop # Click this folder # pyautogui.click (990447)

# move the mouse to the test folder location # and drag to the specified location pyautogui.moveTo (990447) pyautogui.dragTo (1400 447)

# Scroll the mouse wheel pyautogui.scroll

Here we use the cmd command line execution code python py3_mouse.py to print the resolution size of the screen, move the position with the mouse loop, move the specific location, drag and drop the folder to a location, and so on.

The above content is how to use PyAutoGUI to operate the mouse, have you learned the knowledge or skills? If you want to learn more skills or enrich your knowledge reserve, you are welcome to follow the industry information channel.

Welcome to subscribe "Shulou Technology Information " to get latest news, interesting things and hot topics in the IT industry, and controls the hottest and latest Internet news, technology news and IT industry trends.

Views: 0

*The comments in the above article only represent the author's personal views and do not represent the views and positions of this website. If you have more insights, please feel free to contribute and share.

Share To

Internet Technology

Wechat

© 2024 shulou.com SLNews company. All rights reserved.

12
Report