appium_lib_core 9.5.2 → 11.0.0

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.
Files changed (31) hide show
  1. checksums.yaml +4 -4
  2. data/CHANGELOG.md +12 -4
  3. data/Gemfile +2 -2
  4. data/README.md +2 -2
  5. data/lib/appium_lib_core/android/device/auth_finger_print.rb +1 -4
  6. data/lib/appium_lib_core/android/device/clipboard.rb +2 -2
  7. data/lib/appium_lib_core/android/device/emulator.rb +7 -8
  8. data/lib/appium_lib_core/android/device/performance.rb +3 -7
  9. data/lib/appium_lib_core/android/device/screen.rb +1 -3
  10. data/lib/appium_lib_core/android/device.rb +12 -184
  11. data/lib/appium_lib_core/common/base/bridge.rb +1 -15
  12. data/lib/appium_lib_core/common/base/driver.rb +6 -34
  13. data/lib/appium_lib_core/common/command.rb +1 -45
  14. data/lib/appium_lib_core/common/device/app_management.rb +1 -1
  15. data/lib/appium_lib_core/common/device/app_state.rb +2 -2
  16. data/lib/appium_lib_core/common/device/device.rb +3 -2
  17. data/lib/appium_lib_core/common/device/device_lock.rb +3 -3
  18. data/lib/appium_lib_core/common/device/keyboard.rb +4 -5
  19. data/lib/appium_lib_core/common/device/keyevent.rb +3 -3
  20. data/lib/appium_lib_core/common/log.rb +4 -4
  21. data/lib/appium_lib_core/common/ws/websocket.rb +1 -1
  22. data/lib/appium_lib_core/driver.rb +12 -12
  23. data/lib/appium_lib_core/ios/device/clipboard.rb +2 -2
  24. data/lib/appium_lib_core/ios/device.rb +2 -2
  25. data/lib/appium_lib_core/ios/xcuitest/device.rb +4 -13
  26. data/lib/appium_lib_core/version.rb +2 -2
  27. data/sig/lib/appium_lib_core/common/base/driver.rbs +1 -3
  28. metadata +3 -6
  29. data/lib/appium_lib_core/android/device/network.rb +0 -71
  30. data/lib/appium_lib_core/common/base/has_network_connection.rb +0 -56
  31. data/sig/lib/appium_lib_core/common/base/has_network_connection.rbs +0 -19
metadata CHANGED
@@ -1,14 +1,14 @@
1
1
  --- !ruby/object:Gem::Specification
2
2
  name: appium_lib_core
3
3
  version: !ruby/object:Gem::Version
4
- version: 9.5.2
4
+ version: 11.0.0
5
5
  platform: ruby
6
6
  authors:
7
7
  - Kazuaki MATSUO
8
8
  autorequire:
9
9
  bindir: exe
10
10
  cert_chain: []
11
- date: 2025-01-30 00:00:00.000000000 Z
11
+ date: 2025-03-21 00:00:00.000000000 Z
12
12
  dependencies:
13
13
  - !ruby/object:Gem::Dependency
14
14
  name: faye-websocket
@@ -61,7 +61,6 @@ files:
61
61
  - lib/appium_lib_core/android/device/auth_finger_print.rb
62
62
  - lib/appium_lib_core/android/device/clipboard.rb
63
63
  - lib/appium_lib_core/android/device/emulator.rb
64
- - lib/appium_lib_core/android/device/network.rb
65
64
  - lib/appium_lib_core/android/device/performance.rb
66
65
  - lib/appium_lib_core/android/device/screen.rb
67
66
  - lib/appium_lib_core/android/espresso/bridge.rb
@@ -79,7 +78,6 @@ files:
79
78
  - lib/appium_lib_core/common/base/driver.rb
80
79
  - lib/appium_lib_core/common/base/driver_settings.rb
81
80
  - lib/appium_lib_core/common/base/has_location.rb
82
- - lib/appium_lib_core/common/base/has_network_connection.rb
83
81
  - lib/appium_lib_core/common/base/http_default.rb
84
82
  - lib/appium_lib_core/common/base/platform.rb
85
83
  - lib/appium_lib_core/common/base/remote_status.rb
@@ -145,7 +143,6 @@ files:
145
143
  - sig/lib/appium_lib_core/common/base/driver.rbs
146
144
  - sig/lib/appium_lib_core/common/base/driver_settings.rbs
147
145
  - sig/lib/appium_lib_core/common/base/has_location.rbs
148
- - sig/lib/appium_lib_core/common/base/has_network_connection.rbs
149
146
  - sig/lib/appium_lib_core/common/base/http_default.rbs
150
147
  - sig/lib/appium_lib_core/common/base/platform.rbs
151
148
  - sig/lib/appium_lib_core/common/base/remote_status.rbs
@@ -177,7 +174,7 @@ required_rubygems_version: !ruby/object:Gem::Requirement
177
174
  - !ruby/object:Gem::Version
178
175
  version: '0'
179
176
  requirements: []
180
- rubygems_version: 3.5.9
177
+ rubygems_version: 3.4.10
181
178
  signing_key:
182
179
  specification_version: 4
183
180
  summary: Minimal Ruby library for Appium.
@@ -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