mirror of
https://pagure.io/fedora-qa/os-autoinst-distri-fedora.git
synced 2024-11-08 16:54:21 +00:00
c697ca171d
A new app called snapshot (Camera, on the menus) has replaced cheese in F40 (but not F39). Adjust to that. We can simplify this when F39 is out. Signed-off-by: Adam Williamson <awilliam@redhat.com>
34 lines
760 B
Perl
34 lines
760 B
Perl
use base "installedtest";
|
|
use strict;
|
|
use testapi;
|
|
use utils;
|
|
|
|
# This test checks that Camera (snapshot) starts.
|
|
|
|
sub run {
|
|
my $self = shift;
|
|
# FIXME after F39 is stable, drop the old 'cheese' needles
|
|
# and always expect the access dialog
|
|
|
|
# Start the application
|
|
start_with_launcher('apps_menu_camera');
|
|
# Check that is started or we see the camera access dialog
|
|
assert_screen ['apps_run_camera', 'gnome_allow'];
|
|
if (match_has_tag 'gnome_allow') {
|
|
click_lastmatch;
|
|
assert_screen 'apps_run_camera';
|
|
}
|
|
# Register application
|
|
register_application("gnome-snapshot");
|
|
# Close the application
|
|
quit_with_shortcut();
|
|
}
|
|
|
|
sub test_flags {
|
|
return {always_rollback => 1};
|
|
}
|
|
|
|
1;
|
|
|
|
# vim: set sw=4 et:
|