-
Notifications
You must be signed in to change notification settings - Fork 0
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
- Loading branch information
1 parent
23e5f1b
commit 7ec35e8
Showing
1 changed file
with
0 additions
and
45 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,46 +1 @@ | ||
```mermaid | ||
flowchart TD | ||
A[ProductTestPage] -->|With invalid products| B[ProductSearch] | ||
B -->|Toggle ShowValidProducts btn| C[ProductSearch] | ||
A -->|Without invalid products| C[ProductSearch] | ||
C --> |Click Test btn| D[TestInstanceDialog] | ||
D --> |Click BeginTest takes to actual testing page| E[TestDataEntry] | ||
E --> |Enter measurement & press enter| F[Validate measurement] | ||
F --> |Click Abort btn & enter reason for abort| G[Abort] | ||
F --> |Complete Test| H[Test Next Serial] | ||
H --> |Click TestNextSerial btn| D | ||
``` | ||
|
||
|
||
|
||
|
||
|
||
```mermaid | ||
flowchart TD | ||
A[ProductTestPage] -->|With invalid products| B(ProductSearch with invalid products) | ||
B -->|Toggle ShowValidProducts btn| C(ProductSearch with valid products) | ||
A -->|Without invalid products| C | ||
C --> |Click Test btn| D(TestInstanceDialog) | ||
D --> |Click BeginTest takes to actual testing page| E(TestDataEntry) | ||
E --> |Enter measurement & press enter| F(Validate measurement) | ||
F --> |Click Abort btn & enter reason for abort| G(Abort) | ||
F --> |Complete Test| H(Test Next Serial) | ||
H --> |Click TestNextSerial btn| D | ||
``` | ||
|
||
|
||
|
||
|
||
```mermaid | ||
flowchart TD | ||
A[ProductTestPage] -->|With invalid products| B(Invalid products) | ||
B -->|Toggle ShowValidProducts btn| C(Valid products) | ||
A -->|Without invalid products| C(Valid products) | ||
C --> |Click Test btn| D(TestInstanceDialog) | ||
D --> |Click BeginTest btn| E(TestDataEntry) | ||
E --> |Enter measurement & press enter| F(Validate measurement) | ||
F --> |Click Abort btn| G(Abort) | ||
F --> |Complete Test| H(Test Next Serial) | ||
H --> |Click TestNextSerial btn| D | ||
G --> |Enter reason for abort, Click Abort btn & Click on ProductSearch at top left| A | ||
``` |