Skip to content

Commit 1f2d10a

Browse files
Test touchactions in new file
1 parent 6a638c4 commit 1f2d10a

File tree

2 files changed

+29
-27
lines changed

2 files changed

+29
-27
lines changed

android_tests/lib/android/specs/common/device.rb

-27
Original file line numberDiff line numberDiff line change
@@ -89,33 +89,6 @@ def must_return_element element
8989
wait { text('App') }
9090
end
9191

92-
t 'action_chain' do
93-
wait do
94-
e = find_element(:name, 'Accessibility')
95-
Appium::TouchAction.new.press(:element => e, x: 0.5, y: 0.5).release(:element => e).perform
96-
end
97-
wait { find_element(:name, 'Custom View') }
98-
back
99-
wait { text_exact 'NFC' }
100-
end
101-
102-
t 'swipe' do
103-
wait { Appium::TouchAction.new.swipe(start_x: 0.75, start_y: 0.25, end_x: 0.75, end_y: 0.5, duration: 1.5).perform }
104-
wait { !exists { text_exact 'NFC' } }
105-
back
106-
wait { text_exact 'NFC' }
107-
end
108-
109-
t 'pinch & zoom' do
110-
wait { text_exact 'NFC' }
111-
wait { text_exact('Graphics').click }
112-
wait { text('BitmapMesh').click }
113-
wait do
114-
zoom 200
115-
pinch 75
116-
end
117-
end
118-
11992
t 'push and pull file' do
12093
file = 'A Fine Day'
12194
path = '/data/local/tmp/remote.txt'
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,29 @@
1+
# rake android[common/device_touchaction]
2+
describe 'common/device_touchaction' do
3+
t 'action_chain' do
4+
wait do
5+
e = find_element(:name, 'Accessibility')
6+
Appium::TouchAction.new.press(:element => e, x: 0.5, y: 0.5).release(:element => e).perform
7+
end
8+
wait { find_element(:name, 'Custom View') }
9+
back
10+
wait { text_exact 'NFC' }
11+
end
12+
13+
t 'swipe' do
14+
wait { Appium::TouchAction.new.swipe(start_x: 0.75, start_y: 0.25, end_x: 0.75, end_y: 0.5, duration: 1.5).perform }
15+
wait { !exists { text_exact 'NFC' } }
16+
back
17+
wait { text_exact 'NFC' }
18+
end
19+
20+
t 'pinch & zoom' do
21+
wait { text_exact 'NFC' }
22+
wait { text_exact('Graphics').click }
23+
wait { text('BitmapMesh').click }
24+
wait do
25+
zoom 200
26+
pinch 75
27+
end
28+
end
29+
end

0 commit comments

Comments
 (0)