StageZero.Selenium 0.5.42

dotnet add package StageZero.Selenium --version 0.5.42
NuGet\Install-Package StageZero.Selenium -Version 0.5.42
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.Selenium" Version="0.5.42" />
For projects that support PackageReference, copy this XML node into the project file to reference the package.
paket add StageZero.Selenium --version 0.5.42
#r "nuget: StageZero.Selenium, 0.5.42"
#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.
// Install StageZero.Selenium as a Cake Addin
#addin nuget:?package=StageZero.Selenium&version=0.5.42

// Install StageZero.Selenium as a Cake Tool
#tool nuget:?package=StageZero.Selenium&version=0.5.42

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. 
.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.

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
0.5.42 57 4/27/2024
0.5.41 82 4/20/2024
0.5.40 75 4/20/2024
0.5.39 99 4/6/2024
0.5.38 78 4/5/2024
0.5.37 72 4/5/2024
0.5.36 77 3/29/2024
0.5.35 81 3/28/2024
0.5.34 82 3/28/2024
0.5.33 85 3/24/2024
0.5.32 89 3/23/2024
0.5.31 72 3/23/2024
0.5.30 80 3/23/2024
0.5.29 86 3/23/2024
0.5.28 87 3/17/2024
0.5.27 86 3/8/2024
0.5.26 69 3/4/2024
0.5.25 90 3/3/2024
0.5.24 84 2/26/2024
0.5.23 77 2/26/2024
0.5.22 93 2/23/2024
0.5.21 90 2/23/2024
0.5.20 78 2/17/2024
0.5.19 104 2/8/2024
0.5.18 77 1/27/2024
0.5.17 72 1/27/2024
0.5.16 71 1/27/2024
0.5.15 73 1/27/2024
0.5.14 121 1/1/2024
0.5.13 115 12/9/2023
0.5.12 106 12/9/2023
0.5.11 114 12/1/2023
0.5.10 90 12/1/2023
0.5.9 119 11/17/2023
0.5.8 88 11/15/2023
0.5.7 80 11/10/2023
0.5.6 89 11/10/2023
0.5.5 78 11/10/2023
0.5.4 94 11/3/2023
0.5.0 152 10/29/2023
0.4.0 124 10/28/2023
0.3.10 119 10/23/2023
0.3.9 122 10/20/2023
0.3.8 122 10/16/2023
0.3.7 133 10/16/2023
0.3.6 147 10/15/2023
0.3.5 130 10/15/2023
0.3.4 124 10/14/2023
0.3.3 138 10/14/2023
0.3.2 126 10/10/2023
0.3.1 134 10/8/2023
0.3.0 148 10/8/2023
0.2.0 135 10/6/2023
0.1.27 132 10/4/2023
0.1.26 137 10/4/2023
0.1.25 135 10/4/2023
0.1.24 144 9/29/2023
0.1.23 128 9/28/2023
0.1.22 119 9/28/2023
0.1.21 124 9/28/2023
0.1.20 123 9/28/2023
0.1.19 118 9/28/2023
0.1.18 104 9/28/2023
0.1.17 108 9/28/2023
0.1.16 113 9/28/2023
0.1.15 109 9/28/2023
0.1.14 108 9/28/2023
0.1.13 108 9/28/2023
0.1.12 110 9/28/2023
0.1.11 109 9/28/2023
0.1.10 108 9/28/2023
0.1.9 91 9/28/2023
0.1.8 112 9/28/2023
0.1.7 114 9/28/2023
0.1.6 105 9/28/2023
0.1.5 107 9/28/2023
0.1.4 105 9/28/2023
0.1.3 113 9/28/2023
0.1.2 114 9/28/2023
0.1.1 111 9/28/2023
0.1.0 109 9/28/2023