-
Notifications
You must be signed in to change notification settings - Fork 52
Expand file tree
/
Copy pathNumberInput_testPlan.yaml
More file actions
78 lines (67 loc) · 2.8 KB
/
NumberInput_testPlan.yaml
File metadata and controls
78 lines (67 loc) · 2.8 KB
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
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
testSuite:
testSuiteName: MDA Custom Number Input Tests
testSuiteDescription: Verify model driven number input properties
persona: User1
appLogicalName: NotNeeded
testCases:
- testCaseName: Test DefaultValue Property
testCaseDescription: Verify that the default value can be set and retrieved correctly.
testSteps: |
SetProperty(NumberInput1.Value, 50);
Assert(NumberInput1.Value, 50);
- testCaseName: Test MinValue Property
testCaseDescription: Verify that the minimum value can be set and retrieved correctly.
testSteps: |
SetProperty(NumberInput1.Min, 0);
Assert(NumberInput1.Min, 0);
- testCaseName: Test MaxValue Property
testCaseDescription: Verify that the maximum value can be set and retrieved correctly.
testSteps: |
SetProperty(NumberInput1.Max, 100);
Assert(NumberInput1.Max, 100);
- testCaseName: Test Step Property
testCaseDescription: Verify that the step value can be set and retrieved correctly.
testSteps: |
SetProperty(NumberInput1.Step, 1);
Assert(NumberInput1.Step, 1);
- testCaseName: Test DecimalPrecision Property
testCaseDescription: Verify that the decimal precision can be set and retrieved correctly.
testSteps: |
SetProperty(NumberInput1.DecimalPrecision, "Auto");
Assert(NumberInput1.DecimalPrecision, "Auto");
- testCaseName: Test AccessibleLabel Property
testCaseDescription: Verify that the accessible label can be set and retrieved correctly.
testSteps: |
SetProperty(NumberInput1.AccessibleLabel, "No value");
Assert(NumberInput1.AccessibleLabel, "No value");
- testCaseName: Test Visible Property
testCaseDescription: Verify that the visibility can be toggled correctly.
testSteps: |
SetProperty(NumberInput1.Visible, true);
Assert(NumberInput1.Visible, true);
SetProperty(NumberInput1.Visible, false);
Assert(NumberInput1.Visible, false);
- testCaseName: Test Size Property
testCaseDescription: Verify that the size can be set and retrieved correctly.
testSteps: |
SetProperty(NumberInput1.Size, "576 by 237");
Assert(NumberInput1.Size, "576 by 237");
- testCaseName: Test Position Property
testCaseDescription: Verify that the position can be set and retrieved correctly.
testSteps: |
SetProperty(NumberInput1.Position, "Not shown in image");
Assert(NumberInput1.Position, "Not shown in image");
testSettings:
headless: false
locale: "en-US"
recordVideo: true
extensionModules:
enable: true
browserConfigurations:
- browser: Chromium
channel: msedge
environmentVariables:
users:
- personaName: User1
emailKey: v-raghulraja@microsoft.com
passwordKey: NotNeeded