Advertisement
Guest User

Untitled

a guest
Mar 22nd, 2019
88
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 0.38 KB | None | 0 0
  1. import pyautogui
  2. from PIL import ImageGrab, ImageOps
  3. import time
  4. from numpy import *
  5.  
  6. class Cordinates():
  7. textBox = (475, 1021)
  8. message = "Wyslane z pythona .-."
  9. send = ((946, 1049))
  10.  
  11. def SendMessage():
  12. pyautogui.click(Cordinates.textBox)
  13. pyautogui.typewrite(Cordinates.message)
  14. pyautogui.click(Cordinates.send)
  15. x = 1
  16. for x in 10:
  17. SendMessage()
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement