appium-webdriveragent 5.13.2 → 5.13.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.
package/CHANGELOG.md
CHANGED
|
@@ -1,3 +1,10 @@
|
|
|
1
|
+
## [5.13.3](https://github.com/appium/WebDriverAgent/compare/v5.13.2...v5.13.3) (2023-11-10)
|
|
2
|
+
|
|
3
|
+
|
|
4
|
+
### Bug Fixes
|
|
5
|
+
|
|
6
|
+
* unrecognized selector sent to instance 0x2829adb20 error in clear ([#809](https://github.com/appium/WebDriverAgent/issues/809)) ([79832bc](https://github.com/appium/WebDriverAgent/commit/79832bc6c69e289091fbbb97aee6a1f1d17ca4c3))
|
|
7
|
+
|
|
1
8
|
## [5.13.2](https://github.com/appium/WebDriverAgent/compare/v5.13.1...v5.13.2) (2023-11-06)
|
|
2
9
|
|
|
3
10
|
|
|
@@ -143,7 +143,12 @@
|
|
|
143
143
|
do {
|
|
144
144
|
if (retry >= MAX_CLEAR_RETRIES - 1) {
|
|
145
145
|
// Last chance retry. Tripple-tap the field to select its content
|
|
146
|
-
|
|
146
|
+
|
|
147
|
+
if ([self respondsToSelector:@selector(tapWithNumberOfTaps:numberOfTouches:)]) {
|
|
148
|
+
// e.g. tvOS 17 raised unrecognized selector error for XCUIElementTypeSearchField
|
|
149
|
+
// while following typeText worked.
|
|
150
|
+
[self tapWithNumberOfTaps:3 numberOfTouches:1];
|
|
151
|
+
}
|
|
147
152
|
return [FBKeyboard typeText:backspaceDeleteSequence error:error];
|
|
148
153
|
}
|
|
149
154
|
|