appium_lib_core 11.1.0 → 11.1.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 +1 -1
- data/lib/appium_lib_core/common/base/driver.rb +1 -1
- data/lib/appium_lib_core/version.rb +1 -1
- metadata +1 -1
checksums.yaml
CHANGED
@@ -1,7 +1,7 @@
|
|
1
1
|
---
|
2
2
|
SHA256:
|
3
|
-
metadata.gz:
|
4
|
-
data.tar.gz:
|
3
|
+
metadata.gz: 644a3a9d74789b47ce2eec29dbb617beaa63316fb3d6e51a46574109751592d9
|
4
|
+
data.tar.gz: 10eecbb5e22544478cd0de674cee969556f5996dfbb015f0014a7232fd551d41
|
5
5
|
SHA512:
|
6
|
-
metadata.gz:
|
7
|
-
data.tar.gz:
|
6
|
+
metadata.gz: f5c30750553e49bcfef55ccefd3842d006f08fef508a8f966fff7a882e334c5a13b7f34d28497f2ceadc74bdfa4e2b443bf4fca41730ff9eaa024893a184dae7
|
7
|
+
data.tar.gz: 887fe2d2a19f5c277119ab74b511bad76ef6316693c76b9a51c8308d882ab5e591ee068c7d715d73a474eb0788b456c555bba732041be49827e4ee9e4bcdc87b
|
data/CHANGELOG.md
CHANGED
@@ -2,7 +2,7 @@
|
|
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
|
-
## [11.1.0] - 2025-08-08
|
5
|
+
## [11.1.0,11.1.1] - 2025-08-08
|
6
6
|
- Add WebDriver BiDi support. Please set `webSocketUrl` in the capabilities to enable it.
|
7
7
|
- `test/functional/android/webdriver/bidi_test.rb` can be an example usage.
|
8
8
|
- Older versions of the Selenium Ruby bindings may raise exceptions due to missing dependencies.
|
@@ -81,7 +81,7 @@ module Appium
|
|
81
81
|
|
82
82
|
raise ::Appium::Core::Error::ArgumentError, "Unable to create a driver with parameters: #{opts}" unless opts.empty?
|
83
83
|
|
84
|
-
@has_bidi =
|
84
|
+
@has_bidi = capabilities && capabilities['webSocketUrl'] ? true : false
|
85
85
|
bridge_clzz = @has_bidi ? ::Appium::Core::Base::BiDiBridge : ::Appium::Core::Base::Bridge
|
86
86
|
bridge = bridge_clzz.new(**bridge_opts)
|
87
87
|
|