appium_lib_core 12.2.0 → 13.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.
- checksums.yaml +4 -4
- data/CHANGELOG.md +4 -1
- data/lib/appium_lib_core/device.rb +0 -20
- data/lib/appium_lib_core/version.rb +2 -2
- metadata +2 -2
checksums.yaml
CHANGED
|
@@ -1,7 +1,7 @@
|
|
|
1
1
|
---
|
|
2
2
|
SHA256:
|
|
3
|
-
metadata.gz:
|
|
4
|
-
data.tar.gz:
|
|
3
|
+
metadata.gz: 5da273adb6ddfbb70989718cc778ea9bac3714396f36f70e3de3cc65293dcd7b
|
|
4
|
+
data.tar.gz: ac1df239bf0a69a32dc14e0c81b49f295f29dfe465630c36dd93bf51dd135a75
|
|
5
5
|
SHA512:
|
|
6
|
-
metadata.gz:
|
|
7
|
-
data.tar.gz:
|
|
6
|
+
metadata.gz: 78d693f951a61e7261a7f3b792780a06b488532c07fd67f7b89d0b8afbf378013cbfdf59a2f1f7eca2259fccd9991fa973d34944807c85fae652ca9367af96ef
|
|
7
|
+
data.tar.gz: 030a377ea6bb2bd102e5f69faf5f22297593050db31346f951b3a8e39d5735b9c10ceb98dddf6871a28e0cb6d47b4fc82b7fbe941668e3f07edf1d802b5084a2
|
data/CHANGELOG.md
CHANGED
|
@@ -2,7 +2,10 @@
|
|
|
2
2
|
All notable changes to this project will be documented in this file.
|
|
3
3
|
Read `release_notes.md` for commit level details.
|
|
4
4
|
|
|
5
|
-
## [
|
|
5
|
+
## [13.0.0] - 2026-05-10
|
|
6
|
+
- Remove extenced methods in `Appium::Core::Base::Driver` only for the appium_lib - which is covered by the library.
|
|
7
|
+
|
|
8
|
+
## [12.2.0] - 2026-04-19
|
|
6
9
|
- Add validation for direct connect URL when `direct_connect` capability is `true`.
|
|
7
10
|
|
|
8
11
|
## [12.1.0] - 2026-03-21
|
|
@@ -20,26 +20,6 @@ module Appium
|
|
|
20
20
|
class << self
|
|
21
21
|
def extended(_mod)
|
|
22
22
|
extend_webdriver_with_forwardable
|
|
23
|
-
|
|
24
|
-
# Compatibility for appium_lib. Below command are extended by `extend Appium::Core::Deivce`in appium_lib.
|
|
25
|
-
# TODO: Will remove
|
|
26
|
-
[
|
|
27
|
-
:take_element_screenshot, :save_viewport_screenshot,
|
|
28
|
-
:lock, :device_locked?, :unlock,
|
|
29
|
-
:hide_keyboard, :is_keyboard_shown,
|
|
30
|
-
:ime_activate, :ime_available_engines, :ime_active_engine, :ime_activated, :ime_deactivate,
|
|
31
|
-
:get_settings, :update_settings,
|
|
32
|
-
:within_context, :current_context, :available_contexts, :set_context,
|
|
33
|
-
:push_file, :pull_file, :pull_folder,
|
|
34
|
-
:keyevent, :press_keycode, :long_press_keycode,
|
|
35
|
-
:match_images_features, :find_image_occurrence, :get_images_similarity, :compare_images,
|
|
36
|
-
:app_strings, :background_app,
|
|
37
|
-
:install_app, :remove_app, :app_installed?, :activate_app, :terminate_app,
|
|
38
|
-
:app_state,
|
|
39
|
-
:stop_recording_screen, :stop_and_save_recording_screen,
|
|
40
|
-
:shake, :device_time,
|
|
41
|
-
:execute_driver, :execute_cdp
|
|
42
|
-
].each(&method(:delegate_from_appium_driver))
|
|
43
23
|
end
|
|
44
24
|
|
|
45
25
|
# def extended
|
|
@@ -14,7 +14,7 @@
|
|
|
14
14
|
|
|
15
15
|
module Appium
|
|
16
16
|
module Core
|
|
17
|
-
VERSION = '
|
|
18
|
-
DATE = '2026-
|
|
17
|
+
VERSION = '13.0.0' unless defined? ::Appium::Core::VERSION
|
|
18
|
+
DATE = '2026-05-10' unless defined? ::Appium::Core::DATE
|
|
19
19
|
end
|
|
20
20
|
end
|
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:
|
|
4
|
+
version: 13.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: 2026-
|
|
11
|
+
date: 2026-05-11 00:00:00.000000000 Z
|
|
12
12
|
dependencies:
|
|
13
13
|
- !ruby/object:Gem::Dependency
|
|
14
14
|
name: selenium-webdriver
|