Skip to content

WhiteLibrary will give a way to test Windows UI technologies with Robot Framework. WhiteLibrary wraps White test automation framework

License

Notifications You must be signed in to change notification settings

Madhugr85/robotframework-whitelibrary

 
 

Repository files navigation

WhiteLibrary provides the means to test Windows GUI technologies with Robot Framework. WhiteLibrary wraps White test automation framework [1].

Technologies

  • Win32
  • WinForms
  • WPF (Windows Presentation Foundation)
  • SWT (Java) platforms

Installation

Stable version

pip install --upgrade robotframework-whitelibrary

Development version

pip install --upgrade --pre robotframework-whitelibrary

Documentation

Keyword documentation

Development Environment

Prerequisities

  • Install NuGet Command Line Interface (CLI) to install required DLL packages (TestStack.White and Castle.Core).
  • Install Python, if not already installed. Versions 2.7, 3.5 and 3.6 are supported at the moment.
  • To install Robot Framework and Python for .NET, run
pip install robotframework pythonnet
  • To make modifications to and build the test application (UIAutomationTest.exe), install Visual Studio. The test application is a WPF application developed with C#.
  • If you want to edit Python with Visual Studio, Python Tools are required. They're part of Visual Studio 2017 installer, see details about what to select during installation: https://github.com/Microsoft/PTVS

WhiteLibrary installation

  • To install WhiteLibrary from source, in the root folder of the project run
local_install.cmd
  • Open UIAutomationTest\UIAutomationTest.sln and build the solution in Visual Studio. This will create the SUT executable, UIAutomationTest\bin\Debug\UIAutomationTest.exe.

Running tests with Robot Framework

  • To execute the test suite against SUT, in the root folder of the project run
robot --outputdir output --exclude no_ci --loglevel DEBUG:INFO atests
  • To execute a single test case called "Example Test Case", run
robot --outputdir output --exclude no_ci --loglevel DEBUG:INFO -t "Example Test Case" atests
  • The test suite tagged with no_ci will run tests against the old (Win32) version of Windows calculator, and is typically excluded from test runs.

References

[1] https://github.com/TestStack/White

About

WhiteLibrary will give a way to test Windows UI technologies with Robot Framework. WhiteLibrary wraps White test automation framework

Resources

License

Code of conduct

Stars

Watchers

Forks

Packages

No packages published

Languages

  • Python 60.8%
  • RobotFramework 23.7%
  • C# 12.4%
  • Batchfile 3.1%