Motus.Testing.xUnit 1.0.6

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

Motus.Testing.xUnit

xUnit integration for the Motus browser automation framework.

Overview

Provides collection and class fixtures for xUnit's parallel execution model. SharedBrowserFixture manages a single browser per test collection, and BrowserContextFixture creates an isolated context and page per test class. Tests in the same collection share the browser but run in separate contexts.

Installation

dotnet add package Motus.Testing.xUnit

Quick Start

using Motus.Testing.xUnit;

[Collection(nameof(MotusCollection))]
public class SearchTests : IClassFixture<BrowserContextFixture>
{
    private readonly BrowserContextFixture _fixture;

    public SearchTests(BrowserContextFixture fixture) => _fixture = fixture;

    [Fact]
    public async Task SearchBox_AcceptsInput()
    {
        await _fixture.Page.GotoAsync("https://example.com");
        await _fixture.Page.Locator("[name=q]").FillAsync("motus");

        var value = await _fixture.Page.Locator("[name=q]").InputValueAsync();
        Assert.Equal("motus", value);
    }
}

Customization

Override LaunchOptions on SharedBrowserFixture to configure the browser:

public class HeadedBrowserFixture : SharedBrowserFixture
{
    protected override LaunchOptions LaunchOptions => new() { Headless = false };
}

Failure Tracing

Automatic failure tracing is not supported at the class-fixture level because xUnit does not expose per-test outcome in DisposeAsync. Use manual Tracing.StartAsync / StopAsync for trace capture.

Product Compatible and additional computed target framework versions.
.NET net8.0 is compatible.  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 is compatible.  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. 
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
1.0.7 60 4/5/2026
1.0.6 78 3/30/2026
1.0.5 83 3/30/2026
1.0.4 79 3/30/2026
1.0.3 85 3/30/2026
1.0.2 81 3/29/2026
1.0.1 84 3/29/2026