From 834fffe6dac944a6955f0f5607c49c569a7363d2 Mon Sep 17 00:00:00 2001 From: Mykola Mokhnach Date: Wed, 10 Apr 2024 22:55:43 +0200 Subject: [PATCH] feat: Add the support of `timeZone` capability (#994) --- README.md | 1 + package.json | 2 +- 2 files changed, 2 insertions(+), 1 deletion(-) diff --git a/README.md b/README.md index f220d71f..81833ea9 100644 --- a/README.md +++ b/README.md @@ -189,6 +189,7 @@ Capability Name | Description --- | --- appium:disableSuppressAccessibilityService | Being set to `true` tells the instrumentation process to not suppress accessibility services during the automated test. This might be useful if your automated test needs these services. `false` by default appium:disableWindowAnimation | To avoid flakiness google [recommends](https://developer.android.com/training/testing/espresso/setup#set-up-environment) to disable the window animation of the Android device under test when running espresso test. `true` by default +appium:timeZone | Overrides the current device's time zone since the driver version 2.38.0. This change is preserved until the next override. The time zone identifier must be a valid name from the list of [available time zone identifiers](https://en.wikipedia.org/wiki/List_of_tz_database_time_zones), for example `Europe/Kyiv` ## Settings API diff --git a/package.json b/package.json index 9352382b..d4011038 100644 --- a/package.json +++ b/package.json @@ -73,7 +73,7 @@ ], "dependencies": { "appium-adb": "^12.0.0", - "appium-android-driver": "^9.0.3", + "appium-android-driver": "^9.1.0", "asyncbox": "^3.0.0", "bluebird": "^3.5.0", "io.appium.settings": "^5.7.2",