OpenTAP.Runner.Client
3.1.0-beta.14
This is a prerelease version of OpenTAP.Runner.Client.
This package has a SemVer 2.0.0 package version: 3.1.0-beta.14+60e137be.
There is a newer version of this package available.
See the version list below for details.
See the version list below for details.
Requires NuGet 3.3 or higher.
dotnet add package OpenTAP.Runner.Client --version 3.1.0-beta.14
NuGet\Install-Package OpenTAP.Runner.Client -Version 3.1.0-beta.14
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="OpenTAP.Runner.Client" Version="3.1.0-beta.14" />
For projects that support PackageReference, copy this XML node into the project file to reference the package.
<PackageVersion Include="OpenTAP.Runner.Client" Version="3.1.0-beta.14" />
<PackageReference Include="OpenTAP.Runner.Client" />
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 OpenTAP.Runner.Client --version 3.1.0-beta.14
The NuGet Team does not provide support for this client. Please contact its maintainers for support.
#r "nuget: OpenTAP.Runner.Client, 3.1.0-beta.14"
#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 OpenTAP.Runner.Client@3.1.0-beta.14
#: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=OpenTAP.Runner.Client&version=3.1.0-beta.14&prerelease
#tool nuget:?package=OpenTAP.Runner.Client&version=3.1.0-beta.14&prerelease
The NuGet Team does not provide support for this client. Please contact its maintainers for support.
OpenTAP Runner Client (C#)
This package provides the asynchronous NATS-based client for talking to an OpenTAP Runner (Runner 2.x).
Quick start
using System.Collections.Generic;
using System.Threading.Tasks;
using NATS.Client.Core;
using OpenTap.Runner.Client;
await using INatsConnection connection = new NatsConnection(new NatsOpts
{
Url = RunnerClient.DefaultUrl // defaults to nats://127.0.0.1:20111
});
await connection.ConnectAsync();
RunnerClient runner = new RunnerClient(connection);
SessionClient session = await runner.StartSessionAsync();
RunStatus status = await session.RunTestPlanAsync(new List<Parameter>());
while (status.SessionState != SessionState.Idle)
{
await Task.Delay(250);
status = await session.GetStatusAsync();
}
await session.ShutdownAsync();
await runner.ShutdownSessionAsync(session.Id);
Compatibility
- Runner Client 3.x targets Runner 2.x installations.
- For Runner 1.x, keep using Runner Client 2.x.
Documentation
Full guides and examples live at https://doc.opentap.io/runner
| Product | Versions Compatible and additional computed target framework versions. |
|---|---|
| .NET | net9.0 is compatible. 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. |
Compatible target framework(s)
Included target framework(s) (in package)
Learn more about Target Frameworks and .NET Standard.
-
- NATS.Net (>= 2.6.5)
- System.Text.Json (>= 9.0.9)
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 |
|---|---|---|
| 3.1.2 | 0 | 3/19/2026 |
| 3.1.2-rc.1 | 0 | 3/19/2026 |
| 3.1.2-beta.1 | 0 | 3/19/2026 |
| 3.1.1 | 0 | 3/19/2026 |
| 3.1.0 | 14 | 3/19/2026 |
| 3.1.0-beta.15 | 0 | 3/19/2026 |
| 3.1.0-beta.14 | 0 | 3/19/2026 |
| 3.1.0-beta.13 | 23 | 3/18/2026 |
| 3.1.0-beta.12 | 32 | 3/17/2026 |
| 3.1.0-beta.11 | 29 | 3/17/2026 |
| 3.1.0-beta.10 | 407 | 3/16/2026 |
| 3.1.0-beta.9 | 28 | 3/13/2026 |
| 3.1.0-beta.8 | 29 | 3/13/2026 |
| 3.1.0-beta.7 | 24 | 3/13/2026 |
| 3.1.0-beta.6 | 28 | 3/12/2026 |
| 3.1.0-beta.5 | 25 | 3/11/2026 |
| 3.1.0-beta.4 | 31 | 3/11/2026 |
| 3.1.0-beta.3 | 28 | 3/11/2026 |
| 3.1.0-beta.2 | 33 | 3/11/2026 |
| 3.1.0-beta.1 | 36 | 3/9/2026 |
Loading failed