Windows GUI testing library for Robot Framework, version 1.6.0. Uses White (a .NET UI automation framework) to interact with Windows applications. Provides Robot Framework keywords for launching, attaching, and controlling windows, controls, and UI elements. Release cadence is irregular, with minor updates every few months.
pip install robotframework-whitelibraryVerified import paths — ran on the pinned version, not inferred.
Launch Notepad, type text, and close the window. Demonstrates basic usage of Launch Application, Attach Window By Title, Type Text, and Close Window keywords.
Update any robot test cases that check the error messages of these keywords to match the new format.
Use the recommended locator format from the official documentation. For most cases, `id:value` is fine.
Ensure tests are executed on Windows with .NET Framework installed. Use conditional execution or skip on non-Windows platforms.
Use `Wait Until Item Exists` (only in v1.5.0+) or increase the `white_find_window_timeout` and `white_busy_timeout` settings. Alternatively, add explicit `Sleep` statements.