PercyIO.Appium 2.1.0

There is a newer version of this package available.
See the version list below for details.
dotnet add package PercyIO.Appium --version 2.1.0
NuGet\Install-Package PercyIO.Appium -Version 2.1.0
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="PercyIO.Appium" Version="2.1.0" />
For projects that support PackageReference, copy this XML node into the project file to reference the package.
paket add PercyIO.Appium --version 2.1.0
#r "nuget: PercyIO.Appium, 2.1.0"
#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 PercyIO.Appium as a Cake Addin
#addin nuget:?package=PercyIO.Appium&version=2.1.0

// Install PercyIO.Appium as a Cake Tool
#tool nuget:?package=PercyIO.Appium&version=2.1.0

percy-appium-dotnet

Test

Percy visual testing for .NET Selenium.

NuGet

NuGet Package:

Dependencies:

Note: This package is tested against .netstandard 2.0 should be compatible with and standard that is superset of this.

Installation

npm install @percy/cli (requires Node 14+):

$ npm install --save-dev @percy/cli

Install the PercyIO.Appium package (for example, with .NET CLI):

$ dotnet add package PercyIO.Appium

Usage

This is an example test using the Percy.Snapshot method.

// ... other test code
// import
using PercyIO.Appium;
class Program
{
  private static AppPercy percy;
  static void Main(string[] args)
  {
    AppiumOptions capabilities = new AppiumOptions();
    // Add caps here
    AndroidDriver<AndroidElement> driver = new AndroidDriver<AndroidElement>(
          new Uri("http://hub-cloud.browserstack.com/wd/hub"), capabilities);
​
    // take a snapshot
    appPercy = new AppPercy(driver);
    appPercy.Screenshot("dotnet snaphot-1", null);

    // quit driver
    driver.quit();
  }
}

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 app:exec -- [your dotnet test command]
[percy] Percy has started!
[percy] Created build #1: https://percy.io/[your-project]
[percy] Screenshot taken "dotnet snaphot-1"
[percy] Stopping percy...
[percy] Finalized build #1: https://percy.io/[your-project]
[percy] Done!

Configuration

The screenshot method arguments:

percy.screenshot(name, fullScreen)

  • name (required) - The screenshot name; must be unique to each screenshot
  • Additional screenshot options (overrides any project options):
    • fullScreen - It indicates if the app is a full screen
    • options - Optional screenshot params: Use ScreenshotOptions to set following params to override
      • DeviceName - Device name on which screenshot is taken
      • StatusBarHeight - Height of status bar for the device
      • NavBarHeight - Height of navigation bar for the device
      • Orientation - Orientation of the application
      • FullPage: true/false. [Experimental] only supported on App Automate driver sessions [ needs @percy/cli 1.20.2+ ]
      • ScreenLengths: int [Experimental] max screen lengths for fullPage [ needs @percy/cli 1.20.2+ ]
      • ScrollableXpath (optional) - [Experimental] scrollable element xpath for fullpage [ needs @percy/cli 1.20.2+ ]; string
      • ScrollableId (optional) - [Experimental] scrollable element accessibility id for fullpage [ needs @percy/cli 1.20.2+ ]; string
      • IgnoreRegionXpaths (optional) - elements xpaths that user want to ignore in visual diff [ needs @percy/cli 1.23.0+ ]; list of string
      • IgnoreRegionAccessibilityIds (optional) - elements accessibility_ids that user want to ignore in visual diff [ needs @percy/cli 1.23.0+ ]; list of string
      • IgnoreRegionAppiumElements (optional) - appium elements that user want to ignore in visual diff [ needs @percy/cli 1.23.0+ ]; list of appium element object
      • CustomIgnoreRegions (optional) - custom locations that user want to ignore in visual diff [ needs @percy/cli 1.23.0+ ]; list of ignore_region object
      • IgnoreRegion:-
        • Description: This class represents a rectangular area on a screen that needs to be ignored for visual diff.

        • constructor:-

          var ignoreRegion = new IgnoreRegion();
          ignoreRegion.Top = top;
          ignoreRegion.Bottom = bottom;
          ignoreRegion.Left = left;
          ignoreRegion.Right = right;
          
        • Parameters:

          Top (int): Top coordinate of the ignore region.

          Bottom (int): Bottom coordinate of the ignore region.

          Left (int): Left coordinate of the ignore region.

          Right (int): Right coordinate of the ignore region.

        • Raises:ArgumentException: If top, bottom, left, or right is less than 0 or top is greater than or equal to bottom or left is greater than or equal to right.

        • valid: Ignore region should be within the boundaries of the screen.

Migrating Config

If you have a previous Percy configuration file, migrate it to the newest version with the config:migrate command:

$ percy config:migrate
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 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. 
Compatible target framework(s)
Included target framework(s) (in package)
Learn more about Target Frameworks and .NET Standard.

NuGet packages (1)

Showing the top 1 NuGet packages that depend on PercyIO.Appium:

Package Downloads
BrowserStack.TestAdapter

VS TestAdapter for integrating selenium tests with BrowserStack

GitHub repositories

This package is not used by any popular GitHub repositories.

Version Downloads Last updated
3.0.7 155 4/30/2024
3.0.6 259 4/16/2024
3.0.5 250 3/28/2024
3.0.4 459 2/19/2024
3.0.3 229 2/6/2024
3.0.3-beta.0 49 2/1/2024
3.0.2 7,266 10/27/2023
3.0.1 443 9/11/2023
3.0.1-beta.2 75 8/10/2023
3.0.1-beta.1 75 7/26/2023
3.0.1-beta.0 77 7/19/2023
3.0.1-alpha.1 61 10/26/2023
3.0.0 122 9/6/2023
3.0.0-beta.0 56 7/14/2023
2.1.4 29,991 7/6/2023
2.1.3 435 6/22/2023
2.1.2 191 6/13/2023
2.1.1 186 6/8/2023
2.1.0 323 6/8/2023
2.0.1 179 5/29/2023
2.0.0 176 5/19/2023
1.2.3 745 4/21/2023
1.2.2 279 4/18/2023
1.2.1 194 4/12/2023