1
0
mirror of https://pagure.io/fedora-qa/os-autoinst-distri-fedora.git synced 2024-11-22 05:53:09 +00:00

Update a needle and fix launching keyboard settings on Japanese

To get to the keyboard/input method settings and add an input
method when doing a Japanese install test, we type 'keyboard',
but in current GNOME 42.beta that doesn't find the right pane.
Typing 'input' does work, though, so let's use that instead.
Also the GDM login needle needed updating.

Signed-off-by: Adam Williamson <awilliam@redhat.com>
This commit is contained in:
Adam Williamson 2022-03-04 17:20:18 -08:00
parent 2da5b6abf4
commit 6544850829
3 changed files with 18 additions and 2 deletions

View File

@ -0,0 +1,16 @@
{
"area": [
{
"xpos": 399,
"width": 73,
"ypos": 415,
"height": 40,
"type": "match"
}
],
"properties": [],
"tags": [
"LANGUAGE-japanese",
"graphical_login_input"
]
}

Binary file not shown.

After

Width:  |  Height:  |  Size: 14 KiB

View File

@ -12,11 +12,11 @@ sub run {
# doesn't do input method selection, and anaconda never has,
# we have to set up the input method manually:
# https://gitlab.gnome.org/GNOME/gnome-shell/-/issues/3749
menu_launch_type "keyboard";
menu_launch_type "input";
unless (check_screen "desktop_add_input_source", 30) {
# first attempt to run this often fails for some reason
check_desktop;
menu_launch_type "keyboard";
menu_launch_type "input";
}
assert_and_click "desktop_add_input_source";
assert_and_click "desktop_input_source_japanese";