Skip to content

Commit 3a2d733

Browse files
authoredFeb 1, 2024··
🔖 release-v3.0.3-beta.0 (#155)
1 parent 70e3b5d commit 3a2d733

File tree

3 files changed

+4
-2
lines changed

3 files changed

+4
-2
lines changed
 

‎Percy/Env.cs

+1-1
Original file line numberDiff line numberDiff line change
@@ -42,7 +42,7 @@ internal static void SetSessionType(String type)
4242

4343
internal static String GetClientInfo()
4444
{
45-
return "percy-appium-dotnet/3.0.2";
45+
return "percy-appium-dotnet/3.0.3-beta.0";
4646
}
4747

4848
internal static Boolean ForceFullPage()

‎Percy/Percy.csproj

+1-1
Original file line numberDiff line numberDiff line change
@@ -9,7 +9,7 @@
99
<PackageId>PercyIO.Appium</PackageId>
1010
<Description>An App Percy SDK for Appium WebDriver API .NET Bindings</Description>
1111
<PackageTags>appium;percy;visual;testing</PackageTags>
12-
<Version>3.0.2</Version>
12+
<Version>3.0.3-beta.0</Version>
1313
<Company>Perceptual Inc</Company>
1414
<Copyright>Copyright Perceptual Inc</Copyright>
1515
<Authors>percy-admin</Authors>

‎README.md

+2
Original file line numberDiff line numberDiff line change
@@ -106,6 +106,7 @@ The screenshot method arguments:
106106
| FullScreen | Boolean | Indicate whether app is full screen; boolean |
107107
| ScrollableXpath | String | [Alpha] Scrollable element xpath for fullpage [ needs @percy/cli 1.20.2+ ] |
108108
| ScrollableId | String | [Alpha] Scrollable element accessibility id for fullpage [ needs @percy/cli 1.20.2+ ] |
109+
| Sync | Boolean | Waits for screenshot to be processed and gives the processed result of screenshot [From CLI v1.28.0-beta.0+] |
109110
| IgnoreRegionXpaths | list of string | Elements xpaths that user want to ignore in visual diff [ needs @percy/cli 1.23.0+ ] |
110111
| IgnoreRegionAccessibilityIds | list of string | Elements accessibility_ids that user want to ignore in visual diff [ needs @percy/cli 1.23.0+ ] |
111112
| IgnoreRegionAppiumElements | list of appium element object | Appium elements that user want to ignore in visual diff [ needs @percy/cli 1.23.0+ ] |
@@ -180,6 +181,7 @@ class Program
180181
- `driver` (**required**) - A appium driver instance
181182
- `name` (**required**) - The screenshot name; must be unique to each screenshot
182183
- `options` (**optional**) - There are various options supported by percy_screenshot to server further functionality.
184+
- `sync` - Boolean value by default it falls back to `false`, Gives the processed result around screenshot [From CLI v1.28.0-beta.0+].
183185
- `freezeAnimatedImage` - Boolean value by default it falls back to `false`, you can pass `true` and percy will freeze image based animations.
184186
- `freezeImageBySelectors` - List of selectors. Images will be freezed which are passed using selectors. For this to work `freezeAnimatedImage` must be set to true.
185187
- `freezeImageByXpaths` - List of xpaths. Images will be freezed which are passed using xpaths. For this to work `freezeAnimatedImage` must be set to true.

0 commit comments

Comments
 (0)
Please sign in to comment.