1
0
mirror of https://pagure.io/fedora-qa/os-autoinst-distri-fedora.git synced 2024-11-11 01:24:20 +00:00

Fix Maps export for Nautilus 47

Signed-off-by: Adam Williamson <awilliam@redhat.com>
This commit is contained in:
Adam Williamson 2024-08-20 15:56:11 -07:00
parent 1cbb7ba2af
commit 1b2dbf1c3d
3 changed files with 18 additions and 5 deletions

View File

@ -0,0 +1,15 @@
{
"area": [
{
"xpos": 718,
"ypos": 632,
"width": 19,
"height": 19,
"type": "match"
}
],
"properties": [],
"tags": [
"maps_export_filename"
]
}

Binary file not shown.

After

Width:  |  Height:  |  Size: 246 KiB

View File

@ -35,11 +35,9 @@ sub run {
# wait for the export screen to appear and settle
assert_and_click("maps_button_export");
wait_still_screen(2);
# Rename the file and export it.
# The name entry field should have focus already, so we are
# just going to rename the proposed file name.
send_key("ctrl-a");
type_very_safely("exported-map.png");
# Rename the file and export it
assert_and_click("maps_export_filename");
type_very_safely("exported-map");
assert_and_click("maps_button_save");
}