ในส่วนนี้ เราจะพยายามทำให้การเคลื่อนไหวของเมาส์และคีย์บอร์ดเป็นแบบอัตโนมัติโดยใช้โมดูล pyautogui ใน python
Pyautogui เป็นห้องสมุดที่ให้คุณควบคุมเมาส์และคีย์บอร์ดเพื่อทำสิ่งต่าง ๆ ได้
เป็นโมดูล Python แบบอัตโนมัติข้ามแพลตฟอร์มสำหรับมนุษย์
เนื่องจากเป็นห้องสมุดบุคคลที่สาม เราจึงต้องติดตั้ง
pip install pyautogui
เมาส์
ด้านล่างนี้เป็นโปรแกรมที่จะทำให้การเคลื่อนไหวของเมาส์ของคุณเป็นแบบอัตโนมัติ ในการรันโปรแกรม คุณจะเห็นการเคลื่อนไหวของเมาส์ในทุกคำสั่ง ฉันเรียกใช้คำสั่งด้านล่างบน CLI เพื่อจับการเคลื่อนไหวของเมาส์ คุณสามารถลองใช้ค่าอื่น ๆ ที่แตกต่างกันได้เช่นกัน
ตัวอย่าง
>>> import pyautogui >>> pyautogui.size() Size(width=1366, height=768) >>> width, height = pyautogui.size() >>> width 1366 >>> height 768 >>> pyautogui.position() Point(x=750, y=293) >>> pyautogui.position() Point(x=750, y=293) >>> pyautogui.position() Point(x=750, y=293) >>> pyautogui.moveTo(10, 10) >>> pyautogui.move(10, 10, duration=1.5) >>> pyautogui.move(10, 10, duration=1.5) >>> >>> pyautogui.move(10, 10, duration=1.5) >>> pyautogui.move(10, 10, duration=1.5) >>> pyautogui.move(10, 10, duration=3.0) >>> pyautogui.moveRel(20, 0) >>> pyautogui.moveRel(250,0) >>> pyautogui.moveRel(250, 0, duration=2.5) >>> pyautogui.moveRel(0, -100) >>> pyautogui.moveRel(0, -150, duration=1.5) >>> pyautogui.position() Point(x=210, y=526) >>> pyautogui.click(339, 38) >>> pyautogui.click()
ในการรันโปรแกรมข้างต้น คุณอาจสังเกตเห็นว่าเมื่อเรากำหนดระยะเวลา การเคลื่อนไหวของเมาส์จะดำเนินต่อไปในช่วงเวลานั้น กด Escape เพื่อรับการควบคุมกลับมาสำหรับคำสั่งสุดท้าย - pyautogui.click()
ฟังก์ชันควบคุมแป้นพิมพ์
ฟังก์ชันพิมพ์ดีด ()
ฟังก์ชันแป้นพิมพ์หลักคือพิมพ์ดีด () ฟังก์ชันนี้จะพิมพ์อักขระในสตริงที่ส่งผ่าน หากต้องการเพิ่มช่วงหน่วงเวลาระหว่างการกดปุ่มอักขระแต่ละตัว ให้ส่ง int หรือ float สำหรับอาร์กิวเมนต์คีย์เวิร์ดช่วงเวลา
>>> pyautogui.typewrite('Hello, TutorialsPoint!') #Prints out 'Hello, Tutorialspoint!' instantly >>> Hello, TutorialsPoint! >>> pyautogui.typewrite('Hello, TutorialsPoint!', interval=0.25) #Prints out 'Hello, Tutorialspoint!' with a quarter second delay after each character >>> Hello, TutorialsPoint!
ฟังก์ชัน press(), keyDown() และ keyUp()
หากต้องการกดปุ่มเหล่านี้ ให้เรียกใช้ฟังก์ชัน press() และส่งสตริงจาก pyautogui.KEYBOARD_KEYS เช่น enter, esc, f1
>>> pyautogui.press('enter') #press the Enter key >>> >>> pyautogui.press('f1') #press the F1 key >>> p >>> pyautogui.press('left') #press the left arrow key
หากต้องการกดหลายปุ่มที่คล้ายกับที่พิมพ์ดีด () ทำ ให้ส่งรายการสตริงไปที่กด () เช่น−
>>> pyautogui.press(['left','left', 'left'])
ฟังก์ชั่นฮ็อตคีย์ ()
เพื่อให้การกดแป้นลัดหรือแป้นพิมพ์ลัดสะดวกยิ่งขึ้น แป้นลัด () สามารถส่งผ่านสายอักขระหลายแป้นซึ่งจะถูกกดลงตามลำดับ แล้วปล่อยในลำดับที่กลับกัน
>>> pyautogui.hotkey('ctrl', 'shift', 'esc')
การเรียกใช้ด้านบนจะเปิดหน้าต่าง 'Task Manager' ในเครื่องของฉัน (หน้าต่าง)
ด้านบนเหมือนกับการรันโปรแกรมด้านล่าง:
>>> pyautogui.keyDown('ctrl') >>> pyautogui.keyDown('shift') >>> pyautogui.keyDown('esc') >>> pyautogui.keyUp('esc') >>> pyautogui.keyUp('shift') >>> pyautogui.keyUp('ctrl')
ด้านล่างนี้เป็นโปรแกรมแสดงความสามารถของคีย์บอร์ด pyautogui สองสามอย่าง:
>>> import pyautogui >>> pyautogui.click(90, 90) >>> pyautogui.click(90, 90);pyautogui.typewrite('Hello, World!') >>> pyautogui.click(150, 150) >>> pyautogui.click(150, 150);pyautogui.typewrite('Hello, World!') >>> pyautogui.click(150, 150);pyautogui.typewrite('Hello, World!', interval=0.2) >>> pyautogui.click(150, 150);pyautogui.typewrite(['A', 'B', 'left', 'left', 'x', 'y']) >>> pyautogui.click(150, 150);pyautogui.typewrite(['A', 'B', 'left', 'left', 'x', 'y'], interval=1) >>> pyautogui.KEYBOARD_KEYS ['\t', '\n', '\r', ' ', '!', '"', '#', '$', '%', '&', "'", '(', ')', '*', '+', ',', '-', '.', '/', '0', '1', '2', '3', '4', '5', '6', '7', '8', '9', ':', ';', '<', '=', '>', '?', '@', '[', '\\', ']', '^', '_', '`', 'a', 'b', 'c', 'd', 'e', 'f', 'g', 'h', 'i', 'j', 'k', 'l', 'm', 'n', 'o', 'p', 'q', 'r', 's', 't', 'u', 'v', 'w', 'x', 'y', 'z', '{', '|', '}', '~', 'accept', 'add', 'alt', 'altleft', 'altright', 'apps', 'backspace', 'browserback', 'browserfavorites', 'browserforward', 'browserhome', 'browserrefresh', 'browsersearch', 'browserstop', 'capslock', 'clear', 'convert', 'ctrl', 'ctrlleft', 'ctrlright', 'decimal', 'del', 'delete', 'divide', 'down', 'end', 'enter', 'esc', 'escape', 'execute', 'f1', 'f10', 'f11', 'f12', 'f13', 'f14', 'f15', 'f16', 'f17', 'f18', 'f19', 'f2', 'f20', 'f21', 'f22', 'f23', 'f24', 'f3', 'f4', 'f5', 'f6', 'f7', 'f8', 'f9', 'final', 'fn', 'hanguel', 'hangul', 'hanja', 'help', 'home', 'insert', 'junja', 'kana', 'kanji', 'launchapp1', 'launchapp2', 'launchmail', 'launchmediaselect', 'left', 'modechange', 'multiply', 'nexttrack', 'nonconvert', 'num0', 'num1', 'num2', 'num3', 'num4', 'num5', 'num6', 'num7', 'num8', 'num9', 'numlock', 'pagedown', 'pageup', 'pause', 'pgdn', 'pgup', 'playpause', 'prevtrack', 'print', 'printscreen', 'prntscrn', 'prtsc', 'prtscr', 'return', 'right', 'scrolllock', 'select', 'separator', 'shift', 'shiftleft', 'shiftright', 'sleep', 'space', 'stop', 'subtract', 'tab', 'up', 'volumedown', 'volumemute', 'volumeup', 'win', 'winleft', 'winright', 'yen', 'command', 'option', 'optionleft', 'optionright'] >>> >>> pyautogui.click(100,100); >>> pyautogui.click(100,100); pyautogui.typewrite('Hello world!') >>> Hello world! >>> pyautogui.click(100,100); pyautogui.typewrite('Hello world!', interval=0.5) >>> Hello world! >>> pyautogui.click(100,100); pyautogui.typewrite(['a', 'b', 'left)', 'left', 'X', 'Y']) >>> aXYb >>> pyautogui.click(100,100); pyautogui.typewrite(['a', 'b', 'left', 'left', 'X', 'Y']) >>> XYab >>> pyautogui.click(100,100); pyautogui.typewrite(['a', 'b', 'left', 'left', 'X', 'Y'], interval=1) >>> XYab >>> pyautogui.press('f1')