PercyIO.Appium
3.0.7
See the version list below for details.
dotnet add package PercyIO.Appium --version 3.0.7
NuGet\Install-Package PercyIO.Appium -Version 3.0.7
<PackageReference Include="PercyIO.Appium" Version="3.0.7" />
paket add PercyIO.Appium --version 3.0.7
#r "nuget: PercyIO.Appium, 3.0.7"
// Install PercyIO.Appium as a Cake Addin #addin nuget:?package=PercyIO.Appium&version=3.0.7 // Install PercyIO.Appium as a Cake Tool #tool nuget:?package=PercyIO.Appium&version=3.0.7
percy-appium-dotnet
Percy visual testing for .NET Selenium.
NuGet
Dependencies:
- Newtonsoft.Json Version >= 13.0.1
- Castle.Core Version >= 4.3.1
- Microsoft.CSharp Version >= 4.7.0
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:
ScreenshotOptions options = new ScreenshotOptions();
// Set options here
percy.screenshot(name, fullScreen, options)
name
(required) - The screenshot name; must be unique to each screenshot- Additional screenshot options (overrides any project options):
fullScreen
- (optional) It indicates if the app is a full screenoptions
- (optional) configure screenshot using below options:
Screenshot Options | Type | Description |
---|---|---|
DeviceName | String | Device name on which screenshot is taken |
StatusBarHeight | Int | Height of status bar for the device |
NavBarHeight | Int | Height of navigation bar for the device |
Orientation | ["portrait"/"landscape"] | Orientation of the application |
FullPage | Boolean | [Alpha] Only supported on App Automate driver sessions [ needs @percy/cli 1.20.2+ ] |
ScreenLengths | Int | [Alpha] Max screen lengths for fullPage [ needs @percy/cli 1.20.2+ ] |
TopScrollviewOffset | Int | [Alpha] Offset from top of scrollview [ needs @percy/cli 1.20.2+ ] |
BottomScrollviewOffset | Int | [Alpha] Offset from bottom of scrollview [ needs @percy/cli 1.20.2+ ] |
FullScreen | Boolean | Indicate whether app is full screen; boolean |
ScrollableXpath | String | [Alpha] Scrollable element xpath for fullpage [ needs @percy/cli 1.20.2+ ] |
ScrollableId | String | [Alpha] Scrollable element accessibility id for fullpage [ needs @percy/cli 1.20.2+ ] |
Sync | Boolean | Waits for screenshot to be processed and gives the processed result of screenshot [From CLI v1.28.0-beta.0+] |
IgnoreRegionXpaths | list of string | Elements xpaths that user want to ignore in visual diff [ needs @percy/cli 1.23.0+ ] |
IgnoreRegionAccessibilityIds | list of string | Elements accessibility_ids that user want to ignore in visual diff [ needs @percy/cli 1.23.0+ ] |
IgnoreRegionAppiumElements | list of appium element object | Appium elements that user want to ignore in visual diff [ needs @percy/cli 1.23.0+ ] |
CustomIgnoreRegions | list of ignore_region object | Custom locations that user want to ignore in visual diff [ needs @percy/cli 1.23.0+ ] <br /> - Description: IgnoreRegion class represents a rectangular area on a screen that needs to be ignored for visual diff. <br /> var ignoreRegion = new IgnoreRegion(); <br />ignoreRegion.setTop() = top; <br />ignoreRegion.setBottom = bottom; <br />ignoreRegion.setLeft = left; <br />ignoreRegion.setRight = right; |
Running with Hybrid Apps
For a hybrid app, we need to switch to native context before taking screenshot.
- Add a helper method similar to following for say flutter based hybrid app:
public void PercyScreenshotFlutter(AppPercy appPercy, AndroidDriver<AndroidElement> driver, String name, ScreenshotOptions options) {
// switch to native context
driver.Context = "NATIVE_APP";
appPercy.Screenshot(name, options);
// switch back to flutter context
driver.Context = "FLUTTER";
}
- Call PercyScreenshotFlutter helper function when you want to take screenshot.
PercyScreenshotFlutter(appPercy, driver, name, options);
Note:
For other hybrid apps the
driver.Context = "FLUTTER";
would change to context that it uses like say WEBVIEW etc.
Migrating Config
If you have a previous Percy configuration file, migrate it to the newest version with the
config:migrate
command:
$ percy config:migrate
Running Percy on Automate
percyScreenshot(driver, name, options)
[ needs @percy/cli 1.27.0-beta.0+ ];
This is an example test using the Percy.Screenshot
method.
// ... other test code
// import
using PercyIO.Appium;
class Program
{
static void Main(string[] args)
{
// Add caps here
RemoteWebDriver driver = new RemoteWebDriver(
new Uri("https://hub-cloud.browserstack.com/wd/hub"),capabilities);
// take a snapshot
PercyOnAutomate Percy = new PercyOnAutomate(driver);
// navigate to webpage
driver.Navigate().GoToUrl("https://www.percy.io");
Percy.Screenshot("dotnet screenshot-1");
// quit driver
driver.quit();
}
}
driver
(required) - A appium driver instancename
(required) - The screenshot name; must be unique to each screenshotoptions
(optional) - There are various options supported by percy_screenshot to server further functionality.sync
- Boolean value by default it falls back tofalse
, Gives the processed result around screenshot [From CLI v1.28.0-beta.0+].freezeAnimatedImage
- Boolean value by default it falls back tofalse
, you can passtrue
and percy will freeze image based animations.freezeImageBySelectors
- List of selectors. Images will be freezed which are passed using selectors. For this to workfreezeAnimatedImage
must be set to true.freezeImageByXpaths
- List of xpaths. Images will be freezed which are passed using xpaths. For this to workfreezeAnimatedImage
must be set to true.percyCSS
- Custom CSS to be added to DOM before the screenshot being taken. Note: This gets removed once the screenshot is taken.ignoreRegionXpaths
- List of xpaths. elements in the DOM can be ignored using xpathignoreRegionSelectors
- List of selectors. elements in the DOM can be ignored using selectors.ignoreRegionAppiumElements
- List of appium web-element. elements can be ignored using appium_elements.customIgnoreRegions
- List of custom objects. elements can be ignored using custom boundaries. Just passing a simple object for it like below.- Refer to example -
-
List<object> ignoreCustomElement = new List<object>(); var region1 = new Dictionary<string, int>(); region1.Add("top", 10); region1.Add("bottom", 120); region1.Add("right", 10); region1.Add("left", 10); ignoreCustomElement.Add(region1); region1.Add("custom_ignore_regions", ignoreCustomElement);
-
- Refer to example -
considerRegionXpaths
- List of xpaths. elements in the DOM can be considered for diffing and will be ignored by Intelli Ignore using xpaths.considerRegionSelectors
- List of selectors. elements in the DOM can be considered for diffing and will be ignored by Intelli Ignore using selectors.considerRegionAppiumElements
- List of appium web-element. elements can be considered for diffing and will be ignored by Intelli Ignore using appium_elements.customConsiderRegions
- List of custom objects. elements can be considered for diffing and will be ignored by Intelli Ignore using custom boundaries- Refer to example -
-
List<object> considerCustomElement = new List<object>(); var region2 = new Dictionary<string, int>(); region2.Add("top", 10); region2.Add("bottom", 120); region2.Add("right", 10); region2.Add("left", 10); considerCustomElement.Add(region2); region2.Add("custom_consider_regions", considerCustomElement);
- Parameters:
top
(int): Top coordinate of the consider region.bottom
(int): Bottom coordinate of the consider region.left
(int): Left coordinate of the consider region.right
(int): Right coordinate of the consider region.
-
- Refer to example -
Creating Percy on automate build
Note: Automate Percy Token starts with auto
keyword. The command can be triggered using exec
keyword.
$ export PERCY_TOKEN=[your-project-token]
$ percy exec -- [python test command]
[percy] Percy has started!
[percy] [Python example] : Starting automate screenshot ...
[percy] Screenshot taken "Python example"
[percy] Stopping percy...
[percy] Finalized build #1: https://percy.io/[your-project]
[percy] Done!
Refer to docs here: Percy on Automate
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. |
.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
- Castle.Core (>= 5.0.0)
- Microsoft.CSharp (>= 4.7.0)
- Newtonsoft.Json (>= 13.0.1)
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.8 | 295 | 10/28/2024 |
3.0.7 | 2,132 | 4/30/2024 |
3.0.6 | 302 | 4/16/2024 |
3.0.5 | 278 | 3/28/2024 |
3.0.4 | 492 | 2/19/2024 |
3.0.3 | 263 | 2/6/2024 |
3.0.3-beta.0 | 63 | 2/1/2024 |
3.0.2 | 35,803 | 10/27/2023 |
3.0.1 | 470 | 9/11/2023 |
3.0.1-beta.2 | 93 | 8/10/2023 |
3.0.1-beta.1 | 86 | 7/26/2023 |
3.0.1-beta.0 | 86 | 7/19/2023 |
3.0.1-alpha.1 | 81 | 10/26/2023 |
3.0.0 | 165 | 9/6/2023 |
3.0.0-beta.0 | 75 | 7/14/2023 |
2.1.4 | 45,450 | 7/6/2023 |
2.1.3 | 496 | 6/22/2023 |
2.1.2 | 221 | 6/13/2023 |
2.1.1 | 219 | 6/8/2023 |
2.1.0 | 1,010 | 6/8/2023 |
2.0.1 | 206 | 5/29/2023 |
2.0.0 | 205 | 5/19/2023 |
1.2.3 | 1,011 | 4/21/2023 |
1.2.2 | 306 | 4/18/2023 |
1.2.1 | 222 | 4/12/2023 |