Logo Questions Linux Laravel Mysql Ubuntu Git Menu
 

How to use expresser for python on windows

How to use Xpresser for python 2.7 in windows for image based GUI automation , i don't want to use sikuli ..as it takes to much time to run without ide , are there other opensource option for this purpose . For my Purpose the script is required to run continuously based on some condition .

like image 687
Rajdeep Sharma Avatar asked Oct 20 '22 15:10

Rajdeep Sharma


1 Answers

Not directly an answer to how to make Xpresser work on Windows, but here are some alternatives:

  • pyautogui locate functions. It is a mature library, well worth a look.
  • sikulpy which is an overlay above pyautogui, specialized in providing a similar experience to Sikuli, but with a codebase in pure Python (instead of Java for Sikuli).
  • lackey, similar to sikulpy.
  • eirikb's linux shell solution.
like image 105
gaborous Avatar answered Oct 22 '22 23:10

gaborous