New Post: Help using GetChildren() to get untitled controls
We have a simple csharp windows application that we are trying to call within powershell. We are currently using WASP to set a couple text controls and tab to a start button to run the windows app....
View ArticleNew Post: Select Tabbed window
I haven't been able find this out on any searches how to select a tabbed window. The only class is SysTabControl32. How do I manipulate this to the correct tabbed window without using send-click or...
View ArticleNew Post: Send-Click Windows 7
I've had the same issue. I can't seem to get the Send-Click command to work at all though. zhollett, did you happen to come to a solution for this?
View ArticleNew Post: Send-Click Windows 7
Usually when that happens it's because of how we're sending the click. If you want to click the address bar, you have to actually find the address bar and click that (instead of sending the click to...
View ArticleNew Comment on "Some Usage Examples"
WASP seriously ROCKS...managed to automate sending a report generated by powershell, via outlook web access, all using WASP. Thank you so much for allowing easy GUI automation of windows. Have found on...
View ArticleNew Post: Powershell 3.0 support for WASP?
Greetings! Has anyone been able to get WASP to install on Powershell 3.0? Whenever I attempt to install WASP on Powershell 3.0 (even running as Administrator with the -Force option) no logs are...
View ArticleNew Post: Powershell 3.0 support for WASP?
So ... this would be a good time for me to (finally) release more officially the new UIAutomation (script) module that I've been posting on PoshCode.org -- you can get it there for now, I'll do some...
View ArticleNew Post: Is "File Download - Security Warning" Protected for Sendclick?
Hi, i am trying to Download and save a File from Internet Explorer and my Send-keys does not work: The First Window i get, s the download Window but i also get the Childwindow: File Download -...
View ArticleNew Post: SendKeys method similar to SendWait
Hi, I am using your WASP plugin, and it's proving very useful for automating a legacy app with no command line interface. Unfortunately, the sending of Keys and mouse Clicks to another app can provie...
View ArticleNew Post: will it work for QWidget type?
select-control is unable to to select any of the buttons.
View ArticleNew Post: will it work for QWidget type?
Good question -- can you give me an example app I can playtest with?
View ArticleNew Post: will it work for QWidget type?
OK. I will get this to you t'row. I have to strip off somethings and make it less dependent before posting it.
View ArticleNew Post: Get the window of a newly started process
I was having trouble figuring out a good way to start a new process and then immediately grab its window. Start-Process -passThru is useful, but you can run into some issues if trying something like...
View ArticleNew Post: Get the window of a newly started process
Looks good - I can't think of any other way to make sure you got the newest window when there are multiples for the same process id.
View ArticleNew Post: Detect a dialog
How can use use WASP to detect if an application's window has created a dialog window? E.g., if I send the keys "^f" to the Notepad window, that causes the Find dialog to appear; is there any way I...
View ArticleNew Post: How to use Select-Control?
Hi I am unclear on how to use Select-Control. It says I can use it by "pick controls by class and/or name and/or index (with wildcard support)" Yet I really don't see any examples. For instance how to...
View ArticleNew Post: No updates in three years?
Is the project dead? The 1.3 release is still called "Beta" 3 years later. The discussions and activity are low. I'm just trying to gauge whether or not to even try this, or what's going on?
View ArticleNew Post: How to send right-click to tray application
I was wondering if it is possible to find all tray applications and then send a right-click to open the popup menu.
View ArticleNew Post: How to send right-click to tray application
Short answer: yes. I'm not on Windows right this second, so I'll get back on here later and post how if nobody beats me to it.
View ArticleNew Post: How to send right-click to tray application
Import-Module WASP ## Starting from the tray container, Select-UIElement -Class Shell_TrayWnd | ## Pick the real system tray Window Select-UIElement -Class TrayNotifyWnd | ## It has a the Notification...
View Article