playwright-cucumber-ts-steps 1.1.10 → 1.1.11

This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
Files changed (2) hide show
  1. package/README.md +14 -0
  2. package/package.json +1 -1
package/README.md CHANGED
@@ -13,6 +13,11 @@
13
13
  [![TypeScript](https://img.shields.io/badge/written%20in-TypeScript-blue?style=flat-square&logo=typescript)](https://www.typescriptlang.org/)
14
14
  [![GitHub stars](https://img.shields.io/github/stars/qaPaschalE/playwright-cucumber-ts-steps)](https://github.com/qaPaschalE/playwright-cucumber-ts-steps/stargazers)
15
15
 
16
+ > A collection of reusable Playwright step definitions for Cucumber in TypeScript, designed to streamline end-to-end testing across web, API, and mobile applications.
17
+
18
+ > **Note:** This package is designed for advanced Cucumber+Playwright+TypeScript setups. For basic Playwright usage, see the [official Playwright docs](https://playwright.dev/).
19
+
20
+
16
21
  **The "Low-Code" BDD Framework for Playwright.**
17
22
 
18
23
  Write powerful end-to-end tests in plain English using Gherkin syntax, without managing complex glue code. `playwright-cucumber-ts-steps` provides a pre-built library of robust steps for UI, API, and Authentication testing, running natively inside Playwright.
@@ -35,11 +40,20 @@ Write powerful end-to-end tests in plain English using Gherkin syntax, without m
35
40
  ```bash
36
41
  npm install playwright-cucumber-ts-steps @playwright/test
37
42
  ```
43
+ or
38
44
 
45
+ ```bash
46
+ yarn add playwright-cucumber-ts-steps @playwright/test
47
+ ```
39
48
  ```bash
40
49
  npx playwright install
41
50
  ```
42
51
 
52
+
53
+ ## 📘 Step Definition Documentation
54
+
55
+ 👉 [View Steps Documentation](https://qapaschale.github.io/playwright-cucumber-ts-steps/) and [examples](https://github.com/qaPaschalE/playwright-cucumber-ts-steps/tree/main/examples).
56
+
43
57
  ---
44
58
 
45
59
  ## ⚡ Quick Start Guide
package/package.json CHANGED
@@ -1,7 +1,7 @@
1
1
  {
2
2
  "name": "playwright-cucumber-ts-steps",
3
3
  "description": "A collection of reusable Playwright step definitions for Cucumber in TypeScript, designed to streamline end-to-end testing across web, API, and mobile applications.",
4
- "version": "1.1.10",
4
+ "version": "1.1.11",
5
5
  "private": false,
6
6
  "main": "dist/index.js",
7
7
  "types": "dist/index.d.ts",