@qubiqlabs/mobiflow 0.2.0 → 0.3.0
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 -3
- package/package.json +2 -2
package/README.md
CHANGED
|
@@ -180,8 +180,14 @@ Companion scripts land under `flows/scripts/`.
|
|
|
180
180
|
|
|
181
181
|
## Reporting
|
|
182
182
|
|
|
183
|
-
Each live run
|
|
184
|
-
|
|
183
|
+
Each live run writes **JUnit** plus a full interactive **HTML dashboard** (cases, timeline,
|
|
184
|
+
logs, screenshots, cloud links) under `.mobiflow/reports/` — same SPA also under the run folder.
|
|
185
|
+
Open `index.html` (or `report.html`). Rebuild a pack from past runs anytime:
|
|
186
|
+
|
|
187
|
+
```bash
|
|
188
|
+
mobiflow report --out .mobiflow/reports/latest
|
|
189
|
+
mobiflow serve # http://127.0.0.1:8765 — needed for local screenshot paths
|
|
190
|
+
```
|
|
185
191
|
|
|
186
192
|
```yaml
|
|
187
193
|
run:
|
|
@@ -189,6 +195,7 @@ run:
|
|
|
189
195
|
report_dir: .mobiflow/reports
|
|
190
196
|
```
|
|
191
197
|
|
|
198
|
+
Sample dashboard: [docs/samples/execution-report/](docs/samples/execution-report/).
|
|
192
199
|
Suites write aggregate reports under `.mobiflow/reports/suite-<name>-<ts>/`.
|
|
193
200
|
GitHub Actions (`.github/workflows/ci.yml`) runs lint + unit tests; set
|
|
194
201
|
`MOBIFLOW_CLOUD_CI=true` plus cloud/LLM secrets for an optional smoke suite job.
|
|
@@ -211,7 +218,7 @@ export BROWSERSTACK_USERNAME=... BROWSERSTACK_ACCESS_KEY=...
|
|
|
211
218
|
3. Explore app with discovery LLM (or replay prefix + gap for --incremental)
|
|
212
219
|
4. Author / extend Maestro YAML (+ JS when enabled)
|
|
213
220
|
5. Local: maestro test --device <id>
|
|
214
|
-
Cloud: upload app + suite → BrowserStack / TestMu HyperExecute
|
|
221
|
+
Cloud: upload app + suite → Maestro Cloud / BrowserStack / TestMu HyperExecute
|
|
215
222
|
6. On fail → repair with failure log (≤ heal) → re-run
|
|
216
223
|
7. Write flows/<case>.yaml (+ scripts), guidance stamp, reports under .mobiflow/
|
|
217
224
|
```
|
package/package.json
CHANGED
|
@@ -1,7 +1,7 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "@qubiqlabs/mobiflow",
|
|
3
|
-
"version": "0.
|
|
4
|
-
"description": "CLI: NL
|
|
3
|
+
"version": "0.3.0",
|
|
4
|
+
"description": "CLI: NL \u2192 Maestro mobile flows via LLM, run on device/emulator, self-heal. (npm wrapper for the Python package)",
|
|
5
5
|
"license": "Apache-2.0",
|
|
6
6
|
"author": "QubiQ Labs <labs@qubiq.ai>",
|
|
7
7
|
"homepage": "https://github.com/javed0211/MobiFlow",
|