StageZero 0.5.141

There is a newer version of this package available.
See the version list below for details.
dotnet add package StageZero --version 0.5.141
                    
NuGet\Install-Package StageZero -Version 0.5.141
                    
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="StageZero" Version="0.5.141" />
                    
For projects that support PackageReference, copy this XML node into the project file to reference the package.
<PackageVersion Include="StageZero" Version="0.5.141" />
                    
Directory.Packages.props
<PackageReference Include="StageZero" />
                    
Project file
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 StageZero --version 0.5.141
                    
#r "nuget: StageZero, 0.5.141"
                    
#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 StageZero@0.5.141
                    
#: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=StageZero&version=0.5.141
                    
Install as a Cake Addin
#tool nuget:?package=StageZero&version=0.5.141
                    
Install as a Cake Tool

StageZero

Build CodeQL

Please note

This project is a work-in-progress, some features may be missing and you may experience some bugs. If you do experience any issues, please raise them here.

What is StageZero?

StageZero is an automated UI testing library for the web that allows you to use whatever underlying WebDriver you wish (e.g. Selenium, or Playwright) to steer the browser.

Why?

StageZero puts flexibility and developer experience first. Want to change to a different UI testing framework (e.g. Selenium → Playwright)? You can with next to no refactoring required in your codebase. The less time you have to think about steering the browser, the more time you can invest in your tests. StageZero makes it easy to get started with next to no initial setup required.

Usage

Registering a DriverBuilder

Before writing any tests, first you have to register a IDriverBuilder instance globally (this only has to be done once!). For example, if you're wanting to use our Selenium implementation with NUnit you can do:

[SetUpFixture]
public class GlobalSetup
{
    [OneTimeSetUp]
    public class BeforeEverything()
    {
        DriverBuilder.Register<WebDriverBuilder>();
    }
}

Boom. That's it, you can start writing your tests!

Writing a test

StageZero handles all of the underlying logic required to create, navigate, interact with elements, and terminate drivers. All you have to do is write your test, no more managing frameworks! Following on from the example provided above, you can write a test for the web like:

public class Test
{
    private IDriverWeb _driver;

    [SetUp]
    public void BeforeEach()
    {
        _driver = DriverBuilder.Create(new WebDriverOptions());
    }

    [Test]
    public Task NavigateToGoogle()
    {
        await _driver.Navigate().ToUrl("https://google.com");
    }

    [TearDown]
    public Task AfterEach()
    {
        await _driver.Terminate();
    }
}

If you ever want to change to a different underlying driver (e.g. Playwright), all you have to do is swap out the registered builder for your desired UI testing frameworks implementation. All of your existing test logic 110% will work with the updated builder.

Product Compatible and additional computed target framework versions.
.NET net5.0 was computed.  net5.0-windows was computed.  net6.0 was computed.  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.  net9.0 was computed.  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. 
.NET Core netcoreapp3.0 was computed.  netcoreapp3.1 was computed. 
.NET Standard netstandard2.1 is compatible. 
MonoAndroid monoandroid was computed. 
MonoMac monomac was computed. 
MonoTouch monotouch was computed. 
Tizen tizen60 was computed. 
Xamarin.iOS xamarinios was computed. 
Xamarin.Mac xamarinmac was computed. 
Xamarin.TVOS xamarintvos was computed. 
Xamarin.WatchOS xamarinwatchos was computed. 
Compatible target framework(s)
Included target framework(s) (in package)
Learn more about Target Frameworks and .NET Standard.
  • .NETStandard 2.1

    • No dependencies.

NuGet packages (2)

Showing the top 2 NuGet packages that depend on StageZero:

Package Downloads
StageZero.Selenium

The StageZero Selenium implementation.

StageZero.Playwright

The StageZero Playwright implementation.

GitHub repositories

This package is not used by any popular GitHub repositories.

