tm-playwright-bdd-ts
v1.1.2
Published
Playwright Cucumber TS framework - The easiest way to learn
Maintainers
Readme
Playwright (TS binding) + Cucumber (BDD)
Cucumber is a popular behavior-driven development (BDD) tool that allows developers and stakeholders to collaborate on defining and testing application requirements in a human-readable format. TypeScript is a powerful superset of JavaScript that adds optional static typing, making it easier to catch errors before runtime. By combining these two tools, we can create more reliable and maintainable tests.
Features
- Awesome report with screenshots, videos & logs
- Execute tests on multiple environments
- Parallel execution
- Rerun only failed features
- Retry failed tests on CI
- Github Actions integrated with downloadable report
- Page object model
Sample report
Project structure
- .github -> yml file to execute the tests in GitHub Actions
- src -> Contains all the features & Typescript code
- test-results -> Contains all the reports related file
Reports
- Mutilple Cucumber Report
- Default Cucumber report
- Logs
- Screenshots of failure
- Test videos of failure
- Trace of failure
Get Started
Setup:
- Clone or download the project
- Extract and open in the VS-Code
npm ito install the dependenciesnpx playwright installto install the browsersnpm run testto execute the tests- To run a particular test change
paths: [
"src/test/features/featurename.feature"
] - Use tags to run a specific or collection of specs
npm run test --TAGS="@test or @add"Folder structure
src\pages-> All the page (UI screen)src\test\features-> write your features heresrc\test\steps-> Your step definitions goes heresrc\hooks\hooks.ts-> Browser setup and teardown logicsrc\hooks\pageFixture.ts-> Simple way to share the page objects to stepssrc\helper\env-> Multiple environments are handledsrc\helper\types-> To get environment code suggestionssrc\helper\report-> To generate the reportconfig/cucumber.js-> One file to do all the magicpackage.json-> Contains all the dependenciessrc\helper\auth-> Storage state (Auth file)src\helper\util-> Read test data from json & logger
Tutorials
- Learn Playwright - Playwright - TS
- BDD in detail - TS binding
