Metadata-Version: 2.1
Name: autogui
Version: 0.0.4
Summary: Records and automates Winform and WPF applications
Home-page: https://github.com/lundbird/SimpleGUI
Author: Alex Lundberg
Author-email: alex.lundberg@gmail.com
License: MIT
Platform: UNKNOWN
Classifier: Programming Language :: Python
Classifier: License :: OSI Approved :: MIT License
Classifier: Operating System :: OS Independent
Description-Content-Type: text/markdown
Requires-Dist: pythonnet

AutoGui is a GUI Automation/Test tool giving the user high level keywords to automate WPF and winform applications.

install using pip install autogui

To use, generate scripts using RecorderSpy.exe in tools folder. Use ctrl-r to start recording, ctrl-e to end recording, and ctrl-w to select a GUI element during recording.

Methods available.
	string Read(string selector, int child = 0, double timeout = 5)  
	setWindow(string window,double timeout=5)  
	Click(string selector, int child = 0,double timeout=5)  
	SendKey(string keys)  
	RightClick(string selector,int child=0,double timeout=5)  
	Append(string inputText,string selector,int child=0,double timeout=5)  
	Write(string value, string selector, int child = 0, double timeout=5,string mode="overwrite")  


example:  
	import autogui as ag  
	ag.setWindow("Untitled - Notepad")  
	ag.click("Edit")