Version Downloads Last Updated
0.5.154 128 8/30/2025
0.5.153 153 8/29/2025
0.5.152 122 8/17/2025
0.5.151 171 7/9/2025
0.5.150 165 7/9/2025
0.5.149 340 6/10/2025
0.5.148 274 5/16/2025
0.5.147 153 5/2/2025
0.5.146 187 5/1/2025
0.5.145 193 4/30/2025
0.5.144 205 4/29/2025
0.5.143 240 4/10/2025
0.5.142 194 3/27/2025
0.5.141 197 3/27/2025
0.5.140 192 3/27/2025
0.5.139 522 3/26/2025
0.5.138 211 3/23/2025
0.5.137 171 3/21/2025
0.5.136 173 3/21/2025
0.5.135 188 3/16/2025
0.5.134 204 3/8/2025
0.5.133 181 2/25/2025
0.5.132 177 2/25/2025
0.5.131 179 2/23/2025
0.5.130 170 2/23/2025
0.5.129 168 2/21/2025
0.5.128 193 2/14/2025
0.5.127 189 2/11/2025
0.5.126 197 2/10/2025
0.5.125 174 1/27/2025
0.5.124 171 1/27/2025
0.5.123 176 1/20/2025
0.5.122 166 1/20/2025
0.5.121 178 1/20/2025
0.5.120 167 1/20/2025
0.5.119 179 1/16/2025
0.5.118 174 1/13/2025
0.5.117 171 1/13/2025
0.5.116 174 1/6/2025
0.5.115 187 1/1/2025
0.5.114 183 12/29/2024
0.5.113 190 12/21/2024
0.5.112 182 12/20/2024
0.5.111 191 12/17/2024
0.5.110 188 12/12/2024
0.5.109 188 12/11/2024
0.5.108 192 12/1/2024
0.5.107 181 12/1/2024
0.5.106 184 11/24/2024
0.5.105 184 11/23/2024
0.5.104 182 11/17/2024
0.5.103 187 11/7/2024
0.5.102 185 11/7/2024
0.5.101 190 11/4/2024
0.5.100 197 10/24/2024
0.5.99 168 10/21/2024
0.5.98 189 10/21/2024
0.5.97 202 10/13/2024
0.5.96 182 10/13/2024
0.5.95 191 10/13/2024
0.5.94 191 10/9/2024
0.5.93 197 10/9/2024
0.5.92 189 10/5/2024
0.5.91 186 9/24/2024
0.5.90 202 9/24/2024
0.5.89 187 9/24/2024
0.5.88 192 9/24/2024
0.5.87 193 9/24/2024
0.5.86 190 9/24/2024
0.5.85 197 9/24/2024
0.5.84 202 9/18/2024
0.5.83 208 9/2/2024
0.5.82 210 9/2/2024
0.5.81 207 8/26/2024
0.5.80 225 8/26/2024
0.5.79 205 8/26/2024
0.5.78 223 8/22/2024
0.5.77 249 8/21/2024
0.5.76 225 8/19/2024
0.5.75 232 8/15/2024
0.5.74 224 8/12/2024
0.5.73 141 8/5/2024
0.5.72 152 8/3/2024
0.5.71 157 8/2/2024
0.5.70 175 7/23/2024
0.5.69 175 7/23/2024
0.5.68 203 7/16/2024
0.5.67 203 7/16/2024
0.5.66 231 7/8/2024
0.5.65 225 7/8/2024
0.5.64 209 7/2/2024
0.5.63 212 6/25/2024
0.5.62 228 6/24/2024
0.5.61 244 6/18/2024
0.5.60 206 6/11/2024
0.5.59 195 6/11/2024
0.5.58 203 6/3/2024
0.5.57 222 5/27/2024
0.5.56 206 5/27/2024
0.5.55 188 5/20/2024
0.5.54 198 5/20/2024
0.5.53 175 5/20/2024
0.5.52 211 5/16/2024
0.5.51 215 5/11/2024
0.5.50 209 5/10/2024
0.5.49 258 5/6/2024
0.5.48 238 5/6/2024
0.5.47 258 5/4/2024
0.5.46 259 5/4/2024
0.5.45 256 5/3/2024
0.5.44 227 5/3/2024
0.5.43 243 5/3/2024
0.5.42 232 4/27/2024
0.5.41 246 4/20/2024
0.5.40 257 4/20/2024
0.5.39 231 4/6/2024
0.5.38 265 4/5/2024
0.5.37 226 4/5/2024
0.5.36 235 3/29/2024
0.5.35 262 3/28/2024
0.5.34 238 3/28/2024
0.5.33 255 3/24/2024
0.5.32 254 3/23/2024
0.5.31 236 3/23/2024
0.5.30 247 3/23/2024
0.5.29 255 3/23/2024
0.5.28 249 3/17/2024
0.5.27 228 3/8/2024
0.5.26 232 3/4/2024
0.5.25 262 3/3/2024
0.5.24 232 2/26/2024
0.5.23 232 2/26/2024
0.5.22 235 2/23/2024
0.5.21 224 2/23/2024
0.5.20 236 2/17/2024
0.5.19 235 2/8/2024
0.5.18 201 1/27/2024
0.5.17 211 1/27/2024
0.5.16 225 1/27/2024
0.5.15 202 1/27/2024
0.5.14 309 1/1/2024
0.5.13 280 12/9/2023
0.5.12 277 12/9/2023
0.5.11 290 12/1/2023
0.5.10 245 12/1/2023
0.5.9 283 11/17/2023
0.5.8 232 11/15/2023
0.5.7 232 11/10/2023
0.5.6 253 11/10/2023
0.5.5 243 11/10/2023
0.5.4 228 11/3/2023
0.5.0 245 10/29/2023
0.4.0 253 10/28/2023
0.3.10 228 10/23/2023
0.3.9 228 10/20/2023
0.3.8 213 10/16/2023
0.3.7 236 10/16/2023
0.3.6 261 10/15/2023
0.3.5 225 10/15/2023
0.3.4 243 10/14/2023
0.3.3 243 10/14/2023
0.3.2 233 10/10/2023
0.3.1 226 10/8/2023
0.3.0 237 10/8/2023
0.2.0 245 10/6/2023
0.1.27 250 10/4/2023
0.1.26 249 10/4/2023
0.1.25 225 10/4/2023
0.1.24 209 9/29/2023
0.1.23 240 9/28/2023
0.1.22 225 9/28/2023
0.1.21 230 9/28/2023
0.1.20 225 9/28/2023
0.1.19 227 9/28/2023
0.1.18 205 9/28/2023
0.1.17 254 9/28/2023
0.1.16 255 9/28/2023
0.1.15 244 9/28/2023
0.1.14 236 9/28/2023
0.1.13 239 9/28/2023
0.1.12 229 9/28/2023
0.1.11 230 9/28/2023
0.1.10 232 9/28/2023
0.1.9 234 9/28/2023
0.1.8 239 9/28/2023
0.1.7 236 9/28/2023
0.1.6 224 9/28/2023
0.1.5 233 9/28/2023
0.1.4 229 9/28/2023
0.1.3 228 9/28/2023
0.1.2 232 9/28/2023
0.1.1 234 9/28/2023
0.1.0 248 9/28/2023