Ask HN: Deep learning enabled GUI automation tools?
I was wondering, have anybody found really good tools, potentially cross-platform for GUI automation but which leverages image detection from Computer vision models, say convolutional neural networks?
How about open-source alternatives?
4 comments
[ 3.5 ms ] story [ 25.5 ms ] thread[1]: https://github.com/asweigart/pyautogui
[2]: https://github.com/rmpr/atbswp
guess wrapping pyautogui might be the way to go, is my understanding correct?
atbswp looks very valuable, thanks for sharing.
You can take a screenshot with:
With your neural network you can have the coordinates of what you want, and act with pyautogui afterwards. In many cases, a neural network can even be overkill, take a look at this https://vimeo.com/352072921 The script takes a screenshot of the webpage, recognize the current highlighted word with pytesseract and type it in with pyautogui, simple.