I'm trying to automate an installation wizard and I needed to click on a button that is not enabled.

I know that this can be done using Windows Messages, but I was wondering if there is already support in White or UIAutomation for this

For reference this doesn't work:

var invoke =  (System.Windows.Automation.InvokePattern)setup.button("Next >").AutomationElement.GetCurrentPattern(System.Windows.Automation.InvokePattern.Pattern);  
invoke.Invoke();

neither does this

var guiAutomation = new API_GuiAutomation("msiexec");  
var setup = guiAutomation.windows()[0]; 
setup .bringToFront(); 
setup .button("Next >").mouse().click();  // this will work
setup .button("Next >").mouse().click();  // this will not work since the button is not enabled

The example above uses the White based API I added to the O2 Platform (see here an example of automating notepad)

link|improve this question

25% accept rate
feedback

4 Answers

I don't believe you can do this with UIAutomation: what you're asking for is something that goes beyond the remit of the UIAutomation framework. It is intended to let you do with code the same that you could otherwise do with mouse and keyboard. It is not designed as a general means of manipulating UI state.

link|improve this answer
Well, changing the state of UI controls (like buttons) is quite a useful test/automation capability :) – Dinis Cruz Mar 17 '11 at 2:34
feedback

You can directly call the Win32 function EnableWindow, which sends a Windows Message, just like you said.

I looked for that functionality in UIAutomation, but did not find it.

link|improve this answer
feedback

If you're using White

Mouse.Instance.Location = this.ClickablePoint;

Mouse.LeftDown(); Mouse.Instance.Location = point; Mouse.LeftUp();

link|improve this answer
O2 uses White for windows automation. Btw, your code sample wouldn't work since the button is not enabled – Dinis Cruz Jul 9 '11 at 20:23
feedback

Clicking onto an enabled button is sooner related to fault injection techniques, rather than normal execution of an application. Is this button disabled for the rest of the application's life cycle or will be enabled later? If the latter, why don't wait for enabling? By using do/while on element.Current.IsEnabled or the Wait-UIAButton cmdlet.

link|improve this answer
feedback

Your Answer

 
or
required, but never shown

Not the answer you're looking for? Browse other questions tagged or ask your own question.