PercyIO.Selenium
2.0.0-beta.0
See the version list below for details.
dotnet add package PercyIO.Selenium --version 2.0.0-beta.0
NuGet\Install-Package PercyIO.Selenium -Version 2.0.0-beta.0
<PackageReference Include="PercyIO.Selenium" Version="2.0.0-beta.0" />
<PackageVersion Include="PercyIO.Selenium" Version="2.0.0-beta.0" />
<PackageReference Include="PercyIO.Selenium" />
paket add PercyIO.Selenium --version 2.0.0-beta.0
#r "nuget: PercyIO.Selenium, 2.0.0-beta.0"
#:package PercyIO.Selenium@2.0.0-beta.0
#addin nuget:?package=PercyIO.Selenium&version=2.0.0-beta.0&prerelease
#tool nuget:?package=PercyIO.Selenium&version=2.0.0-beta.0&prerelease
percy-selenium-dotnet
Percy visual testing for .NET Selenium.
Development
Install/update @percy/cli dev dependency (requires Node 14+):
$ npm install --save-dev @percy/cli
Install dotnet SDK:
$ brew tap isen-ng/dotnet-sdk-versions
$ brew install --cask dotnet-sdk5-0-400
$ dotnet --list-sdks
Install Mono:
$ brew install mono
$ mono --version
Run tests:
npm run test
Installation
npm install @percy/cli (requires Node 14+):
$ npm install --save-dev @percy/cli
Install the PercyIO.Selenium package (for example, with .NET CLI):
$ dotnet add package PercyIO.Selenium
Usage
This is an example test using the Percy.Snapshot method.
using PercyIO.Selenium;
// ... other test code
FirefoxOptions options = new FirefoxOptions();
FirefoxDriver driver = new FirefoxDriver(options);
driver.Navigate().GoToUrl("http://example.com");
// take a snapshot
Percy.Snapshot(driver, ".NET example");
// snapshot options using an anonymous object
Percy.Snapshot(driver, ".NET anonymous options", new {
widths = new [] { 600, 1200 }
});
// snapshot options using a dictionary-like object
Percy.Options snapshotOptions = new Percy.Options();
snapshotOptions.Add("minHeight", 1280);
Percy.Snapshot(driver, ".NET typed options", snapshotOptions);
Running the above normally will result in the following log:
[percy] Percy is not running, disabling snapshots
When running with percy exec, and your project's
PERCY_TOKEN, a new Percy build will be created and snapshots will be uploaded to your project.
$ export PERCY_TOKEN=[your-project-token]
$ percy exec -- [your test command]
[percy] Percy has started!
[percy] Created build #1: https://percy.io/[your-project]
[percy] Snapshot taken ".NET example"
[percy] Snapshot taken ".NET anonymous options"
[percy] Snapshot taken ".NET typed options"
[percy] Stopping percy...
[percy] Finalized build #1: https://percy.io/[your-project]
[percy] Done!
Configuration
void Percy.Snapshot(WebDriver driver, string name, object? options)
driver(required) - A selenium-webdriver driver instancename(required) - The snapshot name; must be unique to each snapshotoptions- An object containing various snapshot options (see per-snapshot configuration options)
| Product | Versions 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 | netcoreapp2.0 was computed. netcoreapp2.1 was computed. netcoreapp2.2 was computed. netcoreapp3.0 was computed. netcoreapp3.1 was computed. |
| .NET Standard | netstandard2.0 is compatible. netstandard2.1 was computed. |
| .NET Framework | net461 was computed. net462 was computed. net463 was computed. net47 was computed. net471 was computed. net472 was computed. net48 was computed. net481 was computed. |
| MonoAndroid | monoandroid was computed. |
| MonoMac | monomac was computed. |
| MonoTouch | monotouch was computed. |
| Tizen | tizen40 was computed. tizen60 was computed. |
| Xamarin.iOS | xamarinios was computed. |
| Xamarin.Mac | xamarinmac was computed. |
| Xamarin.TVOS | xamarintvos was computed. |
| Xamarin.WatchOS | xamarinwatchos was computed. |
-
.NETStandard 2.0
- Microsoft.CSharp (>= 4.7.0)
- Selenium.WebDriver (>= 4.5.1)
- System.Text.Json (>= 7.0.0)
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 |
|---|---|---|
| 2.1.3 | 10,299 | 4/25/2025 |
| 2.1.3-beta.0 | 150 | 4/18/2025 |
| 2.1.2 | 6,715 | 3/7/2025 |
| 2.1.2-beta.0 | 223 | 3/4/2025 |
| 2.1.1 | 370 | 2/19/2025 |
| 2.1.1-beta.1 | 94 | 2/17/2025 |
| 2.1.0 | 17,746 | 10/7/2024 |
| 2.1.0-beta.0 | 86 | 10/7/2024 |
| 2.0.6-beta.0 | 83 | 10/3/2024 |
| 2.0.5 | 252 | 10/3/2024 |
| 2.0.4 | 14,502 | 8/29/2024 |
| 2.0.3 | 15,728 | 3/1/2024 |
| 2.0.3-beta.0 | 108 | 2/21/2024 |
| 2.0.2 | 3,076 | 2/6/2024 |
| 2.0.2-beta.0 | 89 | 2/1/2024 |
| 2.0.1 | 4,273 | 10/26/2023 |
| 2.0.1-beta.0 | 117 | 9/27/2023 |
| 2.0.0 | 15,743 | 9/13/2023 |
| 2.0.0-beta.0 | 185 | 7/14/2023 |
| 2.0.0-alpha.0 | 150 | 7/4/2023 |
| 1.1.0 | 188,153 | 11/24/2022 |
| 1.0.0 | 12,323 | 7/15/2022 |
| 1.0.0-beta.4 | 249 | 7/14/2022 |