![]() |
VOOZH | about |
Requires NuGet 3.3 or higher.
dotnet add package OpenTAP.Runner.Client --version 3.1.2
NuGet\Install-Package OpenTAP.Runner.Client -Version 3.1.2
<PackageReference Include="OpenTAP.Runner.Client" Version="3.1.2" />
<PackageVersion Include="OpenTAP.Runner.Client" Version="3.1.2" />Directory.Packages.props
<PackageReference Include="OpenTAP.Runner.Client" />Project file
paket add OpenTAP.Runner.Client --version 3.1.2
#r "nuget: OpenTAP.Runner.Client, 3.1.2"
#:package OpenTAP.Runner.Client@3.1.2
#addin nuget:?package=OpenTAP.Runner.Client&version=3.1.2Install as a Cake Addin
#tool nuget:?package=OpenTAP.Runner.Client&version=3.1.2Install as a Cake Tool
This package provides the asynchronous NATS-based client for talking to an OpenTAP Runner (Runner 2.x).
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);
Full guides and examples live at https://doc.opentap.io/runner
| Product | Versions Compatible and additional computed target framework versions. |
|---|---|
| .NET | net9.0 net9.0 is compatible. net9.0-android net9.0-android was computed. net9.0-browser net9.0-browser was computed. net9.0-ios net9.0-ios was computed. net9.0-maccatalyst net9.0-maccatalyst was computed. net9.0-macos net9.0-macos was computed. net9.0-tvos net9.0-tvos was computed. net9.0-windows net9.0-windows was computed. net10.0 net10.0 was computed. net10.0-android net10.0-android was computed. net10.0-browser net10.0-browser was computed. net10.0-ios net10.0-ios was computed. net10.0-maccatalyst net10.0-maccatalyst was computed. net10.0-macos net10.0-macos was computed. net10.0-tvos net10.0-tvos was computed. net10.0-windows net10.0-windows was computed. |
This package is not used by any NuGet packages.
This package is not used by any popular GitHub repositories.
| Version | Downloads | Last Updated |
|---|---|---|
| 4.0.0-beta.21 | 26 | 6/17/2026 |
| 4.0.0-beta.20 | 26 | 6/16/2026 |
| 4.0.0-beta.19 | 24 | 6/12/2026 |
| 4.0.0-beta.17 | 27 | 6/11/2026 |
| 4.0.0-beta.16 | 30 | 6/3/2026 |
| 4.0.0-beta.15 | 28 | 6/3/2026 |
| 4.0.0-beta.14 | 29 | 6/3/2026 |
| 4.0.0-beta.13 | 34 | 6/3/2026 |
| 4.0.0-beta.12 | 31 | 6/2/2026 |
| 4.0.0-beta.11 | 28 | 6/2/2026 |
| 4.0.0-beta.10 | 57 | 5/28/2026 |
| 4.0.0-beta.8 | 32 | 5/28/2026 |
| 4.0.0-beta.7 | 37 | 5/28/2026 |
| 4.0.0-beta.6 | 30 | 5/27/2026 |
| 4.0.0-beta.5 | 34 | 5/21/2026 |
| 4.0.0-beta.4 | 35 | 5/11/2026 |
| 4.0.0-beta.3 | 36 | 5/11/2026 |
| 4.0.0-beta.2 | 34 | 5/11/2026 |
| 4.0.0-beta.1 | 31 | 5/11/2026 |
| 3.1.2 | 12,150 | 3/19/2026 |