FlaUI wrapper(UIA3 only), adding Java and OpenCV feature.
Because it would be nice to code Windows and Mac in the same framework. The "x" in Flax meant to be x(cross) platform.
using Flax;
var f = new WindowsAutomation();
f.Process.Run("calc.exe");
using (var w = f.GetWindow("Calculator"))
{
w.GetElementByName("1")?.Click();
}
Only CV.Click() is available now. You will need Flax.CV.exe in your app's startup path.
using Flax;
var f = new WindowsAutomation();
// Click the center point of matched area, if your template image matched in your screen.
f.CV.Click($YourTemplateImagePath.bmp);