Chrome for Testing binary distributed as nuget package. It has all you need to start Chrome on server/local without any installation on system or downloading in runtime, it works even in scratch Docker image.
License
—
Deps
2
Install Size
—
Vulns
✓ 0
Published
Feb 26, 2026
$ dotnet add package ChromeForTestingThis is portable chrome for testing browser binary distributed as nuget package that doesn't require any installation on system for deployment.
Nuget version semantic is X.X.X.X0Y where:
It works on:
Example:
using CliWrap;
using CliWrap.Buffered;
using ChromeForTesting;
BufferedCommandResult res = await Cli.Wrap(ChromeForTestingInstance.ChromePath)
.WithArguments("--version")
.WithValidation(CommandResultValidation.None)
.ExecuteBufferedAsync();
Console.WriteLine($"Exit code: {res.ExitCode}");
Console.WriteLine($"Output: {res.StandardOutput}");
Notes:
chrome-root/usr/share/libdrm/amdgpu.ids to /usr/share/libdrm/amdgpu.ids unitil this PR is merged, released, deployed, ...