Commit f930ae1 1 parent 987ccfe commit f930ae1 Copy full SHA for f930ae1
File tree 3 files changed +108
-120
lines changed
androidTest/kotlin/io/github/kakaocup/sample
3 files changed +108
-120
lines changed Original file line number Diff line number Diff line change @@ -31,7 +31,6 @@ class TestActivityTest {
31
31
}
32
32
33
33
textViewLarge {
34
- scrollTo()
35
34
click()
36
35
isVisible()
37
36
hasText(" LARGE" )
@@ -41,7 +40,6 @@ class TestActivityTest {
41
40
}
42
41
43
42
textViewSmall {
44
- scrollTo()
45
43
isVisible()
46
44
hasText(" small" )
47
45
isCompletelyBelow {
@@ -50,13 +48,11 @@ class TestActivityTest {
50
48
}
51
49
52
50
textViewHint {
53
- scrollTo()
54
51
isVisible()
55
52
hasHint(" hint" )
56
53
}
57
54
58
55
buttonViewLeft {
59
- scrollTo()
60
56
isVisible()
61
57
hasText(" left" )
62
58
isCompletelyLeftOf {
@@ -65,7 +61,6 @@ class TestActivityTest {
65
61
}
66
62
67
63
buttonViewRight {
68
- scrollTo()
69
64
isVisible()
70
65
hasText(" right" )
71
66
isCompletelyRightOf {
@@ -74,7 +69,6 @@ class TestActivityTest {
74
69
}
75
70
76
71
textViewSmall {
77
- scrollTo()
78
72
isVisible()
79
73
hasText(" small" )
80
74
isCompletelyBelow {
@@ -83,46 +77,38 @@ class TestActivityTest {
83
77
}
84
78
85
79
textViewColored {
86
- scrollTo()
87
80
hasTextColor(R .color.background_color)
88
81
}
89
82
90
83
map {
91
- scrollTo()
92
84
click()
93
85
hasAnyTag(" test_tag" , " non_test_tag" )
94
86
}
95
87
96
88
multiTypeRecycler {
97
- scrollTo()
98
89
hasText(" MULTI TYPE RECYCLER" )
99
90
}
100
91
101
92
singleTypeRecycler {
102
- scrollTo()
103
93
hasText(" SINGLE TYPE RECYCLER" )
104
94
}
105
95
106
96
autoComplete {
107
- scrollTo()
108
97
hasText(" AUTO_COMPLETE" )
109
98
}
110
99
111
100
ratingbar {
112
- scrollTo()
113
101
hasRating(0f )
114
102
setRatingAt(3f )
115
103
hasRating(3f )
116
104
}
117
105
118
106
snackbarButton {
119
- scrollTo()
120
107
click()
121
108
}
122
109
123
110
snackbar {
124
111
isDisplayed()
125
-
126
112
text { hasText(" This is snackbar!" ) }
127
113
action {
128
114
hasText(" DISMISS" )
@@ -134,14 +120,12 @@ class TestActivityTest {
134
120
}
135
121
136
122
seekbar {
137
- scrollTo()
138
123
hasProgress(70 )
139
124
dragProgressTo(30 )
140
125
hasProgress(30 )
141
126
}
142
127
143
128
switch {
144
- scrollTo()
145
129
isChecked()
146
130
click()
147
131
isNotChecked()
@@ -156,7 +140,6 @@ class TestActivityTest {
156
140
}
157
141
158
142
switchCompat {
159
- scrollTo()
160
143
isChecked()
161
144
click()
162
145
isNotChecked()
@@ -175,7 +158,6 @@ class TestActivityTest {
175
158
}
176
159
177
160
searchView {
178
- scrollTo()
179
161
hasHint(" This is the HINT!" )
180
162
hasHint(R .string.hint)
181
163
typeQuery(" Hello" )
Original file line number Diff line number Diff line change 4
4
android : layout_height =" match_parent"
5
5
android : orientation =" vertical" >
6
6
7
+ <!-- Firebase API 29 emulator showing "Device is managed by your organization pop-up and overlapping buttons"-->
8
+ <View
9
+ android : layout_width =" match_parent"
10
+ android : layout_height =" 100dp" />
11
+
7
12
<Button
8
13
android : id =" @+id/show_alert_dialog"
9
14
android : layout_width =" match_parent"
You can’t perform that action at this time.
0 commit comments