https://github.com/flaui/flaui.adapter.white
Adapter for White tests to run in FlaUI.
https://github.com/flaui/flaui.adapter.white
Last synced: about 1 month ago
JSON representation
Adapter for White tests to run in FlaUI.
- Host: GitHub
- URL: https://github.com/flaui/flaui.adapter.white
- Owner: FlaUI
- License: mit
- Created: 2019-11-25T20:43:34.000Z (over 5 years ago)
- Default Branch: main
- Last Pushed: 2023-08-16T10:03:50.000Z (almost 2 years ago)
- Last Synced: 2025-04-17T08:45:26.596Z (2 months ago)
- Language: C#
- Size: 51.8 KB
- Stars: 5
- Watchers: 3
- Forks: 4
- Open Issues: 3
-
Metadata Files:
- Readme: README.md
- License: LICENSE.txt
Awesome Lists containing this project
README
# FlaUI.Adapter.White
This project acts as an adapter between Teststack.White and FlaUI to make it a bit easier to migrate from White to FlaUI.# Usage
To use FlaUI, you need to add `FlaUI.Core` and `FlaUI.UIA3` (or `FlaUI.UIA2`) and this adapter (`FlaUI.Adapter.White`) to your project. You should then remove all `White` libraries. Some things might give compile errors then, you can help improve this adapter with missing things or adopt the errors to the FlaUI concepts.## Initialization
As FlaUI is a bit more generic, it needs some things to be initialized. So call the following initializer:
```csharp
UIA3Automation automation = new UIA3Automation();
// or UIA2Automation, depending on your needs
WhiteAdapter.Initialize(automation);
```