Orangebeard.RanorexListener 2.0.4

dotnet add package Orangebeard.RanorexListener --version 2.0.4
NuGet\Install-Package Orangebeard.RanorexListener -Version 2.0.4
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="Orangebeard.RanorexListener" Version="2.0.4" />
For projects that support PackageReference, copy this XML node into the project file to reference the package.
paket add Orangebeard.RanorexListener --version 2.0.4
#r "nuget: Orangebeard.RanorexListener, 2.0.4"
#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.
// Install Orangebeard.RanorexListener as a Cake Addin
#addin nuget:?package=Orangebeard.RanorexListener&version=2.0.4

// Install Orangebeard.RanorexListener as a Cake Tool
#tool nuget:?package=Orangebeard.RanorexListener&version=2.0.4

<h1 align="center"> <a href="https://github.com/orangebeard-io/Ranorex-Logger"> <img src="https://raw.githubusercontent.com/orangebeard-io/Ranorex-Logger/master/.github/logo.svg" alt="Orangebeard.io FitNesse TestSystemListener" height="200"> </a> <br>Orangebeard.io Ranorex Report Logger<br> </h1>

<h4 align="center">A Report Logger to report Ranorex tests in Orangebeard.</h4>

<p align="center"> <a href="https://github.com/orangebeard-io/Ranorex-Logger/blob/master/LICENSE.txt"> <img src="https://img.shields.io/github/license/orangebeard-io/Ranorex-Logger?style=flat-square" alt="License" /> </a> </p>

<div align="center"> <h4> <a href="https://orangebeard.io">Orangebeard</a> | <a href="#build">Build</a> | <a href="#install">Install</a> </h4> </div>

Build

(Preferred option is NuGet install!)

  • Clone this repository
  • Open in a .Net IDE
  • Reference Ranorex.Core.dll and Ranorex.Libs.Util.dll from your Ranorex Installation(s) - Ranorex 9.x uses net462, Ranorex 10.x uses net48. - Change the target framework(s) to what you need. Currently, the solution targets net462 and net48, so it needs Ranorex 9.x dll's, or separate references for v9 and v10.'
  • Reference the Orangebeard.Client DLL
  • Build the Ranorex Logger DLL

Install

  • Install from NuGet
  • If you built it yourself: Add your dll as a reference in your Ranorex Solution
  • Reference it in Program.cs using RanorexOrangebeardListener;
  • Attach the logger to your Ranorex report (environment vars can of course be set up elsewhere):
    Environment.SetEnvironmentVariable("orangebeard.endpoint", "https://your-instance.orangebeard.app");
    Environment.SetEnvironmentVariable("orangebeard.accessToken", "api-token-for-orangebeard");
    Environment.SetEnvironmentVariable("orangebeard.project", "projectname");
    Environment.SetEnvironmentVariable("orangebeard.testrun", "Test Run name");
    Environment.SetEnvironmentVariable("orangebeard.description", @"test run description"); //OPTIONAL
    Environment.SetEnvironmentVariable("orangebeard.attributes", @"key:value;single tag"); //OPTIONAL
    Environment.SetEnvironmentVariable("orangebeard.ref.url", @"https://my-ci-server.net/PRJ/1234"); //OPTIONAL
    Environment.SetEnvironmentVariable("orangebeard.fileupload.patterns", @".*\.txt;.*\.bat"); //OPTIONAL
    
    Environment.SetEnvironmentVariable("orangebeard.ranorex.systemattributes", "memory; number of displays"); //OPTIONAL
    
    OrangebeardLogger orangebeard = new OrangebeardLogger();
    Report.AttachLogger(orangebeard);

If the orangebeard.ranorex.systemattributes parameter is not present, no Ranorex system information will be sent to Orangebeard. If set, the content should be a semicolon-separated list of attributes to include. Attribute keys are matched case-insensitive.

Valid attributes are:

  • Ranorex version
  • OS version
  • OS default locale
  • .NET Runtime version
  • Number of logical CPUs
  • Number of displays
  • Screen dimension
  • Memory

Now run your test as you normally do and see the results fly in to Orangebeard!

Product Compatible and additional computed target framework versions.
.NET Framework net462 is compatible.  net463 was computed.  net47 was computed.  net471 was computed.  net472 was computed.  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
2.0.4 83 2/20/2024
2.0.3 75 2/16/2024
2.0.2 80 2/15/2024
2.0.0 82 2/14/2024