@uuv/assistant 1.4.0 → 1.4.2
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 +10 -0
- package/build/static/css/main.8c76db0a.css +1 -0
- package/build/static/js/main.57c0adfd.js +2 -0
- package/dist/launcher/conf.json +2 -2
- package/dist/launcher/uuv-assistant-launcher.js +30 -4
- package/dist/launcher/uuv-assistant.js +26 -16
- package/package.json +13 -9
- package/build/static/css/main.a63bc536.css +0 -2
- package/build/static/js/main.4685455a.js +0 -3
package/README.md
CHANGED
|
@@ -76,6 +76,12 @@ With this wizard, we can generate cucumber sentences that will use an execution
|
|
|
76
76
|
## Screenshots
|
|
77
77
|
<img src="https://e2e-test-quest.github.io/uuv/img/assistant/screenshots.gif" alt="assistant screenshots"/>
|
|
78
78
|
|
|
79
|
+
## Online demo
|
|
80
|
+
|
|
81
|
+
<a href="https://uuv-assistant.vercel.app/">
|
|
82
|
+
<img src="https://e2e-test-quest.github.io/uuv/img/assistant/online-demo.png" alt="assistant online demo"/>
|
|
83
|
+
</a>
|
|
84
|
+
|
|
79
85
|
## Installation
|
|
80
86
|
```bash
|
|
81
87
|
npm install --save-dev @uuv/assistant
|
|
@@ -87,6 +93,10 @@ yarn add -D @uuv/assistant
|
|
|
87
93
|
|
|
88
94
|
## Usage
|
|
89
95
|
|
|
96
|
+
### Scenarios example
|
|
97
|
+
You can find test examples here : [google.feature](https://github.com/e2e-test-quest/uuv/blob/main/example/google.fr.feature)
|
|
98
|
+
|
|
99
|
+
### Launch
|
|
90
100
|
To launch uuv assistant :
|
|
91
101
|
```bash
|
|
92
102
|
npx uuv-assistant --targetUrl=<targetUrl>
|
|
@@ -0,0 +1 @@
|
|
|
1
|
+
body{-webkit-font-smoothing:antialiased;-moz-osx-font-smoothing:grayscale;font-family:-apple-system,BlinkMacSystemFont,Segoe UI,Roboto,Oxygen,Ubuntu,Cantarell,Fira Sans,Droid Sans,Helvetica Neue,sans-serif;margin:0}code{font-family:source-code-pro,Menlo,Monaco,Consolas,Courier New,monospace}.anticon{display:inline-flex!important}.uuvAssistant{box-shadow:0 .0625em .0625em rgba(0,0,0,.25),0 .125em .5em rgba(0,0,0,.25),inset 0 0 0 1px hsla(0,0%,100%,.1);opacity:95%}.uuvArrowExpander{cursor:pointer;left:50%;width:30px}.uuvArrowExpander,.uuvFloatingButton{border-color:grey;height:30px;position:absolute;top:-1em}.uuvFloatingButton{width:120px;z-index:9999999779}.uuvActionAside :disabled{width:200px}.uuvActionAside{border-color:grey;margin-left:10%;margin-right:10px;width:80%}
|