OneStreamAutoLibrary.WindowsUIHelpers 2026.1.16.1

dotnet add package OneStreamAutoLibrary.WindowsUIHelpers --version 2026.1.16.1
                    
NuGet\Install-Package OneStreamAutoLibrary.WindowsUIHelpers -Version 2026.1.16.1
                    
This command is intended to be used within the Package Manager Console in Visual Studio, as it uses the NuGet module's version of Install-Package.
<PackageReference Include="OneStreamAutoLibrary.WindowsUIHelpers" Version="2026.1.16.1" />
                    
For projects that support PackageReference, copy this XML node into the project file to reference the package.
<PackageVersion Include="OneStreamAutoLibrary.WindowsUIHelpers" Version="2026.1.16.1" />
                    
Directory.Packages.props
<PackageReference Include="OneStreamAutoLibrary.WindowsUIHelpers" />
                    
Project file
For projects that support Central Package Management (CPM), copy this XML node into the solution Directory.Packages.props file to version the package.
paket add OneStreamAutoLibrary.WindowsUIHelpers --version 2026.1.16.1
                    
#r "nuget: OneStreamAutoLibrary.WindowsUIHelpers, 2026.1.16.1"
                    
#r directive can be used in F# Interactive and Polyglot Notebooks. Copy this into the interactive tool or source code of the script to reference the package.
#:package OneStreamAutoLibrary.WindowsUIHelpers@2026.1.16.1
                    
#:package directive can be used in C# file-based apps starting in .NET 10 preview 4. Copy this into a .cs file before any lines of code to reference the package.
#addin nuget:?package=OneStreamAutoLibrary.WindowsUIHelpers&version=2026.1.16.1
                    
Install as a Cake Addin
#tool nuget:?package=OneStreamAutoLibrary.WindowsUIHelpers&version=2026.1.16.1
                    
Install as a Cake Tool

WindowsUIHelpers

A cross-platform library for Windows desktop application automation using WinAppDriver and Appium, targeting .NET Framework 4.8, .NET Standard 2.0, and .NET 8. This library provides reusable page objects, components, and helpers for building maintainable desktop automation tests for Windows applications.

Integration

WindowsUIHelpers is designed to be used by:

  • Windows Desktop Test Projects - For WinAppDriver-based desktop automation
  • Hybrid Test Projects - Combining web and desktop automation

WindowsUIHelpers depends on:

  • SeleniumHelpers - Selenium/Appium WebDriver infrastructure and automation base classes
  • CommonHelpers - Shared utilities, logging interfaces (ITestLogger), reporting, and common infrastructure

This library provides Windows desktop UI page objects and components that can be integrated with any .NET test framework (xUnit, NUnit, MSTest).

Features

  • Page Object Model (POM):
    Structured, maintainable page objects for Windows desktop UI automation

  • Rich Component Library:
    Pre-built components for common Windows UI elements:

    • ButtonComponent - Button interactions
    • TextBoxComponent - Text input operations
    • ComboBoxComponent - Dropdown/combo box operations
    • TreeViewComponent - Tree navigation and selection
    • PropertyGridComponent - Property grid interactions
    • WindowComponent - Window-level operations
    • BaseComponent - Base class for custom components
  • Common Page Objects:
    Ready-to-use page objects for common scenarios:

    • LoginPage - Login page automation
    • FileExplorerPage - Windows File Explorer interactions
    • NavigationPanePage - Application navigation
    • SaveAsDialogHelper - Save file dialog automation
    • OpenFileDialogHelper - Open file dialog automation
  • Domain-Specific Pages:
    Specialized page objects for business applications:

    • DimensionLibraryPage - Dimension management
    • LoadExtractPage - Data load/extract operations
  • ITestLogger Integration:
    Built-in logging support for page-level actions and diagnostics

  • Telerik Test Framework Support:
    For desktop automation

Prerequisites

Installation

Add the library to your project:

dotnet add package WindowsUIHelpers

Usage Examples

using ArtOfTest.WebAii.Wpf; using WindowsUIHelpers.Components; using CommonHelpers.Logging;

// Initialize logger and VisualFind (from your test setup) ITestLogger logger = new MyTestLogger();

VisualFind find = new VisualFind();

// Create a WindowComponent var windowComponent = new WindowComponent(find, logger);

// Find a window by header var mainWindow = windowComponent.GetWindowByHeader("Main Window Title");

// Assert window is visible windowComponent.AssertWindowExist(() ⇒ mainWindow, "Main window should be visible");

Project Structure

WindowsUIHelpers/ ├── Components/ │ ├── BaseComponent.cs # Base class for all components │ ├── ButtonComponent.cs # Button interactions │ └── ComboBoxComponent.cs # Dropdown operations │ ├── PageObjects/ │ └── CommonWindows/ │ └── LoginPage.cs # Login page object └── README.md

Dependencies

This library depends on:

  • SeleniumHelpers - Provides:

    • Selenium/Appium WebDriver infrastructure
    • Browser and application driver management
    • Screenshot functionality
    • WebDriver extensions and utilities
  • CommonHelpers - Provides:

    • ITestLogger - Logging interface for page objects
    • Shared utilities and infrastructure
    • File system helpers
    • Reporting helpers
  • Telerik Test Framework Provides:

  • Windows Automation

Product Compatible and additional computed target framework versions.
.NET Framework net48 is compatible.  net481 was computed. 
Compatible target framework(s)
Included target framework(s) (in package)
Learn more about Target Frameworks and .NET Standard.

NuGet packages

This package is not used by any NuGet packages.

GitHub repositories

This package is not used by any popular GitHub repositories.

Version Downloads Last Updated
2026.1.16.1 79 1/16/2026

Initial release.