teonsen / Flax

FlaUI wrapper(UIA3 only), adding Java and OpenCV feature

Geek Repo:Geek Repo

Github PK Tool:Github PK Tool

Flax (This project is in preparation)

FlaUI wrapper(UIA3 only), adding Java and OpenCV feature.

Why the wrapper for FlaUI now?

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();
    }

What is the OpenCV feature?

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);

About

FlaUI wrapper(UIA3 only), adding Java and OpenCV feature

License:MIT License


Languages

Language:C# 100.0%