├── .editorconfig ├── .gitignore ├── Add-UIHandler.ps1 ├── ReadMe.md ├── Source ├── Classes │ └── 00 - init.ps1 ├── Private │ └── Formatter.ps1 ├── Public │ ├── Get-ClickablePoint.ps1 │ ├── Remove-UIEventHandler.ps1 │ ├── Select-UIElement.ps1 │ ├── Send-UIKeys.ps1 │ ├── Set-UIFocus.ps1 │ ├── Set-UIText.ps1 │ └── Show-Window.ps1 ├── UIAutomation.Format.ps1xml ├── UIAutomation.Types.ps1xml ├── Wasp.psd1 └── lib │ ├── Interop.UIAutomationClient.dll │ ├── UIAComWrapper.dll │ └── WindowsInput.dll └── resources └── WASP.png /.editorconfig: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Jaykul/WASP/HEAD/.editorconfig -------------------------------------------------------------------------------- /.gitignore: -------------------------------------------------------------------------------- 1 | [0-9]*/ 2 | Generated/ -------------------------------------------------------------------------------- /Add-UIHandler.ps1: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Jaykul/WASP/HEAD/Add-UIHandler.ps1 -------------------------------------------------------------------------------- /ReadMe.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Jaykul/WASP/HEAD/ReadMe.md -------------------------------------------------------------------------------- /Source/Classes/00 - init.ps1: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Jaykul/WASP/HEAD/Source/Classes/00 - init.ps1 -------------------------------------------------------------------------------- /Source/Private/Formatter.ps1: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Jaykul/WASP/HEAD/Source/Private/Formatter.ps1 -------------------------------------------------------------------------------- /Source/Public/Get-ClickablePoint.ps1: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Jaykul/WASP/HEAD/Source/Public/Get-ClickablePoint.ps1 -------------------------------------------------------------------------------- /Source/Public/Remove-UIEventHandler.ps1: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Jaykul/WASP/HEAD/Source/Public/Remove-UIEventHandler.ps1 -------------------------------------------------------------------------------- /Source/Public/Select-UIElement.ps1: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Jaykul/WASP/HEAD/Source/Public/Select-UIElement.ps1 -------------------------------------------------------------------------------- /Source/Public/Send-UIKeys.ps1: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Jaykul/WASP/HEAD/Source/Public/Send-UIKeys.ps1 -------------------------------------------------------------------------------- /Source/Public/Set-UIFocus.ps1: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Jaykul/WASP/HEAD/Source/Public/Set-UIFocus.ps1 -------------------------------------------------------------------------------- /Source/Public/Set-UIText.ps1: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Jaykul/WASP/HEAD/Source/Public/Set-UIText.ps1 -------------------------------------------------------------------------------- /Source/Public/Show-Window.ps1: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Jaykul/WASP/HEAD/Source/Public/Show-Window.ps1 -------------------------------------------------------------------------------- /Source/UIAutomation.Format.ps1xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Jaykul/WASP/HEAD/Source/UIAutomation.Format.ps1xml -------------------------------------------------------------------------------- /Source/UIAutomation.Types.ps1xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Jaykul/WASP/HEAD/Source/UIAutomation.Types.ps1xml -------------------------------------------------------------------------------- /Source/Wasp.psd1: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Jaykul/WASP/HEAD/Source/Wasp.psd1 -------------------------------------------------------------------------------- /Source/lib/Interop.UIAutomationClient.dll: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Jaykul/WASP/HEAD/Source/lib/Interop.UIAutomationClient.dll -------------------------------------------------------------------------------- /Source/lib/UIAComWrapper.dll: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Jaykul/WASP/HEAD/Source/lib/UIAComWrapper.dll -------------------------------------------------------------------------------- /Source/lib/WindowsInput.dll: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Jaykul/WASP/HEAD/Source/lib/WindowsInput.dll -------------------------------------------------------------------------------- /resources/WASP.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Jaykul/WASP/HEAD/resources/WASP.png --------------------------------------------------------------------------------