-
Notifications
You must be signed in to change notification settings - Fork 1
Expand file tree
/
Copy pathwpt-dialog.pml
More file actions
50 lines (36 loc) · 889 Bytes
/
wpt-dialog.pml
File metadata and controls
50 lines (36 loc) · 889 Bytes
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
@startuml
skinparam {
backgroundColor transparent
defaultFontName Helvetica
shadowing false
}
skinparam sequence {
DividerBackgroundColor transparent
LifeLineBackgroundColor transparent
}
Actor Tester
box "Scope of testing"
Participant "WPT Run Interface" as wpt
Participant "Test Window" as test
end box
Participant "Platform\nA11Y Layer" as atapi
== Startup ==
Tester->wpt: Select tests
wpt->Tester: Shows matching test count
Tester->wpt: Start Test
== Repeat ==
wpt->test: Load test case
Note right
Test window is
created the first time.
End note
note right of atapi
A11Y Testing
happens over here
end note
test->test: Evaluates conditions via Javascript
test->wpt: Deliver results of each "subtest"
wpt->Tester: Update table of results
== Complete ==
wpt->Tester: Make results available in JSON
@enduml