appium_lib_core 4.1.0 → 9.1.3
This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
- checksums.yaml +4 -4
- data/CHANGELOG.md +342 -270
- data/README.md +65 -15
- data/Rakefile +5 -22
- data/appium_lib_core.gemspec +12 -15
- data/bin/console +0 -4
- data/lib/appium_lib_core/android/device/auth_finger_print.rb +4 -1
- data/lib/appium_lib_core/android/device/network.rb +10 -0
- data/lib/appium_lib_core/android/device/performance.rb +3 -0
- data/lib/appium_lib_core/android/device/screen.rb +2 -0
- data/lib/appium_lib_core/android/device.rb +80 -17
- data/lib/appium_lib_core/common/base/bridge.rb +238 -95
- data/lib/appium_lib_core/common/base/capabilities.rb +21 -8
- data/lib/appium_lib_core/common/{command/mjsonwp.rb → base/device_ime.rb} +33 -12
- data/lib/appium_lib_core/common/base/driver.rb +263 -334
- data/lib/appium_lib_core/common/base/driver_settings.rb +51 -0
- data/lib/appium_lib_core/common/base/has_location.rb +80 -0
- data/lib/appium_lib_core/common/base/has_network_connection.rb +56 -0
- data/lib/appium_lib_core/common/base/http_default.rb +22 -38
- data/lib/appium_lib_core/{ios/uiautomation/bridge.rb → common/base/remote_status.rb} +9 -8
- data/lib/appium_lib_core/common/base/rotable.rb +62 -0
- data/lib/appium_lib_core/common/base/screenshot.rb +8 -8
- data/lib/appium_lib_core/common/base/search_context.rb +98 -172
- data/lib/appium_lib_core/common/base.rb +1 -5
- data/lib/appium_lib_core/common/command.rb +244 -4
- data/lib/appium_lib_core/common/device/app_management.rb +2 -26
- data/lib/appium_lib_core/common/device/context.rb +1 -5
- data/lib/appium_lib_core/common/device/image_comparison.rb +12 -4
- data/lib/appium_lib_core/common/device/keyevent.rb +4 -4
- data/lib/appium_lib_core/common/device/{touch_actions.rb → orientation.rb} +6 -10
- data/lib/appium_lib_core/common/error.rb +4 -5
- data/lib/appium_lib_core/common/log.rb +5 -4
- data/lib/appium_lib_core/common/wait.rb +38 -6
- data/lib/appium_lib_core/device.rb +3 -9
- data/lib/appium_lib_core/driver.rb +194 -161
- data/lib/appium_lib_core/{patch.rb → element.rb} +64 -26
- data/lib/appium_lib_core/ios/xcuitest/device.rb +2 -0
- data/lib/appium_lib_core/{common/base/command.rb → mac2/bridge.rb} +9 -8
- data/lib/appium_lib_core/mac2/device/screen.rb +48 -0
- data/lib/appium_lib_core/mac2/device.rb +92 -0
- data/lib/appium_lib_core/{ios.rb → mac2.rb} +2 -5
- data/lib/appium_lib_core/support/event_firing_bridge.rb +57 -0
- data/lib/appium_lib_core/version.rb +2 -2
- data/lib/appium_lib_core.rb +23 -10
- metadata +53 -118
- data/.github/ISSUE_TEMPLATE/issue-report.md +0 -29
- data/.github/contributing.md +0 -26
- data/.github/issue_template.md +0 -20
- data/.github/workflows/unittest.yml +0 -68
- data/.gitignore +0 -18
- data/.rubocop.yml +0 -58
- data/azure-pipelines.yml +0 -15
- data/ci-jobs/functional/android_setup.yml +0 -3
- data/ci-jobs/functional/ios_setup.yml +0 -7
- data/ci-jobs/functional/publish_test_result.yml +0 -18
- data/ci-jobs/functional/run_appium.yml +0 -25
- data/ci-jobs/functional/start-emulator.sh +0 -26
- data/ci-jobs/functional_test.yml +0 -298
- data/docs/mobile_command.md +0 -34
- data/lib/appium_lib_core/common/base/bridge/mjsonwp.rb +0 -81
- data/lib/appium_lib_core/common/base/bridge/w3c.rb +0 -252
- data/lib/appium_lib_core/common/command/common.rb +0 -110
- data/lib/appium_lib_core/common/command/w3c.rb +0 -56
- data/lib/appium_lib_core/common/device/value.rb +0 -52
- data/lib/appium_lib_core/common/touch_action/multi_touch.rb +0 -56
- data/lib/appium_lib_core/common/touch_action/touch_actions.rb +0 -203
- data/lib/appium_lib_core/ios/uiautomation/device.rb +0 -44
- data/lib/appium_lib_core/ios/uiautomation/patch.rb +0 -34
- data/release_notes.md +0 -816
- data/script/commands.rb +0 -200
@@ -1,110 +0,0 @@
|
|
1
|
-
# frozen_string_literal: true
|
2
|
-
|
3
|
-
# Licensed under the Apache License, Version 2.0 (the "License");
|
4
|
-
# you may not use this file except in compliance with the License.
|
5
|
-
# You may obtain a copy of the License at
|
6
|
-
#
|
7
|
-
# http://www.apache.org/licenses/LICENSE-2.0
|
8
|
-
#
|
9
|
-
# Unless required by applicable law or agreed to in writing, software
|
10
|
-
# distributed under the License is distributed on an "AS IS" BASIS,
|
11
|
-
# WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
|
12
|
-
# See the License for the specific language governing permissions and
|
13
|
-
# limitations under the License.
|
14
|
-
|
15
|
-
module Appium
|
16
|
-
module Core
|
17
|
-
# ref: https://github.com/appium/appium-base-driver/blob/master/lib/mjsonwp/routes.js
|
18
|
-
module Commands
|
19
|
-
# Some commands differ for each driver.
|
20
|
-
COMMAND = {
|
21
|
-
# common
|
22
|
-
get_all_sessions: [:get, 'sessions'],
|
23
|
-
available_contexts: [:get, 'session/:session_id/contexts'],
|
24
|
-
set_context: [:post, 'session/:session_id/context'],
|
25
|
-
current_context: [:get, 'session/:session_id/context'],
|
26
|
-
|
27
|
-
touch_actions: [:post, 'session/:session_id/touch/perform'],
|
28
|
-
multi_touch: [:post, 'session/:session_id/touch/multi/perform'],
|
29
|
-
|
30
|
-
set_immediate_value: [:post, 'session/:session_id/appium/element/:id/value'],
|
31
|
-
replace_value: [:post, 'session/:session_id/appium/element/:id/replace_value'],
|
32
|
-
|
33
|
-
launch_app: [:post, 'session/:session_id/appium/app/launch'],
|
34
|
-
close_app: [:post, 'session/:session_id/appium/app/close'],
|
35
|
-
reset: [:post, 'session/:session_id/appium/app/reset'],
|
36
|
-
background_app: [:post, 'session/:session_id/appium/app/background'],
|
37
|
-
app_strings: [:post, 'session/:session_id/appium/app/strings'],
|
38
|
-
|
39
|
-
device_locked?: [:post, 'session/:session_id/appium/device/is_locked'],
|
40
|
-
unlock: [:post, 'session/:session_id/appium/device/unlock'],
|
41
|
-
lock: [:post, 'session/:session_id/appium/device/lock'],
|
42
|
-
device_time: [:get, 'session/:session_id/appium/device/system_time'],
|
43
|
-
install_app: [:post, 'session/:session_id/appium/device/install_app'],
|
44
|
-
remove_app: [:post, 'session/:session_id/appium/device/remove_app'],
|
45
|
-
app_installed?: [:post, 'session/:session_id/appium/device/app_installed'],
|
46
|
-
activate_app: [:post, 'session/:session_id/appium/device/activate_app'],
|
47
|
-
terminate_app: [:post, 'session/:session_id/appium/device/terminate_app'],
|
48
|
-
app_state: [:post, 'session/:session_id/appium/device/app_state'],
|
49
|
-
shake: [:post, 'session/:session_id/appium/device/shake'],
|
50
|
-
hide_keyboard: [:post, 'session/:session_id/appium/device/hide_keyboard'],
|
51
|
-
press_keycode: [:post, 'session/:session_id/appium/device/press_keycode'],
|
52
|
-
long_press_keycode: [:post, 'session/:session_id/appium/device/long_press_keycode'],
|
53
|
-
# keyevent is only for Selendroid
|
54
|
-
keyevent: [:post, 'session/:session_id/appium/device/keyevent'],
|
55
|
-
push_file: [:post, 'session/:session_id/appium/device/push_file'],
|
56
|
-
pull_file: [:post, 'session/:session_id/appium/device/pull_file'],
|
57
|
-
pull_folder: [:post, 'session/:session_id/appium/device/pull_folder'],
|
58
|
-
get_clipboard: [:post, 'session/:session_id/appium/device/get_clipboard'],
|
59
|
-
set_clipboard: [:post, 'session/:session_id/appium/device/set_clipboard'],
|
60
|
-
finger_print: [:post, 'session/:session_id/appium/device/finger_print'],
|
61
|
-
get_settings: [:get, 'session/:session_id/appium/settings'],
|
62
|
-
update_settings: [:post, 'session/:session_id/appium/settings'],
|
63
|
-
stop_recording_screen: [:post, 'session/:session_id/appium/stop_recording_screen'],
|
64
|
-
start_recording_screen: [:post, 'session/:session_id/appium/start_recording_screen'],
|
65
|
-
compare_images: [:post, 'session/:session_id/appium/compare_images'],
|
66
|
-
is_keyboard_shown: [:get, 'session/:session_id/appium/device/is_keyboard_shown'],
|
67
|
-
execute_driver: [:post, 'session/:session_id/appium/execute_driver'],
|
68
|
-
post_log_event: [:post, 'session/:session_id/appium/log_event'],
|
69
|
-
get_log_events: [:post, 'session/:session_id/appium/events']
|
70
|
-
}.freeze
|
71
|
-
|
72
|
-
COMMAND_ANDROID = {
|
73
|
-
open_notifications: [:post, 'session/:session_id/appium/device/open_notifications'],
|
74
|
-
toggle_airplane_mode: [:post, 'session/:session_id/appium/device/toggle_airplane_mode'],
|
75
|
-
start_activity: [:post, 'session/:session_id/appium/device/start_activity'],
|
76
|
-
current_activity: [:get, 'session/:session_id/appium/device/current_activity'],
|
77
|
-
current_package: [:get, 'session/:session_id/appium/device/current_package'],
|
78
|
-
get_system_bars: [:get, 'session/:session_id/appium/device/system_bars'],
|
79
|
-
get_display_density: [:get, 'session/:session_id/appium/device/display_density'],
|
80
|
-
toggle_wifi: [:post, 'session/:session_id/appium/device/toggle_wifi'],
|
81
|
-
toggle_data: [:post, 'session/:session_id/appium/device/toggle_data'],
|
82
|
-
toggle_location_services: [:post, 'session/:session_id/appium/device/toggle_location_services'],
|
83
|
-
end_coverage: [:post, 'session/:session_id/appium/app/end_test_coverage'],
|
84
|
-
get_performance_data_types: [:post, 'session/:session_id/appium/performanceData/types'],
|
85
|
-
get_performance_data: [:post, 'session/:session_id/appium/getPerformanceData'],
|
86
|
-
get_network_connection: [:get, 'session/:session_id/network_connection'], # defined also in OSS
|
87
|
-
set_network_connection: [:post, 'session/:session_id/network_connection'], # defined also in OSS
|
88
|
-
|
89
|
-
# only emulator
|
90
|
-
send_sms: [:post, 'session/:session_id/appium/device/send_sms'],
|
91
|
-
gsm_call: [:post, 'session/:session_id/appium/device/gsm_call'],
|
92
|
-
gsm_signal: [:post, 'session/:session_id/appium/device/gsm_signal'],
|
93
|
-
gsm_voice: [:post, 'session/:session_id/appium/device/gsm_voice'],
|
94
|
-
set_network_speed: [:post, 'session/:session_id/appium/device/network_speed'],
|
95
|
-
set_power_capacity: [:post, 'session/:session_id/appium/device/power_capacity'],
|
96
|
-
set_power_ac: [:post, 'session/:session_id/appium/device/power_ac'],
|
97
|
-
|
98
|
-
# For chromium: https://chromium.googlesource.com/chromium/src/+/master/chrome/test/chromedriver/server/http_handler.cc
|
99
|
-
chrome_send_command: [:post, 'session/:session_id/goog/cdp/execute']
|
100
|
-
}.freeze
|
101
|
-
|
102
|
-
COMMAND_IOS = {
|
103
|
-
touch_id: [:post, 'session/:session_id/appium/simulator/touch_id'],
|
104
|
-
toggle_touch_id_enrollment: [:post, 'session/:session_id/appium/simulator/toggle_touch_id_enrollment']
|
105
|
-
}.freeze
|
106
|
-
|
107
|
-
COMMANDS = {}.merge(COMMAND).merge(COMMAND_ANDROID).merge(COMMAND_IOS).freeze
|
108
|
-
end # module Commands
|
109
|
-
end # module Core
|
110
|
-
end # module Appium
|
@@ -1,56 +0,0 @@
|
|
1
|
-
# frozen_string_literal: true
|
2
|
-
|
3
|
-
# Licensed under the Apache License, Version 2.0 (the "License");
|
4
|
-
# you may not use this file except in compliance with the License.
|
5
|
-
# You may obtain a copy of the License at
|
6
|
-
#
|
7
|
-
# http://www.apache.org/licenses/LICENSE-2.0
|
8
|
-
#
|
9
|
-
# Unless required by applicable law or agreed to in writing, software
|
10
|
-
# distributed under the License is distributed on an "AS IS" BASIS,
|
11
|
-
# WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
|
12
|
-
# See the License for the specific language governing permissions and
|
13
|
-
# limitations under the License.
|
14
|
-
|
15
|
-
module Appium
|
16
|
-
module Core
|
17
|
-
module Commands
|
18
|
-
module W3C
|
19
|
-
COMMANDS = ::Appium::Core::Commands::COMMANDS.merge(::Appium::Core::Base::Commands::W3C).merge(
|
20
|
-
{
|
21
|
-
# ::Appium::Core::Base::Commands::OSS has the following commands and Appium also use them.
|
22
|
-
# Delegated to ::Appium::Core::Base::Commands::OSS commands
|
23
|
-
status: [:get, 'status'], # https://w3c.github.io/webdriver/#dfn-status
|
24
|
-
is_element_displayed: [:get, 'session/:session_id/element/:id/displayed'], # hint: https://w3c.github.io/webdriver/#element-displayedness
|
25
|
-
|
26
|
-
get_timeouts: [:get, 'session/:session_id/timeouts'], # https://w3c.github.io/webdriver/#get-timeouts
|
27
|
-
|
28
|
-
# Add OSS commands to W3C commands. We can remove them if we would like to remove them from W3C module.
|
29
|
-
### Session capability
|
30
|
-
get_capabilities: [:get, 'session/:session_id'],
|
31
|
-
|
32
|
-
### rotatable
|
33
|
-
get_screen_orientation: [:get, 'session/:session_id/orientation'],
|
34
|
-
set_screen_orientation: [:post, 'session/:session_id/orientation'],
|
35
|
-
|
36
|
-
get_location: [:get, 'session/:session_id/location'],
|
37
|
-
set_location: [:post, 'session/:session_id/location'],
|
38
|
-
|
39
|
-
### For IME
|
40
|
-
ime_get_available_engines: [:get, 'session/:session_id/ime/available_engines'],
|
41
|
-
ime_get_active_engine: [:get, 'session/:session_id/ime/active_engine'],
|
42
|
-
ime_is_activated: [:get, 'session/:session_id/ime/activated'],
|
43
|
-
ime_deactivate: [:post, 'session/:session_id/ime/deactivate'],
|
44
|
-
ime_activate_engine: [:post, 'session/:session_id/ime/activate'],
|
45
|
-
|
46
|
-
send_keys_to_active_element: [:post, 'session/:session_id/keys'],
|
47
|
-
|
48
|
-
### Logs
|
49
|
-
get_available_log_types: [:get, 'session/:session_id/log/types'],
|
50
|
-
get_log: [:post, 'session/:session_id/log']
|
51
|
-
}
|
52
|
-
).freeze
|
53
|
-
end # module W3C
|
54
|
-
end # module Commands
|
55
|
-
end # module Core
|
56
|
-
end # module Appium
|
@@ -1,52 +0,0 @@
|
|
1
|
-
# frozen_string_literal: true
|
2
|
-
|
3
|
-
# Licensed under the Apache License, Version 2.0 (the "License");
|
4
|
-
# you may not use this file except in compliance with the License.
|
5
|
-
# You may obtain a copy of the License at
|
6
|
-
#
|
7
|
-
# http://www.apache.org/licenses/LICENSE-2.0
|
8
|
-
#
|
9
|
-
# Unless required by applicable law or agreed to in writing, software
|
10
|
-
# distributed under the License is distributed on an "AS IS" BASIS,
|
11
|
-
# WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
|
12
|
-
# See the License for the specific language governing permissions and
|
13
|
-
# limitations under the License.
|
14
|
-
|
15
|
-
module Appium
|
16
|
-
module Core
|
17
|
-
class Base
|
18
|
-
module Device
|
19
|
-
module Value
|
20
|
-
def set_immediate_value(element, *value)
|
21
|
-
execute :set_immediate_value, { id: element.ref }, generate_value_and_text(value)
|
22
|
-
end
|
23
|
-
|
24
|
-
def replace_value(element, *value)
|
25
|
-
execute :replace_value, { id: element.ref }, generate_value_and_text(value)
|
26
|
-
end
|
27
|
-
|
28
|
-
private
|
29
|
-
|
30
|
-
def generate_value_and_text(*value)
|
31
|
-
keys = ::Selenium::WebDriver::Keys.encode(*value)
|
32
|
-
|
33
|
-
if @file_detector
|
34
|
-
local_files = keys.first.split("\n").map { |key| @file_detector.call(Array(key)) }.compact
|
35
|
-
if local_files.any?
|
36
|
-
keys = local_files.map { |local_file| upload(local_file) }
|
37
|
-
keys = Array(keys.join("\n"))
|
38
|
-
end
|
39
|
-
end
|
40
|
-
|
41
|
-
# Keep .split(//) for backward compatibility for now
|
42
|
-
text = keys.join('')
|
43
|
-
|
44
|
-
# FIXME: further work for W3C. Over appium 1.15.0 or later
|
45
|
-
# { value: text.split(//), text: text }
|
46
|
-
{ value: text.split(//) }
|
47
|
-
end
|
48
|
-
end # module Value
|
49
|
-
end # module Device
|
50
|
-
end # class Base
|
51
|
-
end # module Core
|
52
|
-
end # module Appium
|
@@ -1,56 +0,0 @@
|
|
1
|
-
# frozen_string_literal: true
|
2
|
-
|
3
|
-
# Licensed under the Apache License, Version 2.0 (the "License");
|
4
|
-
# you may not use this file except in compliance with the License.
|
5
|
-
# You may obtain a copy of the License at
|
6
|
-
#
|
7
|
-
# http://www.apache.org/licenses/LICENSE-2.0
|
8
|
-
#
|
9
|
-
# Unless required by applicable law or agreed to in writing, software
|
10
|
-
# distributed under the License is distributed on an "AS IS" BASIS,
|
11
|
-
# WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
|
12
|
-
# See the License for the specific language governing permissions and
|
13
|
-
# limitations under the License.
|
14
|
-
|
15
|
-
module Appium
|
16
|
-
module Core
|
17
|
-
# MultiTouch actions allow for multiple touches to happen at the same time,
|
18
|
-
# for instance, to simulate multiple finger swipes.
|
19
|
-
#
|
20
|
-
# Create a series of touch actions by themselves (without a +prepare()+), then
|
21
|
-
# add to a new MultiTouch action. When ready, call +prepare()+ and all
|
22
|
-
# actions will be executed simultaneously.
|
23
|
-
#
|
24
|
-
# @example
|
25
|
-
#
|
26
|
-
# @driver = Appium::Core.for(opts).start_driver
|
27
|
-
# action_1 = Appium::Core::TouchAction.new(@driver).press(x: 45, y: 100).wait(600).release
|
28
|
-
# action_2 = Appium::Core::TouchAction.new(@driver).tap(element: el, x: 50, y:5, count: 3)
|
29
|
-
#
|
30
|
-
# multi_touch_action = MultiTouch.new(@driver)
|
31
|
-
# multi_touch_action.add action_1
|
32
|
-
# multi_touch_action.add action_2
|
33
|
-
# multi_touch_action.perform
|
34
|
-
#
|
35
|
-
class MultiTouch
|
36
|
-
attr_reader :driver
|
37
|
-
|
38
|
-
def initialize(driver)
|
39
|
-
@actions = []
|
40
|
-
@driver = driver
|
41
|
-
end
|
42
|
-
|
43
|
-
# Add a touch_action to be performed
|
44
|
-
# @param chain (TouchAction) The action to add to the chain
|
45
|
-
def add(chain)
|
46
|
-
@actions << chain.actions
|
47
|
-
end
|
48
|
-
|
49
|
-
# Ask Appium to perform the actions
|
50
|
-
def perform
|
51
|
-
@driver.multi_touch @actions
|
52
|
-
@actions.clear
|
53
|
-
end
|
54
|
-
end # class MultiTouch
|
55
|
-
end # module Core
|
56
|
-
end # module Appium
|
@@ -1,203 +0,0 @@
|
|
1
|
-
# frozen_string_literal: true
|
2
|
-
|
3
|
-
# Licensed under the Apache License, Version 2.0 (the "License");
|
4
|
-
# you may not use this file except in compliance with the License.
|
5
|
-
# You may obtain a copy of the License at
|
6
|
-
#
|
7
|
-
# http://www.apache.org/licenses/LICENSE-2.0
|
8
|
-
#
|
9
|
-
# Unless required by applicable law or agreed to in writing, software
|
10
|
-
# distributed under the License is distributed on an "AS IS" BASIS,
|
11
|
-
# WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
|
12
|
-
# See the License for the specific language governing permissions and
|
13
|
-
# limitations under the License.
|
14
|
-
|
15
|
-
module Appium
|
16
|
-
module Core
|
17
|
-
# Perform a series of gestures, one after another. Gestures are chained
|
18
|
-
# together and only performed when +perform()+ is called. Default is conducted by global driver.
|
19
|
-
#
|
20
|
-
# Each method returns the object itself, so calls can be chained.
|
21
|
-
#
|
22
|
-
# Consider to use W3C spec touch action like the followings.
|
23
|
-
# https://seleniumhq.github.io/selenium/docs/api/rb/Selenium/WebDriver/W3CActionBuilder.html
|
24
|
-
# https://github.com/appium/ruby_lib_core/blob/master/test/functional/android/webdriver/w3c_actions_test.rb
|
25
|
-
# https://github.com/appium/ruby_lib_core/blob/master/test/functional/ios/webdriver/w3c_actions_test.rb
|
26
|
-
#
|
27
|
-
# @example
|
28
|
-
#
|
29
|
-
# @driver = Appium::Core.for(opts).start_driver
|
30
|
-
# action = Appium::Core::TouchAction.new(@driver).press(x: 45, y: 100).wait(600).release
|
31
|
-
# action.perform
|
32
|
-
# action = Appium::Core::TouchAction.new(@driver).swipe(....)
|
33
|
-
# action.perform
|
34
|
-
#
|
35
|
-
class TouchAction
|
36
|
-
ACTIONS = %i(move_to long_press double_tap two_finger_tap press release tap wait perform).freeze
|
37
|
-
COMPLEX_ACTIONS = %i(swipe).freeze
|
38
|
-
|
39
|
-
attr_reader :actions, :driver
|
40
|
-
|
41
|
-
def initialize(driver)
|
42
|
-
@actions = []
|
43
|
-
@driver = driver
|
44
|
-
end
|
45
|
-
|
46
|
-
# Move to the given co-ordinates.
|
47
|
-
#
|
48
|
-
# +move_to+'s +x+ and +y+ have two case. One is working as coordinate, the other is working as offset.
|
49
|
-
#
|
50
|
-
# @param opts [Hash] Options
|
51
|
-
# @option opts [integer] :x x co-ordinate to move to if element isn't set. Works as an absolute if x is set with Element.
|
52
|
-
# @option opts [integer] :y y co-ordinate to move to if element isn't set. Works as an absolute if y is set with Element.
|
53
|
-
# @option opts [WebDriver::Element] Element to scope this move within.
|
54
|
-
def move_to(opts)
|
55
|
-
opts = args_with_ele_ref(opts)
|
56
|
-
chain_method(:moveTo, opts)
|
57
|
-
end
|
58
|
-
|
59
|
-
# Press down for a specific duration.
|
60
|
-
# Alternatively, you can use +press(...).wait(...).release()+ instead of +long_press+ if duration doesn't work well.
|
61
|
-
# https://github.com/appium/ruby_lib/issues/231#issuecomment-269895512
|
62
|
-
# e.g. Appium::Core::TouchAction.new.press(x: 280, y: 530).wait(2000).release.perform
|
63
|
-
#
|
64
|
-
# @param opts [Hash] Options
|
65
|
-
# @option opts [WebDriver::Element] element the element to press.
|
66
|
-
# @option opts [integer] x X co-ordinate to press on.
|
67
|
-
# @option opts [integer] y Y co-ordinate to press on.
|
68
|
-
# @option opts [integer] duration Number of milliseconds to press.
|
69
|
-
def long_press(opts)
|
70
|
-
args = opts.select { |k, _v| %i(element x y duration).include? k }
|
71
|
-
args = args_with_ele_ref(args)
|
72
|
-
chain_method(:longPress, args) # longPress is what the appium server expects
|
73
|
-
end
|
74
|
-
|
75
|
-
# Press a finger onto the screen. Finger will stay down until you call +release+.
|
76
|
-
#
|
77
|
-
# @param opts [Hash] Options
|
78
|
-
# @option opts [WebDriver::Element] :element (Optional) Element to press within.
|
79
|
-
# @option opts [integer] :x x co-ordinate to press on
|
80
|
-
# @option opts [integer] :y y co-ordinate to press on
|
81
|
-
# @option opts [Float] pressure (iOS Only) press as force touch.
|
82
|
-
# See the description of +force+ property on Apple's UITouch class
|
83
|
-
# (https://developer.apple.com/documentation/uikit/uitouch?language=objc)
|
84
|
-
# for more details on possible value ranges.
|
85
|
-
def press(opts)
|
86
|
-
args = opts.select { |k, _v| %i(element x y).include? k }
|
87
|
-
args = args_with_ele_ref(args)
|
88
|
-
args[:pressure] = opts.delete(:pressure) unless opts[:pressure].nil?
|
89
|
-
chain_method(:press, args)
|
90
|
-
end
|
91
|
-
|
92
|
-
# Remove a finger from the screen.
|
93
|
-
#
|
94
|
-
# @param opts [Hash] Options
|
95
|
-
# @option opts [WebDriver::Element] :element (Optional) Element to release from.
|
96
|
-
# @option opts [integer] :x x co-ordinate to release from
|
97
|
-
# @option opts [integer] :y y co-ordinate to release from
|
98
|
-
def release(opts = nil)
|
99
|
-
args = args_with_ele_ref(opts) if opts
|
100
|
-
chain_method(:release, args)
|
101
|
-
end
|
102
|
-
|
103
|
-
# Touch a point on the screen.
|
104
|
-
# Alternatively, you can use +press(...).release.perform+ instead of +tap(...).perform+.
|
105
|
-
#
|
106
|
-
# @param opts [Hash] Options
|
107
|
-
# @option opts [WebDriver::Element] :element (Optional) Element to restrict scope too.
|
108
|
-
# @option opts [integer] :x x co-ordinate to tap
|
109
|
-
# @option opts [integer] :y y co-ordinate to tap
|
110
|
-
# @option opts [integer] :fingers how many fingers to tap with (Default 1)
|
111
|
-
def tap(opts)
|
112
|
-
opts[:count] = opts.delete(:fingers) if opts[:fingers]
|
113
|
-
opts[:count] ||= 1
|
114
|
-
args = args_with_ele_ref opts
|
115
|
-
chain_method(:tap, args)
|
116
|
-
end
|
117
|
-
|
118
|
-
# Double tap an element on the screen
|
119
|
-
#
|
120
|
-
# @param opts [Hash] Options
|
121
|
-
# @option opts [WebDriver::Element] :element (Optional) Element to restrict scope too.
|
122
|
-
# @option opts [integer] :x x co-ordinate to tap
|
123
|
-
# @option opts [integer] :y y co-ordinate to tap
|
124
|
-
|
125
|
-
def double_tap(opts)
|
126
|
-
args = opts.select { |k, _v| %i(element x y).include? k }
|
127
|
-
args = args_with_ele_ref(args)
|
128
|
-
chain_method(:doubleTap, args) # doubleTap is what the appium server expects
|
129
|
-
end
|
130
|
-
|
131
|
-
# Two finger tap an element on the screen
|
132
|
-
#
|
133
|
-
# @param opts [Hash] Options
|
134
|
-
# @option opts [WebDriver::Element] :element (Optional) Element to restrict scope too.
|
135
|
-
# @option opts [integer] :x x co-ordinate to tap
|
136
|
-
# @option opts [integer] :y y co-ordinate to tap
|
137
|
-
def two_finger_tap(opts)
|
138
|
-
args = opts.select { |k, _v| %i(element x y).include? k }
|
139
|
-
args = args_with_ele_ref(args)
|
140
|
-
chain_method(:twoFingerTap, args) # twoFingerTap is what the appium server expects
|
141
|
-
end
|
142
|
-
|
143
|
-
# Pause for a number of milliseconds before the next action
|
144
|
-
# @param milliseconds [integer] Number of milliseconds to pause for
|
145
|
-
def wait(milliseconds)
|
146
|
-
args = { ms: milliseconds }
|
147
|
-
chain_method(:wait, args)
|
148
|
-
end
|
149
|
-
|
150
|
-
# Convenience method to perform a swipe.
|
151
|
-
#
|
152
|
-
# @param opts [Hash] Options
|
153
|
-
# @option opts [int] :start_x Where to start swiping, on the x axis. Default 0.
|
154
|
-
# @option opts [int] :start_y Where to start swiping, on the y axis. Default 0.
|
155
|
-
# @option opts [int] :end_x Move to the end, on the x axis. Default 0.
|
156
|
-
# @option opts [int] :end_y Move to the end, on the y axis. Default 0.
|
157
|
-
# @option opts [int] :duration How long the actual swipe takes to complete in milliseconds. Default 200.
|
158
|
-
def swipe(opts)
|
159
|
-
start_x = opts.fetch :start_x, 0
|
160
|
-
start_y = opts.fetch :start_y, 0
|
161
|
-
end_x = opts.fetch :end_x, 0
|
162
|
-
end_y = opts.fetch :end_y, 0
|
163
|
-
|
164
|
-
duration = opts.fetch :duration, 200
|
165
|
-
|
166
|
-
press x: start_x, y: start_y
|
167
|
-
wait(duration) if duration
|
168
|
-
move_to x: end_x, y: end_y
|
169
|
-
|
170
|
-
release
|
171
|
-
|
172
|
-
self
|
173
|
-
end
|
174
|
-
|
175
|
-
# Ask the driver to perform all actions in this action chain.
|
176
|
-
def perform
|
177
|
-
@driver.touch_actions @actions
|
178
|
-
@actions.clear
|
179
|
-
self
|
180
|
-
end
|
181
|
-
|
182
|
-
# Does nothing, currently.
|
183
|
-
def cancel
|
184
|
-
@actions << { action: cancel }
|
185
|
-
@driver.touch_actions @actions
|
186
|
-
self
|
187
|
-
end
|
188
|
-
|
189
|
-
private
|
190
|
-
|
191
|
-
def chain_method(method, args = nil)
|
192
|
-
action = args ? { action: method, options: args } : { action: method }
|
193
|
-
@actions << action
|
194
|
-
self
|
195
|
-
end
|
196
|
-
|
197
|
-
def args_with_ele_ref(args)
|
198
|
-
args[:element] = args[:element].ref if args.key? :element
|
199
|
-
args
|
200
|
-
end
|
201
|
-
end # class TouchAction
|
202
|
-
end # module Core
|
203
|
-
end # module Appium
|
@@ -1,44 +0,0 @@
|
|
1
|
-
# frozen_string_literal: true
|
2
|
-
|
3
|
-
# Licensed under the Apache License, Version 2.0 (the "License");
|
4
|
-
# you may not use this file except in compliance with the License.
|
5
|
-
# You may obtain a copy of the License at
|
6
|
-
#
|
7
|
-
# http://www.apache.org/licenses/LICENSE-2.0
|
8
|
-
#
|
9
|
-
# Unless required by applicable law or agreed to in writing, software
|
10
|
-
# distributed under the License is distributed on an "AS IS" BASIS,
|
11
|
-
# WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
|
12
|
-
# See the License for the specific language governing permissions and
|
13
|
-
# limitations under the License.
|
14
|
-
|
15
|
-
module Appium
|
16
|
-
module Core
|
17
|
-
module Ios
|
18
|
-
module Uiautomation
|
19
|
-
module Device
|
20
|
-
def self.add_methods
|
21
|
-
# UiAutomation, Override included method in bridge
|
22
|
-
::Appium::Core::Device.add_endpoint_method(:hide_keyboard) do
|
23
|
-
def hide_keyboard(close_key = nil, strategy = nil)
|
24
|
-
option = {}
|
25
|
-
|
26
|
-
option[:key] = close_key || 'Done' # default to Done key.
|
27
|
-
option[:strategy] = strategy || :pressKey # default to pressKey
|
28
|
-
|
29
|
-
execute :hide_keyboard, {}, option
|
30
|
-
end
|
31
|
-
end
|
32
|
-
|
33
|
-
# UiAutomation, Override included method in bridge
|
34
|
-
::Appium::Core::Device.add_endpoint_method(:background_app) do
|
35
|
-
def background_app(duration = 0)
|
36
|
-
execute :background_app, {}, seconds: duration
|
37
|
-
end
|
38
|
-
end
|
39
|
-
end
|
40
|
-
end # module Device
|
41
|
-
end # module Uiautomation
|
42
|
-
end # module Ios
|
43
|
-
end # module Core
|
44
|
-
end # module Appium
|
@@ -1,34 +0,0 @@
|
|
1
|
-
# frozen_string_literal: true
|
2
|
-
|
3
|
-
# Licensed under the Apache License, Version 2.0 (the "License");
|
4
|
-
# you may not use this file except in compliance with the License.
|
5
|
-
# You may obtain a copy of the License at
|
6
|
-
#
|
7
|
-
# http://www.apache.org/licenses/LICENSE-2.0
|
8
|
-
#
|
9
|
-
# Unless required by applicable law or agreed to in writing, software
|
10
|
-
# distributed under the License is distributed on an "AS IS" BASIS,
|
11
|
-
# WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
|
12
|
-
# See the License for the specific language governing permissions and
|
13
|
-
# limitations under the License.
|
14
|
-
|
15
|
-
module Appium
|
16
|
-
module Core
|
17
|
-
module Ios
|
18
|
-
module Uiautomation
|
19
|
-
# @private
|
20
|
-
# class_eval inside a method because class Selenium::WebDriver::Element
|
21
|
-
# will trigger as soon as the file is required. in contrast a method
|
22
|
-
# will trigger only when invoked.
|
23
|
-
def self.patch_webdriver_element
|
24
|
-
::Selenium::WebDriver::Element.class_eval do
|
25
|
-
# Cross platform way of entering text into a textfield
|
26
|
-
def type(text, driver)
|
27
|
-
driver.execute_script %(au.getElement('#{ref}').setValue('#{text}');)
|
28
|
-
end # def type
|
29
|
-
end # Selenium::WebDriver::Element.class_eval
|
30
|
-
end # def patch_webdriver_element
|
31
|
-
end # module Uiautomation
|
32
|
-
end # module Ios
|
33
|
-
end # module Core
|
34
|
-
end # module Appium
|