Project

General

Profile

action #42932

Updated by riafarov over 5 years ago

## Motivation 

 Currently, a test for switching keyboard layout is executed as a separate module, though it runs on Welcome screen. This forces _welcome_ and _keyboard_selection_ modules to be dependent on each other. 

 e.g. _welcome_ module is forced to decide if press 'Next' button, depending on whether _keyboard_selection_ module exist in Test Suite or not  

 ```perl 
 send_key $cmd{next} unless get_var('INSTALL_KEYBOARD_LAYOUT'); 
 ``` 

 Move the _switch_keyboard_layout_ test to welcome module to have all the tests related to that page in one place. 

 ## Suggesitons Acceptance Criteria 
 1. `sub switch_keyboard_layout` added to _welcome_ module; 

 ## Acceptance Criteria 
 1. 2. _keyboard_selection module_ does not exist; 
 2. 3. `send_key $cmd{next}` is called without dependence on 'INSTALL_KEYBOARD_LAYOUT' variable.

Back