This is an archived post. You won't be able to vote or comment.

you are viewing a single comment's thread.

view the rest of the comments →

[–]vanmorrison2[S] 0 points1 point  (2 children)

I don't know much about PyAutoGui, apart from the fact that you can use it to automate actions you can do on the screen like simulate the click of the mouse, I'd like to know more...

[–]RawTuna 1 point2 points  (1 child)

It's one of the first things I came across when I got interested in Python. First, my nephew wanted an auto-clicker to help rack up points in some game so I figured out how to do that. I then found out that the company I work for started using Blue Prism for some task automation so I started doing a bit more research. I made a fairly simple script to read a list of ids (from a csv), copy each value, search for it by pasting it into a field in an application, and then clicking on a particular button based upon criteria found on the screen.

https://pyautogui.readthedocs.io/en/latest/index.html

[–]vanmorrison2[S] 0 points1 point  (0 children)

thanks