appium-webdriveragent 5.10.0 → 5.10.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.
package/CHANGELOG.md CHANGED
@@ -1,3 +1,10 @@
1
+ ## [5.10.1](https://github.com/appium/WebDriverAgent/compare/v5.10.0...v5.10.1) (2023-10-05)
2
+
3
+
4
+ ### Miscellaneous Chores
5
+
6
+ * Remove the hardcoded keyboard wait delay from handleKeys ([#784](https://github.com/appium/WebDriverAgent/issues/784)) ([f043d67](https://github.com/appium/WebDriverAgent/commit/f043d67dd90fbfca00b8cf53ccae63dbd67fa150))
7
+
1
8
  ## [5.10.0](https://github.com/appium/WebDriverAgent/compare/v5.9.1...v5.10.0) (2023-09-25)
2
9
 
3
10
 
@@ -557,11 +557,6 @@
557
557
  {
558
558
  NSString *textToType = [request.arguments[@"value"] componentsJoinedByString:@""];
559
559
  NSUInteger frequency = [request.arguments[@"frequency"] unsignedIntegerValue] ?: [FBConfiguration maxTypingFrequency];
560
- if (![FBKeyboard waitUntilVisibleForApplication:request.session.activeApplication
561
- timeout:1
562
- error:nil]) {
563
- [FBLogger log:@"The on-screen keyboard seems to not exist. Continuing with typing anyway"];
564
- }
565
560
  NSError *error;
566
561
  if (![FBKeyboard typeText:textToType frequency:frequency error:&error]) {
567
562
  return FBResponseWithStatus([FBCommandStatus invalidElementStateErrorWithMessage:error.description
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "appium-webdriveragent",
3
- "version": "5.10.0",
3
+ "version": "5.10.1",
4
4
  "description": "Package bundling WebDriverAgent",
5
5
  "main": "./build/index.js",
6
6
  "scripts": {