Vedro + playwright
Project description
Vedro Playwright Plugin
(forked from vedro-pyppeteer)
Installation
1. Install package
$ pip3 install vedro-playwright
$ playwright install
2. Enable plugin
# ./vedro.cfg.py
import vedro
import vedro_playwright as playwright
class Config(vedro.Config):
class Plugins(vedro.Config.Plugins):
class Playwright(playwright.Playwright):
enabled = True
Usage
# ./scenarios/reset_password.py
import vedro
from vedro_playwright import BrowserEngine as Browser
from vedro_playwright import opened_firefox_page, opened_chromium_page, opened_webkit_page
class Scenario(vedro.Scenario):
subject = "reset password (via {browser})"
@vedro.params(Browser.CHROMIUM, opened_chromium_page)
@vedro.params(Browser.FIREFOX, opened_firefox_page)
@vedro.params(Browser.WEBKIT, opened_webkit_page)
def __init__(self, browser, opened_page):
self.opened_page = opened_page
async def given_opened_app(self):
self.page = await self.opened_page()
await self.page.goto("http://localhost:8080/reset")
async def given_filled_email(self):
form_email = self.page.locator("#form-email")
await form_email.type("user@email")
async def when_user_submits_form(self):
await self.page.click("#form-submit")
async def then_it_should_redirect_to_root_page(self):
pathname = await self.page.evaluate("window.location.pathname")
assert pathname == "/"
$ vedro run --playwright-screenshots=on_fail
Documentation
Plugin
--playwright-screenshots=<mode>
Mode | Description |
---|---|
every_step | Save screenshots for every step |
only_failed | Save screenshots only for failed steps |
on_fail | Save screenshots for all steps when scenario fails |
--playwright-screenshots-dir
— Set directory for screenshots (default: ./screenshots)
Playwright
Documentation for Playwright available here
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
vedro-playwright-1.2.0.tar.gz
(10.3 kB
view hashes)
Built Distribution
Close
Hashes for vedro_playwright-1.2.0-py3-none-any.whl
Algorithm | Hash digest | |
---|---|---|
SHA256 | f2e650e76fadab171e336fe8cfae0a415a96bd304a9311d1ec8445e64e4784c1 |
|
MD5 | c1df89d7c7af0fbffee1003a706a2701 |
|
BLAKE2b-256 | 87decc26a9fad4ccd61593fa0b5f96939c5107c1dfee6649e153659a12fa209d |