ReportPortal.Client
3.7.0
Prefix Reserved
See the version list below for details.
dotnet add package ReportPortal.Client --version 3.7.0
NuGet\Install-Package ReportPortal.Client -Version 3.7.0
<PackageReference Include="ReportPortal.Client" Version="3.7.0" />
paket add ReportPortal.Client --version 3.7.0
#r "nuget: ReportPortal.Client, 3.7.0"
// Install ReportPortal.Client as a Cake Addin #addin nuget:?package=ReportPortal.Client&version=3.7.0 // Install ReportPortal.Client as a Cake Tool #tool nuget:?package=ReportPortal.Client&version=3.7.0
API client for Report Portal
Provides an ability to interact with Report Portal API in .NET/C#. Supports starting/finishing launches/tests, sending logs.
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 | Versions 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. |
.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. |
-
.NETFramework 4.6.2
- System.Text.Json (>= 6.0.6)
-
.NETStandard 2.0
- System.Text.Json (>= 6.0.6)
-
net6.0
- No dependencies.
NuGet packages (4)
Showing the top 4 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. |
GitHub repositories
This package is not used by any popular GitHub repositories.
Version | Downloads | Last updated |
---|---|---|
3.9.0 | 8,838 | 10/11/2024 |
3.8.0 | 1,924 | 10/1/2024 |
3.7.0 | 51,442 | 7/11/2024 |
3.4.1 | 130,416 | 11/2/2023 |
3.4.0 | 834,170 | 5/25/2023 |
3.3.1 | 43,324 | 4/22/2023 |
3.3.0 | 142,538 | 3/17/2023 |
3.2.0 | 77,293 | 10/22/2022 |
3.1.0 | 360,298 | 10/3/2022 |
3.0.6 | 1,049,118 | 1/4/2022 |
3.0.5 | 375,575 | 6/7/2021 |
3.0.4 | 327,921 | 2/4/2021 |
3.0.3 | 18,824 | 11/11/2020 |
3.0.2 | 36,813 | 10/8/2020 |
3.0.1 | 13,405 | 10/2/2020 |
3.0.0 | 759,327 | 8/5/2020 |
3.0.0-beta.4 | 1,537 | 7/8/2020 |
3.0.0-beta.3 | 1,851 | 6/10/2020 |
3.0.0-beta.2 | 636 | 5/21/2020 |
3.0.0-beta.1 | 12,001 | 2/5/2020 |
2.1.15 | 549,521 | 10/20/2019 |
2.1.14 | 129,526 | 7/31/2019 |
2.1.13 | 111,975 | 6/17/2019 |
2.1.12 | 9,232 | 5/13/2019 |
2.1.11 | 941 | 4/10/2019 |
2.1.10 | 7,448 | 2/8/2019 |
2.1.9 | 7,832 | 2/7/2019 |
2.1.8 | 49,961 | 2/4/2019 |
2.1.7 | 2,726 | 1/11/2019 |
2.1.6 | 11,227 | 12/21/2018 |
2.1.5 | 39,806 | 12/18/2018 |
2.1.4 | 2,354 | 11/23/2018 |
2.1.3 | 2,048 | 11/1/2018 |
2.1.2 | 1,066 | 10/24/2018 |
2.1.1 | 5,739 | 10/17/2018 |
2.1.0 | 26,291 | 9/26/2018 |
2.0.5 | 1,615 | 9/6/2018 |
2.0.4 | 982 | 9/4/2018 |
2.0.3 | 1,148 | 8/13/2018 |
2.0.2 | 4,435 | 7/25/2018 |
2.0.1 | 13,408 | 6/25/2018 |
2.0.0 | 7,452 | 2/9/2018 |
2.0.0-beta4 | 945 | 1/30/2018 |
2.0.0-beta3 | 10,797 | 10/24/2017 |
2.0.0-beta2 | 804 | 9/5/2017 |
2.0.0-beta1 | 830 | 9/1/2017 |
1.2.9 | 1,951 | 7/14/2017 |
1.2.8 | 2,948 | 6/18/2017 |
1.2.7 | 1,608 | 3/7/2017 |
1.2.6 | 1,232 | 2/22/2017 |
1.2.5 | 1,118 | 2/22/2017 |
1.2.4 | 1,269 | 1/16/2017 |
1.2.3 | 13,270 | 11/23/2016 |
1.2.3-beta-7 | 906 | 11/23/2016 |
1.2.2 | 1,239 | 11/16/2016 |
1.2.2-beta-5 | 851 | 11/16/2016 |
1.2.1 | 15,389 | 11/3/2016 |
1.1.0 | 2,845 | 11/3/2016 |
1.0.96 | 1,391 | 9/9/2016 |
1.0.95 | 1,174 | 9/5/2016 |
1.0.94 | 1,085 | 9/5/2016 |
1.0.93 | 1,152 | 8/15/2016 |
1.0.92 | 1,583 | 8/1/2016 |
1.0.91 | 1,463 | 7/28/2016 |
1.0.90 | 1,162 | 7/15/2016 |
1.0.89 | 1,464 | 12/8/2015 |
1.0.88 | 1,536 | 12/1/2015 |
1.0.87 | 1,217 | 11/12/2015 |
1.0.86 | 1,209 | 10/29/2015 |
1.0.85 | 1,205 | 10/9/2015 |
1.0.84 | 1,246 | 9/24/2015 |
1.0.83 | 1,228 | 9/23/2015 |
1.0.82 | 1,241 | 9/22/2015 |
1.0.81 | 1,206 | 9/8/2015 |
1.0.79 | 1,394 | 7/29/2015 |
1.0.78 | 1,222 | 7/9/2015 |
1.0.77 | 1,214 | 7/7/2015 |
1.0.76 | 1,236 | 6/26/2015 |
1.0.75 | 1,169 | 6/22/2015 |
1.0.74 | 1,400 | 4/24/2015 |
1.0.73 | 1,235 | 3/31/2015 |
1.0.71 | 1,239 | 1/30/2015 |
1.0.70 | 1,398 | 12/4/2014 |
1.0.68 | 1,317 | 7/22/2014 |
1.0.67 | 1,245 | 7/17/2014 |
1.0.66 | 1,210 | 7/1/2014 |
1.0.65 | 1,340 | 6/24/2014 |
1.0.64 | 1,263 | 6/5/2014 |
1.0.63 | 1,254 | 6/4/2014 |
1.0.62 | 1,196 | 6/4/2014 |
1.0.60 | 1,324 | 5/20/2014 |
1.0.57 | 1,218 | 5/20/2014 |
1.0.56 | 1,235 | 5/20/2014 |
1.0.55 | 1,467 | 4/23/2014 |
1.0.54 | 1,466 | 4/23/2014 |
1.0.53 | 1,230 | 4/23/2014 |
1.0.52 | 1,264 | 4/23/2014 |
1.0.51 | 1,349 | 4/23/2014 |
1.0.50 | 1,332 | 4/22/2014 |
1.0.49 | 1,466 | 4/22/2014 |
1.0.48 | 1,482 | 4/22/2014 |
1.0.47 | 1,445 | 4/22/2014 |
1.0.46 | 1,522 | 4/18/2014 |
1.0.45 | 1,458 | 4/16/2014 |
1.0.44 | 1,431 | 4/15/2014 |
1.0.43 | 1,396 | 4/15/2014 |
1.0.42 | 1,426 | 4/14/2014 |
1.0.41 | 1,390 | 4/14/2014 |
1.0.40 | 1,437 | 4/14/2014 |
1.0.3 | 1,437 | 4/11/2014 |
1.0.2 | 1,400 | 4/4/2014 |
1.0.1 | 1,340 | 4/3/2014 |
1.0.0 | 33,476 | 4/1/2014 |
Please see https://github.com/reportportal/client-dotnet/releases/tag/3.7.0 what is new in this version.