ReportPortal.Client 3.10.0

Prefix Reserved
dotnet add package ReportPortal.Client --version 3.10.0
                    
NuGet\Install-Package ReportPortal.Client -Version 3.10.0
                    
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="ReportPortal.Client" Version="3.10.0" />
                    
For projects that support PackageReference, copy this XML node into the project file to reference the package.
<PackageVersion Include="ReportPortal.Client" Version="3.10.0" />
                    
Directory.Packages.props
<PackageReference Include="ReportPortal.Client" />
                    
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 ReportPortal.Client --version 3.10.0
                    
#r "nuget: ReportPortal.Client, 3.10.0"
                    
#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.
#addin nuget:?package=ReportPortal.Client&version=3.10.0
                    
Install ReportPortal.Client as a Cake Addin
#tool nuget:?package=ReportPortal.Client&version=3.10.0
                    
Install ReportPortal.Client as a Cake Tool

API client for Report Portal

Provides an ability to interact with Report Portal API in .NET/C#. Supports starting/finishing launches/tests, sending logs.

CI NuGet Badge codecov

Setup

Install ReportPortal.Client NuGet package.

PS> Install-Package ReportPortal.Client

Usage

The main entry point to start interact with API is ReportPortal.Client.Service class. It requires uri, project name and uuid. Uuid value is specific for an user and it can be obtained on User Profile page.

var service = new ReportPortal.Client.Service(
new Uri("https://demo.reportportal.com"), "my_project", "my_uuid");

Starting new launch:

var launch = await service.Launch.StartAsync(new StartLaunchRequest
    {
        Name = "LaunchName",
        Description = "LaunchDescription"
    });

To start test item we need to use the LaunchUuid received from the previous step:

var test = await service.TestItem.StartAsync(new StartTestItemRequest
    {
        LaunchUuid = launch.Uuid,
        Name = "Test1",
        Type = TestItemType.Test
    });

To send log item the TestItemUuid is used which was received from the previous step:

var log = await service.LogItem.CreateAsync(new CreateLogItemRequest
    {
        TestItemUuid = test.Uuid,
        Text = "My log",
        Level = LogLevel.Debug
    }); 

Finishing the test:

await Service.TestItem.FinishAsync(test.Uuid, new FinishTestItemRequest
    {
        Status = Status.Passed
    });

Finishing the launch:

await Service.Launch.FinishAsync(launch.Uuid, new FinishLaunchRequest());
Product Compatible and additional computed target framework versions.
.NET net5.0 was computed.  net5.0-windows was computed.  net6.0 is compatible.  net6.0-android was computed.  net6.0-ios was computed.  net6.0-maccatalyst was computed.  net6.0-macos was computed.  net6.0-tvos was computed.  net6.0-windows was computed.  net7.0 was computed.  net7.0-android was computed.  net7.0-ios was computed.  net7.0-maccatalyst was computed.  net7.0-macos was computed.  net7.0-tvos was computed.  net7.0-windows was computed.  net8.0 was computed.  net8.0-android was computed.  net8.0-browser was computed.  net8.0-ios was computed.  net8.0-maccatalyst was computed.  net8.0-macos was computed.  net8.0-tvos was computed.  net8.0-windows was computed.  net9.0 was computed.  net9.0-android was computed.  net9.0-browser was computed.  net9.0-ios was computed.  net9.0-maccatalyst was computed.  net9.0-macos was computed.  net9.0-tvos was computed.  net9.0-windows was computed.  net10.0 was computed.  net10.0-android was computed.  net10.0-browser was computed.  net10.0-ios was computed.  net10.0-maccatalyst was computed.  net10.0-macos was computed.  net10.0-tvos was computed.  net10.0-windows was computed. 
.NET Core netcoreapp2.0 was computed.  netcoreapp2.1 was computed.  netcoreapp2.2 was computed.  netcoreapp3.0 was computed.  netcoreapp3.1 was computed. 
.NET Standard netstandard2.0 is compatible.  netstandard2.1 was computed. 
.NET Framework net461 was computed.  net462 is compatible.  net463 was computed.  net47 was computed.  net471 was computed.  net472 was computed.  net48 was computed.  net481 was computed. 
MonoAndroid monoandroid was computed. 
MonoMac monomac was computed. 
MonoTouch monotouch was computed. 
Tizen tizen40 was computed.  tizen60 was computed. 
Xamarin.iOS xamarinios was computed. 
Xamarin.Mac xamarinmac was computed. 
Xamarin.TVOS xamarintvos was computed. 
Xamarin.WatchOS xamarinwatchos was computed. 
Compatible target framework(s)
Included target framework(s) (in package)
Learn more about Target Frameworks and .NET Standard.

NuGet packages (5)

Showing the top 5 NuGet packages that depend on ReportPortal.Client:

Package Downloads
ReportPortal.Shared

Multithreaded reporter of test results to https://reportportal.io

AlfaBank.AFT.Core.Library.Web

Библиотека с шагами работы с WebUI

Buns.ReportPortal

This library contains classes for cleaning and merging ReportPortal launches

Unicorn.ReportPortalAgent

Unicorn.ReportPortalAgent is Unicorn test automation framework extension which allows to report your tests execution into EPAM ReportPortal. This package includes ready for use implementation of EPAM ReportPortal extension which is referenced by your tests. You will need to deploy EPAM ReportPortal within your infrastructure to report your tests there.

