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)