1
0
mirror of https://pagure.io/fedora-qa/os-autoinst-distri-fedora.git synced 2024-11-25 15:23:08 +00:00

Fix errors.

This commit is contained in:
Lukas Ruzicka 2019-05-09 15:35:33 +02:00
parent 5da31cbd4d
commit d2f4e9e454
31 changed files with 215 additions and 8 deletions

Binary file not shown.

After

Width:  |  Height:  |  Size: 23 KiB

View File

@ -0,0 +1,15 @@
{
"properties": [],
"tags": [
"dragon_launch"
],
"area": [
{
"xpos": 51,
"ypos": 364,
"width": 22,
"height": 20,
"type": "match"
}
]
}

Binary file not shown.

After

Width:  |  Height:  |  Size: 478 KiB

View File

@ -0,0 +1,15 @@
{
"area": [
{
"ypos": 416,
"xpos": 672,
"type": "match",
"height": 14,
"width": 70
}
],
"properties": [],
"tags": [
"firefox_close_tabs"
]
}

Binary file not shown.

After

Width:  |  Height:  |  Size: 157 KiB

View File

@ -0,0 +1,15 @@
{
"properties": [],
"tags": [
"firefox_runs"
],
"area": [
{
"xpos": 513,
"ypos": 7,
"width": 48,
"height": 17,
"type": "match"
}
]
}

Binary file not shown.

After

Width:  |  Height:  |  Size: 168 KiB

View File

@ -0,0 +1,15 @@
{
"area": [
{
"xpos": 227,
"ypos": 79,
"height": 21,
"width": 30,
"type": "match"
}
],
"properties": [],
"tags": [
"kcolorchooser_launch"
]
}

Binary file not shown.

After

Width:  |  Height:  |  Size: 49 KiB

View File

@ -0,0 +1,15 @@
{
"area": [
{
"type": "match",
"width": 34,
"height": 18,
"ypos": 11,
"xpos": 356
}
],
"properties": [],
"tags": [
"kruler_launch"
]
}

Binary file not shown.

After

Width:  |  Height:  |  Size: 10 KiB

View File

@ -0,0 +1,15 @@
{
"properties": [],
"tags": [
"ktorrent_launch"
],
"area": [
{
"xpos": 57,
"ypos": 242,
"width": 12,
"height": 18,
"type": "match"
}
]
}

Binary file not shown.

After

Width:  |  Height:  |  Size: 504 KiB

View File

@ -0,0 +1,15 @@
{
"area": [
{
"type": "match",
"height": 24,
"width": 26,
"ypos": 3,
"xpos": 4
}
],
"properties": [],
"tags": [
"mahjong_launch"
]
}

Binary file not shown.

After

Width:  |  Height:  |  Size: 463 KiB

View File

@ -0,0 +1,15 @@
{
"area": [
{
"width": 50,
"height": 17,
"type": "match",
"xpos": 181,
"ypos": 6
}
],
"properties": [],
"tags": [
"minesweeper_launch"
]
}

Binary file not shown.

After

Width:  |  Height:  |  Size: 34 KiB

View File

@ -0,0 +1,15 @@
{
"area": [
{
"xpos": 3,
"ypos": 5,
"width": 26,
"height": 17,
"type": "match"
}
],
"properties": [],
"tags": [
"patience_launch"
]
}

Binary file not shown.

After

Width:  |  Height:  |  Size: 320 KiB

View File

@ -0,0 +1,15 @@
{
"properties": [],
"tags": [
"users_launch"
],
"area": [
{
"xpos": 50,
"ypos": 361,
"width": 26,
"height": 26,
"type": "match"
}
]
}

Binary file not shown.

After

Width:  |  Height:  |  Size: 496 KiB

View File

@ -0,0 +1,15 @@
{
"properties": [],
"tags": [
"users_runs"
],
"area": [
{
"xpos": 468,
"ypos": 116,
"width": 96,
"height": 19,
"type": "match"
}
]
}

Binary file not shown.

After

Width:  |  Height:  |  Size: 253 KiB

View File

@ -10,7 +10,7 @@ sub run {
my $mode = get_var('MODE');
# Start the application
if ($mode eq '[ast') {
if ($mode eq 'fast') {
start_with_command 'juk';
}
else {

View File

@ -7,9 +7,15 @@ use utils;
sub run {
my $self = shift;
my $mode = get_var('MODE');
# Start the application
start_with_launcher('menu_tacticsgames', 'menu_applications','menu_games');
if ($mode eq 'fast') {
start_with_command 'kmines';
}
else {
start_with_launcher('menu_tacticsgames', 'menu_applications','menu_games');
}
# Games are hidden even deeper in menus, so let us fix that here.
assert_and_click 'minesweeper_launch';
wait_still_screen 2;

View File

@ -7,9 +7,15 @@ use utils;
sub run {
my $self = shift;
my $mode = get_var('MODE');
# Start the application
start_with_launcher('netcon_launch','menu_applications','menu_settings');
if ($mode eq 'fast') {
start_with_command 'netcon';
}
else {
start_with_launcher('netcon_launch','menu_applications','menu_settings');
}
# Check that it is started
assert_screen 'netcon_runs';
# Close the application

View File

@ -7,9 +7,15 @@ use utils;
sub run {
my $self = shift;
my $mode = get_var('MODE');
# Start the application
start_with_launcher('menu_cardgames', 'menu_applications','menu_games');
if ($mode eq 'fast') {
start_with_command 'kpatience';
}
else {
start_with_launcher('menu_cardgames', 'menu_applications','menu_games');
}
# Games are hidden even deeper in menus, so let us fix that here.
assert_and_click 'patience_launch';
wait_still_screen 2;

View File

@ -7,9 +7,15 @@ use utils;
sub run {
my $self = shift;
my $mode = get_var('MODE');
# Start the application
start_with_launcher('pimexporter_launch','menu_applications','menu_internet');
if ($mode eq 'fast') {
start_with_command 'pim';
}
else {
start_with_launcher('pimexporter_launch','menu_applications','menu_internet');
}
# Check that it is started
assert_screen 'pimexporter_runs';
# Close the application

View File

@ -7,9 +7,15 @@ use utils;
sub run {
my $self = shift;
my $mode = get_var('MODE');
# Start the application
start_with_launcher('relnotes_launch','menu_applications','menu_system');
if ($mode eq 'fast') {
start_with_command 'release notes';
}
else {
start_with_launcher('relnotes_launch','menu_applications','menu_system');
}
# Check that it is started
assert_screen 'relnotes_runs';
# Close the application

View File

@ -7,9 +7,15 @@ use utils;
sub run {
my $self = shift;
my $mode = get_var('MODE');
# Start the application
start_with_launcher('spectacle_launch','menu_applications','menu_utilities');
if ($mode eq 'fast') {
start_with_command 'spectacle';
}
else {
start_with_launcher('spectacle_launch','menu_applications','menu_utilities');
}
# Check that it is started
assert_screen 'spectacle_runs';
# Close the application

View File

@ -7,9 +7,15 @@ use utils;
sub run {
my $self = shift;
my $mode = get_var('MODE');
# Start the application
start_with_launcher('system_settings_launch','menu_applications','menu_settings');
if ($mode eq 'fast') {
start_with_command 'system settings';
}
else {
start_with_launcher('system_settings_launch','menu_applications','menu_settings');
}
# Check that it is started
assert_screen 'system_settings_runs';
# Close the application