Unicorn.Reporting.ReportPortal

Unicorn.Reporting.ReportPortal is Unicorn test automation framework extension which allows to report your tests execution into ReportPortal. This package includes ready for use implementation of ReportPortal extension which is referenced by your tests. You will need to deploy ReportPortal within your infrastructure to report your tests there.

GitHub repositories

This package is not used by any popular GitHub repositories.

Version Downloads Last updated
3.10.0 94,505 12/16/2024
3.9.0 309,902 10/11/2024
3.8.0 6,554 10/1/2024
3.7.0 105,648 7/11/2024
3.4.1 277,292 11/2/2023
3.4.0 1,211,418 5/25/2023
3.3.1 43,523 4/22/2023
3.3.0 148,508 3/17/2023
3.2.0 86,693 10/22/2022
3.1.0 463,530 10/3/2022
3.0.7 133 2/10/2025
3.0.6 1,291,696 1/4/2022
3.0.5 410,564 6/7/2021
3.0.4 340,972 2/4/2021
3.0.3 19,096 11/11/2020
3.0.2 37,501 10/8/2020
3.0.1 13,455 10/2/2020
3.0.0 965,630 8/5/2020
3.0.0-beta.4 1,579 7/8/2020
3.0.0-beta.3 1,894 6/10/2020
3.0.0-beta.2 688 5/21/2020
3.0.0-beta.1 12,113 2/5/2020
2.1.15 554,251 10/20/2019
2.1.14 130,498 7/31/2019
2.1.13 112,503 6/17/2019
2.1.12 9,363 5/13/2019
2.1.11 997 4/10/2019
2.1.10 9,053 2/8/2019
2.1.9 7,894 2/7/2019
2.1.8 50,908 2/4/2019
2.1.7 2,796 1/11/2019
2.1.6 11,283 12/21/2018
2.1.5 40,855 12/18/2018
2.1.4 2,476 11/23/2018
2.1.3 2,119 11/1/2018
2.1.2 1,134 10/24/2018
2.1.1 5,858 10/17/2018
2.1.0 26,479 9/26/2018
2.0.5 1,688 9/6/2018
2.0.4 1,060 9/4/2018
2.0.3 1,224 8/13/2018
2.0.2 4,618 7/25/2018
2.0.1 13,863 6/25/2018
2.0.0 7,637 2/9/2018
2.0.0-beta4 1,108 1/30/2018
2.0.0-beta3 10,926 10/24/2017
2.0.0-beta2 917 9/5/2017
2.0.0-beta1 943 9/1/2017
1.2.9 2,075 7/14/2017
1.2.8 3,076 6/18/2017
1.2.7 1,732 3/7/2017
1.2.6 1,350 2/22/2017
1.2.5 1,239 2/22/2017
1.2.4 1,393 1/16/2017
1.2.3 13,452 11/23/2016
1.2.3-beta-7 1,022 11/23/2016
1.2.2 1,364 11/16/2016
1.2.2-beta-5 969 11/16/2016
1.2.1 15,595 11/3/2016
1.1.0 2,969 11/3/2016
1.0.96 1,514 9/9/2016
1.0.95 1,297 9/5/2016
1.0.94 1,211 9/5/2016
1.0.93 1,274 8/15/2016
1.0.92 1,708 8/1/2016
1.0.91 1,586 7/28/2016
1.0.90 1,288 7/15/2016
1.0.89 1,595 12/8/2015
1.0.88 1,661 12/1/2015
1.0.87 1,341 11/12/2015
1.0.86 1,336 10/29/2015
1.0.85 1,330 10/9/2015
1.0.84 1,370 9/24/2015
1.0.83 1,354 9/23/2015
1.0.82 1,370 9/22/2015
1.0.81 1,332 9/8/2015
1.0.79 1,518 7/29/2015
1.0.78 1,351 7/9/2015
1.0.77 1,341 7/7/2015
1.0.76 1,363 6/26/2015
1.0.75 1,300 6/22/2015
1.0.74 1,527 4/24/2015
1.0.73 1,382 3/31/2015
1.0.71 1,371 1/30/2015
1.0.70 1,526 12/4/2014
1.0.68 1,447 7/22/2014
1.0.67 1,374 7/17/2014
1.0.66 1,340 7/1/2014
1.0.65 1,472 6/24/2014
1.0.64 1,398 6/5/2014
1.0.63 1,385 6/4/2014
1.0.62 1,333 6/4/2014
1.0.60 1,461 5/20/2014
1.0.57 1,361 5/20/2014
1.0.56 1,371 5/20/2014
1.0.55 1,597 4/23/2014
1.0.54 1,598 4/23/2014
1.0.53 1,363 4/23/2014
1.0.52 1,394 4/23/2014
1.0.51 1,478 4/23/2014
1.0.50 1,465 4/22/2014
1.0.49 1,598 4/22/2014
1.0.48 1,616 4/22/2014
1.0.47 1,581 4/22/2014
1.0.46 1,656 4/18/2014
1.0.45 1,595 4/16/2014
1.0.44 1,567 4/15/2014
1.0.43 1,531 4/15/2014
1.0.42 1,563 4/14/2014
1.0.41 1,528 4/14/2014
1.0.40 1,574 4/14/2014
1.0.3 1,573 4/11/2014
1.0.2 1,537 4/4/2014
1.0.1 1,477 4/3/2014
1.0.0 33,852 4/1/2014