Ricerca…


introduzione

pyautogui è un modulo usato per controllare mouse e tastiera. Questo modulo è fondamentalmente utilizzato per automatizzare le attività di clic del mouse e della tastiera. Per il mouse, le coordinate dello schermo (0,0) iniziano dall'angolo in alto a sinistra. Se sei fuori controllo, sposta rapidamente il cursore del mouse in alto a sinistra, prenderà il controllo del mouse e della tastiera da Python e te lo restituirà.

Funzioni del mouse

Queste sono alcune delle utili funzioni del mouse per controllare il mouse.

size()           #gave you the size of the screen
position()     #return current position of mouse
moveTo(200,0,duration=1.5)     #move the cursor  to (200,0) position  with 1.5 second delay     
moveRel()          #move the cursor relative to your current position.
click(337,46)           #it will click on the position mention there
dragRel()              #it will drag the mouse relative to position
pyautogui.displayMousePosition()     #gave you the current mouse position but should be done on terminal.

Funzioni della tastiera

Queste sono alcune delle utili funzioni della tastiera per automatizzare la pressione dei tasti.

typewrite('')    #this will type the string on the screen where current window has focused.
typewrite(['a','b','left','left','X','Y'])
pyautogui.KEYBOARD_KEYS    #get the list of all the keyboard_keys.
pyautogui.hotkey('ctrl','o')    #for the combination of keys to enter.

ScreenShot e riconoscimento dell'immagine

Queste funzioni ti aiuteranno a prendere lo screenshot e ad abbinare anche l'immagine con la parte dello schermo.

.screenshot('c:\\path')        #get the screenshot.
.locateOnScreen('c:\\path')    #search that image on screen and get the coordinates for you.
locateCenterOnScreen('c:\\path')       #get the coordinate for the image on screen.


Modified text is an extract of the original Stack Overflow Documentation
Autorizzato sotto CC BY-SA 3.0
Non affiliato con Stack Overflow