Python client for visual testing with Percy
Project description
Percy playwright python
Percy visual testing for Python Playwright.
Installation
npm install @percy/cli
:
$ npm install --save-dev @percy/cli
pip install Percy playwright package:
$ pip install percy-playwright
Usage
This is an example test using the percy_snapshot
function.
from percy import percy_snapshot
with sync_playwright() as playwright:
browser = playwright.chromium.connect()
page = browser.new_page()
page.goto('http://example.com')
# take a snapshot
percy_snapshot(browser, 'Python example')
Running the test 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 -- [python test command]
[percy] Percy has started!
[percy] Created build #1: https://percy.io/[your-project]
[percy] Snapshot taken "Python example"
[percy] Stopping percy...
[percy] Finalized build #1: https://percy.io/[your-project]
[percy] Done!
Configuration
percy_snapshot(page, name[, **kwargs])
page
(required) - A playwright page instancename
(required) - The snapshot name; must be unique to each snapshot**kwargs
- See per-snapshot configuration options
Percy on Automate
Usage
from playwright.sync_api import sync_playwright
from percy import percy_screenshot, percy_snapshot
desired_cap = {
'browser': 'chrome',
'browser_version': 'latest',
'os': 'osx',
'os_version': 'ventura',
'name': 'Percy Playwright PoA Demo',
'build': 'percy-playwright-python-tutorial',
'browserstack.username': 'username',
'browserstack.accessKey': 'accesskey'
}
with sync_playwright() as playwright:
cdpUrl = 'wss://cdp.browserstack.com/playwright?caps=' + urllib.parse.quote(json.dumps(desired_cap))
browser = playwright.chromium.connect(cdpUrl)
page = browser.new_page()
page.goto("https://percy.io/")
percy_screenshot(page, name = "Screenshot 1")
take a snapshot
percy_screenshot(page, name = 'Screenshot 1')
page
(required) - A Playwright page 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.8]full_page
- Boolean value by default it falls back tofalse
, Takes full page screenshot [From CLI v1.28.8]freeze_animated_image
- Boolean value by default it falls back tofalse
, you can passtrue
and percy will freeze image based animations.freeze_image_by_selectors
-List of selectors. Images will be freezed which are passed using selectors. For this to workfreeze_animated_image
must be set to true.freeze_image_by_xpaths
- List of xpaths. Images will be freezed which are passed using xpaths. For this to workfreeze_animated_image
must be set to true.percy_css
- Custom CSS to be added to DOM before the screenshot being taken. Note: This gets removed once the screenshot is taken.ignore_region_xpaths
- List of xpaths. elements in the DOM can be ignored using xpathignore_region_selectors
- List of selectors. elements in the DOM can be ignored using selectors.custom_ignore_regions
- List of custom objects. elements can be ignored using custom boundaries. Just passing a simple object for it like below.- example:
{"top": 10, "right": 10, "bottom": 120, "left": 10}
- In above example it will draw rectangle of ignore region as per given coordinates.
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.
- example:
consider_region_xpaths
- List of xpaths. elements in the DOM can be considered for diffing and will be ignored by Intelli Ignore using xpaths.consider_region_selectors
- List of selectors. elements in the DOM can be considered for diffing and will be ignored by Intelli Ignore using selectors.custom_consider_regions
- List of custom objects. elements can be considered for diffing and will be ignored by Intelli Ignore using custom boundaries- example:
{"top": 10, "right": 10, "bottom": 120, "left": 10}
- In above example it will draw rectangle of consider region will be drawn.
- 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.
- 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
Project details
Release history Release notifications | RSS feed
Download files
Download the file for your platform. If you're not sure which to choose, learn more about installing packages.
Source Distribution
Built Distribution
File details
Details for the file percy_playwright-1.0.0.tar.gz
.
File metadata
- Download URL: percy_playwright-1.0.0.tar.gz
- Upload date:
- Size: 10.8 kB
- Tags: Source
- Uploaded using Trusted Publishing? No
- Uploaded via: twine/5.1.0 CPython/3.9.19
File hashes
Algorithm | Hash digest | |
---|---|---|
SHA256 | 0237249d9445ad7a1961b7938941678850e47d690f85a4e1dc82fad1164b5e9b |
|
MD5 | ab18e174c88d8375a256235af6c71bc5 |
|
BLAKE2b-256 | 7283674b08607fa2950eff367a524d477936a1821ca49a78a7e66d19ede79360 |
File details
Details for the file percy_playwright-1.0.0-py3-none-any.whl
.
File metadata
- Download URL: percy_playwright-1.0.0-py3-none-any.whl
- Upload date:
- Size: 7.6 kB
- Tags: Python 3
- Uploaded using Trusted Publishing? No
- Uploaded via: twine/5.1.0 CPython/3.9.19
File hashes
Algorithm | Hash digest | |
---|---|---|
SHA256 | 4ac13917e6823bb6bf42a2cf7c5c58ddd214a4bb15cc5bbae2919be8d75c3b88 |
|
MD5 | ed0575322b82a8fef20fd5d91eaf24c9 |
|
BLAKE2b-256 | 74d8f223d082165d962972c8e1904268ed46975648f40c1e7ab161403becc657 |