sandy
sandy

Reputation: 117

APPIUM:Change app language

Iam automating an android app which is developed in few different langugages. I would like to know whether can we change the app language with desiredcapabilities?i passed the below capabilities. But it dint work.

obj.setCapability(“LOCALE”, “FR”);
obj.setCapability(“LANGUAGE”,“fr”);

Upvotes: 0

Views: 2171

Answers (1)

dmle
dmle

Reputation: 3658

Always check official docs

obj.setCapability(“locale”, “ fr_CA”); obj.setCapability(“language”,“fr”);

Both Sim/Emu-only If it works on random real device, its more like a luck.

Language change available only on API levels 22 and below

Upvotes: 3

Related Questions