appium_lib_core 10.0.0 → 11.0.1
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 +13 -0
- data/Gemfile +1 -1
- data/lib/appium_lib_core/android/device/auth_finger_print.rb +1 -4
- data/lib/appium_lib_core/android/device/clipboard.rb +2 -2
- data/lib/appium_lib_core/android/device/emulator.rb +7 -8
- data/lib/appium_lib_core/android/device/performance.rb +3 -7
- data/lib/appium_lib_core/android/device/screen.rb +1 -3
- data/lib/appium_lib_core/android/device.rb +12 -184
- data/lib/appium_lib_core/common/base/bridge.rb +0 -14
- data/lib/appium_lib_core/common/base/driver.rb +6 -35
- data/lib/appium_lib_core/common/command.rb +1 -45
- data/lib/appium_lib_core/common/device/app_management.rb +1 -1
- data/lib/appium_lib_core/common/device/app_state.rb +2 -2
- data/lib/appium_lib_core/common/device/device.rb +3 -2
- data/lib/appium_lib_core/common/device/device_lock.rb +3 -3
- data/lib/appium_lib_core/common/device/keyboard.rb +4 -5
- data/lib/appium_lib_core/common/device/keyevent.rb +3 -3
- data/lib/appium_lib_core/common/log.rb +4 -4
- data/lib/appium_lib_core/common/ws/websocket.rb +1 -1
- data/lib/appium_lib_core/ios/device/clipboard.rb +2 -2
- data/lib/appium_lib_core/ios/device.rb +2 -2
- data/lib/appium_lib_core/ios/xcuitest/device.rb +4 -13
- data/lib/appium_lib_core/version.rb +2 -2
- data/sig/lib/appium_lib_core/common/base/driver.rbs +1 -5
- metadata +3 -7
- data/lib/appium_lib_core/android/device/network.rb +0 -71
- data/lib/appium_lib_core/common/base/has_network_connection.rb +0 -56
- data/sig/gems/selenium/has_web_storage.rbs +0 -8
- data/sig/lib/appium_lib_core/common/base/has_network_connection.rbs +0 -19
@@ -1,71 +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 Android
|
18
|
-
module Device
|
19
|
-
module Network
|
20
|
-
def self.add_methods
|
21
|
-
::Appium::Core::Device.add_endpoint_method(:get_network_connection) do
|
22
|
-
def get_network_connection
|
23
|
-
::Appium::Logger.warn "[DEPRECATION] Please use 'mobile: getConnectivity' extension instead"
|
24
|
-
|
25
|
-
execute :get_network_connection
|
26
|
-
end
|
27
|
-
end
|
28
|
-
|
29
|
-
::Appium::Core::Device.add_endpoint_method(:toggle_wifi) do
|
30
|
-
def toggle_wifi
|
31
|
-
::Appium::Logger.warn "[DEPRECATION] Please use 'mobile: setConnectivity' extension instead"
|
32
|
-
|
33
|
-
execute :toggle_wifi
|
34
|
-
end
|
35
|
-
end
|
36
|
-
|
37
|
-
::Appium::Core::Device.add_endpoint_method(:toggle_data) do
|
38
|
-
def toggle_data
|
39
|
-
::Appium::Logger.warn "[DEPRECATION] Please use 'mobile: setConnectivity' extension instead"
|
40
|
-
|
41
|
-
execute :toggle_data
|
42
|
-
end
|
43
|
-
end
|
44
|
-
|
45
|
-
::Appium::Core::Device.add_endpoint_method(:set_network_connection) do
|
46
|
-
def set_network_connection(mode)
|
47
|
-
::Appium::Logger.warn "[DEPRECATION] Please use 'mobile: setConnectivity' extension instead"
|
48
|
-
|
49
|
-
# same as ::Selenium::WebDriver::DriverExtensions::HasNetworkConnection
|
50
|
-
# But this method accept number
|
51
|
-
connection_type = { airplane_mode: 1, wifi: 2, data: 4, all: 6, none: 0 }
|
52
|
-
type = connection_type.key?(mode) ? connection_type[mode] : mode.to_i
|
53
|
-
|
54
|
-
execute :set_network_connection, {}, type: type
|
55
|
-
end
|
56
|
-
end
|
57
|
-
|
58
|
-
::Appium::Core::Device.add_endpoint_method(:toggle_airplane_mode) do
|
59
|
-
def toggle_airplane_mode
|
60
|
-
::Appium::Logger.warn "[DEPRECATION] Please use 'mobile: setConnectivity' extension instead"
|
61
|
-
|
62
|
-
execute :toggle_airplane_mode
|
63
|
-
end
|
64
|
-
alias_method :toggle_flight_mode, :toggle_airplane_mode
|
65
|
-
end
|
66
|
-
end
|
67
|
-
end # module Network
|
68
|
-
end # module Device
|
69
|
-
end # module Android
|
70
|
-
end # module Core
|
71
|
-
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
|
-
class Base
|
18
|
-
#
|
19
|
-
# @api private
|
20
|
-
#
|
21
|
-
module HasNetworkConnection
|
22
|
-
def network_connection_type
|
23
|
-
connection_value = @bridge.network_connection
|
24
|
-
|
25
|
-
connection_type = values_to_type[connection_value]
|
26
|
-
|
27
|
-
# In case the connection type is not recognized return the
|
28
|
-
# connection value.
|
29
|
-
connection_type || connection_value
|
30
|
-
end
|
31
|
-
|
32
|
-
def network_connection_type=(connection_type)
|
33
|
-
raise ::Appium::Core::Error::ArgumentError, 'Invalid connection type' unless valid_type? connection_type
|
34
|
-
|
35
|
-
connection_value = type_to_values[connection_type]
|
36
|
-
|
37
|
-
@bridge.network_connection = connection_value
|
38
|
-
end
|
39
|
-
|
40
|
-
private
|
41
|
-
|
42
|
-
def type_to_values
|
43
|
-
{ airplane_mode: 1, wifi: 2, data: 4, all: 6, none: 0 }
|
44
|
-
end
|
45
|
-
|
46
|
-
def values_to_type
|
47
|
-
type_to_values.invert
|
48
|
-
end
|
49
|
-
|
50
|
-
def valid_type?(type)
|
51
|
-
type_to_values.keys.include? type
|
52
|
-
end
|
53
|
-
end
|
54
|
-
end
|
55
|
-
end
|
56
|
-
end
|
@@ -1,19 +0,0 @@
|
|
1
|
-
module Appium
|
2
|
-
module Core
|
3
|
-
class Base
|
4
|
-
module HasNetworkConnection
|
5
|
-
def network_connection_type: () -> untyped
|
6
|
-
|
7
|
-
def network_connection_type=: (untyped connection_type) -> untyped
|
8
|
-
|
9
|
-
private
|
10
|
-
|
11
|
-
def type_to_values: () -> Hash[Symbol, Integer]
|
12
|
-
|
13
|
-
def values_to_type: () -> untyped
|
14
|
-
|
15
|
-
def valid_type?: (untyped type) -> untyped
|
16
|
-
end
|
17
|
-
end
|
18
|
-
end
|
19
|
-
end
|