@uuv/playwright 1.13.3 → 1.14.1

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 +6 -4
  2. package/package.json +3 -3
package/README.md CHANGED
@@ -62,10 +62,11 @@ We can use the playwright engine(`@uuv/playwright`) to run test or cypress with
62
62
 
63
63
  ## Benefits
64
64
  - If used correctly, integrates accessibility from the development stage
65
- - A living documentation is possible because we propose an unified language for developers and non-developers with a rich dictionary of ready-to-use sentences
65
+ - A living documentation is possible because we propose an unified language for developers and non-developers with a [rich dictionary](category/step-definition) of ready-to-use sentences
66
66
  - [@uuv/assistant](https://www.npmjs.com/package/@uuv/assistant) that facilitates the writing of tests by suggesting the most accessible sentences
67
+ - [JetBrains Plugin](https://orange-opensource.github.io/uuv/docs/tools/uuv-jetbrains-plugin) that helps you to write and execute your UUV E2E tests from JetBrains IDEs
67
68
  - Integrates several runtime engines: Cypress / Playwright
68
- - User-friendly and standardized execution report
69
+ - User friendly and standardized execution report([example](https://e2e-test-quest.github.io/kata-e2e-uuv/
69
70
  ### <u>Comparison</u>
70
71
  | Criteria | Cypress | Playwright | Testing library | UUV |
71
72
  |:-: |:-: |:-: |:-: |:-: |
@@ -137,6 +138,7 @@ yarn uuv open
137
138
  ```
138
139
 
139
140
  #### headless mode
141
+ Use for continuous integration([CI example](https://github.com/e2e-test-quest/kata-e2e-uuv/blob/main/.github/workflows/ci.yml)) or headless execution.
140
142
  ##### without args
141
143
  ```bash
142
144
  npx uuv e2e
@@ -147,11 +149,11 @@ yarn uuv e2e
147
149
  ```
148
150
  ##### with args
149
151
  ```bash
150
- npx uuv e2e --browser=edge --env="{'TAGS':'@mobile'}" --generateHtmlReport
152
+ npx uuv e2e --browser=edge --env="{'TAGS':'@mobile'}" --generateHtmlReport --targetTestFile=./uuv/e2e/first-test.feature
151
153
  ```
152
154
  or
153
155
  ```bash
154
- yarn uuv e2e --browser=edge --env="{'TAGS':'@mobile'}" --generateHtmlReport
156
+ yarn uuv e2e --browser=edge --env="{'TAGS':'@mobile'}" --generateHtmlReport --targetTestFile=./uuv/e2e/first-test.feature
155
157
  ```
156
158
 
157
159
  For more details, please go to the documentation:
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@uuv/playwright",
3
- "version": "1.13.3",
3
+ "version": "1.14.1",
4
4
  "type": "commonjs",
5
5
  "author": "Louis Fredice NJAKO MOLOM (https://github.com/luifr10) & Stanley SERVICAL (https://github.com/stanlee974)",
6
6
  "description": "A solution to facilitate the writing and execution of E2E tests understandable by any human being using cucumber(BDD) and playwright",
@@ -46,7 +46,7 @@
46
46
  "dependencies": {
47
47
  "@cucumber/cucumber": "9.3.0",
48
48
  "@playwright/test": "1.33.0",
49
- "@uuv/runner-commons": "1.10.3",
49
+ "@uuv/runner-commons": "1.10.4",
50
50
  "axe-core": "4.7.2",
51
51
  "axe-playwright": "1.2.3",
52
52
  "chalk": "4.1.2",
@@ -90,7 +90,7 @@
90
90
  },
91
91
  "devDependencies": {
92
92
  "@types/minimist": "1.2.5",
93
- "@types/node": "16.18.61",
93
+ "@types/node": "16.18.65",
94
94
  "cross-env": "7.0.3",
95
95
  "eslint-plugin-cucumber": "2.0.0",
96
96
  "eslint-plugin-jest": "27.6.0",