Comparing AI Coding Assistants
In the rapidly evolving landscape of AI-powered coding assistants, developers are presented with a variety of options. But which tool truly stands out?
While testing your app, its common that you want to test it under different locales as part of your automation strategy.
Be it on real devices or emulators this used to be quite simple to do before Android API 29
Simply running this adb command would let you change the locale easily:
adb shell am broadcast -a com.android.intent.action.SET_LOCALE --es com.android.intent.extra.LOCALE en_US com.android.customlocale2
The reason this worked, is because emulators were shipped with the CustomLocale app, which could be sent the previous command and it would set the desired locale for you. But this app is no longer provided and is incompatible with Android versions past 8.
After spending hours looking everywhere, I couldn’t find a similar solution, but it seems that Appium manages to change the device locale.
We don’t use Appium as part of our automation strategy, we use Calabash, which certainly has fallen behind in features, but we don’t want to change the whole infrastructure right now. So the question was, how does Appium achieve this? And can we benefit from it?
They use Appium Settings for this end. This app, like Custom Locale used to do, lets you directly interact with certain system settings, like enabling / disabling wifi, reading received notifications, or changing the device locale.
So then all you need to do is install Appium Settings in the device under test and run these adb commands:
First we enable changing system settings though Appium Settings
adb shell pm grant io.appium.settings android.permission.CHANGE_CONFIGURATION
Then we can change the desired country and language
adb shell am broadcast -a io.appium.settings.locale -n io.appium.settings/.receivers.LocaleSettingReceiver --es lang en --es country US
You can install the app in every test or a more optimal way could be, if you use docker, to perform this when you create your emulator docker images so they already come installed with Appium Settings.
In the rapidly evolving landscape of AI-powered coding assistants, developers are presented with a variety of options. But which tool truly stands out?
While testing your app, its common that you want to test it under different locales as part of your automation strategy. Lets see how to do it.
So what can I say that hasn’t been said about 2020? That it has been a great year so far! Wait, what? Yes, in retrospective and very selfishly it has been a ...
If appium can’t retrieve the element hierarchy on an iOS app for whatever reason, try one of these methods:
Here’s a little useful snippet I found to wait for a node to be present in the selenium grid’s console.
If appium can’t retrieve the element hierarchy on an iOS app for whatever reason, try one of these methods:
For a month and two weeks now, I’ve been having less and less time to do much beside changing diapers. If I can squeeze a bit of time into my hobbies, I have...
So I’ve been using Linux here and there for many many years, but never used it as a daily driver. On my current work, we use Linux machines a lot, both physi...