2022-08-11 13:27:13 +00:00
|
|
|
|
#******************************************************************************
|
|
|
|
|
# Status.im
|
|
|
|
|
#*****************************************************************************/
|
|
|
|
|
#/**
|
|
|
|
|
# * \file test.feature
|
|
|
|
|
# *
|
|
|
|
|
# * \test Status Language Settings
|
|
|
|
|
# * \date August 2022
|
|
|
|
|
# **
|
|
|
|
|
# *****************************************************************************/
|
|
|
|
|
Feature: Status Language Settings
|
|
|
|
|
|
|
|
|
|
As a user I want to change the application language.
|
|
|
|
|
|
|
|
|
|
The following scenarios cover basic language changed validations
|
|
|
|
|
|
|
|
|
|
Background:
|
|
|
|
|
|
|
|
|
|
Given A first time user lands on the status desktop and generates new key
|
2022-11-16 12:06:37 +00:00
|
|
|
|
And the user signs up with username "tester123" and password "TesTEr16843/!@00"
|
|
|
|
|
And the user lands on the signed in app
|
2022-08-11 13:27:13 +00:00
|
|
|
|
When the user opens app settings screen
|
|
|
|
|
And the user clicks on Language & Currency
|
|
|
|
|
|
|
|
|
|
# Each language run takes 30 seconds, so only some of them are enabled until we can parallelize executions
|
2023-07-06 11:10:14 +00:00
|
|
|
|
@mayfail
|
2022-08-11 13:27:13 +00:00
|
|
|
|
Scenario Outline: The user is able to select a specific language and after a restart, the language is kept
|
|
|
|
|
When the user opens the language selector
|
|
|
|
|
And the user selects the language <native>
|
|
|
|
|
Then the application displays <native> as the selected language
|
|
|
|
|
When the user restarts the app
|
2022-10-19 10:39:48 +00:00
|
|
|
|
And the user "tester123" logs in with password "TesTEr16843/!@00"
|
2022-08-11 13:27:13 +00:00
|
|
|
|
Then the user lands on the signed in app
|
|
|
|
|
When the user opens app settings screen
|
|
|
|
|
And the user clicks on Language & Currency
|
|
|
|
|
Then the application displays <native> as the selected language
|
|
|
|
|
Examples:
|
|
|
|
|
| language | native |
|
|
|
|
|
#| English | English |
|
|
|
|
|
| Arabic | العربية |
|
|
|
|
|
#| Bengali | বাংলা |
|
|
|
|
|
#| Chinese (China) | 中文(中國) |
|
2022-09-20 12:22:04 +00:00
|
|
|
|
#| Chinese (Taiwan) | 中文(台灣) |
|
2022-08-11 13:27:13 +00:00
|
|
|
|
#| Dutch | Nederlands |
|
|
|
|
|
#| French | Français |
|
|
|
|
|
#| German | Deutsch |
|
|
|
|
|
#| Hindi | हिन्दी |
|
|
|
|
|
#| Indonesian | Bahasa Indonesia |
|
|
|
|
|
#| Italian | Italiano |
|
2022-09-20 12:22:04 +00:00
|
|
|
|
#| Japanese | 日本語 |
|
2022-08-11 13:27:13 +00:00
|
|
|
|
#| Korean | 한국어 |
|
|
|
|
|
#| Malay | Bahasa Melayu |
|
|
|
|
|
#| Polish | Polski |
|
|
|
|
|
#| Portuguese | Português |
|
2022-09-20 12:22:04 +00:00
|
|
|
|
#| Portuguese (Brazil) | Português (Brasil) |
|
2022-08-11 13:27:13 +00:00
|
|
|
|
#| Russian | Русский |
|
|
|
|
|
#| Spanish | Español |
|
|
|
|
|
#| Spanish (Latin America) | Español (Latinoamerica) |
|
|
|
|
|
#| Spanish (Argentina) | Español (Argentina) |
|
|
|
|
|
#| Tagalog | Tagalog |
|
2022-09-20 12:22:04 +00:00
|
|
|
|
#| Turkish | Türkçe |
|
2022-08-11 13:27:13 +00:00
|
|
|
|
|
|
|
|
|
# Each language run takes 30 seconds, so only some of them are enabled until we can parallelize executions
|
2023-07-06 11:10:14 +00:00
|
|
|
|
@mayfail
|
2022-08-11 13:27:13 +00:00
|
|
|
|
Scenario Outline: The user is able to search and select a specific language and after a restart, the language is kept
|
|
|
|
|
When the user opens the language selector
|
|
|
|
|
And the user searches the language <native>
|
|
|
|
|
And the user selects the language <native>
|
|
|
|
|
Then the application displays <native> as the selected language
|
|
|
|
|
When the user restarts the app
|
2022-10-19 10:39:48 +00:00
|
|
|
|
And the user "tester123" logs in with password "TesTEr16843/!@00"
|
2022-08-11 13:27:13 +00:00
|
|
|
|
Then the user lands on the signed in app
|
|
|
|
|
When the user opens app settings screen
|
|
|
|
|
And the user clicks on Language & Currency
|
|
|
|
|
Then the application displays <native> as the selected language
|
|
|
|
|
Examples:
|
|
|
|
|
| language | native |
|
2022-09-20 12:22:04 +00:00
|
|
|
|
#| English | English |
|
2022-08-11 13:27:13 +00:00
|
|
|
|
#| Arabic | العربية |
|
|
|
|
|
#| Bengali | বাংলা |
|
|
|
|
|
#| Chinese (China) | 中文(中國) |
|
|
|
|
|
#| Chinese (Taiwan) | 中文(台灣) |
|
|
|
|
|
#| Dutch | Nederlands |
|
|
|
|
|
#| French | Français |
|
|
|
|
|
#| German | Deutsch |
|
|
|
|
|
#| Hindi | हिन्दी |
|
|
|
|
|
| Indonesian | Bahasa Indonesia |
|
|
|
|
|
#| Italian | Italiano |
|
|
|
|
|
#| Japanese | 日本語 |
|
|
|
|
|
#| Korean | 한국어 |
|
|
|
|
|
#| Malay | Bahasa Melayu |
|
2022-09-20 12:22:04 +00:00
|
|
|
|
#| Polish | Polski |
|
2022-08-11 13:27:13 +00:00
|
|
|
|
#| Portuguese | Português |
|
|
|
|
|
#| Portuguese (Brazil) | Português (Brasil) |
|
|
|
|
|
#| Russian | Русский |
|
|
|
|
|
#| Spanish | Español |
|
|
|
|
|
#| Spanish (Latin America) | Español (Latinoamerica) |
|
|
|
|
|
#| Spanish (Argentina) | Español (Argentina) |
|
2022-09-20 12:22:04 +00:00
|
|
|
|
#| Tagalog | Tagalog |
|
2022-08-11 13:27:13 +00:00
|
|
|
|
#| Turkish | Türkçe |
|