Skip to content

Commit

Permalink
Update abc.md
Browse files Browse the repository at this point in the history
  • Loading branch information
tvpkn-9192 authored Jan 23, 2024
1 parent 23e5f1b commit 7ec35e8
Showing 1 changed file with 0 additions and 45 deletions.
45 changes: 0 additions & 45 deletions abc.md
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
```

0 comments on commit 7ec35e8

Please sign in to comment.