@uuv/playwright 1.7.0 → 1.7.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.
- package/README.md +9 -9
- package/package.json +4 -4
package/README.md
CHANGED
|
@@ -1,9 +1,9 @@
|
|
|
1
1
|
|
|
2
2
|
# @uuv/playwright
|
|
3
3
|
<p align="center">
|
|
4
|
-
<a href="https://
|
|
4
|
+
<a href="https://orange-opensource.github.io/uuv/">
|
|
5
5
|
<picture>
|
|
6
|
-
<img alt="UUV Logo" src="https://
|
|
6
|
+
<img alt="UUV Logo" src="https://orange-opensource.github.io/uuv/img/uuv.png">
|
|
7
7
|
</picture>
|
|
8
8
|
</a>
|
|
9
9
|
</p>
|
|
@@ -62,7 +62,7 @@ we see that the sentence proposed by **UUV is the most understandable** of all
|
|
|
62
62
|
|
|
63
63
|
|
|
64
64
|
## Documentation
|
|
65
|
-
<a href="https://
|
|
65
|
+
<a href="https://orange-opensource.github.io/uuv/"><img src="https://img.shields.io/badge/documentation-black?&style=for-the-badge&logo=github&logoColor=white" alt="documentation"/></a>
|
|
66
66
|
|
|
67
67
|
## What is @uuv/playwright?
|
|
68
68
|
|
|
@@ -85,12 +85,12 @@ or
|
|
|
85
85
|
yarn add -D @uuv/playwright
|
|
86
86
|
```
|
|
87
87
|
## Configuration (optional)
|
|
88
|
-
<a href="https://
|
|
88
|
+
<a href="https://orange-opensource.github.io/uuv/docs/getting-started/configuration"><img src="https://img.shields.io/badge/Configure%20Playwright%20doc-red?&style=for-the-badge&logo=github&logoColor=white" alt="documentation for configure uuv playwright"/></a>
|
|
89
89
|
|
|
90
90
|
## Usage
|
|
91
91
|
|
|
92
92
|
### Scenarios example
|
|
93
|
-
You can find test examples here : [weather-app.feature](https://github.com/
|
|
93
|
+
You can find test examples here : [weather-app.feature](https://github.com/Orange-OpenSource/uuv/blob/main/example/weather-app.feature)
|
|
94
94
|
|
|
95
95
|
### Write test
|
|
96
96
|
To write your first test, create the file `uuv/e2e/first-test.feature` in the project root with the following content :
|
|
@@ -104,7 +104,7 @@ To write your first test, create the file `uuv/e2e/first-test.feature` in the pr
|
|
|
104
104
|
|
|
105
105
|
For more details, please go to the documentation:
|
|
106
106
|
|
|
107
|
-
<a href="https://
|
|
107
|
+
<a href="https://orange-opensource.github.io/uuv/docs/test/first-test"><img src="https://img.shields.io/badge/Write%20test%20doc-red?&style=for-the-badge&logo=github&logoColor=white" alt="documentation for write test"/></a>
|
|
108
108
|
|
|
109
109
|
### Run test
|
|
110
110
|
|
|
@@ -137,15 +137,15 @@ yarn uuv e2e --browser=edge --env="{'TAGS':'@mobile'}" --generateHtmlReport
|
|
|
137
137
|
|
|
138
138
|
For more details, please go to the documentation:
|
|
139
139
|
|
|
140
|
-
<a href="https://
|
|
140
|
+
<a href="https://orange-opensource.github.io/uuv/docs/test/running-test"><img src="https://img.shields.io/badge/Run%20test%20doc-red?&style=for-the-badge&logo=github&logoColor=white" alt="documentation for run test"/></a>
|
|
141
141
|
|
|
142
142
|
## License
|
|
143
143
|
|
|
144
|
-
[<a href="https://github.com/
|
|
144
|
+
[<a href="https://github.com/Orange-OpenSource/uuv/blob/main/LICENSE">
|
|
145
145
|
<img src="https://img.shields.io/badge/license-MIT-blue" alt="MIT license"/>
|
|
146
146
|
</a>](https://spdx.org/licenses/MIT.html)
|
|
147
147
|
|
|
148
|
-
This project is licensed under the terms of the [MIT license](https://github.com/
|
|
148
|
+
This project is licensed under the terms of the [MIT license](https://github.com/Orange-OpenSource/uuv/blob/main/LICENSE).
|
|
149
149
|
|
|
150
150
|
## Authors
|
|
151
151
|
|
package/package.json
CHANGED
|
@@ -1,15 +1,15 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "@uuv/playwright",
|
|
3
|
-
"version": "1.7.
|
|
3
|
+
"version": "1.7.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 run E2E tests written in cucumber(BDD) with playwright.",
|
|
7
7
|
"license": "MIT",
|
|
8
8
|
"repository": {
|
|
9
9
|
"type": "git",
|
|
10
|
-
"url": "https://github.com/
|
|
10
|
+
"url": "https://github.com/Orange-OpenSource/uuv"
|
|
11
11
|
},
|
|
12
|
-
"homepage": "https://
|
|
12
|
+
"homepage": "https://orange-opensource.github.io/uuv/",
|
|
13
13
|
"bin": {
|
|
14
14
|
"uuv": "bin/uuv"
|
|
15
15
|
},
|
|
@@ -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.6.
|
|
49
|
+
"@uuv/runner-commons": "1.6.1",
|
|
50
50
|
"axe-core": "4.7.2",
|
|
51
51
|
"axe-playwright": "1.2.3",
|
|
52
52
|
"chalk": "4.1.2",
|