Advertisement
182days

Type Bot

Nov 27th, 2023 (edited)
854
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
Python 0.66 KB | None | 0 0
  1. import pyautogui
  2. import time
  3. import keyboard
  4.  
  5. time.sleep(5)
  6. TicketEverything = "Just a gentle reminder to create a ticket for any support you give to users."
  7. UnassignedTickets = "Also please watch the unassigned tickets coming from Level 1 and assign them to whomever you feel best suited to resolve them."
  8. UpdateTickets = "Finally, review your current tickets and update with the latest progress to keep the users and the team updated."
  9.  
  10. pyautogui.typewrite(TicketEverything)
  11. pyautogui.hotkey('enter')
  12. time.sleep(10)
  13. pyautogui.typewrite(UnassignedTickets)
  14. pyautogui.hotkey('enter')
  15. time.sleep(10)
  16. pyautogui.typewrite(UpdateTickets)
  17. pyautogui.hotkey('enter')
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement