-
Notifications
You must be signed in to change notification settings - Fork 103
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
- Loading branch information
Showing
28 changed files
with
358 additions
and
177 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
|
@@ -65,6 +65,8 @@ This setting does **NOT** install the app. You must manually or via automation i | |
`com.google.chrome.ios` | ||
`com.apps.app1` | ||
`com.ios.app2` | ||
|
||
*Multiple entries must be comma-separated.* | ||
::: | ||
|
||
## System App Allow List (iOS) | ||
|
@@ -75,8 +77,10 @@ Certain iOS preinstalled apps are hidden by default, e.g. Messages, Mail, Notes. | |
For a list of native iPhone and iPad apps and their corresponding bundle IDs, please follow the reference link below. | ||
https://support.apple.com/en-gb/guide/deployment/depece748c41/web | ||
|
||
`com.apple.MobileSMS` | ||
`com.apple.mobilenotes` | ||
`com.apple.MobileSMS` | ||
`com.apple.mobilenotes` | ||
|
||
*Multiple entries must be comma-separated.* | ||
::: | ||
|
||
## Account Allow List | ||
|
@@ -89,6 +93,8 @@ Update this setting for each account email to preserve store and payment account | |
:::important | ||
`[email protected]` | ||
`[email protected]` | ||
|
||
*Multiple entries must be comma-separated.* | ||
::: | ||
|
||
## Retain folders/filepath (Android) | ||
|
@@ -114,6 +120,8 @@ Invalid path: `/data/local/tmp/` | |
:::important | ||
`/data/com.wavelink.velocity/files` | ||
`/com.my.app/data/temp/folder` | ||
|
||
*Multiple entries must be comma-separated.* | ||
::: | ||
|
||
## Enable Apple Pay | ||
|
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,7 @@ | ||
You can clip to a specific element on the page by using the `clipSelector` option when calling Sauce visual. | ||
|
||
Notes: | ||
|
||
- Clipping is done by taking a screenshot of the page then clipping it to the location of the requested element. | ||
- We will attempt to scroll the element into view before taking the snapshot. | ||
- We can only take a screenshot of what is visible in the current viewport, however, this can be combined with full page option to enable clipping large vertical elements. |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,12 @@ | ||
import ClippingDescription from './_clipping-description.md' | ||
|
||
<ClippingDescription /> | ||
|
||
Example: | ||
|
||
```ts | ||
await browser.sauceVisualCheck('Visible Sale Banner', { | ||
// A document.querySelector compatible selector that we should crop the screenshot to | ||
clipSelector: '.your-css-selector', | ||
}) | ||
``` |
Oops, something went wrong.