NBomber plugin for writing HTTP scenarios with RestSharp client.
Documentation is located here
var options = new RestClientOptions("http://localhost:5099");
using var client = RestClientBuilder.CreateDefaultClient(options);
var scenario = Scenario.Create("restsharp_scenario", async ctx =>
{
var request = new RestRequest("/api/pingpong/");
return await client.Send(request);
});