Skip to content

Commit 674e9bf

Browse files
authored
Release percy-playwright v1.0.0 (#12)
* Release percy-playwright v1.0.0 * Updating ReadMe
1 parent 0c94380 commit 674e9bf

2 files changed

Lines changed: 4 additions & 3 deletions

File tree

README.md

Lines changed: 3 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -90,14 +90,15 @@ with sync_playwright() as playwright:
9090
percy_screenshot(page, name = "Screenshot 1")
9191
```
9292
# take a snapshot
93+
```python
9394
percy_screenshot(page, name = 'Screenshot 1')
9495
```
9596

9697
- `page` (**required**) - A Playwright page instance
9798
- `name` (**required**) - The screenshot name; must be unique to each screenshot
9899
- `options` (**optional**) - There are various options supported by percy_screenshot to server further functionality.
99-
- `sync` - Boolean value by default it falls back to `false`, Gives the processed result around screenshot [From CLI v1.28.9-beta.0+]
100-
- `full_page` - Boolean value by default it falls back to `false`, Takes full page screenshot [From CLI v1.28.9-beta.0+]
100+
- `sync` - Boolean value by default it falls back to `false`, Gives the processed result around screenshot [From CLI v1.28.8]
101+
- `full_page` - Boolean value by default it falls back to `false`, Takes full page screenshot [From CLI v1.28.8]
101102
- `freeze_animated_image` - Boolean value by default it falls back to `false`, you can pass `true` and percy will freeze image based animations.
102103
- `freeze_image_by_selectors` -List of selectors. Images will be freezed which are passed using selectors. For this to work `freeze_animated_image` must be set to true.
103104
- `freeze_image_by_xpaths` - List of xpaths. Images will be freezed which are passed using xpaths. For this to work `freeze_animated_image` must be set to true.

percy/version.py

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1 +1 @@
1-
__version__ = "1.0.0-beta.0"
1+
__version__ = "1.0.0"

0 commit comments

Comments
 (0)