From e28643c88fb71c04fdcc56cbb30d378532f8c724 Mon Sep 17 00:00:00 2001 From: Simon Meggle Date: Fri, 25 Sep 2020 10:50:55 +0200 Subject: [PATCH 01/12] Fixed Windows tmppath (closes #47) --- CHANGELOG.md | 4 +++- agents/plugins/robotmk | 8 +++++--- 2 files changed, 8 insertions(+), 4 deletions(-) diff --git a/CHANGELOG.md b/CHANGELOG.md index 43f6e83e..bea945b9 100644 --- a/CHANGELOG.md +++ b/CHANGELOG.md @@ -8,7 +8,9 @@ and this project adheres to [Semantic Versioning](https://semver.org/spec/v2.0.0 ## Unreleased -### Added +### Changed + +- Plugin: Set tmpdir on Windows to a fixed path (#47) ## [v0.1.3] - 2020-0-16 ### Added diff --git a/agents/plugins/robotmk b/agents/plugins/robotmk index 89c34f49..85eb6ecb 100755 --- a/agents/plugins/robotmk +++ b/agents/plugins/robotmk @@ -26,7 +26,8 @@ DEFAULTS = { 'nt': { 'agent_data_dir' : 'C:/ProgramData/checkmk/agent', 'agent_cfg_dir' : 'C:/ProgramData/checkmk/agent/config', - 'outputdir' : "str(Path(os.environ['TEMP']).joinpath('robot'))" + 'outputdir' : "C:/Windows/temp", + 'logdir' : "C:/Windows/temp", }, 'posix': { 'agent_data_dir' : '/usr/lib/check_mk_agent', @@ -34,7 +35,8 @@ DEFAULTS = { 'outputdir' : "str('/tmp/robot')" }, 'noarch': { - 'robotmk_yml' : 'robotmk.yml' + 'robotmk_yml' : 'robotmk.yml', + 'enable_logging' : True } } @@ -120,7 +122,7 @@ def get_env_config(): if os.name in ['nt', 'posix']: agent_data_dir = Path(os.environ.setdefault('AGENT_DATA_DIR', DEFAULTS[os.name]['agent_data_dir'])) agent_cfg_dir = Path(os.environ.setdefault('AGENT_CFG_DIR', DEFAULTS[os.name]['agent_cfg_dir'])) - outputdir = Path(os.environ.setdefault('OUTPUTDIR', eval(DEFAULTS[os.name]['outputdir']))) + outputdir = Path(os.environ.setdefault('OUTPUTDIR', DEFAULTS[os.name]['outputdir'])) env_cfg = { 'outputdir' : outputdir, 'robotdir' : agent_data_dir.joinpath('robot'), From 3be514a2ae46f5bd5830900d6be636469295a609 Mon Sep 17 00:00:00 2001 From: Simon Meggle Date: Fri, 25 Sep 2020 11:17:28 +0200 Subject: [PATCH 02/12] Improved logging (closes #48) --- CHANGELOG.md | 1 + agents/plugins/robotmk | 105 +++++++++++++++++++++++++++++------------ 2 files changed, 76 insertions(+), 30 deletions(-) diff --git a/CHANGELOG.md b/CHANGELOG.md index bea945b9..a51ea31e 100644 --- a/CHANGELOG.md +++ b/CHANGELOG.md @@ -11,6 +11,7 @@ and this project adheres to [Semantic Versioning](https://semver.org/spec/v2.0.0 ### Changed - Plugin: Set tmpdir on Windows to a fixed path (#47) +- Improved Logging (#48) ## [v0.1.3] - 2020-0-16 ### Added diff --git a/agents/plugins/robotmk b/agents/plugins/robotmk index 85eb6ecb..30c2e3ec 100755 --- a/agents/plugins/robotmk +++ b/agents/plugins/robotmk @@ -21,18 +21,20 @@ import os import sys import shutil from pathlib import Path +import logging DEFAULTS = { 'nt': { 'agent_data_dir' : 'C:/ProgramData/checkmk/agent', 'agent_cfg_dir' : 'C:/ProgramData/checkmk/agent/config', 'outputdir' : "C:/Windows/temp", - 'logdir' : "C:/Windows/temp", + 'logdir' : "C:/Windows/temp", }, 'posix': { 'agent_data_dir' : '/usr/lib/check_mk_agent', 'agent_cfg_dir' : '/etc/check_mk', - 'outputdir' : "str('/tmp/robot')" + 'outputdir' : "str('/tmp/robot')", + 'logdir' : "/tmp/robotmk.log", }, 'noarch': { 'robotmk_yml' : 'robotmk.yml', @@ -40,14 +42,11 @@ DEFAULTS = { } } -debug = 0 -if '--debug' in sys.argv: - debug = 1 - # outputdir = final path where all outputfiles, logfiles and report files ends. # robotdir = Location of Robot suite files/dirs def start(): - log_debug('############### Starting preparation ###############') + setup_logging() + print_banner() # Default config (+ overrides by env) env_cfg = get_env_config() robotmk_yml = env_cfg.pop('robotmk_yml') @@ -56,7 +55,7 @@ def start(): Path(yml_cfg['outputdir']).mkdir(exist_ok=True) robotdir = Path(yml_cfg.pop('robotdir', None)) if not os.path.exists(robotdir): - log_debug(f"ERROR: {robotdir} does not exist; no suites found to execute. Exiting.") + log_error(f"ERROR: {robotdir} does not exist; no suites found to execute. Exiting.") exit(1) #If no suites are defined we setup an empty suite dict. @@ -67,21 +66,20 @@ def start(): else: yml_cfg.setdefault('suites',{}) if len(yml_cfg['suites']) == 0: - log_debug(f'No suites specified in configuration file -> run all in {robotdir}:') + log_info(f'No suites specified in configuration file -> run all in {robotdir}:') for suite in robotdir.iterdir(): log_debug(suite.name) yml_cfg['suites'].update({suite.name:{}}) for suite,suite_options in yml_cfg['suites'].items(): - log_debug(f'################# Start running suite: {suite} #####################') - log_debug(f'\tStarting robot suite: {robotdir.joinpath(suite)}') + log_info(f'--------- Robot suite: {robotdir.joinpath(suite)} ---------') #Lets test if the file or directory is available if not robotdir.joinpath(suite).exists(): - log_debug(f'tSuite file or directory not found!') + log_warning(f'Suite file or directory not found!') continue if suite_options is None or len(suite_options) == 0: suite_options = {} - log_debug(f'tNo suite_options set; Starting with default suite_options') + log_info(f'No suite_options set; Starting with default suite_options') # Update the suite cfg with global cfg suite_options = apply_global_cfg(suite, suite_options, yml_cfg) @@ -89,6 +87,9 @@ def start(): # Piggyback host if 'host' in suite_options: host = suite_options.pop('host') + log_debug(f'Piggyback host: {host}') + else: + log_debug('NO piggyback host defined.') # Preformat Variables to meet the Robot API requirement # --variable name:value => ['name:value', 'name2:value2'] @@ -99,23 +100,24 @@ def start(): ######################## Run robot run..... ############################################### rc = run(robotdir.joinpath(suite), **suite_options) - log_debug(f'Robot suite {suite} finished with returncode: {rc}\n\tLess than 250 shows number of failed tests!') + log_info(f'Robot suite {suite} finished with returncode: {rc}.') if rc > 250: - print('\tRobot exited with error and no outputfile is generated.') - print ('\tPlease run robot command manually to see the error') + log_error('Robot exited with error and no outputfile is generated.') + log_error ('Please run robot command manually to see the error') break ######################## print output.xml to stdout ####################################### if 'host' in locals(): - log_debug(f'Found piggy back host: {host}" in config') print(f'<<<<{host}>>>>') print('<<>>') robot_xml = Path(suite_options['outputdir']).joinpath(suite).with_suffix('.xml') try: + log_info(f'Reading result XML file {robot_xml}') with open (robot_xml, 'r') as f: shutil.copyfileobj(f, sys.stdout) except: - log_debug(f'ERROR: Cannot find Robot XML file {robot_xml}!') + log_error(f'Cannot find Robot XML file {robot_xml}!') exit(1) + log_info('#######################################################################') # returns the default config and overrides by env vars def get_env_config(): @@ -131,9 +133,11 @@ def get_env_config(): 'console' : 'none', 'report' : 'none', } + log_debug('Configuration defined by environment variables: ') + log_debug(env_cfg) else: # We are not on a supported OS - log_debug(f'OS Name {os.name} is not supported by robotmk') + log_error(f'OS Name {os.name} is not supported by robotmk') exit(1) return env_cfg @@ -142,27 +146,28 @@ def get_env_config(): # can also override global settings def read_yml(robotmk_yml, env_cfg): if os.access(robotmk_yml, os.R_OK): - log_debug(f'Found configuration file {robotmk_yml}') try: + log_debug(f'Reading configuration file {robotmk_yml}') with open(robotmk_yml, 'r') as stream: env_cfg.update(yaml.safe_load(stream)) except yaml.YAMLError as exc: - log_debug("\tError while parsing YAML file:") - if hasattr(exc, 'problem_mark') and debug: + log_error("Error while parsing YAML file:") + if hasattr(exc, 'problem_mark'): if exc.context != None: - log('\t parser says:\n\t' + str(exc.problem_mark) + '\n\t ' + + log_error('Parser says:\n\t' + str(exc.problem_mark) + '\n\t ' + str(exc.problem) + ' ' + str(exc.context) + '\n\tPlease correct data and retry.') else: - log('\t parser says\n\t' + str(exc.problem_mark) + '\n\t ' + + log_error('\t parser says\n\t' + str(exc.problem_mark) + '\n\t ' + str(exc.problem) + '\n\tPlease correct data and retry.') exit(1) else: - log_debug('No configuration file {robot_cfg} found, starting with defaults') + log_info('No configuration file {robot_cfg} found, starting with defaults') return env_cfg def apply_global_cfg(suite, suite_options, yml_cfg): - if debug: + # show Robot output on console while debugging + if '--verbose' in sys.argv: suite_options.update({'console':'verbose'}) else: suite_options.update({'console':'none'}) @@ -173,12 +178,52 @@ def apply_global_cfg(suite, suite_options, yml_cfg): suite_options.setdefault('report',yml_cfg['report']) return suite_options +def setup_logging(): + if DEFAULTS['noarch']['enable_logging']: + global logger + logger = logging.getLogger('robotmk') + logger.setLevel(logging.DEBUG) + + # File log + fh = logging.FileHandler(Path(DEFAULTS['nt']['logdir'] ).joinpath('robotmk.log')) + file_formatter = logging.Formatter(fmt='%(asctime)s %(levelname)s - %(message)s') + fh.setFormatter(file_formatter) + fh.setLevel(logging.DEBUG) + logger.addHandler(fh) + # stdout + if '--verbose' in sys.argv: + console = logging.StreamHandler() + console_formatter = logging.Formatter(fmt='%(asctime)s %(levelname)s - %(message)s') + console.setFormatter(console_formatter) + console.setLevel(logging.DEBUG) + logger.addHandler(console) + + + def log_debug(text): - if debug: - print(f'{text}') + logger.debug(text) + +def log_info(text): + logger.info(text) + +def log_warning(text): + logger.warning(text) + +def log_error(text): + logger.error(text) + + + +def print_banner(): + log_info('') + log_info('#######################################################################') + log_info('########################### RobotMK ###########################') + log_info('#######################################################################') + log_info(' 2020 Simon Meggle ') + log_info(' https://www.simon.meggle.de') + log_info('') + -def log(text): - print('{text}') if __name__ == '__main__': try: From 74f6ad9a1c2ed5d8775b5fab9cbd4e1b248899dd Mon Sep 17 00:00:00 2001 From: Simon Meggle Date: Fri, 2 Oct 2020 00:08:57 +0200 Subject: [PATCH 03/12] Added explanations to expected.py files so that even myself can understand it after months. --- test/fixtures/checkgroup_parameters/Perfdata_SDL2.py | 0 test/fixtures/robot/1S_1T/expected.py | 9 +++++++++ test/fixtures/robot/1S_2T_fail/expected.py | 9 +++++++++ test/fixtures/robot/1S_3S_2S_3T/expected.py | 9 +++++++++ test/fixtures/robot/1S_3T/expected.py | 9 +++++++++ 5 files changed, 36 insertions(+) create mode 100644 test/fixtures/checkgroup_parameters/Perfdata_SDL2.py diff --git a/test/fixtures/checkgroup_parameters/Perfdata_SDL2.py b/test/fixtures/checkgroup_parameters/Perfdata_SDL2.py new file mode 100644 index 00000000..e69de29b diff --git a/test/fixtures/robot/1S_1T/expected.py b/test/fixtures/robot/1S_1T/expected.py index 4fe3ff88..2a1f84c4 100644 --- a/test/fixtures/robot/1S_1T/expected.py +++ b/test/fixtures/robot/1S_1T/expected.py @@ -1,3 +1,12 @@ +# List of dicts for DSL 0,1,2... +# inventory_suites: list of Suite names the inventory function should find +# check_suites: The name of the item to be checked by the check (see Argument #4 in +# dict 'check_test_params' in front of the check test function +# checkgroup_parameters file in test/fixtures/checkgroup_parameters (without .py extension), +# can containing anything which can be set in the check's WATO page +# svc_status: The expected Nagios state of the suite +# svc_output: A Regex which is expected to match the Output + [ # discovery_suite_level 0 { diff --git a/test/fixtures/robot/1S_2T_fail/expected.py b/test/fixtures/robot/1S_2T_fail/expected.py index 9e7feb40..e8c066a0 100644 --- a/test/fixtures/robot/1S_2T_fail/expected.py +++ b/test/fixtures/robot/1S_2T_fail/expected.py @@ -1,3 +1,12 @@ +# List of dicts for DSL 0,1,2... +# inventory_suites: list of Suite names the inventory function should find +# check_suites: The name of the item to be checked by the check (see Argument #4 in +# dict 'check_test_params' in front of the check test function +# checkgroup_parameters file in test/fixtures/checkgroup_parameters (without .py extension), +# can containing anything which can be set in the check's WATO page +# svc_status: The expected Nagios state of the suite +# svc_output: A Regex which is expected to match the Output + [ # discovery_suite_level 0 { diff --git a/test/fixtures/robot/1S_3S_2S_3T/expected.py b/test/fixtures/robot/1S_3S_2S_3T/expected.py index dda4b391..2a636894 100644 --- a/test/fixtures/robot/1S_3S_2S_3T/expected.py +++ b/test/fixtures/robot/1S_3S_2S_3T/expected.py @@ -1,3 +1,12 @@ +# List of dicts for DSL 0,1,2... +# inventory_suites: list of Suite names the inventory function should find +# check_suites: The name of the item to be checked by the check (see Argument #4 in +# dict 'check_test_params' in front of the check test function +# checkgroup_parameters file in test/fixtures/checkgroup_parameters (without .py extension), +# can containing anything which can be set in the check's WATO page +# svc_status: The expected Nagios state of the suite +# svc_output: A Regex which is expected to match the Output + [ # discovery_suite_level 0 { diff --git a/test/fixtures/robot/1S_3T/expected.py b/test/fixtures/robot/1S_3T/expected.py index 4fe3ff88..2a1f84c4 100644 --- a/test/fixtures/robot/1S_3T/expected.py +++ b/test/fixtures/robot/1S_3T/expected.py @@ -1,3 +1,12 @@ +# List of dicts for DSL 0,1,2... +# inventory_suites: list of Suite names the inventory function should find +# check_suites: The name of the item to be checked by the check (see Argument #4 in +# dict 'check_test_params' in front of the check test function +# checkgroup_parameters file in test/fixtures/checkgroup_parameters (without .py extension), +# can containing anything which can be set in the check's WATO page +# svc_status: The expected Nagios state of the suite +# svc_output: A Regex which is expected to match the Output + [ # discovery_suite_level 0 { From 84ffb7511d3480f3797f60f21f4994cda7d0f83c Mon Sep 17 00:00:00 2001 From: Simon Meggle Date: Fri, 2 Oct 2020 01:16:30 +0200 Subject: [PATCH 04/12] Archivetool inventory test ok --- .../checkgroup_parameters/Perfdata_SDL2.py | 5 + test/fixtures/robot/1S_3S_2S_3T/expected.py | 8 +- test/fixtures/robot/README.md | 20 +- .../robot/archivetool/archivetool.robotout | 18136 +++++++++++++++ test/fixtures/robot/archivetool/expected.py | 51 + .../robot/archivetool/input_agent.cmk | 18137 ++++++++++++++++ .../robot/archivetool/input_check.json | 1 + test/test_robotmk_check.py | 14 +- 8 files changed, 36351 insertions(+), 21 deletions(-) create mode 100644 test/fixtures/robot/archivetool/archivetool.robotout create mode 100644 test/fixtures/robot/archivetool/expected.py create mode 100644 test/fixtures/robot/archivetool/input_agent.cmk create mode 100644 test/fixtures/robot/archivetool/input_check.json diff --git a/test/fixtures/checkgroup_parameters/Perfdata_SDL2.py b/test/fixtures/checkgroup_parameters/Perfdata_SDL2.py index e69de29b..bca87ad3 100644 --- a/test/fixtures/checkgroup_parameters/Perfdata_SDL2.py +++ b/test/fixtures/checkgroup_parameters/Perfdata_SDL2.py @@ -0,0 +1,5 @@ +{ + 'perfdata_creation': { + 'perfdata_creation_tests': ['.*'], + }, +} \ No newline at end of file diff --git a/test/fixtures/robot/1S_3S_2S_3T/expected.py b/test/fixtures/robot/1S_3S_2S_3T/expected.py index 2a636894..6c800334 100644 --- a/test/fixtures/robot/1S_3S_2S_3T/expected.py +++ b/test/fixtures/robot/1S_3S_2S_3T/expected.py @@ -94,7 +94,13 @@ 'svc_status': 0, 'svc_output': ".*\[S\] 'Sub1 suite1': PASS.*?\[S\] 'Sub1 suite1': PASS.*?\[T\] 'Sleep the first time for 0.1 sec': PASS.*?\[K\] 'Sleep': PASS", } - } + }, + 'Sub1 suite1': { + 'Perfdata_SDL2': { + 'svc_status': 0, + 'svc_output': ".*\[S\] 'Sub1 suite1': PASS.*?\[S\] 'Sub1 suite1': PASS.*?\[T\] 'Sleep the first time for 0.1 sec': PASS.*?\[K\] 'Sleep': PASS", + } + }, }, }, ] \ No newline at end of file diff --git a/test/fixtures/robot/README.md b/test/fixtures/robot/README.md index 5123974c..53f0b36a 100644 --- a/test/fixtures/robot/README.md +++ b/test/fixtures/robot/README.md @@ -17,11 +17,11 @@ The name `1S_3Snok_2S_3T` implies that on the second suite level an error will b ## How to add new tests -### 1. create Robot suite +### 1. create Robot suite (optional) First, create a new robot suite in a folder following the naming convention above. This folder can contain any number of suites/tests. You should use suite/test/keyword names which are distinguishable, depending on the kind of test you want to write. -### 2. create result data +### 2. create result data (optional) The second step is to create the result data. The following command executes all robot tests and converts the XML result into JSON: @@ -36,6 +36,7 @@ This will create for each test suite: After this step, you have data to test directly in CheckMK/WATO as well as for development. ### 3. Define the expected data + Each test suite folder must contain a file `expected.py` which defines what the test should expect. ``` @@ -56,19 +57,10 @@ Each test suite folder must contain a file `expected.py` which defines what the ``` ### 4. Write the test -#### Inventory tests -In `test_robotmk_check.py` there is a list `inventory_test_params`. Each item in this list will generate _one_ test. -The tuple elements of each item are +In `test_robotmk_check.py` there is a list of tuples in front of each test function. -* name of the suite folder in `test/fixtures/robot/` -* discovery suite level +Pytest will create a test from each item out of this list. See the comment section before each list to see what the arguments are. -``` -inventory_test_params = [ - ('1S_3T', 0), - ('1S_3S_2S_3T', 0), - ('1S_3S_2S_3T', 1), -] -``` +### 5. Execute the test diff --git a/test/fixtures/robot/archivetool/archivetool.robotout b/test/fixtures/robot/archivetool/archivetool.robotout new file mode 100644 index 00000000..31d3bd8a --- /dev/null +++ b/test/fixtures/robot/archivetool/archivetool.robotout @@ -0,0 +1,18136 @@ + + + + + + + + +Evaluates the given expression in Python and returns the result. + +${TESTDATA['${LKR_UC}']['active']}==${True} + + +${active} + +${active} = True + + + +Runs the given keyword with the given arguments, if ``condition`` is true. + +${active} +Add test case +ARCHIVETOOL Suche LKR ${LKR_UC} +ARCHIVETOOL Suche +${LKR_UC} + + + +ARCHIVETOOL Suche LKR ${LKR_UC} +ARCHIVETOOL Suche +${LKR_UC} + + + + + + + + + +Evaluates the given expression in Python and returns the result. + +${TESTDATA['${LKR_UC}']['active']}==${True} + + +${active} + +${active} = False + + + +Runs the given keyword with the given arguments, if ``condition`` is true. + +${active} +Add test case +ARCHIVETOOL Suche LKR ${LKR_UC} +ARCHIVETOOL Suche +${LKR_UC} + + + + + + + +Evaluates the given expression in Python and returns the result. + +${TESTDATA['${LKR_UC}']['active']}==${True} + + +${active} + +${active} = True + + + +Runs the given keyword with the given arguments, if ``condition`` is true. + +${active} +Add test case +ARCHIVETOOL Suche LKR ${LKR_UC} +ARCHIVETOOL Suche +${LKR_UC} + + + +ARCHIVETOOL Suche LKR ${LKR_UC} +ARCHIVETOOL Suche +${LKR_UC} + + + + + + + + + +Evaluates the given expression in Python and returns the result. + +${TESTDATA['${LKR_UC}']['active']}==${True} + + +${active} + +${active} = False + + + +Runs the given keyword with the given arguments, if ``condition`` is true. + +${active} +Add test case +ARCHIVETOOL Suche LKR ${LKR_UC} +ARCHIVETOOL Suche +${LKR_UC} + + + + + + + +Evaluates the given expression in Python and returns the result. + +${TESTDATA['${LKR_UC}']['active']}==${True} + + +${active} + +${active} = False + + + +Runs the given keyword with the given arguments, if ``condition`` is true. + +${active} +Add test case +ARCHIVETOOL Suche LKR ${LKR_UC} +ARCHIVETOOL Suche +${LKR_UC} + + + + + + + +Evaluates the given expression in Python and returns the result. + +${TESTDATA['${LKR_UC}']['active']}==${True} + + +${active} + +${active} = True + + + +Runs the given keyword with the given arguments, if ``condition`` is true. + +${active} +Add test case +ARCHIVETOOL Suche LKR ${LKR_UC} +ARCHIVETOOL Suche +${LKR_UC} + + + +ARCHIVETOOL Suche LKR ${LKR_UC} +ARCHIVETOOL Suche +${LKR_UC} + + + + + + + + + +Evaluates the given expression in Python and returns the result. + +${TESTDATA['${LKR_UC}']['active']}==${True} + + +${active} + +${active} = True + + + +Runs the given keyword with the given arguments, if ``condition`` is true. + +${active} +Add test case +ARCHIVETOOL Suche LKR ${LKR_UC} +ARCHIVETOOL Suche +${LKR_UC} + + + +ARCHIVETOOL Suche LKR ${LKR_UC} +ARCHIVETOOL Suche +${LKR_UC} + + + + + + + + + +Evaluates the given expression in Python and returns the result. + +${TESTDATA['${LKR_UC}']['active']}==${True} + + +${active} + +${active} = True + + + +Runs the given keyword with the given arguments, if ``condition`` is true. + +${active} +Add test case +ARCHIVETOOL Suche LKR ${LKR_UC} +ARCHIVETOOL Suche +${LKR_UC} + + + +ARCHIVETOOL Suche LKR ${LKR_UC} +ARCHIVETOOL Suche +${LKR_UC} + + + + + + + + + +Evaluates the given expression in Python and returns the result. + +${TESTDATA['${LKR_UC}']['active']}==${True} + + +${active} + +${active} = False + + + +Runs the given keyword with the given arguments, if ``condition`` is true. + +${active} +Add test case +ARCHIVETOOL Suche LKR ${LKR_UC} +ARCHIVETOOL Suche +${LKR_UC} + + + + + + + +Evaluates the given expression in Python and returns the result. + +${TESTDATA['${LKR_UC}']['active']}==${True} + + +${active} + +${active} = False + + + +Runs the given keyword with the given arguments, if ``condition`` is true. + +${active} +Add test case +ARCHIVETOOL Suche LKR ${LKR_UC} +ARCHIVETOOL Suche +${LKR_UC} + + + + + + + +Evaluates the given expression in Python and returns the result. + +${TESTDATA['${LKR_UC}']['active']}==${True} + + +${active} + +${active} = False + + + +Runs the given keyword with the given arguments, if ``condition`` is true. + +${active} +Add test case +ARCHIVETOOL Suche LKR ${LKR_UC} +ARCHIVETOOL Suche +${LKR_UC} + + + + + + + +Evaluates the given expression in Python and returns the result. + +${TESTDATA['${LKR_UC}']['active']}==${True} + + +${active} + +${active} = False + + + +Runs the given keyword with the given arguments, if ``condition`` is true. + +${active} +Add test case +ARCHIVETOOL Suche LKR ${LKR_UC} +ARCHIVETOOL Suche +${LKR_UC} + + + + + + + +Evaluates the given expression in Python and returns the result. + +${TESTDATA['${LKR_UC}']['active']}==${True} + + +${active} + +${active} = True + + + +Runs the given keyword with the given arguments, if ``condition`` is true. + +${active} +Add test case +ARCHIVETOOL Suche LKR ${LKR_UC} +ARCHIVETOOL Suche +${LKR_UC} + + + +ARCHIVETOOL Suche LKR ${LKR_UC} +ARCHIVETOOL Suche +${LKR_UC} + + + + + + + + + +Evaluates the given expression in Python and returns the result. + +${TESTDATA['${LKR_UC}']['active']}==${True} + + +${active} + +${active} = False + + + +Runs the given keyword with the given arguments, if ``condition`` is true. + +${active} +Add test case +ARCHIVETOOL Suche LKR ${LKR_UC} +ARCHIVETOOL Suche +${LKR_UC} + + + + + + + +Evaluates the given expression in Python and returns the result. + +${TESTDATA['${LKR_UC}']['active']}==${True} + + +${active} + +${active} = True + + + +Runs the given keyword with the given arguments, if ``condition`` is true. + +${active} +Add test case +ARCHIVETOOL Suche LKR ${LKR_UC} +ARCHIVETOOL Suche +${LKR_UC} + + + +ARCHIVETOOL Suche LKR ${LKR_UC} +ARCHIVETOOL Suche +${LKR_UC} + + + + + + + + + + + + + +Makes a variable available everywhere within the scope of the current test. + +${APPOPEN} +${False} + +${APPOPEN} = False + + + + +Runs the given keyword with the given arguments, if ``condition`` is true. + +${APPOPEN}==${True} +Terminate Application +alias=archivetool + + + + +Runs the given keyword with the given arguments, if ``condition`` is true. + +${APPOPEN}==${True} +Quit All Viewer Processes + + + + +Makes a variable available everywhere within the scope of the current suite. + +${APPOPEN} +${False} + +${APPOPEN} = False + + + + + + +Runs the given keyword with the given arguments, if ``condition`` is true. + +${APPOPEN}==${True} +Terminate Application +alias=archivetool + + + + +Runs the given keyword with the given arguments, if ``condition`` is true. + +${APPOPEN}==${True} +Quit All Viewer Processes + + + + +Makes a variable available everywhere within the scope of the current suite. + +${APPOPEN} +${False} + +${APPOPEN} = False + + + + + + + + + +AI + + +Sets where all reference images are stored. + +${imgpath} + + + + + +${lkr_uc} + + +Makes a variable available everywhere within the scope of the current test. + +${LKR_UC} +${lkr_uc} + +${LKR_UC} = AI + + + +Converts string to lower case. + +${lkr_uc} + + +${lkr_lc} + +${lkr_lc} = ai + + + +Makes a variable available everywhere within the scope of the current test. + +${LKR_LC} +${lkr_lc} + +${LKR_LC} = ai + + + +Makes a variable available everywhere within the scope of the current test. + +${lkr_docs} +${TESTDATA['${LKR_UC}']['docs']} + +${lkr_docs} = ['688944', '688976', '689082'] + + + +Makes a variable available everywhere within the scope of the current test. + +${lkr_cred} +${TESTDATA['${LKR_UC}']['credentials']} + +${lkr_cred} = ['airob', 'crypt:2LvC/GWqwYhum5TkHpHfkD9pfb7U9E6O5ZuzKIgKYA1fUPBjlGRG3i4nm2zP0b/D615FGwgYceCI'] + + + +Makes a variable available everywhere within the scope of the current test. + +${lkr_loc_img} +${TESTDATA['${LKR_UC}']['loc_img']} + +${lkr_loc_img} = [] + + + +Makes a variable available everywhere within the scope of the current test. + +${user} +${lkr_cred}[0] + +${user} = airob + + + +Decrypts cipher text and returns the plain text. + +${lkr_cred}[1] + + +${password} + +Decrypting text and return value. +${password} = *** + + + +Makes a variable available everywhere within the scope of the current test. + +${password} +${password} + +${password} = *** + + + + + + +Runs a process and waits for it to complete. + +cmd.exe /c taskkill /IM ArchiveViewAdvancedA.exe +shell=True + +Starting process: +cmd.exe /c taskkill /IM ArchiveViewAdvancedA.exe +Waiting for process to complete. +Process completed. + + + +Runs a process and waits for it to complete. + +cmd.exe /c taskkill /IM ArchiveViewAdvancedB.exe +shell=True + +Starting process: +cmd.exe /c taskkill /IM ArchiveViewAdvancedB.exe +Waiting for process to complete. +Process completed. + + + +Runs a process and waits for it to complete. + +cmd.exe /c taskkill /IM ArchiveViewAdvancedC.exe +shell=True + +Starting process: +cmd.exe /c taskkill /IM ArchiveViewAdvancedC.exe +Waiting for process to complete. +Process completed. + + + +Runs a process and waits for it to complete. + +cmd.exe /c taskkill /IM +ArchivToolExtAdvanced.exe +shell=True + +Starting process: +"cmd.exe /c taskkill /IM" ArchivToolExtAdvanced.exe +Waiting for process to complete. +Process completed. + + + +Runs a process and waits for it to complete. + +cmd.exe /c taskkill /IM +archtool.exe +shell=True + +Starting process: +"cmd.exe /c taskkill /IM" archtool.exe +Waiting for process to complete. +Process completed. + + + + + + +Runs a process and waits for it to complete. + +C:\\ProgramData\\checkmk\\agent\\robot\\archivetool\\ArchivetoolConfig\\sva_${LKR_LC} konfiguration.bat + +Starting process: +"C:\ProgramData\checkmk\agent\robot\archivetool\ArchivetoolConfig\sva_ai konfiguration.bat" +Waiting for process to complete. +Process completed. + + + +Launches an application. + +"${APP}" +alias=archivetool + + + + +Makes a variable available everywhere within the scope of the current suite. + +${APPOPEN} +${True} + +${APPOPEN} = True + + + + + + + +login_username +timeout=10 + + +${loc} + + +Runs the given keyword with the given arguments, if ``condition`` is true. + +'${image}' in ${lkr_loc_img} +Change Image Folder +${imgpath}\\${LKR_UC} + + + + +Tries to locate given image from the screen for given time. + +${image} +timeout=${timeout} + + +${loc} + +Image "login_username" found at (227, 149) +${loc} = (227, 149) + + + +Runs the given keyword with the given arguments, if ``condition`` is true. + +'${image}' in ${lkr_loc_img} +Change Image Folder +${imgpath} + + + +${loc} = (227, 149) + + + +Finds the reference image on screen and clicks it once. + +login_username + +Image "C:\ProgramData\checkmk\agent\robot\archivetool\images\login_username.png" found at Box(left=182, top=134, width=90, height=30) +Clicking image "login_username" in position (227, 149) + + + +Pauses the test executed for the given time. + +0.2 + +Slept 200 milliseconds + + + + +login_username +10 +20 +${user} + + + +${image} +${timeout} + + +${loc} + + +Runs the given keyword with the given arguments, if ``condition`` is true. + +'${image}' in ${lkr_loc_img} +Change Image Folder +${imgpath}\\${LKR_UC} + + + + +Tries to locate given image from the screen for given time. + +${image} +timeout=${timeout} + + +${loc} + +Image "login_username" found at (227, 149) +${loc} = (227, 149) + + + +Runs the given keyword with the given arguments, if ``condition`` is true. + +'${image}' in ${lkr_loc_img} +Change Image Folder +${imgpath} + + + +${loc} = (227, 149) + + + +Clicks right of given location by given offset. + +${loc} +${offset} + +Clicking 1 time(s) at (247, 149) with left mouse button at interval 0.000000 + + + +Type text and keyboard keys. + +@{text} + + + + + + +Pauses the test executed for the given time. + +0.2 + +Slept 200 milliseconds + + + +Type text and keyboard keys. + +Key.tab + + + + +Pauses the test executed for the given time. + +0.2 + +Slept 200 milliseconds + + + +Type text and keyboard keys. + +${password} +Key.enter +Key.enter + + + + + +archiv_vista_warn +timeout=5 + + + +${image} +${timeout} + + +${loc} + + +Runs the given keyword with the given arguments, if ``condition`` is true. + +'${image}' in ${lkr_loc_img} +Change Image Folder +${imgpath}\\${LKR_UC} + + + + +Tries to locate given image from the screen for given time. + +${image} +timeout=${timeout} + + +${loc} + +Image "archiv_vista_warn" found at (845, 559) +${loc} = (845, 559) + + + +Runs the given keyword with the given arguments, if ``condition`` is true. + +'${image}' in ${lkr_loc_img} +Change Image Folder +${imgpath} + + + +${loc} = (845, 559) + + + + +${loc} + + +Moves the mouse pointer to an absolute coordinates. + +${loc} + + + + +Clicks with the specified mouse button. + + + + + + + +Type text and keyboard keys. + +Key.enter + + + + +Tries to locate given image from the screen for given time. + +aae_toolbar +timeout=10 + +Image "aae_toolbar" found at (506, 709) + + + + + + +Returns ``True`` if reference image was found on screen or +``False`` otherwise. Never fails. + +aae_vorbelegung_checked + + +${vorbelegt_checked} + +${vorbelegt_checked} = False + + + +Runs the given keyword with the given arguments, if ``condition`` is true. + +${vorbelegt_checked}==${True} +Click Image +aae_vorbelegung_checked + + + + + + +Returns the given values which can then be assigned to a variables. + +0 + + +${i} + +${i} = 0 + + + + + + +${lkr_docs}[${i}] +${anz_seiten} + + +Makes a variable available everywhere within the scope of the current test. + +${dokid} +${lkr_doc} + +${dokid} = 688944 + + + + +aae_dokumentennr +5 +100 +${lkr_doc} + + + +${image} +${timeout} + + +${loc} + + +Runs the given keyword with the given arguments, if ``condition`` is true. + +'${image}' in ${lkr_loc_img} +Change Image Folder +${imgpath}\\${LKR_UC} + + + + +Tries to locate given image from the screen for given time. + +${image} +timeout=${timeout} + + +${loc} + +Image "aae_dokumentennr" found at (452, 463) +${loc} = (452, 463) + + + +Runs the given keyword with the given arguments, if ``condition`` is true. + +'${image}' in ${lkr_loc_img} +Change Image Folder +${imgpath} + + + +${loc} = (452, 463) + + + +Clicks right of given location by given offset. + +${loc} +${offset} + +Clicking 1 time(s) at (552, 463) with left mouse button at interval 0.000000 + + + +Type text and keyboard keys. + +@{text} + + + + + + +Type text and keyboard keys. + +Key.enter + + + + + +aae_treffer_1 +timeout=10 + + + +${image} +${timeout} + + +${loc} + + +Runs the given keyword with the given arguments, if ``condition`` is true. + +'${image}' in ${lkr_loc_img} +Change Image Folder +${imgpath}\\${LKR_UC} + + + + +Tries to locate given image from the screen for given time. + +${image} +timeout=${timeout} + + +${loc} + +Image "aae_treffer_1" found at (870, 745) +${loc} = (870, 745) + + + +Runs the given keyword with the given arguments, if ``condition`` is true. + +'${image}' in ${lkr_loc_img} +Change Image Folder +${imgpath} + + + +${loc} = (870, 745) + + + + +${loc} + + +Moves the mouse pointer to an absolute coordinates. + +${loc} + + + + +Clicks with the specified mouse button. + + + + + + + +Type text and keyboard keys. + +Key.Tab +Key.Tab +Key.Tab +Key.Tab +Key.right + + + + + +aae_zeile_markiert +timeout=10 + + + +${image} +${timeout} + + +${loc} + + +Runs the given keyword with the given arguments, if ``condition`` is true. + +'${image}' in ${lkr_loc_img} +Change Image Folder +${imgpath}\\${LKR_UC} + + + + +Tries to locate given image from the screen for given time. + +${image} +timeout=${timeout} + + +${loc} + +Image "aae_zeile_markiert" found at (423, 786) +${loc} = (423, 786) + + + +Runs the given keyword with the given arguments, if ``condition`` is true. + +'${image}' in ${lkr_loc_img} +Change Image Folder +${imgpath} + + + +${loc} = (423, 786) + + + + +${loc} + + +Moves the mouse pointer to an absolute coordinates. + +${loc} + + + + +Clicks with the specified mouse button. + + + + + + + + +aae_viewer_b +timeout=10 + + + +${image} +${timeout} + + +${loc} + + +Runs the given keyword with the given arguments, if ``condition`` is true. + +'${image}' in ${lkr_loc_img} +Change Image Folder +${imgpath}\\${LKR_UC} + + + + +Tries to locate given image from the screen for given time. + +${image} +timeout=${timeout} + + +${loc} + +Image "aae_viewer_b" found at (641, 709) +${loc} = (641, 709) + + + +Runs the given keyword with the given arguments, if ``condition`` is true. + +'${image}' in ${lkr_loc_img} +Change Image Folder +${imgpath} + + + +${loc} = (641, 709) + + + + +${loc} + + +Moves the mouse pointer to an absolute coordinates. + +${loc} + + + + +Clicks with the specified mouse button. + + + + + + + + +bviewer_opened +10 + + +Runs the given keyword with the given arguments, if ``condition`` is true. + +'${image}' in ${lkr_loc_img} +Change Image Folder +${imgpath}\\${LKR_UC} + + + + +Tries to locate given image from the screen for given time. + +${image} +timeout=${timeout} + + +${loc} + +Image "bviewer_opened" found at (652, 94) +${loc} = (652, 94) + + + +Runs the given keyword with the given arguments, if ``condition`` is true. + +'${image}' in ${lkr_loc_img} +Change Image Folder +${imgpath} + + + + + + +Pauses the test executed for the given time. + +0.5 + +Slept 500 milliseconds + + + + +bviewer_opened +timeout=10 + + + +${image} +${timeout} + + +${loc} + + +Runs the given keyword with the given arguments, if ``condition`` is true. + +'${image}' in ${lkr_loc_img} +Change Image Folder +${imgpath}\\${LKR_UC} + + + + +Tries to locate given image from the screen for given time. + +${image} +timeout=${timeout} + + +${loc} + +Image "bviewer_opened" found at (652, 94) +${loc} = (652, 94) + + + +Runs the given keyword with the given arguments, if ``condition`` is true. + +'${image}' in ${lkr_loc_img} +Change Image Folder +${imgpath} + + + +${loc} = (652, 94) + + + + +${loc} + + +Moves the mouse pointer to an absolute coordinates. + +${loc} + + + + +Clicks with the specified mouse button. + + + + + + + +Pauses the test executed for the given time. + +0.5 + +Slept 500 milliseconds + + + +Press given keyboard keys. + +Key.Win +Key.Up + + + + +Returns the given values which can then be assigned to a variables. + +ARCHIVETOOL_DOKU_${LKR_UC}_${anz_seiten} + + +${search_image} + +${search_image} = ARCHIVETOOL_DOKU_AI_30 + + + + +bviewer_opened +timeout=10 + + + +${image} +${timeout} + + +${loc} + + +Runs the given keyword with the given arguments, if ``condition`` is true. + +'${image}' in ${lkr_loc_img} +Change Image Folder +${imgpath}\\${LKR_UC} + + + + +Tries to locate given image from the screen for given time. + +${image} +timeout=${timeout} + + +${loc} + +Image "bviewer_opened" found at (11, 85) +${loc} = (11, 85) + + + +Runs the given keyword with the given arguments, if ``condition`` is true. + +'${image}' in ${lkr_loc_img} +Change Image Folder +${imgpath} + + + +${loc} = (11, 85) + + + + +${loc} + + +Moves the mouse pointer to an absolute coordinates. + +${loc} + + + + +Clicks with the specified mouse button. + + + + + + + +Tries to locate given image from the screen for given time. + +${search_image} +timeout=90 + +Image "ARCHIVETOOL_DOKU_AI_30" found at (192, 333) + + + +Press given keyboard keys. + +Key.Alt +Key.F4 + + + + + + + +aae_suche_clear +timeout=5 + + + +${image} +${timeout} + + +${loc} + + +Runs the given keyword with the given arguments, if ``condition`` is true. + +'${image}' in ${lkr_loc_img} +Change Image Folder +${imgpath}\\${LKR_UC} + + + + +Tries to locate given image from the screen for given time. + +${image} +timeout=${timeout} + + +${loc} + +Image "aae_suche_clear" found at (404, 709) +${loc} = (404, 709) + + + +Runs the given keyword with the given arguments, if ``condition`` is true. + +'${image}' in ${lkr_loc_img} +Change Image Folder +${imgpath} + + + +${loc} = (404, 709) + + + + +${loc} + + +Moves the mouse pointer to an absolute coordinates. + +${loc} + + + + +Clicks with the specified mouse button. + + + + + + + + +aae_dokumentennr_bereit +timeout=5 + + +Runs the given keyword with the given arguments, if ``condition`` is true. + +'${image}' in ${lkr_loc_img} +Change Image Folder +${imgpath}\\${LKR_UC} + + + + +Tries to locate given image from the screen for given time. + +${image} +timeout=${timeout} + + +${loc} + +Image "aae_dokumentennr_bereit" found at (569, 464) +${loc} = (569, 464) + + + +Runs the given keyword with the given arguments, if ``condition`` is true. + +'${image}' in ${lkr_loc_img} +Change Image Folder +${imgpath} + + + + + + +Evaluates the given expression in Python and returns the result. + +${i} + 1 + + +${i} + +${i} = 1 + + + + + + + +${lkr_docs}[${i}] +${anz_seiten} + + +Makes a variable available everywhere within the scope of the current test. + +${dokid} +${lkr_doc} + +${dokid} = 688976 + + + + +aae_dokumentennr +5 +100 +${lkr_doc} + + + +${image} +${timeout} + + +${loc} + + +Runs the given keyword with the given arguments, if ``condition`` is true. + +'${image}' in ${lkr_loc_img} +Change Image Folder +${imgpath}\\${LKR_UC} + + + + +Tries to locate given image from the screen for given time. + +${image} +timeout=${timeout} + + +${loc} + +Image "aae_dokumentennr" found at (452, 463) +${loc} = (452, 463) + + + +Runs the given keyword with the given arguments, if ``condition`` is true. + +'${image}' in ${lkr_loc_img} +Change Image Folder +${imgpath} + + + +${loc} = (452, 463) + + + +Clicks right of given location by given offset. + +${loc} +${offset} + +Clicking 1 time(s) at (552, 463) with left mouse button at interval 0.000000 + + + +Type text and keyboard keys. + +@{text} + + + + + + +Type text and keyboard keys. + +Key.enter + + + + + +aae_treffer_1 +timeout=10 + + + +${image} +${timeout} + + +${loc} + + +Runs the given keyword with the given arguments, if ``condition`` is true. + +'${image}' in ${lkr_loc_img} +Change Image Folder +${imgpath}\\${LKR_UC} + + + + +Tries to locate given image from the screen for given time. + +${image} +timeout=${timeout} + + +${loc} + +Image "aae_treffer_1" found at (870, 745) +${loc} = (870, 745) + + + +Runs the given keyword with the given arguments, if ``condition`` is true. + +'${image}' in ${lkr_loc_img} +Change Image Folder +${imgpath} + + + +${loc} = (870, 745) + + + + +${loc} + + +Moves the mouse pointer to an absolute coordinates. + +${loc} + + + + +Clicks with the specified mouse button. + + + + + + + +Type text and keyboard keys. + +Key.Tab +Key.Tab +Key.Tab +Key.Tab +Key.right + + + + + +aae_zeile_markiert +timeout=10 + + + +${image} +${timeout} + + +${loc} + + +Runs the given keyword with the given arguments, if ``condition`` is true. + +'${image}' in ${lkr_loc_img} +Change Image Folder +${imgpath}\\${LKR_UC} + + + + +Tries to locate given image from the screen for given time. + +${image} +timeout=${timeout} + + +${loc} + +Image "aae_zeile_markiert" found at (423, 786) +${loc} = (423, 786) + + + +Runs the given keyword with the given arguments, if ``condition`` is true. + +'${image}' in ${lkr_loc_img} +Change Image Folder +${imgpath} + + + +${loc} = (423, 786) + + + + +${loc} + + +Moves the mouse pointer to an absolute coordinates. + +${loc} + + + + +Clicks with the specified mouse button. + + + + + + + + +aae_viewer_b +timeout=10 + + + +${image} +${timeout} + + +${loc} + + +Runs the given keyword with the given arguments, if ``condition`` is true. + +'${image}' in ${lkr_loc_img} +Change Image Folder +${imgpath}\\${LKR_UC} + + + + +Tries to locate given image from the screen for given time. + +${image} +timeout=${timeout} + + +${loc} + +Image "aae_viewer_b" found at (641, 709) +${loc} = (641, 709) + + + +Runs the given keyword with the given arguments, if ``condition`` is true. + +'${image}' in ${lkr_loc_img} +Change Image Folder +${imgpath} + + + +${loc} = (641, 709) + + + + +${loc} + + +Moves the mouse pointer to an absolute coordinates. + +${loc} + + + + +Clicks with the specified mouse button. + + + + + + + + +bviewer_opened +10 + + +Runs the given keyword with the given arguments, if ``condition`` is true. + +'${image}' in ${lkr_loc_img} +Change Image Folder +${imgpath}\\${LKR_UC} + + + + +Tries to locate given image from the screen for given time. + +${image} +timeout=${timeout} + + +${loc} + +Image "bviewer_opened" found at (652, 94) +${loc} = (652, 94) + + + +Runs the given keyword with the given arguments, if ``condition`` is true. + +'${image}' in ${lkr_loc_img} +Change Image Folder +${imgpath} + + + + + + +Pauses the test executed for the given time. + +0.5 + +Slept 500 milliseconds + + + + +bviewer_opened +timeout=10 + + + +${image} +${timeout} + + +${loc} + + +Runs the given keyword with the given arguments, if ``condition`` is true. + +'${image}' in ${lkr_loc_img} +Change Image Folder +${imgpath}\\${LKR_UC} + + + + +Tries to locate given image from the screen for given time. + +${image} +timeout=${timeout} + + +${loc} + +Image "bviewer_opened" found at (652, 94) +${loc} = (652, 94) + + + +Runs the given keyword with the given arguments, if ``condition`` is true. + +'${image}' in ${lkr_loc_img} +Change Image Folder +${imgpath} + + + +${loc} = (652, 94) + + + + +${loc} + + +Moves the mouse pointer to an absolute coordinates. + +${loc} + + + + +Clicks with the specified mouse button. + + + + + + + +Pauses the test executed for the given time. + +0.5 + +Slept 500 milliseconds + + + +Press given keyboard keys. + +Key.Win +Key.Up + + + + +Returns the given values which can then be assigned to a variables. + +ARCHIVETOOL_DOKU_${LKR_UC}_${anz_seiten} + + +${search_image} + +${search_image} = ARCHIVETOOL_DOKU_AI_100 + + + + +bviewer_opened +timeout=10 + + + +${image} +${timeout} + + +${loc} + + +Runs the given keyword with the given arguments, if ``condition`` is true. + +'${image}' in ${lkr_loc_img} +Change Image Folder +${imgpath}\\${LKR_UC} + + + + +Tries to locate given image from the screen for given time. + +${image} +timeout=${timeout} + + +${loc} + +Image "bviewer_opened" found at (11, 85) +${loc} = (11, 85) + + + +Runs the given keyword with the given arguments, if ``condition`` is true. + +'${image}' in ${lkr_loc_img} +Change Image Folder +${imgpath} + + + +${loc} = (11, 85) + + + + +${loc} + + +Moves the mouse pointer to an absolute coordinates. + +${loc} + + + + +Clicks with the specified mouse button. + + + + + + + +Tries to locate given image from the screen for given time. + +${search_image} +timeout=90 + +Image "ARCHIVETOOL_DOKU_AI_100" found at (195, 303) + + + +Press given keyboard keys. + +Key.Alt +Key.F4 + + + + + + + +aae_suche_clear +timeout=5 + + + +${image} +${timeout} + + +${loc} + + +Runs the given keyword with the given arguments, if ``condition`` is true. + +'${image}' in ${lkr_loc_img} +Change Image Folder +${imgpath}\\${LKR_UC} + + + + +Tries to locate given image from the screen for given time. + +${image} +timeout=${timeout} + + +${loc} + +Image "aae_suche_clear" found at (404, 709) +${loc} = (404, 709) + + + +Runs the given keyword with the given arguments, if ``condition`` is true. + +'${image}' in ${lkr_loc_img} +Change Image Folder +${imgpath} + + + +${loc} = (404, 709) + + + + +${loc} + + +Moves the mouse pointer to an absolute coordinates. + +${loc} + + + + +Clicks with the specified mouse button. + + + + + + + + +aae_dokumentennr_bereit +timeout=5 + + +Runs the given keyword with the given arguments, if ``condition`` is true. + +'${image}' in ${lkr_loc_img} +Change Image Folder +${imgpath}\\${LKR_UC} + + + + +Tries to locate given image from the screen for given time. + +${image} +timeout=${timeout} + + +${loc} + +Image "aae_dokumentennr_bereit" found at (569, 464) +${loc} = (569, 464) + + + +Runs the given keyword with the given arguments, if ``condition`` is true. + +'${image}' in ${lkr_loc_img} +Change Image Folder +${imgpath} + + + + + + +Evaluates the given expression in Python and returns the result. + +${i} + 1 + + +${i} + +${i} = 2 + + + + + + + +${lkr_docs}[${i}] +${anz_seiten} + + +Makes a variable available everywhere within the scope of the current test. + +${dokid} +${lkr_doc} + +${dokid} = 689082 + + + + +aae_dokumentennr +5 +100 +${lkr_doc} + + + +${image} +${timeout} + + +${loc} + + +Runs the given keyword with the given arguments, if ``condition`` is true. + +'${image}' in ${lkr_loc_img} +Change Image Folder +${imgpath}\\${LKR_UC} + + + + +Tries to locate given image from the screen for given time. + +${image} +timeout=${timeout} + + +${loc} + +Image "aae_dokumentennr" found at (452, 463) +${loc} = (452, 463) + + + +Runs the given keyword with the given arguments, if ``condition`` is true. + +'${image}' in ${lkr_loc_img} +Change Image Folder +${imgpath} + + + +${loc} = (452, 463) + + + +Clicks right of given location by given offset. + +${loc} +${offset} + +Clicking 1 time(s) at (552, 463) with left mouse button at interval 0.000000 + + + +Type text and keyboard keys. + +@{text} + + + + + + +Type text and keyboard keys. + +Key.enter + + + + + +aae_treffer_1 +timeout=10 + + + +${image} +${timeout} + + +${loc} + + +Runs the given keyword with the given arguments, if ``condition`` is true. + +'${image}' in ${lkr_loc_img} +Change Image Folder +${imgpath}\\${LKR_UC} + + + + +Tries to locate given image from the screen for given time. + +${image} +timeout=${timeout} + + +${loc} + +Image "aae_treffer_1" found at (870, 745) +${loc} = (870, 745) + + + +Runs the given keyword with the given arguments, if ``condition`` is true. + +'${image}' in ${lkr_loc_img} +Change Image Folder +${imgpath} + + + +${loc} = (870, 745) + + + + +${loc} + + +Moves the mouse pointer to an absolute coordinates. + +${loc} + + + + +Clicks with the specified mouse button. + + + + + + + +Type text and keyboard keys. + +Key.Tab +Key.Tab +Key.Tab +Key.Tab +Key.right + + + + + +aae_zeile_markiert +timeout=10 + + + +${image} +${timeout} + + +${loc} + + +Runs the given keyword with the given arguments, if ``condition`` is true. + +'${image}' in ${lkr_loc_img} +Change Image Folder +${imgpath}\\${LKR_UC} + + + + +Tries to locate given image from the screen for given time. + +${image} +timeout=${timeout} + + +${loc} + +Image "aae_zeile_markiert" found at (423, 786) +${loc} = (423, 786) + + + +Runs the given keyword with the given arguments, if ``condition`` is true. + +'${image}' in ${lkr_loc_img} +Change Image Folder +${imgpath} + + + +${loc} = (423, 786) + + + + +${loc} + + +Moves the mouse pointer to an absolute coordinates. + +${loc} + + + + +Clicks with the specified mouse button. + + + + + + + + +aae_viewer_b +timeout=10 + + + +${image} +${timeout} + + +${loc} + + +Runs the given keyword with the given arguments, if ``condition`` is true. + +'${image}' in ${lkr_loc_img} +Change Image Folder +${imgpath}\\${LKR_UC} + + + + +Tries to locate given image from the screen for given time. + +${image} +timeout=${timeout} + + +${loc} + +Image "aae_viewer_b" found at (641, 709) +${loc} = (641, 709) + + + +Runs the given keyword with the given arguments, if ``condition`` is true. + +'${image}' in ${lkr_loc_img} +Change Image Folder +${imgpath} + + + +${loc} = (641, 709) + + + + +${loc} + + +Moves the mouse pointer to an absolute coordinates. + +${loc} + + + + +Clicks with the specified mouse button. + + + + + + + + +bviewer_opened +10 + + +Runs the given keyword with the given arguments, if ``condition`` is true. + +'${image}' in ${lkr_loc_img} +Change Image Folder +${imgpath}\\${LKR_UC} + + + + +Tries to locate given image from the screen for given time. + +${image} +timeout=${timeout} + + +${loc} + +Image "bviewer_opened" found at (652, 94) +${loc} = (652, 94) + + + +Runs the given keyword with the given arguments, if ``condition`` is true. + +'${image}' in ${lkr_loc_img} +Change Image Folder +${imgpath} + + + + + + +Pauses the test executed for the given time. + +0.5 + +Slept 500 milliseconds + + + + +bviewer_opened +timeout=10 + + + +${image} +${timeout} + + +${loc} + + +Runs the given keyword with the given arguments, if ``condition`` is true. + +'${image}' in ${lkr_loc_img} +Change Image Folder +${imgpath}\\${LKR_UC} + + + + +Tries to locate given image from the screen for given time. + +${image} +timeout=${timeout} + + +${loc} + +Image "bviewer_opened" found at (652, 94) +${loc} = (652, 94) + + + +Runs the given keyword with the given arguments, if ``condition`` is true. + +'${image}' in ${lkr_loc_img} +Change Image Folder +${imgpath} + + + +${loc} = (652, 94) + + + + +${loc} + + +Moves the mouse pointer to an absolute coordinates. + +${loc} + + + + +Clicks with the specified mouse button. + + + + + + + +Pauses the test executed for the given time. + +0.5 + +Slept 500 milliseconds + + + +Press given keyboard keys. + +Key.Win +Key.Up + + + + +Returns the given values which can then be assigned to a variables. + +ARCHIVETOOL_DOKU_${LKR_UC}_${anz_seiten} + + +${search_image} + +${search_image} = ARCHIVETOOL_DOKU_AI_300 + + + + +bviewer_opened +timeout=10 + + + +${image} +${timeout} + + +${loc} + + +Runs the given keyword with the given arguments, if ``condition`` is true. + +'${image}' in ${lkr_loc_img} +Change Image Folder +${imgpath}\\${LKR_UC} + + + + +Tries to locate given image from the screen for given time. + +${image} +timeout=${timeout} + + +${loc} + +Image "bviewer_opened" found at (11, 85) +${loc} = (11, 85) + + + +Runs the given keyword with the given arguments, if ``condition`` is true. + +'${image}' in ${lkr_loc_img} +Change Image Folder +${imgpath} + + + +${loc} = (11, 85) + + + + +${loc} + + +Moves the mouse pointer to an absolute coordinates. + +${loc} + + + + +Clicks with the specified mouse button. + + + + + + + +Tries to locate given image from the screen for given time. + +${search_image} +timeout=90 + +Image "ARCHIVETOOL_DOKU_AI_300" found at (147, 282) + + + +Press given keyboard keys. + +Key.Alt +Key.F4 + + + + + + + +aae_suche_clear +timeout=5 + + + +${image} +${timeout} + + +${loc} + + +Runs the given keyword with the given arguments, if ``condition`` is true. + +'${image}' in ${lkr_loc_img} +Change Image Folder +${imgpath}\\${LKR_UC} + + + + +Tries to locate given image from the screen for given time. + +${image} +timeout=${timeout} + + +${loc} + +Image "aae_suche_clear" found at (404, 709) +${loc} = (404, 709) + + + +Runs the given keyword with the given arguments, if ``condition`` is true. + +'${image}' in ${lkr_loc_img} +Change Image Folder +${imgpath} + + + +${loc} = (404, 709) + + + + +${loc} + + +Moves the mouse pointer to an absolute coordinates. + +${loc} + + + + +Clicks with the specified mouse button. + + + + + + + + +aae_dokumentennr_bereit +timeout=5 + + +Runs the given keyword with the given arguments, if ``condition`` is true. + +'${image}' in ${lkr_loc_img} +Change Image Folder +${imgpath}\\${LKR_UC} + + + + +Tries to locate given image from the screen for given time. + +${image} +timeout=${timeout} + + +${loc} + +Image "aae_dokumentennr_bereit" found at (569, 464) +${loc} = (569, 464) + + + +Runs the given keyword with the given arguments, if ``condition`` is true. + +'${image}' in ${lkr_loc_img} +Change Image Folder +${imgpath} + + + + + + +Evaluates the given expression in Python and returns the result. + +${i} + 1 + + +${i} + +${i} = 3 + + + + + + + + + + +Runs the given keyword with the given arguments, if ``condition`` is true. + +${APPOPEN}==${True} +Terminate Application +alias=archivetool + + +Terminates the process launched with `Launch Application` with +given ``alias``. + +alias=archivetool + + + + + + +Runs the given keyword with the given arguments, if ``condition`` is true. + +${APPOPEN}==${True} +Quit All Viewer Processes + + + +Runs a process and waits for it to complete. + +cmd.exe /c taskkill /IM ArchiveViewAdvancedA.exe +shell=True + +Starting process: +cmd.exe /c taskkill /IM ArchiveViewAdvancedA.exe +Waiting for process to complete. +Process completed. + + + +Runs a process and waits for it to complete. + +cmd.exe /c taskkill /IM ArchiveViewAdvancedB.exe +shell=True + +Starting process: +cmd.exe /c taskkill /IM ArchiveViewAdvancedB.exe +Waiting for process to complete. +Process completed. + + + +Runs a process and waits for it to complete. + +cmd.exe /c taskkill /IM ArchiveViewAdvancedC.exe +shell=True + +Starting process: +cmd.exe /c taskkill /IM ArchiveViewAdvancedC.exe +Waiting for process to complete. +Process completed. + + + +Runs a process and waits for it to complete. + +cmd.exe /c taskkill /IM +ArchivToolExtAdvanced.exe +shell=True + +Starting process: +"cmd.exe /c taskkill /IM" ArchivToolExtAdvanced.exe +Waiting for process to complete. +Process completed. + + + +Runs a process and waits for it to complete. + +cmd.exe /c taskkill /IM +archtool.exe +shell=True + +Starting process: +"cmd.exe /c taskkill /IM" archtool.exe +Waiting for process to complete. +Process completed. + + + + + + + +Makes a variable available everywhere within the scope of the current suite. + +${APPOPEN} +${False} + +${APPOPEN} = False + + + + + + + + + +FR + + +Sets where all reference images are stored. + +${imgpath} + + + + + +${lkr_uc} + + +Makes a variable available everywhere within the scope of the current test. + +${LKR_UC} +${lkr_uc} + +${LKR_UC} = FR + + + +Converts string to lower case. + +${lkr_uc} + + +${lkr_lc} + +${lkr_lc} = fr + + + +Makes a variable available everywhere within the scope of the current test. + +${LKR_LC} +${lkr_lc} + +${LKR_LC} = fr + + + +Makes a variable available everywhere within the scope of the current test. + +${lkr_docs} +${TESTDATA['${LKR_UC}']['docs']} + +${lkr_docs} = ['16060940', '16060970', '16061070'] + + + +Makes a variable available everywhere within the scope of the current test. + +${lkr_cred} +${TESTDATA['${LKR_UC}']['credentials']} + +${lkr_cred} = ['frrobo', 'crypt:pX750ZQk/P0/Jg8/j8+4eqh2uVLHVhHaQNZIU7+l4zO4u2saJPkDGq5o6G7mFVvUMQBGW56IxRq900qA'] + + + +Makes a variable available everywhere within the scope of the current test. + +${lkr_loc_img} +${TESTDATA['${LKR_UC}']['loc_img']} + +${lkr_loc_img} = ['aae_zeile_markiert'] + + + +Makes a variable available everywhere within the scope of the current test. + +${user} +${lkr_cred}[0] + +${user} = frrobo + + + +Decrypts cipher text and returns the plain text. + +${lkr_cred}[1] + + +${password} + +Decrypting text and return value. +${password} = *** + + + +Makes a variable available everywhere within the scope of the current test. + +${password} +${password} + +${password} = *** + + + + + + +Runs a process and waits for it to complete. + +cmd.exe /c taskkill /IM ArchiveViewAdvancedA.exe +shell=True + +Starting process: +cmd.exe /c taskkill /IM ArchiveViewAdvancedA.exe +Waiting for process to complete. +Process completed. + + + +Runs a process and waits for it to complete. + +cmd.exe /c taskkill /IM ArchiveViewAdvancedB.exe +shell=True + +Starting process: +cmd.exe /c taskkill /IM ArchiveViewAdvancedB.exe +Waiting for process to complete. +Process completed. + + + +Runs a process and waits for it to complete. + +cmd.exe /c taskkill /IM ArchiveViewAdvancedC.exe +shell=True + +Starting process: +cmd.exe /c taskkill /IM ArchiveViewAdvancedC.exe +Waiting for process to complete. +Process completed. + + + +Runs a process and waits for it to complete. + +cmd.exe /c taskkill /IM +ArchivToolExtAdvanced.exe +shell=True + +Starting process: +"cmd.exe /c taskkill /IM" ArchivToolExtAdvanced.exe +Waiting for process to complete. +Process completed. + + + +Runs a process and waits for it to complete. + +cmd.exe /c taskkill /IM +archtool.exe +shell=True + +Starting process: +"cmd.exe /c taskkill /IM" archtool.exe +Waiting for process to complete. +Process completed. + + + + + + +Runs a process and waits for it to complete. + +C:\\ProgramData\\checkmk\\agent\\robot\\archivetool\\ArchivetoolConfig\\sva_${LKR_LC} konfiguration.bat + +Starting process: +"C:\ProgramData\checkmk\agent\robot\archivetool\ArchivetoolConfig\sva_fr konfiguration.bat" +Waiting for process to complete. +Process completed. + + + +Launches an application. + +"${APP}" +alias=archivetool + + + + +Makes a variable available everywhere within the scope of the current suite. + +${APPOPEN} +${True} + +${APPOPEN} = True + + + + + + + +login_username +timeout=10 + + +${loc} + + +Runs the given keyword with the given arguments, if ``condition`` is true. + +'${image}' in ${lkr_loc_img} +Change Image Folder +${imgpath}\\${LKR_UC} + + + + +Tries to locate given image from the screen for given time. + +${image} +timeout=${timeout} + + +${loc} + +Image "login_username" found at (227, 149) +${loc} = (227, 149) + + + +Runs the given keyword with the given arguments, if ``condition`` is true. + +'${image}' in ${lkr_loc_img} +Change Image Folder +${imgpath} + + + +${loc} = (227, 149) + + + +Finds the reference image on screen and clicks it once. + +login_username + +Image "C:\ProgramData\checkmk\agent\robot\archivetool\images\login_username.png" found at Box(left=182, top=134, width=90, height=30) +Clicking image "login_username" in position (227, 149) + + + +Pauses the test executed for the given time. + +0.2 + +Slept 200 milliseconds + + + + +login_username +10 +20 +${user} + + + +${image} +${timeout} + + +${loc} + + +Runs the given keyword with the given arguments, if ``condition`` is true. + +'${image}' in ${lkr_loc_img} +Change Image Folder +${imgpath}\\${LKR_UC} + + + + +Tries to locate given image from the screen for given time. + +${image} +timeout=${timeout} + + +${loc} + +Image "login_username" found at (227, 149) +${loc} = (227, 149) + + + +Runs the given keyword with the given arguments, if ``condition`` is true. + +'${image}' in ${lkr_loc_img} +Change Image Folder +${imgpath} + + + +${loc} = (227, 149) + + + +Clicks right of given location by given offset. + +${loc} +${offset} + +Clicking 1 time(s) at (247, 149) with left mouse button at interval 0.000000 + + + +Type text and keyboard keys. + +@{text} + + + + + + +Pauses the test executed for the given time. + +0.2 + +Slept 200 milliseconds + + + +Type text and keyboard keys. + +Key.tab + + + + +Pauses the test executed for the given time. + +0.2 + +Slept 200 milliseconds + + + +Type text and keyboard keys. + +${password} +Key.enter +Key.enter + + + + + +archiv_vista_warn +timeout=5 + + + +${image} +${timeout} + + +${loc} + + +Runs the given keyword with the given arguments, if ``condition`` is true. + +'${image}' in ${lkr_loc_img} +Change Image Folder +${imgpath}\\${LKR_UC} + + + + +Tries to locate given image from the screen for given time. + +${image} +timeout=${timeout} + + +${loc} + +Image "archiv_vista_warn" found at (845, 559) +${loc} = (845, 559) + + + +Runs the given keyword with the given arguments, if ``condition`` is true. + +'${image}' in ${lkr_loc_img} +Change Image Folder +${imgpath} + + + +${loc} = (845, 559) + + + + +${loc} + + +Moves the mouse pointer to an absolute coordinates. + +${loc} + + + + +Clicks with the specified mouse button. + + + + + + + +Type text and keyboard keys. + +Key.enter + + + + +Tries to locate given image from the screen for given time. + +aae_toolbar +timeout=10 + +Image "aae_toolbar" found at (506, 709) + + + + + + +Returns ``True`` if reference image was found on screen or +``False`` otherwise. Never fails. + +aae_vorbelegung_checked + + +${vorbelegt_checked} + +${vorbelegt_checked} = False + + + +Runs the given keyword with the given arguments, if ``condition`` is true. + +${vorbelegt_checked}==${True} +Click Image +aae_vorbelegung_checked + + + + + + +Returns the given values which can then be assigned to a variables. + +0 + + +${i} + +${i} = 0 + + + + + + +${lkr_docs}[${i}] +${anz_seiten} + + +Makes a variable available everywhere within the scope of the current test. + +${dokid} +${lkr_doc} + +${dokid} = 16060940 + + + + +aae_dokumentennr +5 +100 +${lkr_doc} + + + +${image} +${timeout} + + +${loc} + + +Runs the given keyword with the given arguments, if ``condition`` is true. + +'${image}' in ${lkr_loc_img} +Change Image Folder +${imgpath}\\${LKR_UC} + + + + +Tries to locate given image from the screen for given time. + +${image} +timeout=${timeout} + + +${loc} + +Image "aae_dokumentennr" found at (452, 463) +${loc} = (452, 463) + + + +Runs the given keyword with the given arguments, if ``condition`` is true. + +'${image}' in ${lkr_loc_img} +Change Image Folder +${imgpath} + + + +${loc} = (452, 463) + + + +Clicks right of given location by given offset. + +${loc} +${offset} + +Clicking 1 time(s) at (552, 463) with left mouse button at interval 0.000000 + + + +Type text and keyboard keys. + +@{text} + + + + + + +Type text and keyboard keys. + +Key.enter + + + + + +aae_treffer_1 +timeout=10 + + + +${image} +${timeout} + + +${loc} + + +Runs the given keyword with the given arguments, if ``condition`` is true. + +'${image}' in ${lkr_loc_img} +Change Image Folder +${imgpath}\\${LKR_UC} + + + + +Tries to locate given image from the screen for given time. + +${image} +timeout=${timeout} + + +${loc} + +Image "aae_treffer_1" found at (870, 745) +${loc} = (870, 745) + + + +Runs the given keyword with the given arguments, if ``condition`` is true. + +'${image}' in ${lkr_loc_img} +Change Image Folder +${imgpath} + + + +${loc} = (870, 745) + + + + +${loc} + + +Moves the mouse pointer to an absolute coordinates. + +${loc} + + + + +Clicks with the specified mouse button. + + + + + + + +Type text and keyboard keys. + +Key.Tab +Key.Tab +Key.Tab +Key.Tab +Key.right + + + + + +aae_zeile_markiert +timeout=10 + + + +${image} +${timeout} + + +${loc} + + +Runs the given keyword with the given arguments, if ``condition`` is true. + +'${image}' in ${lkr_loc_img} +Change Image Folder +${imgpath}\\${LKR_UC} + + + +${imgpath}\\${LKR_UC} + + +Sets where all reference images are stored. + +${path} + + + + + + + + +Tries to locate given image from the screen for given time. + +${image} +timeout=${timeout} + + +${loc} + +Image "aae_zeile_markiert" found at (720, 787) +${loc} = (720, 787) + + + +Runs the given keyword with the given arguments, if ``condition`` is true. + +'${image}' in ${lkr_loc_img} +Change Image Folder +${imgpath} + + + +${imgpath} + + +Sets where all reference images are stored. + +${path} + + + + + + + +${loc} = (720, 787) + + + + +${loc} + + +Moves the mouse pointer to an absolute coordinates. + +${loc} + + + + +Clicks with the specified mouse button. + + + + + + + + +aae_viewer_b +timeout=10 + + + +${image} +${timeout} + + +${loc} + + +Runs the given keyword with the given arguments, if ``condition`` is true. + +'${image}' in ${lkr_loc_img} +Change Image Folder +${imgpath}\\${LKR_UC} + + + + +Tries to locate given image from the screen for given time. + +${image} +timeout=${timeout} + + +${loc} + +Image "aae_viewer_b" found at (641, 709) +${loc} = (641, 709) + + + +Runs the given keyword with the given arguments, if ``condition`` is true. + +'${image}' in ${lkr_loc_img} +Change Image Folder +${imgpath} + + + +${loc} = (641, 709) + + + + +${loc} + + +Moves the mouse pointer to an absolute coordinates. + +${loc} + + + + +Clicks with the specified mouse button. + + + + + + + + +bviewer_opened +10 + + +Runs the given keyword with the given arguments, if ``condition`` is true. + +'${image}' in ${lkr_loc_img} +Change Image Folder +${imgpath}\\${LKR_UC} + + + + +Tries to locate given image from the screen for given time. + +${image} +timeout=${timeout} + + +${loc} + +Image "bviewer_opened" found at (652, 94) +${loc} = (652, 94) + + + +Runs the given keyword with the given arguments, if ``condition`` is true. + +'${image}' in ${lkr_loc_img} +Change Image Folder +${imgpath} + + + + + + +Pauses the test executed for the given time. + +0.5 + +Slept 500 milliseconds + + + + +bviewer_opened +timeout=10 + + + +${image} +${timeout} + + +${loc} + + +Runs the given keyword with the given arguments, if ``condition`` is true. + +'${image}' in ${lkr_loc_img} +Change Image Folder +${imgpath}\\${LKR_UC} + + + + +Tries to locate given image from the screen for given time. + +${image} +timeout=${timeout} + + +${loc} + +Image "bviewer_opened" found at (652, 94) +${loc} = (652, 94) + + + +Runs the given keyword with the given arguments, if ``condition`` is true. + +'${image}' in ${lkr_loc_img} +Change Image Folder +${imgpath} + + + +${loc} = (652, 94) + + + + +${loc} + + +Moves the mouse pointer to an absolute coordinates. + +${loc} + + + + +Clicks with the specified mouse button. + + + + + + + +Pauses the test executed for the given time. + +0.5 + +Slept 500 milliseconds + + + +Press given keyboard keys. + +Key.Win +Key.Up + + + + +Returns the given values which can then be assigned to a variables. + +ARCHIVETOOL_DOKU_${LKR_UC}_${anz_seiten} + + +${search_image} + +${search_image} = ARCHIVETOOL_DOKU_FR_30 + + + + +bviewer_opened +timeout=10 + + + +${image} +${timeout} + + +${loc} + + +Runs the given keyword with the given arguments, if ``condition`` is true. + +'${image}' in ${lkr_loc_img} +Change Image Folder +${imgpath}\\${LKR_UC} + + + + +Tries to locate given image from the screen for given time. + +${image} +timeout=${timeout} + + +${loc} + +Image "bviewer_opened" found at (11, 85) +${loc} = (11, 85) + + + +Runs the given keyword with the given arguments, if ``condition`` is true. + +'${image}' in ${lkr_loc_img} +Change Image Folder +${imgpath} + + + +${loc} = (11, 85) + + + + +${loc} + + +Moves the mouse pointer to an absolute coordinates. + +${loc} + + + + +Clicks with the specified mouse button. + + + + + + + +Tries to locate given image from the screen for given time. + +${search_image} +timeout=90 + +Image "ARCHIVETOOL_DOKU_FR_30" found at (175, 208) + + + +Press given keyboard keys. + +Key.Alt +Key.F4 + + + + + + + +aae_suche_clear +timeout=5 + + + +${image} +${timeout} + + +${loc} + + +Runs the given keyword with the given arguments, if ``condition`` is true. + +'${image}' in ${lkr_loc_img} +Change Image Folder +${imgpath}\\${LKR_UC} + + + + +Tries to locate given image from the screen for given time. + +${image} +timeout=${timeout} + + +${loc} + +Image "aae_suche_clear" found at (404, 709) +${loc} = (404, 709) + + + +Runs the given keyword with the given arguments, if ``condition`` is true. + +'${image}' in ${lkr_loc_img} +Change Image Folder +${imgpath} + + + +${loc} = (404, 709) + + + + +${loc} + + +Moves the mouse pointer to an absolute coordinates. + +${loc} + + + + +Clicks with the specified mouse button. + + + + + + + + +aae_dokumentennr_bereit +timeout=5 + + +Runs the given keyword with the given arguments, if ``condition`` is true. + +'${image}' in ${lkr_loc_img} +Change Image Folder +${imgpath}\\${LKR_UC} + + + + +Tries to locate given image from the screen for given time. + +${image} +timeout=${timeout} + + +${loc} + +Image "aae_dokumentennr_bereit" found at (569, 464) +${loc} = (569, 464) + + + +Runs the given keyword with the given arguments, if ``condition`` is true. + +'${image}' in ${lkr_loc_img} +Change Image Folder +${imgpath} + + + + + + +Evaluates the given expression in Python and returns the result. + +${i} + 1 + + +${i} + +${i} = 1 + + + + + + + +${lkr_docs}[${i}] +${anz_seiten} + + +Makes a variable available everywhere within the scope of the current test. + +${dokid} +${lkr_doc} + +${dokid} = 16060970 + + + + +aae_dokumentennr +5 +100 +${lkr_doc} + + + +${image} +${timeout} + + +${loc} + + +Runs the given keyword with the given arguments, if ``condition`` is true. + +'${image}' in ${lkr_loc_img} +Change Image Folder +${imgpath}\\${LKR_UC} + + + + +Tries to locate given image from the screen for given time. + +${image} +timeout=${timeout} + + +${loc} + +Image "aae_dokumentennr" found at (452, 463) +${loc} = (452, 463) + + + +Runs the given keyword with the given arguments, if ``condition`` is true. + +'${image}' in ${lkr_loc_img} +Change Image Folder +${imgpath} + + + +${loc} = (452, 463) + + + +Clicks right of given location by given offset. + +${loc} +${offset} + +Clicking 1 time(s) at (552, 463) with left mouse button at interval 0.000000 + + + +Type text and keyboard keys. + +@{text} + + + + + + +Type text and keyboard keys. + +Key.enter + + + + + +aae_treffer_1 +timeout=10 + + + +${image} +${timeout} + + +${loc} + + +Runs the given keyword with the given arguments, if ``condition`` is true. + +'${image}' in ${lkr_loc_img} +Change Image Folder +${imgpath}\\${LKR_UC} + + + + +Tries to locate given image from the screen for given time. + +${image} +timeout=${timeout} + + +${loc} + +Image "aae_treffer_1" found at (870, 745) +${loc} = (870, 745) + + + +Runs the given keyword with the given arguments, if ``condition`` is true. + +'${image}' in ${lkr_loc_img} +Change Image Folder +${imgpath} + + + +${loc} = (870, 745) + + + + +${loc} + + +Moves the mouse pointer to an absolute coordinates. + +${loc} + + + + +Clicks with the specified mouse button. + + + + + + + +Type text and keyboard keys. + +Key.Tab +Key.Tab +Key.Tab +Key.Tab +Key.right + + + + + +aae_zeile_markiert +timeout=10 + + + +${image} +${timeout} + + +${loc} + + +Runs the given keyword with the given arguments, if ``condition`` is true. + +'${image}' in ${lkr_loc_img} +Change Image Folder +${imgpath}\\${LKR_UC} + + + +${imgpath}\\${LKR_UC} + + +Sets where all reference images are stored. + +${path} + + + + + + + + +Tries to locate given image from the screen for given time. + +${image} +timeout=${timeout} + + +${loc} + +Image "aae_zeile_markiert" found at (720, 787) +${loc} = (720, 787) + + + +Runs the given keyword with the given arguments, if ``condition`` is true. + +'${image}' in ${lkr_loc_img} +Change Image Folder +${imgpath} + + + +${imgpath} + + +Sets where all reference images are stored. + +${path} + + + + + + + +${loc} = (720, 787) + + + + +${loc} + + +Moves the mouse pointer to an absolute coordinates. + +${loc} + + + + +Clicks with the specified mouse button. + + + + + + + + +aae_viewer_b +timeout=10 + + + +${image} +${timeout} + + +${loc} + + +Runs the given keyword with the given arguments, if ``condition`` is true. + +'${image}' in ${lkr_loc_img} +Change Image Folder +${imgpath}\\${LKR_UC} + + + + +Tries to locate given image from the screen for given time. + +${image} +timeout=${timeout} + + +${loc} + +Image "aae_viewer_b" found at (641, 709) +${loc} = (641, 709) + + + +Runs the given keyword with the given arguments, if ``condition`` is true. + +'${image}' in ${lkr_loc_img} +Change Image Folder +${imgpath} + + + +${loc} = (641, 709) + + + + +${loc} + + +Moves the mouse pointer to an absolute coordinates. + +${loc} + + + + +Clicks with the specified mouse button. + + + + + + + + +bviewer_opened +10 + + +Runs the given keyword with the given arguments, if ``condition`` is true. + +'${image}' in ${lkr_loc_img} +Change Image Folder +${imgpath}\\${LKR_UC} + + + + +Tries to locate given image from the screen for given time. + +${image} +timeout=${timeout} + + +${loc} + +Image "bviewer_opened" found at (652, 94) +${loc} = (652, 94) + + + +Runs the given keyword with the given arguments, if ``condition`` is true. + +'${image}' in ${lkr_loc_img} +Change Image Folder +${imgpath} + + + + + + +Pauses the test executed for the given time. + +0.5 + +Slept 500 milliseconds + + + + +bviewer_opened +timeout=10 + + + +${image} +${timeout} + + +${loc} + + +Runs the given keyword with the given arguments, if ``condition`` is true. + +'${image}' in ${lkr_loc_img} +Change Image Folder +${imgpath}\\${LKR_UC} + + + + +Tries to locate given image from the screen for given time. + +${image} +timeout=${timeout} + + +${loc} + +Image "bviewer_opened" found at (652, 94) +${loc} = (652, 94) + + + +Runs the given keyword with the given arguments, if ``condition`` is true. + +'${image}' in ${lkr_loc_img} +Change Image Folder +${imgpath} + + + +${loc} = (652, 94) + + + + +${loc} + + +Moves the mouse pointer to an absolute coordinates. + +${loc} + + + + +Clicks with the specified mouse button. + + + + + + + +Pauses the test executed for the given time. + +0.5 + +Slept 500 milliseconds + + + +Press given keyboard keys. + +Key.Win +Key.Up + + + + +Returns the given values which can then be assigned to a variables. + +ARCHIVETOOL_DOKU_${LKR_UC}_${anz_seiten} + + +${search_image} + +${search_image} = ARCHIVETOOL_DOKU_FR_100 + + + + +bviewer_opened +timeout=10 + + + +${image} +${timeout} + + +${loc} + + +Runs the given keyword with the given arguments, if ``condition`` is true. + +'${image}' in ${lkr_loc_img} +Change Image Folder +${imgpath}\\${LKR_UC} + + + + +Tries to locate given image from the screen for given time. + +${image} +timeout=${timeout} + + +${loc} + +Image "bviewer_opened" found at (11, 85) +${loc} = (11, 85) + + + +Runs the given keyword with the given arguments, if ``condition`` is true. + +'${image}' in ${lkr_loc_img} +Change Image Folder +${imgpath} + + + +${loc} = (11, 85) + + + + +${loc} + + +Moves the mouse pointer to an absolute coordinates. + +${loc} + + + + +Clicks with the specified mouse button. + + + + + + + +Tries to locate given image from the screen for given time. + +${search_image} +timeout=90 + +Image "ARCHIVETOOL_DOKU_FR_100" found at (169, 191) + + + +Press given keyboard keys. + +Key.Alt +Key.F4 + + + + + + + +aae_suche_clear +timeout=5 + + + +${image} +${timeout} + + +${loc} + + +Runs the given keyword with the given arguments, if ``condition`` is true. + +'${image}' in ${lkr_loc_img} +Change Image Folder +${imgpath}\\${LKR_UC} + + + + +Tries to locate given image from the screen for given time. + +${image} +timeout=${timeout} + + +${loc} + +Image "aae_suche_clear" found at (404, 709) +${loc} = (404, 709) + + + +Runs the given keyword with the given arguments, if ``condition`` is true. + +'${image}' in ${lkr_loc_img} +Change Image Folder +${imgpath} + + + +${loc} = (404, 709) + + + + +${loc} + + +Moves the mouse pointer to an absolute coordinates. + +${loc} + + + + +Clicks with the specified mouse button. + + + + + + + + +aae_dokumentennr_bereit +timeout=5 + + +Runs the given keyword with the given arguments, if ``condition`` is true. + +'${image}' in ${lkr_loc_img} +Change Image Folder +${imgpath}\\${LKR_UC} + + + + +Tries to locate given image from the screen for given time. + +${image} +timeout=${timeout} + + +${loc} + +Image "aae_dokumentennr_bereit" found at (569, 464) +${loc} = (569, 464) + + + +Runs the given keyword with the given arguments, if ``condition`` is true. + +'${image}' in ${lkr_loc_img} +Change Image Folder +${imgpath} + + + + + + +Evaluates the given expression in Python and returns the result. + +${i} + 1 + + +${i} + +${i} = 2 + + + + + + + +${lkr_docs}[${i}] +${anz_seiten} + + +Makes a variable available everywhere within the scope of the current test. + +${dokid} +${lkr_doc} + +${dokid} = 16061070 + + + + +aae_dokumentennr +5 +100 +${lkr_doc} + + + +${image} +${timeout} + + +${loc} + + +Runs the given keyword with the given arguments, if ``condition`` is true. + +'${image}' in ${lkr_loc_img} +Change Image Folder +${imgpath}\\${LKR_UC} + + + + +Tries to locate given image from the screen for given time. + +${image} +timeout=${timeout} + + +${loc} + +Image "aae_dokumentennr" found at (452, 463) +${loc} = (452, 463) + + + +Runs the given keyword with the given arguments, if ``condition`` is true. + +'${image}' in ${lkr_loc_img} +Change Image Folder +${imgpath} + + + +${loc} = (452, 463) + + + +Clicks right of given location by given offset. + +${loc} +${offset} + +Clicking 1 time(s) at (552, 463) with left mouse button at interval 0.000000 + + + +Type text and keyboard keys. + +@{text} + + + + + + +Type text and keyboard keys. + +Key.enter + + + + + +aae_treffer_1 +timeout=10 + + + +${image} +${timeout} + + +${loc} + + +Runs the given keyword with the given arguments, if ``condition`` is true. + +'${image}' in ${lkr_loc_img} +Change Image Folder +${imgpath}\\${LKR_UC} + + + + +Tries to locate given image from the screen for given time. + +${image} +timeout=${timeout} + + +${loc} + +Image "aae_treffer_1" found at (870, 745) +${loc} = (870, 745) + + + +Runs the given keyword with the given arguments, if ``condition`` is true. + +'${image}' in ${lkr_loc_img} +Change Image Folder +${imgpath} + + + +${loc} = (870, 745) + + + + +${loc} + + +Moves the mouse pointer to an absolute coordinates. + +${loc} + + + + +Clicks with the specified mouse button. + + + + + + + +Type text and keyboard keys. + +Key.Tab +Key.Tab +Key.Tab +Key.Tab +Key.right + + + + + +aae_zeile_markiert +timeout=10 + + + +${image} +${timeout} + + +${loc} + + +Runs the given keyword with the given arguments, if ``condition`` is true. + +'${image}' in ${lkr_loc_img} +Change Image Folder +${imgpath}\\${LKR_UC} + + + +${imgpath}\\${LKR_UC} + + +Sets where all reference images are stored. + +${path} + + + + + + + + +Tries to locate given image from the screen for given time. + +${image} +timeout=${timeout} + + +${loc} + +Image "aae_zeile_markiert" found at (720, 787) +${loc} = (720, 787) + + + +Runs the given keyword with the given arguments, if ``condition`` is true. + +'${image}' in ${lkr_loc_img} +Change Image Folder +${imgpath} + + + +${imgpath} + + +Sets where all reference images are stored. + +${path} + + + + + + + +${loc} = (720, 787) + + + + +${loc} + + +Moves the mouse pointer to an absolute coordinates. + +${loc} + + + + +Clicks with the specified mouse button. + + + + + + + + +aae_viewer_b +timeout=10 + + + +${image} +${timeout} + + +${loc} + + +Runs the given keyword with the given arguments, if ``condition`` is true. + +'${image}' in ${lkr_loc_img} +Change Image Folder +${imgpath}\\${LKR_UC} + + + + +Tries to locate given image from the screen for given time. + +${image} +timeout=${timeout} + + +${loc} + +Image "aae_viewer_b" found at (641, 709) +${loc} = (641, 709) + + + +Runs the given keyword with the given arguments, if ``condition`` is true. + +'${image}' in ${lkr_loc_img} +Change Image Folder +${imgpath} + + + +${loc} = (641, 709) + + + + +${loc} + + +Moves the mouse pointer to an absolute coordinates. + +${loc} + + + + +Clicks with the specified mouse button. + + + + + + + + +bviewer_opened +10 + + +Runs the given keyword with the given arguments, if ``condition`` is true. + +'${image}' in ${lkr_loc_img} +Change Image Folder +${imgpath}\\${LKR_UC} + + + + +Tries to locate given image from the screen for given time. + +${image} +timeout=${timeout} + + +${loc} + +Image "bviewer_opened" found at (652, 94) +${loc} = (652, 94) + + + +Runs the given keyword with the given arguments, if ``condition`` is true. + +'${image}' in ${lkr_loc_img} +Change Image Folder +${imgpath} + + + + + + +Pauses the test executed for the given time. + +0.5 + +Slept 500 milliseconds + + + + +bviewer_opened +timeout=10 + + + +${image} +${timeout} + + +${loc} + + +Runs the given keyword with the given arguments, if ``condition`` is true. + +'${image}' in ${lkr_loc_img} +Change Image Folder +${imgpath}\\${LKR_UC} + + + + +Tries to locate given image from the screen for given time. + +${image} +timeout=${timeout} + + +${loc} + +Image "bviewer_opened" found at (652, 94) +${loc} = (652, 94) + + + +Runs the given keyword with the given arguments, if ``condition`` is true. + +'${image}' in ${lkr_loc_img} +Change Image Folder +${imgpath} + + + +${loc} = (652, 94) + + + + +${loc} + + +Moves the mouse pointer to an absolute coordinates. + +${loc} + + + + +Clicks with the specified mouse button. + + + + + + + +Pauses the test executed for the given time. + +0.5 + +Slept 500 milliseconds + + + +Press given keyboard keys. + +Key.Win +Key.Up + + + + +Returns the given values which can then be assigned to a variables. + +ARCHIVETOOL_DOKU_${LKR_UC}_${anz_seiten} + + +${search_image} + +${search_image} = ARCHIVETOOL_DOKU_FR_300 + + + + +bviewer_opened +timeout=10 + + + +${image} +${timeout} + + +${loc} + + +Runs the given keyword with the given arguments, if ``condition`` is true. + +'${image}' in ${lkr_loc_img} +Change Image Folder +${imgpath}\\${LKR_UC} + + + + +Tries to locate given image from the screen for given time. + +${image} +timeout=${timeout} + + +${loc} + +Image "bviewer_opened" found at (11, 85) +${loc} = (11, 85) + + + +Runs the given keyword with the given arguments, if ``condition`` is true. + +'${image}' in ${lkr_loc_img} +Change Image Folder +${imgpath} + + + +${loc} = (11, 85) + + + + +${loc} + + +Moves the mouse pointer to an absolute coordinates. + +${loc} + + + + +Clicks with the specified mouse button. + + + + + + + +Tries to locate given image from the screen for given time. + +${search_image} +timeout=90 + +Image "ARCHIVETOOL_DOKU_FR_300" found at (184, 199) + + + +Press given keyboard keys. + +Key.Alt +Key.F4 + + + + + + + +aae_suche_clear +timeout=5 + + + +${image} +${timeout} + + +${loc} + + +Runs the given keyword with the given arguments, if ``condition`` is true. + +'${image}' in ${lkr_loc_img} +Change Image Folder +${imgpath}\\${LKR_UC} + + + + +Tries to locate given image from the screen for given time. + +${image} +timeout=${timeout} + + +${loc} + +Image "aae_suche_clear" found at (404, 709) +${loc} = (404, 709) + + + +Runs the given keyword with the given arguments, if ``condition`` is true. + +'${image}' in ${lkr_loc_img} +Change Image Folder +${imgpath} + + + +${loc} = (404, 709) + + + + +${loc} + + +Moves the mouse pointer to an absolute coordinates. + +${loc} + + + + +Clicks with the specified mouse button. + + + + + + + + +aae_dokumentennr_bereit +timeout=5 + + +Runs the given keyword with the given arguments, if ``condition`` is true. + +'${image}' in ${lkr_loc_img} +Change Image Folder +${imgpath}\\${LKR_UC} + + + + +Tries to locate given image from the screen for given time. + +${image} +timeout=${timeout} + + +${loc} + +Image "aae_dokumentennr_bereit" found at (569, 464) +${loc} = (569, 464) + + + +Runs the given keyword with the given arguments, if ``condition`` is true. + +'${image}' in ${lkr_loc_img} +Change Image Folder +${imgpath} + + + + + + +Evaluates the given expression in Python and returns the result. + +${i} + 1 + + +${i} + +${i} = 3 + + + + + + + + + + +Runs the given keyword with the given arguments, if ``condition`` is true. + +${APPOPEN}==${True} +Terminate Application +alias=archivetool + + +Terminates the process launched with `Launch Application` with +given ``alias``. + +alias=archivetool + + + + + + +Runs the given keyword with the given arguments, if ``condition`` is true. + +${APPOPEN}==${True} +Quit All Viewer Processes + + + +Runs a process and waits for it to complete. + +cmd.exe /c taskkill /IM ArchiveViewAdvancedA.exe +shell=True + +Starting process: +cmd.exe /c taskkill /IM ArchiveViewAdvancedA.exe +Waiting for process to complete. +Process completed. + + + +Runs a process and waits for it to complete. + +cmd.exe /c taskkill /IM ArchiveViewAdvancedB.exe +shell=True + +Starting process: +cmd.exe /c taskkill /IM ArchiveViewAdvancedB.exe +Waiting for process to complete. +Process completed. + + + +Runs a process and waits for it to complete. + +cmd.exe /c taskkill /IM ArchiveViewAdvancedC.exe +shell=True + +Starting process: +cmd.exe /c taskkill /IM ArchiveViewAdvancedC.exe +Waiting for process to complete. +Process completed. + + + +Runs a process and waits for it to complete. + +cmd.exe /c taskkill /IM +ArchivToolExtAdvanced.exe +shell=True + +Starting process: +"cmd.exe /c taskkill /IM" ArchivToolExtAdvanced.exe +Waiting for process to complete. +Process completed. + + + +Runs a process and waits for it to complete. + +cmd.exe /c taskkill /IM +archtool.exe +shell=True + +Starting process: +"cmd.exe /c taskkill /IM" archtool.exe +Waiting for process to complete. +Process completed. + + + + + + + +Makes a variable available everywhere within the scope of the current suite. + +${APPOPEN} +${False} + +${APPOPEN} = False + + + + + + + + + +OW + + +Sets where all reference images are stored. + +${imgpath} + + + + + +${lkr_uc} + + +Makes a variable available everywhere within the scope of the current test. + +${LKR_UC} +${lkr_uc} + +${LKR_UC} = OW + + + +Converts string to lower case. + +${lkr_uc} + + +${lkr_lc} + +${lkr_lc} = ow + + + +Makes a variable available everywhere within the scope of the current test. + +${LKR_LC} +${lkr_lc} + +${LKR_LC} = ow + + + +Makes a variable available everywhere within the scope of the current test. + +${lkr_docs} +${TESTDATA['${LKR_UC}']['docs']} + +${lkr_docs} = ['4743187', '4743199', '4743308'] + + + +Makes a variable available everywhere within the scope of the current test. + +${lkr_cred} +${TESTDATA['${LKR_UC}']['credentials']} + +${lkr_cred} = ['owrobo', 'crypt:cL5h6dBPgc/5yY+/otK1ubUHl2c6+z0uF97R6xLhmDW9L8XSnCNHhnR/jGTwYwsM34TBpmWg13vb'] + + + +Makes a variable available everywhere within the scope of the current test. + +${lkr_loc_img} +${TESTDATA['${LKR_UC}']['loc_img']} + +${lkr_loc_img} = [] + + + +Makes a variable available everywhere within the scope of the current test. + +${user} +${lkr_cred}[0] + +${user} = owrobo + + + +Decrypts cipher text and returns the plain text. + +${lkr_cred}[1] + + +${password} + +Decrypting text and return value. +${password} = *** + + + +Makes a variable available everywhere within the scope of the current test. + +${password} +${password} + +${password} = *** + + + + + + +Runs a process and waits for it to complete. + +cmd.exe /c taskkill /IM ArchiveViewAdvancedA.exe +shell=True + +Starting process: +cmd.exe /c taskkill /IM ArchiveViewAdvancedA.exe +Waiting for process to complete. +Process completed. + + + +Runs a process and waits for it to complete. + +cmd.exe /c taskkill /IM ArchiveViewAdvancedB.exe +shell=True + +Starting process: +cmd.exe /c taskkill /IM ArchiveViewAdvancedB.exe +Waiting for process to complete. +Process completed. + + + +Runs a process and waits for it to complete. + +cmd.exe /c taskkill /IM ArchiveViewAdvancedC.exe +shell=True + +Starting process: +cmd.exe /c taskkill /IM ArchiveViewAdvancedC.exe +Waiting for process to complete. +Process completed. + + + +Runs a process and waits for it to complete. + +cmd.exe /c taskkill /IM +ArchivToolExtAdvanced.exe +shell=True + +Starting process: +"cmd.exe /c taskkill /IM" ArchivToolExtAdvanced.exe +Waiting for process to complete. +Process completed. + + + +Runs a process and waits for it to complete. + +cmd.exe /c taskkill /IM +archtool.exe +shell=True + +Starting process: +"cmd.exe /c taskkill /IM" archtool.exe +Waiting for process to complete. +Process completed. + + + + + + +Runs a process and waits for it to complete. + +C:\\ProgramData\\checkmk\\agent\\robot\\archivetool\\ArchivetoolConfig\\sva_${LKR_LC} konfiguration.bat + +Starting process: +"C:\ProgramData\checkmk\agent\robot\archivetool\ArchivetoolConfig\sva_ow konfiguration.bat" +Waiting for process to complete. +Process completed. + + + +Launches an application. + +"${APP}" +alias=archivetool + + + + +Makes a variable available everywhere within the scope of the current suite. + +${APPOPEN} +${True} + +${APPOPEN} = True + + + + + + + +login_username +timeout=10 + + +${loc} + + +Runs the given keyword with the given arguments, if ``condition`` is true. + +'${image}' in ${lkr_loc_img} +Change Image Folder +${imgpath}\\${LKR_UC} + + + + +Tries to locate given image from the screen for given time. + +${image} +timeout=${timeout} + + +${loc} + +Image "login_username" found at (227, 149) +${loc} = (227, 149) + + + +Runs the given keyword with the given arguments, if ``condition`` is true. + +'${image}' in ${lkr_loc_img} +Change Image Folder +${imgpath} + + + +${loc} = (227, 149) + + + +Finds the reference image on screen and clicks it once. + +login_username + +Image "C:\ProgramData\checkmk\agent\robot\archivetool\images\login_username.png" found at Box(left=182, top=134, width=90, height=30) +Clicking image "login_username" in position (227, 149) + + + +Pauses the test executed for the given time. + +0.2 + +Slept 200 milliseconds + + + + +login_username +10 +20 +${user} + + + +${image} +${timeout} + + +${loc} + + +Runs the given keyword with the given arguments, if ``condition`` is true. + +'${image}' in ${lkr_loc_img} +Change Image Folder +${imgpath}\\${LKR_UC} + + + + +Tries to locate given image from the screen for given time. + +${image} +timeout=${timeout} + + +${loc} + +Image "login_username" found at (227, 149) +${loc} = (227, 149) + + + +Runs the given keyword with the given arguments, if ``condition`` is true. + +'${image}' in ${lkr_loc_img} +Change Image Folder +${imgpath} + + + +${loc} = (227, 149) + + + +Clicks right of given location by given offset. + +${loc} +${offset} + +Clicking 1 time(s) at (247, 149) with left mouse button at interval 0.000000 + + + +Type text and keyboard keys. + +@{text} + + + + + + +Pauses the test executed for the given time. + +0.2 + +Slept 200 milliseconds + + + +Type text and keyboard keys. + +Key.tab + + + + +Pauses the test executed for the given time. + +0.2 + +Slept 200 milliseconds + + + +Type text and keyboard keys. + +${password} +Key.enter +Key.enter + + + + + +archiv_vista_warn +timeout=5 + + + +${image} +${timeout} + + +${loc} + + +Runs the given keyword with the given arguments, if ``condition`` is true. + +'${image}' in ${lkr_loc_img} +Change Image Folder +${imgpath}\\${LKR_UC} + + + + +Tries to locate given image from the screen for given time. + +${image} +timeout=${timeout} + + +${loc} + +Image "archiv_vista_warn" found at (845, 559) +${loc} = (845, 559) + + + +Runs the given keyword with the given arguments, if ``condition`` is true. + +'${image}' in ${lkr_loc_img} +Change Image Folder +${imgpath} + + + +${loc} = (845, 559) + + + + +${loc} + + +Moves the mouse pointer to an absolute coordinates. + +${loc} + + + + +Clicks with the specified mouse button. + + + + + + + +Type text and keyboard keys. + +Key.enter + + + + +Tries to locate given image from the screen for given time. + +aae_toolbar +timeout=10 + +Image "aae_toolbar" found at (506, 709) + + + + + + +Returns ``True`` if reference image was found on screen or +``False`` otherwise. Never fails. + +aae_vorbelegung_checked + + +${vorbelegt_checked} + +${vorbelegt_checked} = False + + + +Runs the given keyword with the given arguments, if ``condition`` is true. + +${vorbelegt_checked}==${True} +Click Image +aae_vorbelegung_checked + + + + + + +Returns the given values which can then be assigned to a variables. + +0 + + +${i} + +${i} = 0 + + + + + + +${lkr_docs}[${i}] +${anz_seiten} + + +Makes a variable available everywhere within the scope of the current test. + +${dokid} +${lkr_doc} + +${dokid} = 4743187 + + + + +aae_dokumentennr +5 +100 +${lkr_doc} + + + +${image} +${timeout} + + +${loc} + + +Runs the given keyword with the given arguments, if ``condition`` is true. + +'${image}' in ${lkr_loc_img} +Change Image Folder +${imgpath}\\${LKR_UC} + + + + +Tries to locate given image from the screen for given time. + +${image} +timeout=${timeout} + + +${loc} + +Image "aae_dokumentennr" found at (452, 463) +${loc} = (452, 463) + + + +Runs the given keyword with the given arguments, if ``condition`` is true. + +'${image}' in ${lkr_loc_img} +Change Image Folder +${imgpath} + + + +${loc} = (452, 463) + + + +Clicks right of given location by given offset. + +${loc} +${offset} + +Clicking 1 time(s) at (552, 463) with left mouse button at interval 0.000000 + + + +Type text and keyboard keys. + +@{text} + + + + + + +Type text and keyboard keys. + +Key.enter + + + + + +aae_treffer_1 +timeout=10 + + + +${image} +${timeout} + + +${loc} + + +Runs the given keyword with the given arguments, if ``condition`` is true. + +'${image}' in ${lkr_loc_img} +Change Image Folder +${imgpath}\\${LKR_UC} + + + + +Tries to locate given image from the screen for given time. + +${image} +timeout=${timeout} + + +${loc} + +Image "aae_treffer_1" found at (870, 745) +${loc} = (870, 745) + + + +Runs the given keyword with the given arguments, if ``condition`` is true. + +'${image}' in ${lkr_loc_img} +Change Image Folder +${imgpath} + + + +${loc} = (870, 745) + + + + +${loc} + + +Moves the mouse pointer to an absolute coordinates. + +${loc} + + + + +Clicks with the specified mouse button. + + + + + + + +Type text and keyboard keys. + +Key.Tab +Key.Tab +Key.Tab +Key.Tab +Key.right + + + + + +aae_zeile_markiert +timeout=10 + + + +${image} +${timeout} + + +${loc} + + +Runs the given keyword with the given arguments, if ``condition`` is true. + +'${image}' in ${lkr_loc_img} +Change Image Folder +${imgpath}\\${LKR_UC} + + + + +Tries to locate given image from the screen for given time. + +${image} +timeout=${timeout} + + +${loc} + +Image "aae_zeile_markiert" found at (423, 786) +${loc} = (423, 786) + + + +Runs the given keyword with the given arguments, if ``condition`` is true. + +'${image}' in ${lkr_loc_img} +Change Image Folder +${imgpath} + + + +${loc} = (423, 786) + + + + +${loc} + + +Moves the mouse pointer to an absolute coordinates. + +${loc} + + + + +Clicks with the specified mouse button. + + + + + + + + +aae_viewer_b +timeout=10 + + + +${image} +${timeout} + + +${loc} + + +Runs the given keyword with the given arguments, if ``condition`` is true. + +'${image}' in ${lkr_loc_img} +Change Image Folder +${imgpath}\\${LKR_UC} + + + + +Tries to locate given image from the screen for given time. + +${image} +timeout=${timeout} + + +${loc} + +Image "aae_viewer_b" found at (641, 709) +${loc} = (641, 709) + + + +Runs the given keyword with the given arguments, if ``condition`` is true. + +'${image}' in ${lkr_loc_img} +Change Image Folder +${imgpath} + + + +${loc} = (641, 709) + + + + +${loc} + + +Moves the mouse pointer to an absolute coordinates. + +${loc} + + + + +Clicks with the specified mouse button. + + + + + + + + +bviewer_opened +10 + + +Runs the given keyword with the given arguments, if ``condition`` is true. + +'${image}' in ${lkr_loc_img} +Change Image Folder +${imgpath}\\${LKR_UC} + + + + +Tries to locate given image from the screen for given time. + +${image} +timeout=${timeout} + + +${loc} + +Image "bviewer_opened" found at (652, 94) +${loc} = (652, 94) + + + +Runs the given keyword with the given arguments, if ``condition`` is true. + +'${image}' in ${lkr_loc_img} +Change Image Folder +${imgpath} + + + + + + +Pauses the test executed for the given time. + +0.5 + +Slept 500 milliseconds + + + + +bviewer_opened +timeout=10 + + + +${image} +${timeout} + + +${loc} + + +Runs the given keyword with the given arguments, if ``condition`` is true. + +'${image}' in ${lkr_loc_img} +Change Image Folder +${imgpath}\\${LKR_UC} + + + + +Tries to locate given image from the screen for given time. + +${image} +timeout=${timeout} + + +${loc} + +Image "bviewer_opened" found at (652, 94) +${loc} = (652, 94) + + + +Runs the given keyword with the given arguments, if ``condition`` is true. + +'${image}' in ${lkr_loc_img} +Change Image Folder +${imgpath} + + + +${loc} = (652, 94) + + + + +${loc} + + +Moves the mouse pointer to an absolute coordinates. + +${loc} + + + + +Clicks with the specified mouse button. + + + + + + + +Pauses the test executed for the given time. + +0.5 + +Slept 500 milliseconds + + + +Press given keyboard keys. + +Key.Win +Key.Up + + + + +Returns the given values which can then be assigned to a variables. + +ARCHIVETOOL_DOKU_${LKR_UC}_${anz_seiten} + + +${search_image} + +${search_image} = ARCHIVETOOL_DOKU_OW_30 + + + + +bviewer_opened +timeout=10 + + + +${image} +${timeout} + + +${loc} + + +Runs the given keyword with the given arguments, if ``condition`` is true. + +'${image}' in ${lkr_loc_img} +Change Image Folder +${imgpath}\\${LKR_UC} + + + + +Tries to locate given image from the screen for given time. + +${image} +timeout=${timeout} + + +${loc} + +Image "bviewer_opened" found at (11, 85) +${loc} = (11, 85) + + + +Runs the given keyword with the given arguments, if ``condition`` is true. + +'${image}' in ${lkr_loc_img} +Change Image Folder +${imgpath} + + + +${loc} = (11, 85) + + + + +${loc} + + +Moves the mouse pointer to an absolute coordinates. + +${loc} + + + + +Clicks with the specified mouse button. + + + + + + + +Tries to locate given image from the screen for given time. + +${search_image} +timeout=90 + +Image "ARCHIVETOOL_DOKU_OW_30" found at (264, 265) + + + +Press given keyboard keys. + +Key.Alt +Key.F4 + + + + + + + +aae_suche_clear +timeout=5 + + + +${image} +${timeout} + + +${loc} + + +Runs the given keyword with the given arguments, if ``condition`` is true. + +'${image}' in ${lkr_loc_img} +Change Image Folder +${imgpath}\\${LKR_UC} + + + + +Tries to locate given image from the screen for given time. + +${image} +timeout=${timeout} + + +${loc} + +Image "aae_suche_clear" found at (404, 709) +${loc} = (404, 709) + + + +Runs the given keyword with the given arguments, if ``condition`` is true. + +'${image}' in ${lkr_loc_img} +Change Image Folder +${imgpath} + + + +${loc} = (404, 709) + + + + +${loc} + + +Moves the mouse pointer to an absolute coordinates. + +${loc} + + + + +Clicks with the specified mouse button. + + + + + + + + +aae_dokumentennr_bereit +timeout=5 + + +Runs the given keyword with the given arguments, if ``condition`` is true. + +'${image}' in ${lkr_loc_img} +Change Image Folder +${imgpath}\\${LKR_UC} + + + + +Tries to locate given image from the screen for given time. + +${image} +timeout=${timeout} + + +${loc} + +Image "aae_dokumentennr_bereit" found at (569, 464) +${loc} = (569, 464) + + + +Runs the given keyword with the given arguments, if ``condition`` is true. + +'${image}' in ${lkr_loc_img} +Change Image Folder +${imgpath} + + + + + + +Evaluates the given expression in Python and returns the result. + +${i} + 1 + + +${i} + +${i} = 1 + + + + + + + +${lkr_docs}[${i}] +${anz_seiten} + + +Makes a variable available everywhere within the scope of the current test. + +${dokid} +${lkr_doc} + +${dokid} = 4743199 + + + + +aae_dokumentennr +5 +100 +${lkr_doc} + + + +${image} +${timeout} + + +${loc} + + +Runs the given keyword with the given arguments, if ``condition`` is true. + +'${image}' in ${lkr_loc_img} +Change Image Folder +${imgpath}\\${LKR_UC} + + + + +Tries to locate given image from the screen for given time. + +${image} +timeout=${timeout} + + +${loc} + +Image "aae_dokumentennr" found at (452, 463) +${loc} = (452, 463) + + + +Runs the given keyword with the given arguments, if ``condition`` is true. + +'${image}' in ${lkr_loc_img} +Change Image Folder +${imgpath} + + + +${loc} = (452, 463) + + + +Clicks right of given location by given offset. + +${loc} +${offset} + +Clicking 1 time(s) at (552, 463) with left mouse button at interval 0.000000 + + + +Type text and keyboard keys. + +@{text} + + + + + + +Type text and keyboard keys. + +Key.enter + + + + + +aae_treffer_1 +timeout=10 + + + +${image} +${timeout} + + +${loc} + + +Runs the given keyword with the given arguments, if ``condition`` is true. + +'${image}' in ${lkr_loc_img} +Change Image Folder +${imgpath}\\${LKR_UC} + + + + +Tries to locate given image from the screen for given time. + +${image} +timeout=${timeout} + + +${loc} + +Image "aae_treffer_1" found at (870, 745) +${loc} = (870, 745) + + + +Runs the given keyword with the given arguments, if ``condition`` is true. + +'${image}' in ${lkr_loc_img} +Change Image Folder +${imgpath} + + + +${loc} = (870, 745) + + + + +${loc} + + +Moves the mouse pointer to an absolute coordinates. + +${loc} + + + + +Clicks with the specified mouse button. + + + + + + + +Type text and keyboard keys. + +Key.Tab +Key.Tab +Key.Tab +Key.Tab +Key.right + + + + + +aae_zeile_markiert +timeout=10 + + + +${image} +${timeout} + + +${loc} + + +Runs the given keyword with the given arguments, if ``condition`` is true. + +'${image}' in ${lkr_loc_img} +Change Image Folder +${imgpath}\\${LKR_UC} + + + + +Tries to locate given image from the screen for given time. + +${image} +timeout=${timeout} + + +${loc} + +Image "aae_zeile_markiert" found at (423, 786) +${loc} = (423, 786) + + + +Runs the given keyword with the given arguments, if ``condition`` is true. + +'${image}' in ${lkr_loc_img} +Change Image Folder +${imgpath} + + + +${loc} = (423, 786) + + + + +${loc} + + +Moves the mouse pointer to an absolute coordinates. + +${loc} + + + + +Clicks with the specified mouse button. + + + + + + + + +aae_viewer_b +timeout=10 + + + +${image} +${timeout} + + +${loc} + + +Runs the given keyword with the given arguments, if ``condition`` is true. + +'${image}' in ${lkr_loc_img} +Change Image Folder +${imgpath}\\${LKR_UC} + + + + +Tries to locate given image from the screen for given time. + +${image} +timeout=${timeout} + + +${loc} + +Image "aae_viewer_b" found at (641, 709) +${loc} = (641, 709) + + + +Runs the given keyword with the given arguments, if ``condition`` is true. + +'${image}' in ${lkr_loc_img} +Change Image Folder +${imgpath} + + + +${loc} = (641, 709) + + + + +${loc} + + +Moves the mouse pointer to an absolute coordinates. + +${loc} + + + + +Clicks with the specified mouse button. + + + + + + + + +bviewer_opened +10 + + +Runs the given keyword with the given arguments, if ``condition`` is true. + +'${image}' in ${lkr_loc_img} +Change Image Folder +${imgpath}\\${LKR_UC} + + + + +Tries to locate given image from the screen for given time. + +${image} +timeout=${timeout} + + +${loc} + +Image "bviewer_opened" found at (652, 94) +${loc} = (652, 94) + + + +Runs the given keyword with the given arguments, if ``condition`` is true. + +'${image}' in ${lkr_loc_img} +Change Image Folder +${imgpath} + + + + + + +Pauses the test executed for the given time. + +0.5 + +Slept 500 milliseconds + + + + +bviewer_opened +timeout=10 + + + +${image} +${timeout} + + +${loc} + + +Runs the given keyword with the given arguments, if ``condition`` is true. + +'${image}' in ${lkr_loc_img} +Change Image Folder +${imgpath}\\${LKR_UC} + + + + +Tries to locate given image from the screen for given time. + +${image} +timeout=${timeout} + + +${loc} + +Image "bviewer_opened" found at (652, 94) +${loc} = (652, 94) + + + +Runs the given keyword with the given arguments, if ``condition`` is true. + +'${image}' in ${lkr_loc_img} +Change Image Folder +${imgpath} + + + +${loc} = (652, 94) + + + + +${loc} + + +Moves the mouse pointer to an absolute coordinates. + +${loc} + + + + +Clicks with the specified mouse button. + + + + + + + +Pauses the test executed for the given time. + +0.5 + +Slept 500 milliseconds + + + +Press given keyboard keys. + +Key.Win +Key.Up + + + + +Returns the given values which can then be assigned to a variables. + +ARCHIVETOOL_DOKU_${LKR_UC}_${anz_seiten} + + +${search_image} + +${search_image} = ARCHIVETOOL_DOKU_OW_100 + + + + +bviewer_opened +timeout=10 + + + +${image} +${timeout} + + +${loc} + + +Runs the given keyword with the given arguments, if ``condition`` is true. + +'${image}' in ${lkr_loc_img} +Change Image Folder +${imgpath}\\${LKR_UC} + + + + +Tries to locate given image from the screen for given time. + +${image} +timeout=${timeout} + + +${loc} + +Image "bviewer_opened" found at (11, 85) +${loc} = (11, 85) + + + +Runs the given keyword with the given arguments, if ``condition`` is true. + +'${image}' in ${lkr_loc_img} +Change Image Folder +${imgpath} + + + +${loc} = (11, 85) + + + + +${loc} + + +Moves the mouse pointer to an absolute coordinates. + +${loc} + + + + +Clicks with the specified mouse button. + + + + + + + +Tries to locate given image from the screen for given time. + +${search_image} +timeout=90 + +Image "ARCHIVETOOL_DOKU_OW_100" found at (280, 250) + + + +Press given keyboard keys. + +Key.Alt +Key.F4 + + + + + + + +aae_suche_clear +timeout=5 + + + +${image} +${timeout} + + +${loc} + + +Runs the given keyword with the given arguments, if ``condition`` is true. + +'${image}' in ${lkr_loc_img} +Change Image Folder +${imgpath}\\${LKR_UC} + + + + +Tries to locate given image from the screen for given time. + +${image} +timeout=${timeout} + + +${loc} + +Image "aae_suche_clear" found at (404, 709) +${loc} = (404, 709) + + + +Runs the given keyword with the given arguments, if ``condition`` is true. + +'${image}' in ${lkr_loc_img} +Change Image Folder +${imgpath} + + + +${loc} = (404, 709) + + + + +${loc} + + +Moves the mouse pointer to an absolute coordinates. + +${loc} + + + + +Clicks with the specified mouse button. + + + + + + + + +aae_dokumentennr_bereit +timeout=5 + + +Runs the given keyword with the given arguments, if ``condition`` is true. + +'${image}' in ${lkr_loc_img} +Change Image Folder +${imgpath}\\${LKR_UC} + + + + +Tries to locate given image from the screen for given time. + +${image} +timeout=${timeout} + + +${loc} + +Image "aae_dokumentennr_bereit" found at (569, 464) +${loc} = (569, 464) + + + +Runs the given keyword with the given arguments, if ``condition`` is true. + +'${image}' in ${lkr_loc_img} +Change Image Folder +${imgpath} + + + + + + +Evaluates the given expression in Python and returns the result. + +${i} + 1 + + +${i} + +${i} = 2 + + + + + + + +${lkr_docs}[${i}] +${anz_seiten} + + +Makes a variable available everywhere within the scope of the current test. + +${dokid} +${lkr_doc} + +${dokid} = 4743308 + + + + +aae_dokumentennr +5 +100 +${lkr_doc} + + + +${image} +${timeout} + + +${loc} + + +Runs the given keyword with the given arguments, if ``condition`` is true. + +'${image}' in ${lkr_loc_img} +Change Image Folder +${imgpath}\\${LKR_UC} + + + + +Tries to locate given image from the screen for given time. + +${image} +timeout=${timeout} + + +${loc} + +Image "aae_dokumentennr" found at (452, 463) +${loc} = (452, 463) + + + +Runs the given keyword with the given arguments, if ``condition`` is true. + +'${image}' in ${lkr_loc_img} +Change Image Folder +${imgpath} + + + +${loc} = (452, 463) + + + +Clicks right of given location by given offset. + +${loc} +${offset} + +Clicking 1 time(s) at (552, 463) with left mouse button at interval 0.000000 + + + +Type text and keyboard keys. + +@{text} + + + + + + +Type text and keyboard keys. + +Key.enter + + + + + +aae_treffer_1 +timeout=10 + + + +${image} +${timeout} + + +${loc} + + +Runs the given keyword with the given arguments, if ``condition`` is true. + +'${image}' in ${lkr_loc_img} +Change Image Folder +${imgpath}\\${LKR_UC} + + + + +Tries to locate given image from the screen for given time. + +${image} +timeout=${timeout} + + +${loc} + +Image "aae_treffer_1" found at (870, 745) +${loc} = (870, 745) + + + +Runs the given keyword with the given arguments, if ``condition`` is true. + +'${image}' in ${lkr_loc_img} +Change Image Folder +${imgpath} + + + +${loc} = (870, 745) + + + + +${loc} + + +Moves the mouse pointer to an absolute coordinates. + +${loc} + + + + +Clicks with the specified mouse button. + + + + + + + +Type text and keyboard keys. + +Key.Tab +Key.Tab +Key.Tab +Key.Tab +Key.right + + + + + +aae_zeile_markiert +timeout=10 + + + +${image} +${timeout} + + +${loc} + + +Runs the given keyword with the given arguments, if ``condition`` is true. + +'${image}' in ${lkr_loc_img} +Change Image Folder +${imgpath}\\${LKR_UC} + + + + +Tries to locate given image from the screen for given time. + +${image} +timeout=${timeout} + + +${loc} + +Image "aae_zeile_markiert" found at (423, 786) +${loc} = (423, 786) + + + +Runs the given keyword with the given arguments, if ``condition`` is true. + +'${image}' in ${lkr_loc_img} +Change Image Folder +${imgpath} + + + +${loc} = (423, 786) + + + + +${loc} + + +Moves the mouse pointer to an absolute coordinates. + +${loc} + + + + +Clicks with the specified mouse button. + + + + + + + + +aae_viewer_b +timeout=10 + + + +${image} +${timeout} + + +${loc} + + +Runs the given keyword with the given arguments, if ``condition`` is true. + +'${image}' in ${lkr_loc_img} +Change Image Folder +${imgpath}\\${LKR_UC} + + + + +Tries to locate given image from the screen for given time. + +${image} +timeout=${timeout} + + +${loc} + +Image "aae_viewer_b" found at (641, 709) +${loc} = (641, 709) + + + +Runs the given keyword with the given arguments, if ``condition`` is true. + +'${image}' in ${lkr_loc_img} +Change Image Folder +${imgpath} + + + +${loc} = (641, 709) + + + + +${loc} + + +Moves the mouse pointer to an absolute coordinates. + +${loc} + + + + +Clicks with the specified mouse button. + + + + + + + + +bviewer_opened +10 + + +Runs the given keyword with the given arguments, if ``condition`` is true. + +'${image}' in ${lkr_loc_img} +Change Image Folder +${imgpath}\\${LKR_UC} + + + + +Tries to locate given image from the screen for given time. + +${image} +timeout=${timeout} + + +${loc} + +Image "bviewer_opened" found at (652, 94) +${loc} = (652, 94) + + + +Runs the given keyword with the given arguments, if ``condition`` is true. + +'${image}' in ${lkr_loc_img} +Change Image Folder +${imgpath} + + + + + + +Pauses the test executed for the given time. + +0.5 + +Slept 500 milliseconds + + + + +bviewer_opened +timeout=10 + + + +${image} +${timeout} + + +${loc} + + +Runs the given keyword with the given arguments, if ``condition`` is true. + +'${image}' in ${lkr_loc_img} +Change Image Folder +${imgpath}\\${LKR_UC} + + + + +Tries to locate given image from the screen for given time. + +${image} +timeout=${timeout} + + +${loc} + +Image "bviewer_opened" found at (652, 94) +${loc} = (652, 94) + + + +Runs the given keyword with the given arguments, if ``condition`` is true. + +'${image}' in ${lkr_loc_img} +Change Image Folder +${imgpath} + + + +${loc} = (652, 94) + + + + +${loc} + + +Moves the mouse pointer to an absolute coordinates. + +${loc} + + + + +Clicks with the specified mouse button. + + + + + + + +Pauses the test executed for the given time. + +0.5 + +Slept 500 milliseconds + + + +Press given keyboard keys. + +Key.Win +Key.Up + + + + +Returns the given values which can then be assigned to a variables. + +ARCHIVETOOL_DOKU_${LKR_UC}_${anz_seiten} + + +${search_image} + +${search_image} = ARCHIVETOOL_DOKU_OW_300 + + + + +bviewer_opened +timeout=10 + + + +${image} +${timeout} + + +${loc} + + +Runs the given keyword with the given arguments, if ``condition`` is true. + +'${image}' in ${lkr_loc_img} +Change Image Folder +${imgpath}\\${LKR_UC} + + + + +Tries to locate given image from the screen for given time. + +${image} +timeout=${timeout} + + +${loc} + +Image "bviewer_opened" found at (11, 85) +${loc} = (11, 85) + + + +Runs the given keyword with the given arguments, if ``condition`` is true. + +'${image}' in ${lkr_loc_img} +Change Image Folder +${imgpath} + + + +${loc} = (11, 85) + + + + +${loc} + + +Moves the mouse pointer to an absolute coordinates. + +${loc} + + + + +Clicks with the specified mouse button. + + + + + + + +Tries to locate given image from the screen for given time. + +${search_image} +timeout=90 + +Image "ARCHIVETOOL_DOKU_OW_300" found at (267, 226) + + + +Press given keyboard keys. + +Key.Alt +Key.F4 + + + + + + + +aae_suche_clear +timeout=5 + + + +${image} +${timeout} + + +${loc} + + +Runs the given keyword with the given arguments, if ``condition`` is true. + +'${image}' in ${lkr_loc_img} +Change Image Folder +${imgpath}\\${LKR_UC} + + + + +Tries to locate given image from the screen for given time. + +${image} +timeout=${timeout} + + +${loc} + +Image "aae_suche_clear" found at (404, 709) +${loc} = (404, 709) + + + +Runs the given keyword with the given arguments, if ``condition`` is true. + +'${image}' in ${lkr_loc_img} +Change Image Folder +${imgpath} + + + +${loc} = (404, 709) + + + + +${loc} + + +Moves the mouse pointer to an absolute coordinates. + +${loc} + + + + +Clicks with the specified mouse button. + + + + + + + + +aae_dokumentennr_bereit +timeout=5 + + +Runs the given keyword with the given arguments, if ``condition`` is true. + +'${image}' in ${lkr_loc_img} +Change Image Folder +${imgpath}\\${LKR_UC} + + + + +Tries to locate given image from the screen for given time. + +${image} +timeout=${timeout} + + +${loc} + +Image "aae_dokumentennr_bereit" found at (569, 464) +${loc} = (569, 464) + + + +Runs the given keyword with the given arguments, if ``condition`` is true. + +'${image}' in ${lkr_loc_img} +Change Image Folder +${imgpath} + + + + + + +Evaluates the given expression in Python and returns the result. + +${i} + 1 + + +${i} + +${i} = 3 + + + + + + + + + + +Runs the given keyword with the given arguments, if ``condition`` is true. + +${APPOPEN}==${True} +Terminate Application +alias=archivetool + + +Terminates the process launched with `Launch Application` with +given ``alias``. + +alias=archivetool + + + + + + +Runs the given keyword with the given arguments, if ``condition`` is true. + +${APPOPEN}==${True} +Quit All Viewer Processes + + + +Runs a process and waits for it to complete. + +cmd.exe /c taskkill /IM ArchiveViewAdvancedA.exe +shell=True + +Starting process: +cmd.exe /c taskkill /IM ArchiveViewAdvancedA.exe +Waiting for process to complete. +Process completed. + + + +Runs a process and waits for it to complete. + +cmd.exe /c taskkill /IM ArchiveViewAdvancedB.exe +shell=True + +Starting process: +cmd.exe /c taskkill /IM ArchiveViewAdvancedB.exe +Waiting for process to complete. +Process completed. + + + +Runs a process and waits for it to complete. + +cmd.exe /c taskkill /IM ArchiveViewAdvancedC.exe +shell=True + +Starting process: +cmd.exe /c taskkill /IM ArchiveViewAdvancedC.exe +Waiting for process to complete. +Process completed. + + + +Runs a process and waits for it to complete. + +cmd.exe /c taskkill /IM +ArchivToolExtAdvanced.exe +shell=True + +Starting process: +"cmd.exe /c taskkill /IM" ArchivToolExtAdvanced.exe +Waiting for process to complete. +Process completed. + + + +Runs a process and waits for it to complete. + +cmd.exe /c taskkill /IM +archtool.exe +shell=True + +Starting process: +"cmd.exe /c taskkill /IM" archtool.exe +Waiting for process to complete. +Process completed. + + + + + + + +Makes a variable available everywhere within the scope of the current suite. + +${APPOPEN} +${False} + +${APPOPEN} = False + + + + + + + + + +SG + + +Sets where all reference images are stored. + +${imgpath} + + + + + +${lkr_uc} + + +Makes a variable available everywhere within the scope of the current test. + +${LKR_UC} +${lkr_uc} + +${LKR_UC} = SG + + + +Converts string to lower case. + +${lkr_uc} + + +${lkr_lc} + +${lkr_lc} = sg + + + +Makes a variable available everywhere within the scope of the current test. + +${LKR_LC} +${lkr_lc} + +${LKR_LC} = sg + + + +Makes a variable available everywhere within the scope of the current test. + +${lkr_docs} +${TESTDATA['${LKR_UC}']['docs']} + +${lkr_docs} = ['42577586', '42577888', '42577943'] + + + +Makes a variable available everywhere within the scope of the current test. + +${lkr_cred} +${TESTDATA['${LKR_UC}']['credentials']} + +${lkr_cred} = ['sgabx', 'crypt:cQuuuXSlozF7qXM2Rc2UYD/7JP+0tjiJ8qreN0MwVz1o3WCWZ7yCH9ZQh2AiZ+M6p5p40G7kFesz1fc='] + + + +Makes a variable available everywhere within the scope of the current test. + +${lkr_loc_img} +${TESTDATA['${LKR_UC}']['loc_img']} + +${lkr_loc_img} = [] + + + +Makes a variable available everywhere within the scope of the current test. + +${user} +${lkr_cred}[0] + +${user} = sgabx + + + +Decrypts cipher text and returns the plain text. + +${lkr_cred}[1] + + +${password} + +Decrypting text and return value. +${password} = *** + + + +Makes a variable available everywhere within the scope of the current test. + +${password} +${password} + +${password} = *** + + + + + + +Runs a process and waits for it to complete. + +cmd.exe /c taskkill /IM ArchiveViewAdvancedA.exe +shell=True + +Starting process: +cmd.exe /c taskkill /IM ArchiveViewAdvancedA.exe +Waiting for process to complete. +Process completed. + + + +Runs a process and waits for it to complete. + +cmd.exe /c taskkill /IM ArchiveViewAdvancedB.exe +shell=True + +Starting process: +cmd.exe /c taskkill /IM ArchiveViewAdvancedB.exe +Waiting for process to complete. +Process completed. + + + +Runs a process and waits for it to complete. + +cmd.exe /c taskkill /IM ArchiveViewAdvancedC.exe +shell=True + +Starting process: +cmd.exe /c taskkill /IM ArchiveViewAdvancedC.exe +Waiting for process to complete. +Process completed. + + + +Runs a process and waits for it to complete. + +cmd.exe /c taskkill /IM +ArchivToolExtAdvanced.exe +shell=True + +Starting process: +"cmd.exe /c taskkill /IM" ArchivToolExtAdvanced.exe +Waiting for process to complete. +Process completed. + + + +Runs a process and waits for it to complete. + +cmd.exe /c taskkill /IM +archtool.exe +shell=True + +Starting process: +"cmd.exe /c taskkill /IM" archtool.exe +Waiting for process to complete. +Process completed. + + + + + + +Runs a process and waits for it to complete. + +C:\\ProgramData\\checkmk\\agent\\robot\\archivetool\\ArchivetoolConfig\\sva_${LKR_LC} konfiguration.bat + +Starting process: +"C:\ProgramData\checkmk\agent\robot\archivetool\ArchivetoolConfig\sva_sg konfiguration.bat" +Waiting for process to complete. +Process completed. + + + +Launches an application. + +"${APP}" +alias=archivetool + + + + +Makes a variable available everywhere within the scope of the current suite. + +${APPOPEN} +${True} + +${APPOPEN} = True + + + + + + + +login_username +timeout=10 + + +${loc} + + +Runs the given keyword with the given arguments, if ``condition`` is true. + +'${image}' in ${lkr_loc_img} +Change Image Folder +${imgpath}\\${LKR_UC} + + + + +Tries to locate given image from the screen for given time. + +${image} +timeout=${timeout} + + +${loc} + +Image "login_username" found at (227, 149) +${loc} = (227, 149) + + + +Runs the given keyword with the given arguments, if ``condition`` is true. + +'${image}' in ${lkr_loc_img} +Change Image Folder +${imgpath} + + + +${loc} = (227, 149) + + + +Finds the reference image on screen and clicks it once. + +login_username + +Image "C:\ProgramData\checkmk\agent\robot\archivetool\images\login_username.png" found at Box(left=182, top=134, width=90, height=30) +Clicking image "login_username" in position (227, 149) + + + +Pauses the test executed for the given time. + +0.2 + +Slept 200 milliseconds + + + + +login_username +10 +20 +${user} + + + +${image} +${timeout} + + +${loc} + + +Runs the given keyword with the given arguments, if ``condition`` is true. + +'${image}' in ${lkr_loc_img} +Change Image Folder +${imgpath}\\${LKR_UC} + + + + +Tries to locate given image from the screen for given time. + +${image} +timeout=${timeout} + + +${loc} + +Image "login_username" found at (227, 149) +${loc} = (227, 149) + + + +Runs the given keyword with the given arguments, if ``condition`` is true. + +'${image}' in ${lkr_loc_img} +Change Image Folder +${imgpath} + + + +${loc} = (227, 149) + + + +Clicks right of given location by given offset. + +${loc} +${offset} + +Clicking 1 time(s) at (247, 149) with left mouse button at interval 0.000000 + + + +Type text and keyboard keys. + +@{text} + + + + + + +Pauses the test executed for the given time. + +0.2 + +Slept 200 milliseconds + + + +Type text and keyboard keys. + +Key.tab + + + + +Pauses the test executed for the given time. + +0.2 + +Slept 200 milliseconds + + + +Type text and keyboard keys. + +${password} +Key.enter +Key.enter + + + + + +archiv_vista_warn +timeout=5 + + + +${image} +${timeout} + + +${loc} + + +Runs the given keyword with the given arguments, if ``condition`` is true. + +'${image}' in ${lkr_loc_img} +Change Image Folder +${imgpath}\\${LKR_UC} + + + + +Tries to locate given image from the screen for given time. + +${image} +timeout=${timeout} + + +${loc} + +Image "archiv_vista_warn" found at (845, 559) +${loc} = (845, 559) + + + +Runs the given keyword with the given arguments, if ``condition`` is true. + +'${image}' in ${lkr_loc_img} +Change Image Folder +${imgpath} + + + +${loc} = (845, 559) + + + + +${loc} + + +Moves the mouse pointer to an absolute coordinates. + +${loc} + + + + +Clicks with the specified mouse button. + + + + + + + +Type text and keyboard keys. + +Key.enter + + + + +Tries to locate given image from the screen for given time. + +aae_toolbar +timeout=10 + +Image "aae_toolbar" found at (506, 709) + + + + + + +Returns ``True`` if reference image was found on screen or +``False`` otherwise. Never fails. + +aae_vorbelegung_checked + + +${vorbelegt_checked} + +${vorbelegt_checked} = False + + + +Runs the given keyword with the given arguments, if ``condition`` is true. + +${vorbelegt_checked}==${True} +Click Image +aae_vorbelegung_checked + + + + + + +Returns the given values which can then be assigned to a variables. + +0 + + +${i} + +${i} = 0 + + + + + + +${lkr_docs}[${i}] +${anz_seiten} + + +Makes a variable available everywhere within the scope of the current test. + +${dokid} +${lkr_doc} + +${dokid} = 42577586 + + + + +aae_dokumentennr +5 +100 +${lkr_doc} + + + +${image} +${timeout} + + +${loc} + + +Runs the given keyword with the given arguments, if ``condition`` is true. + +'${image}' in ${lkr_loc_img} +Change Image Folder +${imgpath}\\${LKR_UC} + + + + +Tries to locate given image from the screen for given time. + +${image} +timeout=${timeout} + + +${loc} + +Image "aae_dokumentennr" found at (452, 463) +${loc} = (452, 463) + + + +Runs the given keyword with the given arguments, if ``condition`` is true. + +'${image}' in ${lkr_loc_img} +Change Image Folder +${imgpath} + + + +${loc} = (452, 463) + + + +Clicks right of given location by given offset. + +${loc} +${offset} + +Clicking 1 time(s) at (552, 463) with left mouse button at interval 0.000000 + + + +Type text and keyboard keys. + +@{text} + + + + + + +Type text and keyboard keys. + +Key.enter + + + + + +aae_treffer_1 +timeout=10 + + + +${image} +${timeout} + + +${loc} + + +Runs the given keyword with the given arguments, if ``condition`` is true. + +'${image}' in ${lkr_loc_img} +Change Image Folder +${imgpath}\\${LKR_UC} + + + + +Tries to locate given image from the screen for given time. + +${image} +timeout=${timeout} + + +${loc} + +Image "aae_treffer_1" found at (870, 745) +${loc} = (870, 745) + + + +Runs the given keyword with the given arguments, if ``condition`` is true. + +'${image}' in ${lkr_loc_img} +Change Image Folder +${imgpath} + + + +${loc} = (870, 745) + + + + +${loc} + + +Moves the mouse pointer to an absolute coordinates. + +${loc} + + + + +Clicks with the specified mouse button. + + + + + + + +Type text and keyboard keys. + +Key.Tab +Key.Tab +Key.Tab +Key.Tab +Key.right + + + + + +aae_zeile_markiert +timeout=10 + + + +${image} +${timeout} + + +${loc} + + +Runs the given keyword with the given arguments, if ``condition`` is true. + +'${image}' in ${lkr_loc_img} +Change Image Folder +${imgpath}\\${LKR_UC} + + + + +Tries to locate given image from the screen for given time. + +${image} +timeout=${timeout} + + +${loc} + +Image "aae_zeile_markiert" found at (423, 786) +${loc} = (423, 786) + + + +Runs the given keyword with the given arguments, if ``condition`` is true. + +'${image}' in ${lkr_loc_img} +Change Image Folder +${imgpath} + + + +${loc} = (423, 786) + + + + +${loc} + + +Moves the mouse pointer to an absolute coordinates. + +${loc} + + + + +Clicks with the specified mouse button. + + + + + + + + +aae_viewer_b +timeout=10 + + + +${image} +${timeout} + + +${loc} + + +Runs the given keyword with the given arguments, if ``condition`` is true. + +'${image}' in ${lkr_loc_img} +Change Image Folder +${imgpath}\\${LKR_UC} + + + + +Tries to locate given image from the screen for given time. + +${image} +timeout=${timeout} + + +${loc} + +Image "aae_viewer_b" found at (641, 709) +${loc} = (641, 709) + + + +Runs the given keyword with the given arguments, if ``condition`` is true. + +'${image}' in ${lkr_loc_img} +Change Image Folder +${imgpath} + + + +${loc} = (641, 709) + + + + +${loc} + + +Moves the mouse pointer to an absolute coordinates. + +${loc} + + + + +Clicks with the specified mouse button. + + + + + + + + +bviewer_opened +10 + + +Runs the given keyword with the given arguments, if ``condition`` is true. + +'${image}' in ${lkr_loc_img} +Change Image Folder +${imgpath}\\${LKR_UC} + + + + +Tries to locate given image from the screen for given time. + +${image} +timeout=${timeout} + + +${loc} + +Image "bviewer_opened" found at (652, 94) +${loc} = (652, 94) + + + +Runs the given keyword with the given arguments, if ``condition`` is true. + +'${image}' in ${lkr_loc_img} +Change Image Folder +${imgpath} + + + + + + +Pauses the test executed for the given time. + +0.5 + +Slept 500 milliseconds + + + + +bviewer_opened +timeout=10 + + + +${image} +${timeout} + + +${loc} + + +Runs the given keyword with the given arguments, if ``condition`` is true. + +'${image}' in ${lkr_loc_img} +Change Image Folder +${imgpath}\\${LKR_UC} + + + + +Tries to locate given image from the screen for given time. + +${image} +timeout=${timeout} + + +${loc} + +Image "bviewer_opened" found at (652, 94) +${loc} = (652, 94) + + + +Runs the given keyword with the given arguments, if ``condition`` is true. + +'${image}' in ${lkr_loc_img} +Change Image Folder +${imgpath} + + + +${loc} = (652, 94) + + + + +${loc} + + +Moves the mouse pointer to an absolute coordinates. + +${loc} + + + + +Clicks with the specified mouse button. + + + + + + + +Pauses the test executed for the given time. + +0.5 + +Slept 500 milliseconds + + + +Press given keyboard keys. + +Key.Win +Key.Up + + + + +Returns the given values which can then be assigned to a variables. + +ARCHIVETOOL_DOKU_${LKR_UC}_${anz_seiten} + + +${search_image} + +${search_image} = ARCHIVETOOL_DOKU_SG_30 + + + + +bviewer_opened +timeout=10 + + + +${image} +${timeout} + + +${loc} + + +Runs the given keyword with the given arguments, if ``condition`` is true. + +'${image}' in ${lkr_loc_img} +Change Image Folder +${imgpath}\\${LKR_UC} + + + + +Tries to locate given image from the screen for given time. + +${image} +timeout=${timeout} + + +${loc} + +Image "bviewer_opened" found at (11, 85) +${loc} = (11, 85) + + + +Runs the given keyword with the given arguments, if ``condition`` is true. + +'${image}' in ${lkr_loc_img} +Change Image Folder +${imgpath} + + + +${loc} = (11, 85) + + + + +${loc} + + +Moves the mouse pointer to an absolute coordinates. + +${loc} + + + + +Clicks with the specified mouse button. + + + + + + + +Tries to locate given image from the screen for given time. + +${search_image} +timeout=90 + +Image "ARCHIVETOOL_DOKU_SG_30" found at (215, 284) + + + +Press given keyboard keys. + +Key.Alt +Key.F4 + + + + + + + +aae_suche_clear +timeout=5 + + + +${image} +${timeout} + + +${loc} + + +Runs the given keyword with the given arguments, if ``condition`` is true. + +'${image}' in ${lkr_loc_img} +Change Image Folder +${imgpath}\\${LKR_UC} + + + + +Tries to locate given image from the screen for given time. + +${image} +timeout=${timeout} + + +${loc} + +Image "aae_suche_clear" found at (404, 709) +${loc} = (404, 709) + + + +Runs the given keyword with the given arguments, if ``condition`` is true. + +'${image}' in ${lkr_loc_img} +Change Image Folder +${imgpath} + + + +${loc} = (404, 709) + + + + +${loc} + + +Moves the mouse pointer to an absolute coordinates. + +${loc} + + + + +Clicks with the specified mouse button. + + + + + + + + +aae_dokumentennr_bereit +timeout=5 + + +Runs the given keyword with the given arguments, if ``condition`` is true. + +'${image}' in ${lkr_loc_img} +Change Image Folder +${imgpath}\\${LKR_UC} + + + + +Tries to locate given image from the screen for given time. + +${image} +timeout=${timeout} + + +${loc} + +Image "aae_dokumentennr_bereit" found at (569, 464) +${loc} = (569, 464) + + + +Runs the given keyword with the given arguments, if ``condition`` is true. + +'${image}' in ${lkr_loc_img} +Change Image Folder +${imgpath} + + + + + + +Evaluates the given expression in Python and returns the result. + +${i} + 1 + + +${i} + +${i} = 1 + + + + + + + +${lkr_docs}[${i}] +${anz_seiten} + + +Makes a variable available everywhere within the scope of the current test. + +${dokid} +${lkr_doc} + +${dokid} = 42577888 + + + + +aae_dokumentennr +5 +100 +${lkr_doc} + + + +${image} +${timeout} + + +${loc} + + +Runs the given keyword with the given arguments, if ``condition`` is true. + +'${image}' in ${lkr_loc_img} +Change Image Folder +${imgpath}\\${LKR_UC} + + + + +Tries to locate given image from the screen for given time. + +${image} +timeout=${timeout} + + +${loc} + +Image "aae_dokumentennr" found at (452, 463) +${loc} = (452, 463) + + + +Runs the given keyword with the given arguments, if ``condition`` is true. + +'${image}' in ${lkr_loc_img} +Change Image Folder +${imgpath} + + + +${loc} = (452, 463) + + + +Clicks right of given location by given offset. + +${loc} +${offset} + +Clicking 1 time(s) at (552, 463) with left mouse button at interval 0.000000 + + + +Type text and keyboard keys. + +@{text} + + + + + + +Type text and keyboard keys. + +Key.enter + + + + + +aae_treffer_1 +timeout=10 + + + +${image} +${timeout} + + +${loc} + + +Runs the given keyword with the given arguments, if ``condition`` is true. + +'${image}' in ${lkr_loc_img} +Change Image Folder +${imgpath}\\${LKR_UC} + + + + +Tries to locate given image from the screen for given time. + +${image} +timeout=${timeout} + + +${loc} + +Image "aae_treffer_1" found at (870, 745) +${loc} = (870, 745) + + + +Runs the given keyword with the given arguments, if ``condition`` is true. + +'${image}' in ${lkr_loc_img} +Change Image Folder +${imgpath} + + + +${loc} = (870, 745) + + + + +${loc} + + +Moves the mouse pointer to an absolute coordinates. + +${loc} + + + + +Clicks with the specified mouse button. + + + + + + + +Type text and keyboard keys. + +Key.Tab +Key.Tab +Key.Tab +Key.Tab +Key.right + + + + + +aae_zeile_markiert +timeout=10 + + + +${image} +${timeout} + + +${loc} + + +Runs the given keyword with the given arguments, if ``condition`` is true. + +'${image}' in ${lkr_loc_img} +Change Image Folder +${imgpath}\\${LKR_UC} + + + + +Tries to locate given image from the screen for given time. + +${image} +timeout=${timeout} + + +${loc} + +Image "aae_zeile_markiert" found at (423, 786) +${loc} = (423, 786) + + + +Runs the given keyword with the given arguments, if ``condition`` is true. + +'${image}' in ${lkr_loc_img} +Change Image Folder +${imgpath} + + + +${loc} = (423, 786) + + + + +${loc} + + +Moves the mouse pointer to an absolute coordinates. + +${loc} + + + + +Clicks with the specified mouse button. + + + + + + + + +aae_viewer_b +timeout=10 + + + +${image} +${timeout} + + +${loc} + + +Runs the given keyword with the given arguments, if ``condition`` is true. + +'${image}' in ${lkr_loc_img} +Change Image Folder +${imgpath}\\${LKR_UC} + + + + +Tries to locate given image from the screen for given time. + +${image} +timeout=${timeout} + + +${loc} + +Image "aae_viewer_b" found at (641, 709) +${loc} = (641, 709) + + + +Runs the given keyword with the given arguments, if ``condition`` is true. + +'${image}' in ${lkr_loc_img} +Change Image Folder +${imgpath} + + + +${loc} = (641, 709) + + + + +${loc} + + +Moves the mouse pointer to an absolute coordinates. + +${loc} + + + + +Clicks with the specified mouse button. + + + + + + + + +bviewer_opened +10 + + +Runs the given keyword with the given arguments, if ``condition`` is true. + +'${image}' in ${lkr_loc_img} +Change Image Folder +${imgpath}\\${LKR_UC} + + + + +Tries to locate given image from the screen for given time. + +${image} +timeout=${timeout} + + +${loc} + +Image "bviewer_opened" found at (652, 94) +${loc} = (652, 94) + + + +Runs the given keyword with the given arguments, if ``condition`` is true. + +'${image}' in ${lkr_loc_img} +Change Image Folder +${imgpath} + + + + + + +Pauses the test executed for the given time. + +0.5 + +Slept 500 milliseconds + + + + +bviewer_opened +timeout=10 + + + +${image} +${timeout} + + +${loc} + + +Runs the given keyword with the given arguments, if ``condition`` is true. + +'${image}' in ${lkr_loc_img} +Change Image Folder +${imgpath}\\${LKR_UC} + + + + +Tries to locate given image from the screen for given time. + +${image} +timeout=${timeout} + + +${loc} + +Image "bviewer_opened" found at (652, 94) +${loc} = (652, 94) + + + +Runs the given keyword with the given arguments, if ``condition`` is true. + +'${image}' in ${lkr_loc_img} +Change Image Folder +${imgpath} + + + +${loc} = (652, 94) + + + + +${loc} + + +Moves the mouse pointer to an absolute coordinates. + +${loc} + + + + +Clicks with the specified mouse button. + + + + + + + +Pauses the test executed for the given time. + +0.5 + +Slept 500 milliseconds + + + +Press given keyboard keys. + +Key.Win +Key.Up + + + + +Returns the given values which can then be assigned to a variables. + +ARCHIVETOOL_DOKU_${LKR_UC}_${anz_seiten} + + +${search_image} + +${search_image} = ARCHIVETOOL_DOKU_SG_100 + + + + +bviewer_opened +timeout=10 + + + +${image} +${timeout} + + +${loc} + + +Runs the given keyword with the given arguments, if ``condition`` is true. + +'${image}' in ${lkr_loc_img} +Change Image Folder +${imgpath}\\${LKR_UC} + + + + +Tries to locate given image from the screen for given time. + +${image} +timeout=${timeout} + + +${loc} + +Image "bviewer_opened" found at (11, 85) +${loc} = (11, 85) + + + +Runs the given keyword with the given arguments, if ``condition`` is true. + +'${image}' in ${lkr_loc_img} +Change Image Folder +${imgpath} + + + +${loc} = (11, 85) + + + + +${loc} + + +Moves the mouse pointer to an absolute coordinates. + +${loc} + + + + +Clicks with the specified mouse button. + + + + + + + +Tries to locate given image from the screen for given time. + +${search_image} +timeout=90 + +Image "ARCHIVETOOL_DOKU_SG_100" found at (174, 204) + + + +Press given keyboard keys. + +Key.Alt +Key.F4 + + + + + + + +aae_suche_clear +timeout=5 + + + +${image} +${timeout} + + +${loc} + + +Runs the given keyword with the given arguments, if ``condition`` is true. + +'${image}' in ${lkr_loc_img} +Change Image Folder +${imgpath}\\${LKR_UC} + + + + +Tries to locate given image from the screen for given time. + +${image} +timeout=${timeout} + + +${loc} + +Image "aae_suche_clear" found at (404, 709) +${loc} = (404, 709) + + + +Runs the given keyword with the given arguments, if ``condition`` is true. + +'${image}' in ${lkr_loc_img} +Change Image Folder +${imgpath} + + + +${loc} = (404, 709) + + + + +${loc} + + +Moves the mouse pointer to an absolute coordinates. + +${loc} + + + + +Clicks with the specified mouse button. + + + + + + + + +aae_dokumentennr_bereit +timeout=5 + + +Runs the given keyword with the given arguments, if ``condition`` is true. + +'${image}' in ${lkr_loc_img} +Change Image Folder +${imgpath}\\${LKR_UC} + + + + +Tries to locate given image from the screen for given time. + +${image} +timeout=${timeout} + + +${loc} + +Image "aae_dokumentennr_bereit" found at (569, 464) +${loc} = (569, 464) + + + +Runs the given keyword with the given arguments, if ``condition`` is true. + +'${image}' in ${lkr_loc_img} +Change Image Folder +${imgpath} + + + + + + +Evaluates the given expression in Python and returns the result. + +${i} + 1 + + +${i} + +${i} = 2 + + + + + + + +${lkr_docs}[${i}] +${anz_seiten} + + +Makes a variable available everywhere within the scope of the current test. + +${dokid} +${lkr_doc} + +${dokid} = 42577943 + + + + +aae_dokumentennr +5 +100 +${lkr_doc} + + + +${image} +${timeout} + + +${loc} + + +Runs the given keyword with the given arguments, if ``condition`` is true. + +'${image}' in ${lkr_loc_img} +Change Image Folder +${imgpath}\\${LKR_UC} + + + + +Tries to locate given image from the screen for given time. + +${image} +timeout=${timeout} + + +${loc} + +Image "aae_dokumentennr" found at (452, 463) +${loc} = (452, 463) + + + +Runs the given keyword with the given arguments, if ``condition`` is true. + +'${image}' in ${lkr_loc_img} +Change Image Folder +${imgpath} + + + +${loc} = (452, 463) + + + +Clicks right of given location by given offset. + +${loc} +${offset} + +Clicking 1 time(s) at (552, 463) with left mouse button at interval 0.000000 + + + +Type text and keyboard keys. + +@{text} + + + + + + +Type text and keyboard keys. + +Key.enter + + + + + +aae_treffer_1 +timeout=10 + + + +${image} +${timeout} + + +${loc} + + +Runs the given keyword with the given arguments, if ``condition`` is true. + +'${image}' in ${lkr_loc_img} +Change Image Folder +${imgpath}\\${LKR_UC} + + + + +Tries to locate given image from the screen for given time. + +${image} +timeout=${timeout} + + +${loc} + +Image "aae_treffer_1" found at (870, 745) +${loc} = (870, 745) + + + +Runs the given keyword with the given arguments, if ``condition`` is true. + +'${image}' in ${lkr_loc_img} +Change Image Folder +${imgpath} + + + +${loc} = (870, 745) + + + + +${loc} + + +Moves the mouse pointer to an absolute coordinates. + +${loc} + + + + +Clicks with the specified mouse button. + + + + + + + +Type text and keyboard keys. + +Key.Tab +Key.Tab +Key.Tab +Key.Tab +Key.right + + + + + +aae_zeile_markiert +timeout=10 + + + +${image} +${timeout} + + +${loc} + + +Runs the given keyword with the given arguments, if ``condition`` is true. + +'${image}' in ${lkr_loc_img} +Change Image Folder +${imgpath}\\${LKR_UC} + + + + +Tries to locate given image from the screen for given time. + +${image} +timeout=${timeout} + + +${loc} + +Image "aae_zeile_markiert" found at (423, 786) +${loc} = (423, 786) + + + +Runs the given keyword with the given arguments, if ``condition`` is true. + +'${image}' in ${lkr_loc_img} +Change Image Folder +${imgpath} + + + +${loc} = (423, 786) + + + + +${loc} + + +Moves the mouse pointer to an absolute coordinates. + +${loc} + + + + +Clicks with the specified mouse button. + + + + + + + + +aae_viewer_b +timeout=10 + + + +${image} +${timeout} + + +${loc} + + +Runs the given keyword with the given arguments, if ``condition`` is true. + +'${image}' in ${lkr_loc_img} +Change Image Folder +${imgpath}\\${LKR_UC} + + + + +Tries to locate given image from the screen for given time. + +${image} +timeout=${timeout} + + +${loc} + +Image "aae_viewer_b" found at (641, 709) +${loc} = (641, 709) + + + +Runs the given keyword with the given arguments, if ``condition`` is true. + +'${image}' in ${lkr_loc_img} +Change Image Folder +${imgpath} + + + +${loc} = (641, 709) + + + + +${loc} + + +Moves the mouse pointer to an absolute coordinates. + +${loc} + + + + +Clicks with the specified mouse button. + + + + + + + + +bviewer_opened +10 + + +Runs the given keyword with the given arguments, if ``condition`` is true. + +'${image}' in ${lkr_loc_img} +Change Image Folder +${imgpath}\\${LKR_UC} + + + + +Tries to locate given image from the screen for given time. + +${image} +timeout=${timeout} + + +${loc} + +Image "bviewer_opened" found at (652, 94) +${loc} = (652, 94) + + + +Runs the given keyword with the given arguments, if ``condition`` is true. + +'${image}' in ${lkr_loc_img} +Change Image Folder +${imgpath} + + + + + + +Pauses the test executed for the given time. + +0.5 + +Slept 500 milliseconds + + + + +bviewer_opened +timeout=10 + + + +${image} +${timeout} + + +${loc} + + +Runs the given keyword with the given arguments, if ``condition`` is true. + +'${image}' in ${lkr_loc_img} +Change Image Folder +${imgpath}\\${LKR_UC} + + + + +Tries to locate given image from the screen for given time. + +${image} +timeout=${timeout} + + +${loc} + +Image "bviewer_opened" found at (652, 94) +${loc} = (652, 94) + + + +Runs the given keyword with the given arguments, if ``condition`` is true. + +'${image}' in ${lkr_loc_img} +Change Image Folder +${imgpath} + + + +${loc} = (652, 94) + + + + +${loc} + + +Moves the mouse pointer to an absolute coordinates. + +${loc} + + + + +Clicks with the specified mouse button. + + + + + + + +Pauses the test executed for the given time. + +0.5 + +Slept 500 milliseconds + + + +Press given keyboard keys. + +Key.Win +Key.Up + + + + +Returns the given values which can then be assigned to a variables. + +ARCHIVETOOL_DOKU_${LKR_UC}_${anz_seiten} + + +${search_image} + +${search_image} = ARCHIVETOOL_DOKU_SG_300 + + + + +bviewer_opened +timeout=10 + + + +${image} +${timeout} + + +${loc} + + +Runs the given keyword with the given arguments, if ``condition`` is true. + +'${image}' in ${lkr_loc_img} +Change Image Folder +${imgpath}\\${LKR_UC} + + + + +Tries to locate given image from the screen for given time. + +${image} +timeout=${timeout} + + +${loc} + +Image "bviewer_opened" found at (11, 85) +${loc} = (11, 85) + + + +Runs the given keyword with the given arguments, if ``condition`` is true. + +'${image}' in ${lkr_loc_img} +Change Image Folder +${imgpath} + + + +${loc} = (11, 85) + + + + +${loc} + + +Moves the mouse pointer to an absolute coordinates. + +${loc} + + + + +Clicks with the specified mouse button. + + + + + + + +Tries to locate given image from the screen for given time. + +${search_image} +timeout=90 + +Image "ARCHIVETOOL_DOKU_SG_300" found at (177, 208) + + + +Press given keyboard keys. + +Key.Alt +Key.F4 + + + + + + + +aae_suche_clear +timeout=5 + + + +${image} +${timeout} + + +${loc} + + +Runs the given keyword with the given arguments, if ``condition`` is true. + +'${image}' in ${lkr_loc_img} +Change Image Folder +${imgpath}\\${LKR_UC} + + + + +Tries to locate given image from the screen for given time. + +${image} +timeout=${timeout} + + +${loc} + +Image "aae_suche_clear" found at (404, 709) +${loc} = (404, 709) + + + +Runs the given keyword with the given arguments, if ``condition`` is true. + +'${image}' in ${lkr_loc_img} +Change Image Folder +${imgpath} + + + +${loc} = (404, 709) + + + + +${loc} + + +Moves the mouse pointer to an absolute coordinates. + +${loc} + + + + +Clicks with the specified mouse button. + + + + + + + + +aae_dokumentennr_bereit +timeout=5 + + +Runs the given keyword with the given arguments, if ``condition`` is true. + +'${image}' in ${lkr_loc_img} +Change Image Folder +${imgpath}\\${LKR_UC} + + + + +Tries to locate given image from the screen for given time. + +${image} +timeout=${timeout} + + +${loc} + +Image "aae_dokumentennr_bereit" found at (569, 464) +${loc} = (569, 464) + + + +Runs the given keyword with the given arguments, if ``condition`` is true. + +'${image}' in ${lkr_loc_img} +Change Image Folder +${imgpath} + + + + + + +Evaluates the given expression in Python and returns the result. + +${i} + 1 + + +${i} + +${i} = 3 + + + + + + + + + + +Runs the given keyword with the given arguments, if ``condition`` is true. + +${APPOPEN}==${True} +Terminate Application +alias=archivetool + + +Terminates the process launched with `Launch Application` with +given ``alias``. + +alias=archivetool + + + + + + +Runs the given keyword with the given arguments, if ``condition`` is true. + +${APPOPEN}==${True} +Quit All Viewer Processes + + + +Runs a process and waits for it to complete. + +cmd.exe /c taskkill /IM ArchiveViewAdvancedA.exe +shell=True + +Starting process: +cmd.exe /c taskkill /IM ArchiveViewAdvancedA.exe +Waiting for process to complete. +Process completed. + + + +Runs a process and waits for it to complete. + +cmd.exe /c taskkill /IM ArchiveViewAdvancedB.exe +shell=True + +Starting process: +cmd.exe /c taskkill /IM ArchiveViewAdvancedB.exe +Waiting for process to complete. +Process completed. + + + +Runs a process and waits for it to complete. + +cmd.exe /c taskkill /IM ArchiveViewAdvancedC.exe +shell=True + +Starting process: +cmd.exe /c taskkill /IM ArchiveViewAdvancedC.exe +Waiting for process to complete. +Process completed. + + + +Runs a process and waits for it to complete. + +cmd.exe /c taskkill /IM +ArchivToolExtAdvanced.exe +shell=True + +Starting process: +"cmd.exe /c taskkill /IM" ArchivToolExtAdvanced.exe +Waiting for process to complete. +Process completed. + + + +Runs a process and waits for it to complete. + +cmd.exe /c taskkill /IM +archtool.exe +shell=True + +Starting process: +"cmd.exe /c taskkill /IM" archtool.exe +Waiting for process to complete. +Process completed. + + + + + + + +Makes a variable available everywhere within the scope of the current suite. + +${APPOPEN} +${False} + +${APPOPEN} = False + + + + + + + + + +SH + + +Sets where all reference images are stored. + +${imgpath} + + + + + +${lkr_uc} + + +Makes a variable available everywhere within the scope of the current test. + +${LKR_UC} +${lkr_uc} + +${LKR_UC} = SH + + + +Converts string to lower case. + +${lkr_uc} + + +${lkr_lc} + +${lkr_lc} = sh + + + +Makes a variable available everywhere within the scope of the current test. + +${LKR_LC} +${lkr_lc} + +${LKR_LC} = sh + + + +Makes a variable available everywhere within the scope of the current test. + +${lkr_docs} +${TESTDATA['${LKR_UC}']['docs']} + +${lkr_docs} = ['6177394', '6177689', '6178142'] + + + +Makes a variable available everywhere within the scope of the current test. + +${lkr_cred} +${TESTDATA['${LKR_UC}']['credentials']} + +${lkr_cred} = ['sh0998', 'crypt:Q0kAp77eyC6JV2HSqixE8PnrOAfBLWk0OUbjF2OB02xFddE+u05Rmieq96LefKWugLXMFtMiHac='] + + + +Makes a variable available everywhere within the scope of the current test. + +${lkr_loc_img} +${TESTDATA['${LKR_UC}']['loc_img']} + +${lkr_loc_img} = [] + + + +Makes a variable available everywhere within the scope of the current test. + +${user} +${lkr_cred}[0] + +${user} = sh0998 + + + +Decrypts cipher text and returns the plain text. + +${lkr_cred}[1] + + +${password} + +Decrypting text and return value. +${password} = *** + + + +Makes a variable available everywhere within the scope of the current test. + +${password} +${password} + +${password} = *** + + + + + + +Runs a process and waits for it to complete. + +cmd.exe /c taskkill /IM ArchiveViewAdvancedA.exe +shell=True + +Starting process: +cmd.exe /c taskkill /IM ArchiveViewAdvancedA.exe +Waiting for process to complete. +Process completed. + + + +Runs a process and waits for it to complete. + +cmd.exe /c taskkill /IM ArchiveViewAdvancedB.exe +shell=True + +Starting process: +cmd.exe /c taskkill /IM ArchiveViewAdvancedB.exe +Waiting for process to complete. +Process completed. + + + +Runs a process and waits for it to complete. + +cmd.exe /c taskkill /IM ArchiveViewAdvancedC.exe +shell=True + +Starting process: +cmd.exe /c taskkill /IM ArchiveViewAdvancedC.exe +Waiting for process to complete. +Process completed. + + + +Runs a process and waits for it to complete. + +cmd.exe /c taskkill /IM +ArchivToolExtAdvanced.exe +shell=True + +Starting process: +"cmd.exe /c taskkill /IM" ArchivToolExtAdvanced.exe +Waiting for process to complete. +Process completed. + + + +Runs a process and waits for it to complete. + +cmd.exe /c taskkill /IM +archtool.exe +shell=True + +Starting process: +"cmd.exe /c taskkill /IM" archtool.exe +Waiting for process to complete. +Process completed. + + + + + + +Runs a process and waits for it to complete. + +C:\\ProgramData\\checkmk\\agent\\robot\\archivetool\\ArchivetoolConfig\\sva_${LKR_LC} konfiguration.bat + +Starting process: +"C:\ProgramData\checkmk\agent\robot\archivetool\ArchivetoolConfig\sva_sh konfiguration.bat" +Waiting for process to complete. +Process completed. + + + +Launches an application. + +"${APP}" +alias=archivetool + + + + +Makes a variable available everywhere within the scope of the current suite. + +${APPOPEN} +${True} + +${APPOPEN} = True + + + + + + + +login_username +timeout=10 + + +${loc} + + +Runs the given keyword with the given arguments, if ``condition`` is true. + +'${image}' in ${lkr_loc_img} +Change Image Folder +${imgpath}\\${LKR_UC} + + + + +Tries to locate given image from the screen for given time. + +${image} +timeout=${timeout} + + +${loc} + +Image "login_username" found at (227, 149) +${loc} = (227, 149) + + + +Runs the given keyword with the given arguments, if ``condition`` is true. + +'${image}' in ${lkr_loc_img} +Change Image Folder +${imgpath} + + + +${loc} = (227, 149) + + + +Finds the reference image on screen and clicks it once. + +login_username + +Image "C:\ProgramData\checkmk\agent\robot\archivetool\images\login_username.png" found at Box(left=182, top=134, width=90, height=30) +Clicking image "login_username" in position (227, 149) + + + +Pauses the test executed for the given time. + +0.2 + +Slept 200 milliseconds + + + + +login_username +10 +20 +${user} + + + +${image} +${timeout} + + +${loc} + + +Runs the given keyword with the given arguments, if ``condition`` is true. + +'${image}' in ${lkr_loc_img} +Change Image Folder +${imgpath}\\${LKR_UC} + + + + +Tries to locate given image from the screen for given time. + +${image} +timeout=${timeout} + + +${loc} + +Image "login_username" found at (227, 149) +${loc} = (227, 149) + + + +Runs the given keyword with the given arguments, if ``condition`` is true. + +'${image}' in ${lkr_loc_img} +Change Image Folder +${imgpath} + + + +${loc} = (227, 149) + + + +Clicks right of given location by given offset. + +${loc} +${offset} + +Clicking 1 time(s) at (247, 149) with left mouse button at interval 0.000000 + + + +Type text and keyboard keys. + +@{text} + + + + + + +Pauses the test executed for the given time. + +0.2 + +Slept 200 milliseconds + + + +Type text and keyboard keys. + +Key.tab + + + + +Pauses the test executed for the given time. + +0.2 + +Slept 200 milliseconds + + + +Type text and keyboard keys. + +${password} +Key.enter +Key.enter + + + + + +archiv_vista_warn +timeout=5 + + + +${image} +${timeout} + + +${loc} + + +Runs the given keyword with the given arguments, if ``condition`` is true. + +'${image}' in ${lkr_loc_img} +Change Image Folder +${imgpath}\\${LKR_UC} + + + + +Tries to locate given image from the screen for given time. + +${image} +timeout=${timeout} + + +${loc} + +Image "archiv_vista_warn" found at (845, 559) +${loc} = (845, 559) + + + +Runs the given keyword with the given arguments, if ``condition`` is true. + +'${image}' in ${lkr_loc_img} +Change Image Folder +${imgpath} + + + +${loc} = (845, 559) + + + + +${loc} + + +Moves the mouse pointer to an absolute coordinates. + +${loc} + + + + +Clicks with the specified mouse button. + + + + + + + +Type text and keyboard keys. + +Key.enter + + + + +Tries to locate given image from the screen for given time. + +aae_toolbar +timeout=10 + +Image "aae_toolbar" found at (506, 709) + + + + + + +Returns ``True`` if reference image was found on screen or +``False`` otherwise. Never fails. + +aae_vorbelegung_checked + + +${vorbelegt_checked} + +${vorbelegt_checked} = False + + + +Runs the given keyword with the given arguments, if ``condition`` is true. + +${vorbelegt_checked}==${True} +Click Image +aae_vorbelegung_checked + + + + + + +Returns the given values which can then be assigned to a variables. + +0 + + +${i} + +${i} = 0 + + + + + + +${lkr_docs}[${i}] +${anz_seiten} + + +Makes a variable available everywhere within the scope of the current test. + +${dokid} +${lkr_doc} + +${dokid} = 6177394 + + + + +aae_dokumentennr +5 +100 +${lkr_doc} + + + +${image} +${timeout} + + +${loc} + + +Runs the given keyword with the given arguments, if ``condition`` is true. + +'${image}' in ${lkr_loc_img} +Change Image Folder +${imgpath}\\${LKR_UC} + + + + +Tries to locate given image from the screen for given time. + +${image} +timeout=${timeout} + + +${loc} + +Image "aae_dokumentennr" found at (452, 463) +${loc} = (452, 463) + + + +Runs the given keyword with the given arguments, if ``condition`` is true. + +'${image}' in ${lkr_loc_img} +Change Image Folder +${imgpath} + + + +${loc} = (452, 463) + + + +Clicks right of given location by given offset. + +${loc} +${offset} + +Clicking 1 time(s) at (552, 463) with left mouse button at interval 0.000000 + + + +Type text and keyboard keys. + +@{text} + + + + + + +Type text and keyboard keys. + +Key.enter + + + + + +aae_treffer_1 +timeout=10 + + + +${image} +${timeout} + + +${loc} + + +Runs the given keyword with the given arguments, if ``condition`` is true. + +'${image}' in ${lkr_loc_img} +Change Image Folder +${imgpath}\\${LKR_UC} + + + + +Tries to locate given image from the screen for given time. + +${image} +timeout=${timeout} + + +${loc} + +Image "aae_treffer_1" found at (870, 745) +${loc} = (870, 745) + + + +Runs the given keyword with the given arguments, if ``condition`` is true. + +'${image}' in ${lkr_loc_img} +Change Image Folder +${imgpath} + + + +${loc} = (870, 745) + + + + +${loc} + + +Moves the mouse pointer to an absolute coordinates. + +${loc} + + + + +Clicks with the specified mouse button. + + + + + + + +Type text and keyboard keys. + +Key.Tab +Key.Tab +Key.Tab +Key.Tab +Key.right + + + + + +aae_zeile_markiert +timeout=10 + + + +${image} +${timeout} + + +${loc} + + +Runs the given keyword with the given arguments, if ``condition`` is true. + +'${image}' in ${lkr_loc_img} +Change Image Folder +${imgpath}\\${LKR_UC} + + + + +Tries to locate given image from the screen for given time. + +${image} +timeout=${timeout} + + +${loc} + +Image "aae_zeile_markiert" found at (423, 786) +${loc} = (423, 786) + + + +Runs the given keyword with the given arguments, if ``condition`` is true. + +'${image}' in ${lkr_loc_img} +Change Image Folder +${imgpath} + + + +${loc} = (423, 786) + + + + +${loc} + + +Moves the mouse pointer to an absolute coordinates. + +${loc} + + + + +Clicks with the specified mouse button. + + + + + + + + +aae_viewer_b +timeout=10 + + + +${image} +${timeout} + + +${loc} + + +Runs the given keyword with the given arguments, if ``condition`` is true. + +'${image}' in ${lkr_loc_img} +Change Image Folder +${imgpath}\\${LKR_UC} + + + + +Tries to locate given image from the screen for given time. + +${image} +timeout=${timeout} + + +${loc} + +Image "aae_viewer_b" found at (641, 709) +${loc} = (641, 709) + + + +Runs the given keyword with the given arguments, if ``condition`` is true. + +'${image}' in ${lkr_loc_img} +Change Image Folder +${imgpath} + + + +${loc} = (641, 709) + + + + +${loc} + + +Moves the mouse pointer to an absolute coordinates. + +${loc} + + + + +Clicks with the specified mouse button. + + + + + + + + +bviewer_opened +10 + + +Runs the given keyword with the given arguments, if ``condition`` is true. + +'${image}' in ${lkr_loc_img} +Change Image Folder +${imgpath}\\${LKR_UC} + + + + +Tries to locate given image from the screen for given time. + +${image} +timeout=${timeout} + + +${loc} + +Image "bviewer_opened" found at (652, 94) +${loc} = (652, 94) + + + +Runs the given keyword with the given arguments, if ``condition`` is true. + +'${image}' in ${lkr_loc_img} +Change Image Folder +${imgpath} + + + + + + +Pauses the test executed for the given time. + +0.5 + +Slept 500 milliseconds + + + + +bviewer_opened +timeout=10 + + + +${image} +${timeout} + + +${loc} + + +Runs the given keyword with the given arguments, if ``condition`` is true. + +'${image}' in ${lkr_loc_img} +Change Image Folder +${imgpath}\\${LKR_UC} + + + + +Tries to locate given image from the screen for given time. + +${image} +timeout=${timeout} + + +${loc} + +Image "bviewer_opened" found at (652, 94) +${loc} = (652, 94) + + + +Runs the given keyword with the given arguments, if ``condition`` is true. + +'${image}' in ${lkr_loc_img} +Change Image Folder +${imgpath} + + + +${loc} = (652, 94) + + + + +${loc} + + +Moves the mouse pointer to an absolute coordinates. + +${loc} + + + + +Clicks with the specified mouse button. + + + + + + + +Pauses the test executed for the given time. + +0.5 + +Slept 500 milliseconds + + + +Press given keyboard keys. + +Key.Win +Key.Up + + + + +Returns the given values which can then be assigned to a variables. + +ARCHIVETOOL_DOKU_${LKR_UC}_${anz_seiten} + + +${search_image} + +${search_image} = ARCHIVETOOL_DOKU_SH_30 + + + + +bviewer_opened +timeout=10 + + + +${image} +${timeout} + + +${loc} + + +Runs the given keyword with the given arguments, if ``condition`` is true. + +'${image}' in ${lkr_loc_img} +Change Image Folder +${imgpath}\\${LKR_UC} + + + + +Tries to locate given image from the screen for given time. + +${image} +timeout=${timeout} + + +${loc} + +Image "bviewer_opened" found at (11, 85) +${loc} = (11, 85) + + + +Runs the given keyword with the given arguments, if ``condition`` is true. + +'${image}' in ${lkr_loc_img} +Change Image Folder +${imgpath} + + + +${loc} = (11, 85) + + + + +${loc} + + +Moves the mouse pointer to an absolute coordinates. + +${loc} + + + + +Clicks with the specified mouse button. + + + + + + + +Tries to locate given image from the screen for given time. + +${search_image} +timeout=90 + +Image "ARCHIVETOOL_DOKU_SH_30" found at (200, 212) + + + +Press given keyboard keys. + +Key.Alt +Key.F4 + + + + + + + +aae_suche_clear +timeout=5 + + + +${image} +${timeout} + + +${loc} + + +Runs the given keyword with the given arguments, if ``condition`` is true. + +'${image}' in ${lkr_loc_img} +Change Image Folder +${imgpath}\\${LKR_UC} + + + + +Tries to locate given image from the screen for given time. + +${image} +timeout=${timeout} + + +${loc} + +Image "aae_suche_clear" found at (404, 709) +${loc} = (404, 709) + + + +Runs the given keyword with the given arguments, if ``condition`` is true. + +'${image}' in ${lkr_loc_img} +Change Image Folder +${imgpath} + + + +${loc} = (404, 709) + + + + +${loc} + + +Moves the mouse pointer to an absolute coordinates. + +${loc} + + + + +Clicks with the specified mouse button. + + + + + + + + +aae_dokumentennr_bereit +timeout=5 + + +Runs the given keyword with the given arguments, if ``condition`` is true. + +'${image}' in ${lkr_loc_img} +Change Image Folder +${imgpath}\\${LKR_UC} + + + + +Tries to locate given image from the screen for given time. + +${image} +timeout=${timeout} + + +${loc} + +Image "aae_dokumentennr_bereit" found at (569, 464) +${loc} = (569, 464) + + + +Runs the given keyword with the given arguments, if ``condition`` is true. + +'${image}' in ${lkr_loc_img} +Change Image Folder +${imgpath} + + + + + + +Evaluates the given expression in Python and returns the result. + +${i} + 1 + + +${i} + +${i} = 1 + + + + + + + +${lkr_docs}[${i}] +${anz_seiten} + + +Makes a variable available everywhere within the scope of the current test. + +${dokid} +${lkr_doc} + +${dokid} = 6177689 + + + + +aae_dokumentennr +5 +100 +${lkr_doc} + + + +${image} +${timeout} + + +${loc} + + +Runs the given keyword with the given arguments, if ``condition`` is true. + +'${image}' in ${lkr_loc_img} +Change Image Folder +${imgpath}\\${LKR_UC} + + + + +Tries to locate given image from the screen for given time. + +${image} +timeout=${timeout} + + +${loc} + +Image "aae_dokumentennr" found at (452, 463) +${loc} = (452, 463) + + + +Runs the given keyword with the given arguments, if ``condition`` is true. + +'${image}' in ${lkr_loc_img} +Change Image Folder +${imgpath} + + + +${loc} = (452, 463) + + + +Clicks right of given location by given offset. + +${loc} +${offset} + +Clicking 1 time(s) at (552, 463) with left mouse button at interval 0.000000 + + + +Type text and keyboard keys. + +@{text} + + + + + + +Type text and keyboard keys. + +Key.enter + + + + + +aae_treffer_1 +timeout=10 + + + +${image} +${timeout} + + +${loc} + + +Runs the given keyword with the given arguments, if ``condition`` is true. + +'${image}' in ${lkr_loc_img} +Change Image Folder +${imgpath}\\${LKR_UC} + + + + +Tries to locate given image from the screen for given time. + +${image} +timeout=${timeout} + + +${loc} + +Image "aae_treffer_1" found at (870, 745) +${loc} = (870, 745) + + + +Runs the given keyword with the given arguments, if ``condition`` is true. + +'${image}' in ${lkr_loc_img} +Change Image Folder +${imgpath} + + + +${loc} = (870, 745) + + + + +${loc} + + +Moves the mouse pointer to an absolute coordinates. + +${loc} + + + + +Clicks with the specified mouse button. + + + + + + + +Type text and keyboard keys. + +Key.Tab +Key.Tab +Key.Tab +Key.Tab +Key.right + + + + + +aae_zeile_markiert +timeout=10 + + + +${image} +${timeout} + + +${loc} + + +Runs the given keyword with the given arguments, if ``condition`` is true. + +'${image}' in ${lkr_loc_img} +Change Image Folder +${imgpath}\\${LKR_UC} + + + + +Tries to locate given image from the screen for given time. + +${image} +timeout=${timeout} + + +${loc} + +Image "aae_zeile_markiert" found at (423, 786) +${loc} = (423, 786) + + + +Runs the given keyword with the given arguments, if ``condition`` is true. + +'${image}' in ${lkr_loc_img} +Change Image Folder +${imgpath} + + + +${loc} = (423, 786) + + + + +${loc} + + +Moves the mouse pointer to an absolute coordinates. + +${loc} + + + + +Clicks with the specified mouse button. + + + + + + + + +aae_viewer_b +timeout=10 + + + +${image} +${timeout} + + +${loc} + + +Runs the given keyword with the given arguments, if ``condition`` is true. + +'${image}' in ${lkr_loc_img} +Change Image Folder +${imgpath}\\${LKR_UC} + + + + +Tries to locate given image from the screen for given time. + +${image} +timeout=${timeout} + + +${loc} + +Image "aae_viewer_b" found at (641, 709) +${loc} = (641, 709) + + + +Runs the given keyword with the given arguments, if ``condition`` is true. + +'${image}' in ${lkr_loc_img} +Change Image Folder +${imgpath} + + + +${loc} = (641, 709) + + + + +${loc} + + +Moves the mouse pointer to an absolute coordinates. + +${loc} + + + + +Clicks with the specified mouse button. + + + + + + + + +bviewer_opened +10 + + +Runs the given keyword with the given arguments, if ``condition`` is true. + +'${image}' in ${lkr_loc_img} +Change Image Folder +${imgpath}\\${LKR_UC} + + + + +Tries to locate given image from the screen for given time. + +${image} +timeout=${timeout} + + +${loc} + +Image "bviewer_opened" found at (652, 94) +${loc} = (652, 94) + + + +Runs the given keyword with the given arguments, if ``condition`` is true. + +'${image}' in ${lkr_loc_img} +Change Image Folder +${imgpath} + + + + + + +Pauses the test executed for the given time. + +0.5 + +Slept 500 milliseconds + + + + +bviewer_opened +timeout=10 + + + +${image} +${timeout} + + +${loc} + + +Runs the given keyword with the given arguments, if ``condition`` is true. + +'${image}' in ${lkr_loc_img} +Change Image Folder +${imgpath}\\${LKR_UC} + + + + +Tries to locate given image from the screen for given time. + +${image} +timeout=${timeout} + + +${loc} + +Image "bviewer_opened" found at (652, 94) +${loc} = (652, 94) + + + +Runs the given keyword with the given arguments, if ``condition`` is true. + +'${image}' in ${lkr_loc_img} +Change Image Folder +${imgpath} + + + +${loc} = (652, 94) + + + + +${loc} + + +Moves the mouse pointer to an absolute coordinates. + +${loc} + + + + +Clicks with the specified mouse button. + + + + + + + +Pauses the test executed for the given time. + +0.5 + +Slept 500 milliseconds + + + +Press given keyboard keys. + +Key.Win +Key.Up + + + + +Returns the given values which can then be assigned to a variables. + +ARCHIVETOOL_DOKU_${LKR_UC}_${anz_seiten} + + +${search_image} + +${search_image} = ARCHIVETOOL_DOKU_SH_100 + + + + +bviewer_opened +timeout=10 + + + +${image} +${timeout} + + +${loc} + + +Runs the given keyword with the given arguments, if ``condition`` is true. + +'${image}' in ${lkr_loc_img} +Change Image Folder +${imgpath}\\${LKR_UC} + + + + +Tries to locate given image from the screen for given time. + +${image} +timeout=${timeout} + + +${loc} + +Image "bviewer_opened" found at (11, 85) +${loc} = (11, 85) + + + +Runs the given keyword with the given arguments, if ``condition`` is true. + +'${image}' in ${lkr_loc_img} +Change Image Folder +${imgpath} + + + +${loc} = (11, 85) + + + + +${loc} + + +Moves the mouse pointer to an absolute coordinates. + +${loc} + + + + +Clicks with the specified mouse button. + + + + + + + +Tries to locate given image from the screen for given time. + +${search_image} +timeout=90 + +Image "ARCHIVETOOL_DOKU_SH_100" found at (199, 219) + + + +Press given keyboard keys. + +Key.Alt +Key.F4 + + + + + + + +aae_suche_clear +timeout=5 + + + +${image} +${timeout} + + +${loc} + + +Runs the given keyword with the given arguments, if ``condition`` is true. + +'${image}' in ${lkr_loc_img} +Change Image Folder +${imgpath}\\${LKR_UC} + + + + +Tries to locate given image from the screen for given time. + +${image} +timeout=${timeout} + + +${loc} + +Image "aae_suche_clear" found at (404, 709) +${loc} = (404, 709) + + + +Runs the given keyword with the given arguments, if ``condition`` is true. + +'${image}' in ${lkr_loc_img} +Change Image Folder +${imgpath} + + + +${loc} = (404, 709) + + + + +${loc} + + +Moves the mouse pointer to an absolute coordinates. + +${loc} + + + + +Clicks with the specified mouse button. + + + + + + + + +aae_dokumentennr_bereit +timeout=5 + + +Runs the given keyword with the given arguments, if ``condition`` is true. + +'${image}' in ${lkr_loc_img} +Change Image Folder +${imgpath}\\${LKR_UC} + + + + +Tries to locate given image from the screen for given time. + +${image} +timeout=${timeout} + + +${loc} + +Image "aae_dokumentennr_bereit" found at (569, 464) +${loc} = (569, 464) + + + +Runs the given keyword with the given arguments, if ``condition`` is true. + +'${image}' in ${lkr_loc_img} +Change Image Folder +${imgpath} + + + + + + +Evaluates the given expression in Python and returns the result. + +${i} + 1 + + +${i} + +${i} = 2 + + + + + + + +${lkr_docs}[${i}] +${anz_seiten} + + +Makes a variable available everywhere within the scope of the current test. + +${dokid} +${lkr_doc} + +${dokid} = 6178142 + + + + +aae_dokumentennr +5 +100 +${lkr_doc} + + + +${image} +${timeout} + + +${loc} + + +Runs the given keyword with the given arguments, if ``condition`` is true. + +'${image}' in ${lkr_loc_img} +Change Image Folder +${imgpath}\\${LKR_UC} + + + + +Tries to locate given image from the screen for given time. + +${image} +timeout=${timeout} + + +${loc} + +Image "aae_dokumentennr" found at (452, 463) +${loc} = (452, 463) + + + +Runs the given keyword with the given arguments, if ``condition`` is true. + +'${image}' in ${lkr_loc_img} +Change Image Folder +${imgpath} + + + +${loc} = (452, 463) + + + +Clicks right of given location by given offset. + +${loc} +${offset} + +Clicking 1 time(s) at (552, 463) with left mouse button at interval 0.000000 + + + +Type text and keyboard keys. + +@{text} + + + + + + +Type text and keyboard keys. + +Key.enter + + + + + +aae_treffer_1 +timeout=10 + + + +${image} +${timeout} + + +${loc} + + +Runs the given keyword with the given arguments, if ``condition`` is true. + +'${image}' in ${lkr_loc_img} +Change Image Folder +${imgpath}\\${LKR_UC} + + + + +Tries to locate given image from the screen for given time. + +${image} +timeout=${timeout} + + +${loc} + +Image "aae_treffer_1" found at (870, 745) +${loc} = (870, 745) + + + +Runs the given keyword with the given arguments, if ``condition`` is true. + +'${image}' in ${lkr_loc_img} +Change Image Folder +${imgpath} + + + +${loc} = (870, 745) + + + + +${loc} + + +Moves the mouse pointer to an absolute coordinates. + +${loc} + + + + +Clicks with the specified mouse button. + + + + + + + +Type text and keyboard keys. + +Key.Tab +Key.Tab +Key.Tab +Key.Tab +Key.right + + + + + +aae_zeile_markiert +timeout=10 + + + +${image} +${timeout} + + +${loc} + + +Runs the given keyword with the given arguments, if ``condition`` is true. + +'${image}' in ${lkr_loc_img} +Change Image Folder +${imgpath}\\${LKR_UC} + + + + +Tries to locate given image from the screen for given time. + +${image} +timeout=${timeout} + + +${loc} + +Image "aae_zeile_markiert" found at (423, 786) +${loc} = (423, 786) + + + +Runs the given keyword with the given arguments, if ``condition`` is true. + +'${image}' in ${lkr_loc_img} +Change Image Folder +${imgpath} + + + +${loc} = (423, 786) + + + + +${loc} + + +Moves the mouse pointer to an absolute coordinates. + +${loc} + + + + +Clicks with the specified mouse button. + + + + + + + + +aae_viewer_b +timeout=10 + + + +${image} +${timeout} + + +${loc} + + +Runs the given keyword with the given arguments, if ``condition`` is true. + +'${image}' in ${lkr_loc_img} +Change Image Folder +${imgpath}\\${LKR_UC} + + + + +Tries to locate given image from the screen for given time. + +${image} +timeout=${timeout} + + +${loc} + +Image "aae_viewer_b" found at (641, 709) +${loc} = (641, 709) + + + +Runs the given keyword with the given arguments, if ``condition`` is true. + +'${image}' in ${lkr_loc_img} +Change Image Folder +${imgpath} + + + +${loc} = (641, 709) + + + + +${loc} + + +Moves the mouse pointer to an absolute coordinates. + +${loc} + + + + +Clicks with the specified mouse button. + + + + + + + + +bviewer_opened +10 + + +Runs the given keyword with the given arguments, if ``condition`` is true. + +'${image}' in ${lkr_loc_img} +Change Image Folder +${imgpath}\\${LKR_UC} + + + + +Tries to locate given image from the screen for given time. + +${image} +timeout=${timeout} + + +${loc} + +Image "bviewer_opened" found at (652, 94) +${loc} = (652, 94) + + + +Runs the given keyword with the given arguments, if ``condition`` is true. + +'${image}' in ${lkr_loc_img} +Change Image Folder +${imgpath} + + + + + + +Pauses the test executed for the given time. + +0.5 + +Slept 500 milliseconds + + + + +bviewer_opened +timeout=10 + + + +${image} +${timeout} + + +${loc} + + +Runs the given keyword with the given arguments, if ``condition`` is true. + +'${image}' in ${lkr_loc_img} +Change Image Folder +${imgpath}\\${LKR_UC} + + + + +Tries to locate given image from the screen for given time. + +${image} +timeout=${timeout} + + +${loc} + +Image "bviewer_opened" found at (652, 94) +${loc} = (652, 94) + + + +Runs the given keyword with the given arguments, if ``condition`` is true. + +'${image}' in ${lkr_loc_img} +Change Image Folder +${imgpath} + + + +${loc} = (652, 94) + + + + +${loc} + + +Moves the mouse pointer to an absolute coordinates. + +${loc} + + + + +Clicks with the specified mouse button. + + + + + + + +Pauses the test executed for the given time. + +0.5 + +Slept 500 milliseconds + + + +Press given keyboard keys. + +Key.Win +Key.Up + + + + +Returns the given values which can then be assigned to a variables. + +ARCHIVETOOL_DOKU_${LKR_UC}_${anz_seiten} + + +${search_image} + +${search_image} = ARCHIVETOOL_DOKU_SH_300 + + + + +bviewer_opened +timeout=10 + + + +${image} +${timeout} + + +${loc} + + +Runs the given keyword with the given arguments, if ``condition`` is true. + +'${image}' in ${lkr_loc_img} +Change Image Folder +${imgpath}\\${LKR_UC} + + + + +Tries to locate given image from the screen for given time. + +${image} +timeout=${timeout} + + +${loc} + +Image "bviewer_opened" found at (11, 85) +${loc} = (11, 85) + + + +Runs the given keyword with the given arguments, if ``condition`` is true. + +'${image}' in ${lkr_loc_img} +Change Image Folder +${imgpath} + + + +${loc} = (11, 85) + + + + +${loc} + + +Moves the mouse pointer to an absolute coordinates. + +${loc} + + + + +Clicks with the specified mouse button. + + + + + + + +Tries to locate given image from the screen for given time. + +${search_image} +timeout=90 + +Image "ARCHIVETOOL_DOKU_SH_300" found at (220, 208) + + + +Press given keyboard keys. + +Key.Alt +Key.F4 + + + + + + + +aae_suche_clear +timeout=5 + + + +${image} +${timeout} + + +${loc} + + +Runs the given keyword with the given arguments, if ``condition`` is true. + +'${image}' in ${lkr_loc_img} +Change Image Folder +${imgpath}\\${LKR_UC} + + + + +Tries to locate given image from the screen for given time. + +${image} +timeout=${timeout} + + +${loc} + +Image "aae_suche_clear" found at (404, 709) +${loc} = (404, 709) + + + +Runs the given keyword with the given arguments, if ``condition`` is true. + +'${image}' in ${lkr_loc_img} +Change Image Folder +${imgpath} + + + +${loc} = (404, 709) + + + + +${loc} + + +Moves the mouse pointer to an absolute coordinates. + +${loc} + + + + +Clicks with the specified mouse button. + + + + + + + + +aae_dokumentennr_bereit +timeout=5 + + +Runs the given keyword with the given arguments, if ``condition`` is true. + +'${image}' in ${lkr_loc_img} +Change Image Folder +${imgpath}\\${LKR_UC} + + + + +Tries to locate given image from the screen for given time. + +${image} +timeout=${timeout} + + +${loc} + +Image "aae_dokumentennr_bereit" found at (569, 464) +${loc} = (569, 464) + + + +Runs the given keyword with the given arguments, if ``condition`` is true. + +'${image}' in ${lkr_loc_img} +Change Image Folder +${imgpath} + + + + + + +Evaluates the given expression in Python and returns the result. + +${i} + 1 + + +${i} + +${i} = 3 + + + + + + + + + + +Runs the given keyword with the given arguments, if ``condition`` is true. + +${APPOPEN}==${True} +Terminate Application +alias=archivetool + + +Terminates the process launched with `Launch Application` with +given ``alias``. + +alias=archivetool + + + + + + +Runs the given keyword with the given arguments, if ``condition`` is true. + +${APPOPEN}==${True} +Quit All Viewer Processes + + + +Runs a process and waits for it to complete. + +cmd.exe /c taskkill /IM ArchiveViewAdvancedA.exe +shell=True + +Starting process: +cmd.exe /c taskkill /IM ArchiveViewAdvancedA.exe +Waiting for process to complete. +Process completed. + + + +Runs a process and waits for it to complete. + +cmd.exe /c taskkill /IM ArchiveViewAdvancedB.exe +shell=True + +Starting process: +cmd.exe /c taskkill /IM ArchiveViewAdvancedB.exe +Waiting for process to complete. +Process completed. + + + +Runs a process and waits for it to complete. + +cmd.exe /c taskkill /IM ArchiveViewAdvancedC.exe +shell=True + +Starting process: +cmd.exe /c taskkill /IM ArchiveViewAdvancedC.exe +Waiting for process to complete. +Process completed. + + + +Runs a process and waits for it to complete. + +cmd.exe /c taskkill /IM +ArchivToolExtAdvanced.exe +shell=True + +Starting process: +"cmd.exe /c taskkill /IM" ArchivToolExtAdvanced.exe +Waiting for process to complete. +Process completed. + + + +Runs a process and waits for it to complete. + +cmd.exe /c taskkill /IM +archtool.exe +shell=True + +Starting process: +"cmd.exe /c taskkill /IM" archtool.exe +Waiting for process to complete. +Process completed. + + + + + + + +Makes a variable available everywhere within the scope of the current suite. + +${APPOPEN} +${False} + +${APPOPEN} = False + + + + + + + + + +UR + + +Sets where all reference images are stored. + +${imgpath} + + + + + +${lkr_uc} + + +Makes a variable available everywhere within the scope of the current test. + +${LKR_UC} +${lkr_uc} + +${LKR_UC} = UR + + + +Converts string to lower case. + +${lkr_uc} + + +${lkr_lc} + +${lkr_lc} = ur + + + +Makes a variable available everywhere within the scope of the current test. + +${LKR_LC} +${lkr_lc} + +${LKR_LC} = ur + + + +Makes a variable available everywhere within the scope of the current test. + +${lkr_docs} +${TESTDATA['${LKR_UC}']['docs']} + +${lkr_docs} = ['1827996', '1828026', '1828126'] + + + +Makes a variable available everywhere within the scope of the current test. + +${lkr_cred} +${TESTDATA['${LKR_UC}']['credentials']} + +${lkr_cred} = ['urmf', 'crypt:4BvQw6JTldye6IBNhu19Ip8AwAefUKB3/P3KGvHQMn2VPelDakiMdaIEbr0ZDkhN9bngrISddkU='] + + + +Makes a variable available everywhere within the scope of the current test. + +${lkr_loc_img} +${TESTDATA['${LKR_UC}']['loc_img']} + +${lkr_loc_img} = [] + + + +Makes a variable available everywhere within the scope of the current test. + +${user} +${lkr_cred}[0] + +${user} = urmf + + + +Decrypts cipher text and returns the plain text. + +${lkr_cred}[1] + + +${password} + +Decrypting text and return value. +${password} = *** + + + +Makes a variable available everywhere within the scope of the current test. + +${password} +${password} + +${password} = *** + + + + + + +Runs a process and waits for it to complete. + +cmd.exe /c taskkill /IM ArchiveViewAdvancedA.exe +shell=True + +Starting process: +cmd.exe /c taskkill /IM ArchiveViewAdvancedA.exe +Waiting for process to complete. +Process completed. + + + +Runs a process and waits for it to complete. + +cmd.exe /c taskkill /IM ArchiveViewAdvancedB.exe +shell=True + +Starting process: +cmd.exe /c taskkill /IM ArchiveViewAdvancedB.exe +Waiting for process to complete. +Process completed. + + + +Runs a process and waits for it to complete. + +cmd.exe /c taskkill /IM ArchiveViewAdvancedC.exe +shell=True + +Starting process: +cmd.exe /c taskkill /IM ArchiveViewAdvancedC.exe +Waiting for process to complete. +Process completed. + + + +Runs a process and waits for it to complete. + +cmd.exe /c taskkill /IM +ArchivToolExtAdvanced.exe +shell=True + +Starting process: +"cmd.exe /c taskkill /IM" ArchivToolExtAdvanced.exe +Waiting for process to complete. +Process completed. + + + +Runs a process and waits for it to complete. + +cmd.exe /c taskkill /IM +archtool.exe +shell=True + +Starting process: +"cmd.exe /c taskkill /IM" archtool.exe +Waiting for process to complete. +Process completed. + + + + + + +Runs a process and waits for it to complete. + +C:\\ProgramData\\checkmk\\agent\\robot\\archivetool\\ArchivetoolConfig\\sva_${LKR_LC} konfiguration.bat + +Starting process: +"C:\ProgramData\checkmk\agent\robot\archivetool\ArchivetoolConfig\sva_ur konfiguration.bat" +Waiting for process to complete. +Process completed. + + + +Launches an application. + +"${APP}" +alias=archivetool + + + + +Makes a variable available everywhere within the scope of the current suite. + +${APPOPEN} +${True} + +${APPOPEN} = True + + + + + + + +login_username +timeout=10 + + +${loc} + + +Runs the given keyword with the given arguments, if ``condition`` is true. + +'${image}' in ${lkr_loc_img} +Change Image Folder +${imgpath}\\${LKR_UC} + + + + +Tries to locate given image from the screen for given time. + +${image} +timeout=${timeout} + + +${loc} + +Image "login_username" found at (227, 149) +${loc} = (227, 149) + + + +Runs the given keyword with the given arguments, if ``condition`` is true. + +'${image}' in ${lkr_loc_img} +Change Image Folder +${imgpath} + + + +${loc} = (227, 149) + + + +Finds the reference image on screen and clicks it once. + +login_username + +Image "C:\ProgramData\checkmk\agent\robot\archivetool\images\login_username.png" found at Box(left=182, top=134, width=90, height=30) +Clicking image "login_username" in position (227, 149) + + + +Pauses the test executed for the given time. + +0.2 + +Slept 200 milliseconds + + + + +login_username +10 +20 +${user} + + + +${image} +${timeout} + + +${loc} + + +Runs the given keyword with the given arguments, if ``condition`` is true. + +'${image}' in ${lkr_loc_img} +Change Image Folder +${imgpath}\\${LKR_UC} + + + + +Tries to locate given image from the screen for given time. + +${image} +timeout=${timeout} + + +${loc} + +Image "login_username" found at (227, 149) +${loc} = (227, 149) + + + +Runs the given keyword with the given arguments, if ``condition`` is true. + +'${image}' in ${lkr_loc_img} +Change Image Folder +${imgpath} + + + +${loc} = (227, 149) + + + +Clicks right of given location by given offset. + +${loc} +${offset} + +Clicking 1 time(s) at (247, 149) with left mouse button at interval 0.000000 + + + +Type text and keyboard keys. + +@{text} + + + + + + +Pauses the test executed for the given time. + +0.2 + +Slept 200 milliseconds + + + +Type text and keyboard keys. + +Key.tab + + + + +Pauses the test executed for the given time. + +0.2 + +Slept 200 milliseconds + + + +Type text and keyboard keys. + +${password} +Key.enter +Key.enter + + + + + +archiv_vista_warn +timeout=5 + + + +${image} +${timeout} + + +${loc} + + +Runs the given keyword with the given arguments, if ``condition`` is true. + +'${image}' in ${lkr_loc_img} +Change Image Folder +${imgpath}\\${LKR_UC} + + + + +Tries to locate given image from the screen for given time. + +${image} +timeout=${timeout} + + +${loc} + +Image "archiv_vista_warn" found at (845, 559) +${loc} = (845, 559) + + + +Runs the given keyword with the given arguments, if ``condition`` is true. + +'${image}' in ${lkr_loc_img} +Change Image Folder +${imgpath} + + + +${loc} = (845, 559) + + + + +${loc} + + +Moves the mouse pointer to an absolute coordinates. + +${loc} + + + + +Clicks with the specified mouse button. + + + + + + + +Type text and keyboard keys. + +Key.enter + + + + +Tries to locate given image from the screen for given time. + +aae_toolbar +timeout=10 + +Image "aae_toolbar" found at (506, 709) + + + + + + +Returns ``True`` if reference image was found on screen or +``False`` otherwise. Never fails. + +aae_vorbelegung_checked + + +${vorbelegt_checked} + +${vorbelegt_checked} = False + + + +Runs the given keyword with the given arguments, if ``condition`` is true. + +${vorbelegt_checked}==${True} +Click Image +aae_vorbelegung_checked + + + + + + +Returns the given values which can then be assigned to a variables. + +0 + + +${i} + +${i} = 0 + + + + + + +${lkr_docs}[${i}] +${anz_seiten} + + +Makes a variable available everywhere within the scope of the current test. + +${dokid} +${lkr_doc} + +${dokid} = 1827996 + + + + +aae_dokumentennr +5 +100 +${lkr_doc} + + + +${image} +${timeout} + + +${loc} + + +Runs the given keyword with the given arguments, if ``condition`` is true. + +'${image}' in ${lkr_loc_img} +Change Image Folder +${imgpath}\\${LKR_UC} + + + + +Tries to locate given image from the screen for given time. + +${image} +timeout=${timeout} + + +${loc} + +Image "aae_dokumentennr" found at (452, 463) +${loc} = (452, 463) + + + +Runs the given keyword with the given arguments, if ``condition`` is true. + +'${image}' in ${lkr_loc_img} +Change Image Folder +${imgpath} + + + +${loc} = (452, 463) + + + +Clicks right of given location by given offset. + +${loc} +${offset} + +Clicking 1 time(s) at (552, 463) with left mouse button at interval 0.000000 + + + +Type text and keyboard keys. + +@{text} + + + + + + +Type text and keyboard keys. + +Key.enter + + + + + +aae_treffer_1 +timeout=10 + + + +${image} +${timeout} + + +${loc} + + +Runs the given keyword with the given arguments, if ``condition`` is true. + +'${image}' in ${lkr_loc_img} +Change Image Folder +${imgpath}\\${LKR_UC} + + + + +Tries to locate given image from the screen for given time. + +${image} +timeout=${timeout} + + +${loc} + +Image "aae_treffer_1" found at (870, 745) +${loc} = (870, 745) + + + +Runs the given keyword with the given arguments, if ``condition`` is true. + +'${image}' in ${lkr_loc_img} +Change Image Folder +${imgpath} + + + +${loc} = (870, 745) + + + + +${loc} + + +Moves the mouse pointer to an absolute coordinates. + +${loc} + + + + +Clicks with the specified mouse button. + + + + + + + +Type text and keyboard keys. + +Key.Tab +Key.Tab +Key.Tab +Key.Tab +Key.right + + + + + +aae_zeile_markiert +timeout=10 + + + +${image} +${timeout} + + +${loc} + + +Runs the given keyword with the given arguments, if ``condition`` is true. + +'${image}' in ${lkr_loc_img} +Change Image Folder +${imgpath}\\${LKR_UC} + + + + +Tries to locate given image from the screen for given time. + +${image} +timeout=${timeout} + + +${loc} + +Image "aae_zeile_markiert" found at (423, 786) +${loc} = (423, 786) + + + +Runs the given keyword with the given arguments, if ``condition`` is true. + +'${image}' in ${lkr_loc_img} +Change Image Folder +${imgpath} + + + +${loc} = (423, 786) + + + + +${loc} + + +Moves the mouse pointer to an absolute coordinates. + +${loc} + + + + +Clicks with the specified mouse button. + + + + + + + + +aae_viewer_b +timeout=10 + + + +${image} +${timeout} + + +${loc} + + +Runs the given keyword with the given arguments, if ``condition`` is true. + +'${image}' in ${lkr_loc_img} +Change Image Folder +${imgpath}\\${LKR_UC} + + + + +Tries to locate given image from the screen for given time. + +${image} +timeout=${timeout} + + +${loc} + +Image "aae_viewer_b" found at (641, 709) +${loc} = (641, 709) + + + +Runs the given keyword with the given arguments, if ``condition`` is true. + +'${image}' in ${lkr_loc_img} +Change Image Folder +${imgpath} + + + +${loc} = (641, 709) + + + + +${loc} + + +Moves the mouse pointer to an absolute coordinates. + +${loc} + + + + +Clicks with the specified mouse button. + + + + + + + + +bviewer_opened +10 + + +Runs the given keyword with the given arguments, if ``condition`` is true. + +'${image}' in ${lkr_loc_img} +Change Image Folder +${imgpath}\\${LKR_UC} + + + + +Tries to locate given image from the screen for given time. + +${image} +timeout=${timeout} + + +${loc} + +Image "bviewer_opened" found at (652, 94) +${loc} = (652, 94) + + + +Runs the given keyword with the given arguments, if ``condition`` is true. + +'${image}' in ${lkr_loc_img} +Change Image Folder +${imgpath} + + + + + + +Pauses the test executed for the given time. + +0.5 + +Slept 500 milliseconds + + + + +bviewer_opened +timeout=10 + + + +${image} +${timeout} + + +${loc} + + +Runs the given keyword with the given arguments, if ``condition`` is true. + +'${image}' in ${lkr_loc_img} +Change Image Folder +${imgpath}\\${LKR_UC} + + + + +Tries to locate given image from the screen for given time. + +${image} +timeout=${timeout} + + +${loc} + +Image "bviewer_opened" found at (652, 94) +${loc} = (652, 94) + + + +Runs the given keyword with the given arguments, if ``condition`` is true. + +'${image}' in ${lkr_loc_img} +Change Image Folder +${imgpath} + + + +${loc} = (652, 94) + + + + +${loc} + + +Moves the mouse pointer to an absolute coordinates. + +${loc} + + + + +Clicks with the specified mouse button. + + + + + + + +Pauses the test executed for the given time. + +0.5 + +Slept 500 milliseconds + + + +Press given keyboard keys. + +Key.Win +Key.Up + + + + +Returns the given values which can then be assigned to a variables. + +ARCHIVETOOL_DOKU_${LKR_UC}_${anz_seiten} + + +${search_image} + +${search_image} = ARCHIVETOOL_DOKU_UR_30 + + + + +bviewer_opened +timeout=10 + + + +${image} +${timeout} + + +${loc} + + +Runs the given keyword with the given arguments, if ``condition`` is true. + +'${image}' in ${lkr_loc_img} +Change Image Folder +${imgpath}\\${LKR_UC} + + + + +Tries to locate given image from the screen for given time. + +${image} +timeout=${timeout} + + +${loc} + +Image "bviewer_opened" found at (11, 85) +${loc} = (11, 85) + + + +Runs the given keyword with the given arguments, if ``condition`` is true. + +'${image}' in ${lkr_loc_img} +Change Image Folder +${imgpath} + + + +${loc} = (11, 85) + + + + +${loc} + + +Moves the mouse pointer to an absolute coordinates. + +${loc} + + + + +Clicks with the specified mouse button. + + + + + + + +Tries to locate given image from the screen for given time. + +${search_image} +timeout=90 + +Image "ARCHIVETOOL_DOKU_UR_30" found at (404, 283) + + + +Press given keyboard keys. + +Key.Alt +Key.F4 + + + + + + + +aae_suche_clear +timeout=5 + + + +${image} +${timeout} + + +${loc} + + +Runs the given keyword with the given arguments, if ``condition`` is true. + +'${image}' in ${lkr_loc_img} +Change Image Folder +${imgpath}\\${LKR_UC} + + + + +Tries to locate given image from the screen for given time. + +${image} +timeout=${timeout} + + +${loc} + +Image "aae_suche_clear" found at (404, 709) +${loc} = (404, 709) + + + +Runs the given keyword with the given arguments, if ``condition`` is true. + +'${image}' in ${lkr_loc_img} +Change Image Folder +${imgpath} + + + +${loc} = (404, 709) + + + + +${loc} + + +Moves the mouse pointer to an absolute coordinates. + +${loc} + + + + +Clicks with the specified mouse button. + + + + + + + + +aae_dokumentennr_bereit +timeout=5 + + +Runs the given keyword with the given arguments, if ``condition`` is true. + +'${image}' in ${lkr_loc_img} +Change Image Folder +${imgpath}\\${LKR_UC} + + + + +Tries to locate given image from the screen for given time. + +${image} +timeout=${timeout} + + +${loc} + +Image "aae_dokumentennr_bereit" found at (569, 464) +${loc} = (569, 464) + + + +Runs the given keyword with the given arguments, if ``condition`` is true. + +'${image}' in ${lkr_loc_img} +Change Image Folder +${imgpath} + + + + + + +Evaluates the given expression in Python and returns the result. + +${i} + 1 + + +${i} + +${i} = 1 + + + + + + + +${lkr_docs}[${i}] +${anz_seiten} + + +Makes a variable available everywhere within the scope of the current test. + +${dokid} +${lkr_doc} + +${dokid} = 1828026 + + + + +aae_dokumentennr +5 +100 +${lkr_doc} + + + +${image} +${timeout} + + +${loc} + + +Runs the given keyword with the given arguments, if ``condition`` is true. + +'${image}' in ${lkr_loc_img} +Change Image Folder +${imgpath}\\${LKR_UC} + + + + +Tries to locate given image from the screen for given time. + +${image} +timeout=${timeout} + + +${loc} + +Image "aae_dokumentennr" found at (452, 463) +${loc} = (452, 463) + + + +Runs the given keyword with the given arguments, if ``condition`` is true. + +'${image}' in ${lkr_loc_img} +Change Image Folder +${imgpath} + + + +${loc} = (452, 463) + + + +Clicks right of given location by given offset. + +${loc} +${offset} + +Clicking 1 time(s) at (552, 463) with left mouse button at interval 0.000000 + + + +Type text and keyboard keys. + +@{text} + + + + + + +Type text and keyboard keys. + +Key.enter + + + + + +aae_treffer_1 +timeout=10 + + + +${image} +${timeout} + + +${loc} + + +Runs the given keyword with the given arguments, if ``condition`` is true. + +'${image}' in ${lkr_loc_img} +Change Image Folder +${imgpath}\\${LKR_UC} + + + + +Tries to locate given image from the screen for given time. + +${image} +timeout=${timeout} + + +${loc} + +Image "aae_treffer_1" found at (870, 745) +${loc} = (870, 745) + + + +Runs the given keyword with the given arguments, if ``condition`` is true. + +'${image}' in ${lkr_loc_img} +Change Image Folder +${imgpath} + + + +${loc} = (870, 745) + + + + +${loc} + + +Moves the mouse pointer to an absolute coordinates. + +${loc} + + + + +Clicks with the specified mouse button. + + + + + + + +Type text and keyboard keys. + +Key.Tab +Key.Tab +Key.Tab +Key.Tab +Key.right + + + + + +aae_zeile_markiert +timeout=10 + + + +${image} +${timeout} + + +${loc} + + +Runs the given keyword with the given arguments, if ``condition`` is true. + +'${image}' in ${lkr_loc_img} +Change Image Folder +${imgpath}\\${LKR_UC} + + + + +Tries to locate given image from the screen for given time. + +${image} +timeout=${timeout} + + +${loc} + +Image "aae_zeile_markiert" found at (423, 786) +${loc} = (423, 786) + + + +Runs the given keyword with the given arguments, if ``condition`` is true. + +'${image}' in ${lkr_loc_img} +Change Image Folder +${imgpath} + + + +${loc} = (423, 786) + + + + +${loc} + + +Moves the mouse pointer to an absolute coordinates. + +${loc} + + + + +Clicks with the specified mouse button. + + + + + + + + +aae_viewer_b +timeout=10 + + + +${image} +${timeout} + + +${loc} + + +Runs the given keyword with the given arguments, if ``condition`` is true. + +'${image}' in ${lkr_loc_img} +Change Image Folder +${imgpath}\\${LKR_UC} + + + + +Tries to locate given image from the screen for given time. + +${image} +timeout=${timeout} + + +${loc} + +Image "aae_viewer_b" found at (641, 709) +${loc} = (641, 709) + + + +Runs the given keyword with the given arguments, if ``condition`` is true. + +'${image}' in ${lkr_loc_img} +Change Image Folder +${imgpath} + + + +${loc} = (641, 709) + + + + +${loc} + + +Moves the mouse pointer to an absolute coordinates. + +${loc} + + + + +Clicks with the specified mouse button. + + + + + + + + +bviewer_opened +10 + + +Runs the given keyword with the given arguments, if ``condition`` is true. + +'${image}' in ${lkr_loc_img} +Change Image Folder +${imgpath}\\${LKR_UC} + + + + +Tries to locate given image from the screen for given time. + +${image} +timeout=${timeout} + + +${loc} + +Image "bviewer_opened" found at (652, 94) +${loc} = (652, 94) + + + +Runs the given keyword with the given arguments, if ``condition`` is true. + +'${image}' in ${lkr_loc_img} +Change Image Folder +${imgpath} + + + + + + +Pauses the test executed for the given time. + +0.5 + +Slept 500 milliseconds + + + + +bviewer_opened +timeout=10 + + + +${image} +${timeout} + + +${loc} + + +Runs the given keyword with the given arguments, if ``condition`` is true. + +'${image}' in ${lkr_loc_img} +Change Image Folder +${imgpath}\\${LKR_UC} + + + + +Tries to locate given image from the screen for given time. + +${image} +timeout=${timeout} + + +${loc} + +Image "bviewer_opened" found at (652, 94) +${loc} = (652, 94) + + + +Runs the given keyword with the given arguments, if ``condition`` is true. + +'${image}' in ${lkr_loc_img} +Change Image Folder +${imgpath} + + + +${loc} = (652, 94) + + + + +${loc} + + +Moves the mouse pointer to an absolute coordinates. + +${loc} + + + + +Clicks with the specified mouse button. + + + + + + + +Pauses the test executed for the given time. + +0.5 + +Slept 500 milliseconds + + + +Press given keyboard keys. + +Key.Win +Key.Up + + + + +Returns the given values which can then be assigned to a variables. + +ARCHIVETOOL_DOKU_${LKR_UC}_${anz_seiten} + + +${search_image} + +${search_image} = ARCHIVETOOL_DOKU_UR_100 + + + + +bviewer_opened +timeout=10 + + + +${image} +${timeout} + + +${loc} + + +Runs the given keyword with the given arguments, if ``condition`` is true. + +'${image}' in ${lkr_loc_img} +Change Image Folder +${imgpath}\\${LKR_UC} + + + + +Tries to locate given image from the screen for given time. + +${image} +timeout=${timeout} + + +${loc} + +Image "bviewer_opened" found at (11, 85) +${loc} = (11, 85) + + + +Runs the given keyword with the given arguments, if ``condition`` is true. + +'${image}' in ${lkr_loc_img} +Change Image Folder +${imgpath} + + + +${loc} = (11, 85) + + + + +${loc} + + +Moves the mouse pointer to an absolute coordinates. + +${loc} + + + + +Clicks with the specified mouse button. + + + + + + + +Tries to locate given image from the screen for given time. + +${search_image} +timeout=90 + +Image "ARCHIVETOOL_DOKU_UR_100" found at (321, 292) + + + +Press given keyboard keys. + +Key.Alt +Key.F4 + + + + + + + +aae_suche_clear +timeout=5 + + + +${image} +${timeout} + + +${loc} + + +Runs the given keyword with the given arguments, if ``condition`` is true. + +'${image}' in ${lkr_loc_img} +Change Image Folder +${imgpath}\\${LKR_UC} + + + + +Tries to locate given image from the screen for given time. + +${image} +timeout=${timeout} + + +${loc} + +Image "aae_suche_clear" found at (404, 709) +${loc} = (404, 709) + + + +Runs the given keyword with the given arguments, if ``condition`` is true. + +'${image}' in ${lkr_loc_img} +Change Image Folder +${imgpath} + + + +${loc} = (404, 709) + + + + +${loc} + + +Moves the mouse pointer to an absolute coordinates. + +${loc} + + + + +Clicks with the specified mouse button. + + + + + + + + +aae_dokumentennr_bereit +timeout=5 + + +Runs the given keyword with the given arguments, if ``condition`` is true. + +'${image}' in ${lkr_loc_img} +Change Image Folder +${imgpath}\\${LKR_UC} + + + + +Tries to locate given image from the screen for given time. + +${image} +timeout=${timeout} + + +${loc} + +Image "aae_dokumentennr_bereit" found at (569, 464) +${loc} = (569, 464) + + + +Runs the given keyword with the given arguments, if ``condition`` is true. + +'${image}' in ${lkr_loc_img} +Change Image Folder +${imgpath} + + + + + + +Evaluates the given expression in Python and returns the result. + +${i} + 1 + + +${i} + +${i} = 2 + + + + + + + +${lkr_docs}[${i}] +${anz_seiten} + + +Makes a variable available everywhere within the scope of the current test. + +${dokid} +${lkr_doc} + +${dokid} = 1828126 + + + + +aae_dokumentennr +5 +100 +${lkr_doc} + + + +${image} +${timeout} + + +${loc} + + +Runs the given keyword with the given arguments, if ``condition`` is true. + +'${image}' in ${lkr_loc_img} +Change Image Folder +${imgpath}\\${LKR_UC} + + + + +Tries to locate given image from the screen for given time. + +${image} +timeout=${timeout} + + +${loc} + +Image "aae_dokumentennr" found at (452, 463) +${loc} = (452, 463) + + + +Runs the given keyword with the given arguments, if ``condition`` is true. + +'${image}' in ${lkr_loc_img} +Change Image Folder +${imgpath} + + + +${loc} = (452, 463) + + + +Clicks right of given location by given offset. + +${loc} +${offset} + +Clicking 1 time(s) at (552, 463) with left mouse button at interval 0.000000 + + + +Type text and keyboard keys. + +@{text} + + + + + + +Type text and keyboard keys. + +Key.enter + + + + + +aae_treffer_1 +timeout=10 + + + +${image} +${timeout} + + +${loc} + + +Runs the given keyword with the given arguments, if ``condition`` is true. + +'${image}' in ${lkr_loc_img} +Change Image Folder +${imgpath}\\${LKR_UC} + + + + +Tries to locate given image from the screen for given time. + +${image} +timeout=${timeout} + + +${loc} + +Image "aae_treffer_1" found at (870, 745) +${loc} = (870, 745) + + + +Runs the given keyword with the given arguments, if ``condition`` is true. + +'${image}' in ${lkr_loc_img} +Change Image Folder +${imgpath} + + + +${loc} = (870, 745) + + + + +${loc} + + +Moves the mouse pointer to an absolute coordinates. + +${loc} + + + + +Clicks with the specified mouse button. + + + + + + + +Type text and keyboard keys. + +Key.Tab +Key.Tab +Key.Tab +Key.Tab +Key.right + + + + + +aae_zeile_markiert +timeout=10 + + + +${image} +${timeout} + + +${loc} + + +Runs the given keyword with the given arguments, if ``condition`` is true. + +'${image}' in ${lkr_loc_img} +Change Image Folder +${imgpath}\\${LKR_UC} + + + + +Tries to locate given image from the screen for given time. + +${image} +timeout=${timeout} + + +${loc} + +Image "aae_zeile_markiert" found at (423, 786) +${loc} = (423, 786) + + + +Runs the given keyword with the given arguments, if ``condition`` is true. + +'${image}' in ${lkr_loc_img} +Change Image Folder +${imgpath} + + + +${loc} = (423, 786) + + + + +${loc} + + +Moves the mouse pointer to an absolute coordinates. + +${loc} + + + + +Clicks with the specified mouse button. + + + + + + + + +aae_viewer_b +timeout=10 + + + +${image} +${timeout} + + +${loc} + + +Runs the given keyword with the given arguments, if ``condition`` is true. + +'${image}' in ${lkr_loc_img} +Change Image Folder +${imgpath}\\${LKR_UC} + + + + +Tries to locate given image from the screen for given time. + +${image} +timeout=${timeout} + + +${loc} + +Image "aae_viewer_b" found at (641, 709) +${loc} = (641, 709) + + + +Runs the given keyword with the given arguments, if ``condition`` is true. + +'${image}' in ${lkr_loc_img} +Change Image Folder +${imgpath} + + + +${loc} = (641, 709) + + + + +${loc} + + +Moves the mouse pointer to an absolute coordinates. + +${loc} + + + + +Clicks with the specified mouse button. + + + + + + + + +bviewer_opened +10 + + +Runs the given keyword with the given arguments, if ``condition`` is true. + +'${image}' in ${lkr_loc_img} +Change Image Folder +${imgpath}\\${LKR_UC} + + + + +Tries to locate given image from the screen for given time. + +${image} +timeout=${timeout} + + +${loc} + +Image "bviewer_opened" found at (652, 94) +${loc} = (652, 94) + + + +Runs the given keyword with the given arguments, if ``condition`` is true. + +'${image}' in ${lkr_loc_img} +Change Image Folder +${imgpath} + + + + + + +Pauses the test executed for the given time. + +0.5 + +Slept 500 milliseconds + + + + +bviewer_opened +timeout=10 + + + +${image} +${timeout} + + +${loc} + + +Runs the given keyword with the given arguments, if ``condition`` is true. + +'${image}' in ${lkr_loc_img} +Change Image Folder +${imgpath}\\${LKR_UC} + + + + +Tries to locate given image from the screen for given time. + +${image} +timeout=${timeout} + + +${loc} + +Image "bviewer_opened" found at (652, 94) +${loc} = (652, 94) + + + +Runs the given keyword with the given arguments, if ``condition`` is true. + +'${image}' in ${lkr_loc_img} +Change Image Folder +${imgpath} + + + +${loc} = (652, 94) + + + + +${loc} + + +Moves the mouse pointer to an absolute coordinates. + +${loc} + + + + +Clicks with the specified mouse button. + + + + + + + +Pauses the test executed for the given time. + +0.5 + +Slept 500 milliseconds + + + +Press given keyboard keys. + +Key.Win +Key.Up + + + + +Returns the given values which can then be assigned to a variables. + +ARCHIVETOOL_DOKU_${LKR_UC}_${anz_seiten} + + +${search_image} + +${search_image} = ARCHIVETOOL_DOKU_UR_300 + + + + +bviewer_opened +timeout=10 + + + +${image} +${timeout} + + +${loc} + + +Runs the given keyword with the given arguments, if ``condition`` is true. + +'${image}' in ${lkr_loc_img} +Change Image Folder +${imgpath}\\${LKR_UC} + + + + +Tries to locate given image from the screen for given time. + +${image} +timeout=${timeout} + + +${loc} + +Image "bviewer_opened" found at (11, 85) +${loc} = (11, 85) + + + +Runs the given keyword with the given arguments, if ``condition`` is true. + +'${image}' in ${lkr_loc_img} +Change Image Folder +${imgpath} + + + +${loc} = (11, 85) + + + + +${loc} + + +Moves the mouse pointer to an absolute coordinates. + +${loc} + + + + +Clicks with the specified mouse button. + + + + + + + +Tries to locate given image from the screen for given time. + +${search_image} +timeout=90 + +Image "ARCHIVETOOL_DOKU_UR_300" found at (315, 265) + + + +Press given keyboard keys. + +Key.Alt +Key.F4 + + + + + + + +aae_suche_clear +timeout=5 + + + +${image} +${timeout} + + +${loc} + + +Runs the given keyword with the given arguments, if ``condition`` is true. + +'${image}' in ${lkr_loc_img} +Change Image Folder +${imgpath}\\${LKR_UC} + + + + +Tries to locate given image from the screen for given time. + +${image} +timeout=${timeout} + + +${loc} + +Image "aae_suche_clear" found at (404, 709) +${loc} = (404, 709) + + + +Runs the given keyword with the given arguments, if ``condition`` is true. + +'${image}' in ${lkr_loc_img} +Change Image Folder +${imgpath} + + + +${loc} = (404, 709) + + + + +${loc} + + +Moves the mouse pointer to an absolute coordinates. + +${loc} + + + + +Clicks with the specified mouse button. + + + + + + + + +aae_dokumentennr_bereit +timeout=5 + + +Runs the given keyword with the given arguments, if ``condition`` is true. + +'${image}' in ${lkr_loc_img} +Change Image Folder +${imgpath}\\${LKR_UC} + + + + +Tries to locate given image from the screen for given time. + +${image} +timeout=${timeout} + + +${loc} + +Image "aae_dokumentennr_bereit" found at (569, 464) +${loc} = (569, 464) + + + +Runs the given keyword with the given arguments, if ``condition`` is true. + +'${image}' in ${lkr_loc_img} +Change Image Folder +${imgpath} + + + + + + +Evaluates the given expression in Python and returns the result. + +${i} + 1 + + +${i} + +${i} = 3 + + + + + + + + + + +Runs the given keyword with the given arguments, if ``condition`` is true. + +${APPOPEN}==${True} +Terminate Application +alias=archivetool + + +Terminates the process launched with `Launch Application` with +given ``alias``. + +alias=archivetool + + + + + + +Runs the given keyword with the given arguments, if ``condition`` is true. + +${APPOPEN}==${True} +Quit All Viewer Processes + + + +Runs a process and waits for it to complete. + +cmd.exe /c taskkill /IM ArchiveViewAdvancedA.exe +shell=True + +Starting process: +cmd.exe /c taskkill /IM ArchiveViewAdvancedA.exe +Waiting for process to complete. +Process completed. + + + +Runs a process and waits for it to complete. + +cmd.exe /c taskkill /IM ArchiveViewAdvancedB.exe +shell=True + +Starting process: +cmd.exe /c taskkill /IM ArchiveViewAdvancedB.exe +Waiting for process to complete. +Process completed. + + + +Runs a process and waits for it to complete. + +cmd.exe /c taskkill /IM ArchiveViewAdvancedC.exe +shell=True + +Starting process: +cmd.exe /c taskkill /IM ArchiveViewAdvancedC.exe +Waiting for process to complete. +Process completed. + + + +Runs a process and waits for it to complete. + +cmd.exe /c taskkill /IM +ArchivToolExtAdvanced.exe +shell=True + +Starting process: +"cmd.exe /c taskkill /IM" ArchivToolExtAdvanced.exe +Waiting for process to complete. +Process completed. + + + +Runs a process and waits for it to complete. + +cmd.exe /c taskkill /IM +archtool.exe +shell=True + +Starting process: +"cmd.exe /c taskkill /IM" archtool.exe +Waiting for process to complete. +Process completed. + + + + + + + +Makes a variable available everywhere within the scope of the current suite. + +${APPOPEN} +${False} + +${APPOPEN} = False + + + + + + + + + +ZH + + +Sets where all reference images are stored. + +${imgpath} + + + + + +${lkr_uc} + + +Makes a variable available everywhere within the scope of the current test. + +${LKR_UC} +${lkr_uc} + +${LKR_UC} = ZH + + + +Converts string to lower case. + +${lkr_uc} + + +${lkr_lc} + +${lkr_lc} = zh + + + +Makes a variable available everywhere within the scope of the current test. + +${LKR_LC} +${lkr_lc} + +${LKR_LC} = zh + + + +Makes a variable available everywhere within the scope of the current test. + +${lkr_docs} +${TESTDATA['${LKR_UC}']['docs']} + +${lkr_docs} = ['106614160', '106614249', '106614594'] + + + +Makes a variable available everywhere within the scope of the current test. + +${lkr_cred} +${TESTDATA['${LKR_UC}']['credentials']} + +${lkr_cred} = ['ZH9995', 'crypt:246ElyxZk+Mi9rNaiUCLhcCofWF+ibiRu06AjHfSLQCxWW+oQnqUVFPF04GMnwKegeRVeh/gsGU='] + + + +Makes a variable available everywhere within the scope of the current test. + +${lkr_loc_img} +${TESTDATA['${LKR_UC}']['loc_img']} + +${lkr_loc_img} = [] + + + +Makes a variable available everywhere within the scope of the current test. + +${user} +${lkr_cred}[0] + +${user} = ZH9995 + + + +Decrypts cipher text and returns the plain text. + +${lkr_cred}[1] + + +${password} + +Decrypting text and return value. +${password} = *** + + + +Makes a variable available everywhere within the scope of the current test. + +${password} +${password} + +${password} = *** + + + + + + +Runs a process and waits for it to complete. + +cmd.exe /c taskkill /IM ArchiveViewAdvancedA.exe +shell=True + +Starting process: +cmd.exe /c taskkill /IM ArchiveViewAdvancedA.exe +Waiting for process to complete. +Process completed. + + + +Runs a process and waits for it to complete. + +cmd.exe /c taskkill /IM ArchiveViewAdvancedB.exe +shell=True + +Starting process: +cmd.exe /c taskkill /IM ArchiveViewAdvancedB.exe +Waiting for process to complete. +Process completed. + + + +Runs a process and waits for it to complete. + +cmd.exe /c taskkill /IM ArchiveViewAdvancedC.exe +shell=True + +Starting process: +cmd.exe /c taskkill /IM ArchiveViewAdvancedC.exe +Waiting for process to complete. +Process completed. + + + +Runs a process and waits for it to complete. + +cmd.exe /c taskkill /IM +ArchivToolExtAdvanced.exe +shell=True + +Starting process: +"cmd.exe /c taskkill /IM" ArchivToolExtAdvanced.exe +Waiting for process to complete. +Process completed. + + + +Runs a process and waits for it to complete. + +cmd.exe /c taskkill /IM +archtool.exe +shell=True + +Starting process: +"cmd.exe /c taskkill /IM" archtool.exe +Waiting for process to complete. +Process completed. + + + + + + +Runs a process and waits for it to complete. + +C:\\ProgramData\\checkmk\\agent\\robot\\archivetool\\ArchivetoolConfig\\sva_${LKR_LC} konfiguration.bat + +Starting process: +"C:\ProgramData\checkmk\agent\robot\archivetool\ArchivetoolConfig\sva_zh konfiguration.bat" +Waiting for process to complete. +Process completed. + + + +Launches an application. + +"${APP}" +alias=archivetool + + + + +Makes a variable available everywhere within the scope of the current suite. + +${APPOPEN} +${True} + +${APPOPEN} = True + + + + + + + +login_username +timeout=10 + + +${loc} + + +Runs the given keyword with the given arguments, if ``condition`` is true. + +'${image}' in ${lkr_loc_img} +Change Image Folder +${imgpath}\\${LKR_UC} + + + + +Tries to locate given image from the screen for given time. + +${image} +timeout=${timeout} + + +${loc} + +Image "login_username" found at (227, 149) +${loc} = (227, 149) + + + +Runs the given keyword with the given arguments, if ``condition`` is true. + +'${image}' in ${lkr_loc_img} +Change Image Folder +${imgpath} + + + +${loc} = (227, 149) + + + +Finds the reference image on screen and clicks it once. + +login_username + +Image "C:\ProgramData\checkmk\agent\robot\archivetool\images\login_username.png" found at Box(left=182, top=134, width=90, height=30) +Clicking image "login_username" in position (227, 149) + + + +Pauses the test executed for the given time. + +0.2 + +Slept 200 milliseconds + + + + +login_username +10 +20 +${user} + + + +${image} +${timeout} + + +${loc} + + +Runs the given keyword with the given arguments, if ``condition`` is true. + +'${image}' in ${lkr_loc_img} +Change Image Folder +${imgpath}\\${LKR_UC} + + + + +Tries to locate given image from the screen for given time. + +${image} +timeout=${timeout} + + +${loc} + +Image "login_username" found at (227, 149) +${loc} = (227, 149) + + + +Runs the given keyword with the given arguments, if ``condition`` is true. + +'${image}' in ${lkr_loc_img} +Change Image Folder +${imgpath} + + + +${loc} = (227, 149) + + + +Clicks right of given location by given offset. + +${loc} +${offset} + +Clicking 1 time(s) at (247, 149) with left mouse button at interval 0.000000 + + + +Type text and keyboard keys. + +@{text} + + + + + + +Pauses the test executed for the given time. + +0.2 + +Slept 200 milliseconds + + + +Type text and keyboard keys. + +Key.tab + + + + +Pauses the test executed for the given time. + +0.2 + +Slept 200 milliseconds + + + +Type text and keyboard keys. + +${password} +Key.enter +Key.enter + + + + + +archiv_vista_warn +timeout=5 + + + +${image} +${timeout} + + +${loc} + + +Runs the given keyword with the given arguments, if ``condition`` is true. + +'${image}' in ${lkr_loc_img} +Change Image Folder +${imgpath}\\${LKR_UC} + + + + +Tries to locate given image from the screen for given time. + +${image} +timeout=${timeout} + + +${loc} + +Image "archiv_vista_warn" found at (845, 559) +${loc} = (845, 559) + + + +Runs the given keyword with the given arguments, if ``condition`` is true. + +'${image}' in ${lkr_loc_img} +Change Image Folder +${imgpath} + + + +${loc} = (845, 559) + + + + +${loc} + + +Moves the mouse pointer to an absolute coordinates. + +${loc} + + + + +Clicks with the specified mouse button. + + + + + + + +Type text and keyboard keys. + +Key.enter + + + + +Tries to locate given image from the screen for given time. + +aae_toolbar +timeout=10 + +Image "aae_toolbar" found at (506, 709) + + + + + + +Returns ``True`` if reference image was found on screen or +``False`` otherwise. Never fails. + +aae_vorbelegung_checked + + +${vorbelegt_checked} + +${vorbelegt_checked} = False + + + +Runs the given keyword with the given arguments, if ``condition`` is true. + +${vorbelegt_checked}==${True} +Click Image +aae_vorbelegung_checked + + + + + + +Returns the given values which can then be assigned to a variables. + +0 + + +${i} + +${i} = 0 + + + + + + +${lkr_docs}[${i}] +${anz_seiten} + + +Makes a variable available everywhere within the scope of the current test. + +${dokid} +${lkr_doc} + +${dokid} = 106614160 + + + + +aae_dokumentennr +5 +100 +${lkr_doc} + + + +${image} +${timeout} + + +${loc} + + +Runs the given keyword with the given arguments, if ``condition`` is true. + +'${image}' in ${lkr_loc_img} +Change Image Folder +${imgpath}\\${LKR_UC} + + + + +Tries to locate given image from the screen for given time. + +${image} +timeout=${timeout} + + +${loc} + +Image "aae_dokumentennr" found at (452, 463) +${loc} = (452, 463) + + + +Runs the given keyword with the given arguments, if ``condition`` is true. + +'${image}' in ${lkr_loc_img} +Change Image Folder +${imgpath} + + + +${loc} = (452, 463) + + + +Clicks right of given location by given offset. + +${loc} +${offset} + +Clicking 1 time(s) at (552, 463) with left mouse button at interval 0.000000 + + + +Type text and keyboard keys. + +@{text} + + + + + + +Type text and keyboard keys. + +Key.enter + + + + + +aae_treffer_1 +timeout=10 + + + +${image} +${timeout} + + +${loc} + + +Runs the given keyword with the given arguments, if ``condition`` is true. + +'${image}' in ${lkr_loc_img} +Change Image Folder +${imgpath}\\${LKR_UC} + + + + +Tries to locate given image from the screen for given time. + +${image} +timeout=${timeout} + + +${loc} + +Image "aae_treffer_1" found at (870, 745) +${loc} = (870, 745) + + + +Runs the given keyword with the given arguments, if ``condition`` is true. + +'${image}' in ${lkr_loc_img} +Change Image Folder +${imgpath} + + + +${loc} = (870, 745) + + + + +${loc} + + +Moves the mouse pointer to an absolute coordinates. + +${loc} + + + + +Clicks with the specified mouse button. + + + + + + + +Type text and keyboard keys. + +Key.Tab +Key.Tab +Key.Tab +Key.Tab +Key.right + + + + + +aae_zeile_markiert +timeout=10 + + + +${image} +${timeout} + + +${loc} + + +Runs the given keyword with the given arguments, if ``condition`` is true. + +'${image}' in ${lkr_loc_img} +Change Image Folder +${imgpath}\\${LKR_UC} + + + + +Tries to locate given image from the screen for given time. + +${image} +timeout=${timeout} + + +${loc} + +Image "aae_zeile_markiert" found at (423, 786) +${loc} = (423, 786) + + + +Runs the given keyword with the given arguments, if ``condition`` is true. + +'${image}' in ${lkr_loc_img} +Change Image Folder +${imgpath} + + + +${loc} = (423, 786) + + + + +${loc} + + +Moves the mouse pointer to an absolute coordinates. + +${loc} + + + + +Clicks with the specified mouse button. + + + + + + + + +aae_viewer_b +timeout=10 + + + +${image} +${timeout} + + +${loc} + + +Runs the given keyword with the given arguments, if ``condition`` is true. + +'${image}' in ${lkr_loc_img} +Change Image Folder +${imgpath}\\${LKR_UC} + + + + +Tries to locate given image from the screen for given time. + +${image} +timeout=${timeout} + + +${loc} + +Image "aae_viewer_b" found at (641, 709) +${loc} = (641, 709) + + + +Runs the given keyword with the given arguments, if ``condition`` is true. + +'${image}' in ${lkr_loc_img} +Change Image Folder +${imgpath} + + + +${loc} = (641, 709) + + + + +${loc} + + +Moves the mouse pointer to an absolute coordinates. + +${loc} + + + + +Clicks with the specified mouse button. + + + + + + + + +bviewer_opened +10 + + +Runs the given keyword with the given arguments, if ``condition`` is true. + +'${image}' in ${lkr_loc_img} +Change Image Folder +${imgpath}\\${LKR_UC} + + + + +Tries to locate given image from the screen for given time. + +${image} +timeout=${timeout} + + +${loc} + +Image "bviewer_opened" found at (652, 94) +${loc} = (652, 94) + + + +Runs the given keyword with the given arguments, if ``condition`` is true. + +'${image}' in ${lkr_loc_img} +Change Image Folder +${imgpath} + + + + + + +Pauses the test executed for the given time. + +0.5 + +Slept 500 milliseconds + + + + +bviewer_opened +timeout=10 + + + +${image} +${timeout} + + +${loc} + + +Runs the given keyword with the given arguments, if ``condition`` is true. + +'${image}' in ${lkr_loc_img} +Change Image Folder +${imgpath}\\${LKR_UC} + + + + +Tries to locate given image from the screen for given time. + +${image} +timeout=${timeout} + + +${loc} + +Image "bviewer_opened" found at (652, 94) +${loc} = (652, 94) + + + +Runs the given keyword with the given arguments, if ``condition`` is true. + +'${image}' in ${lkr_loc_img} +Change Image Folder +${imgpath} + + + +${loc} = (652, 94) + + + + +${loc} + + +Moves the mouse pointer to an absolute coordinates. + +${loc} + + + + +Clicks with the specified mouse button. + + + + + + + +Pauses the test executed for the given time. + +0.5 + +Slept 500 milliseconds + + + +Press given keyboard keys. + +Key.Win +Key.Up + + + + +Returns the given values which can then be assigned to a variables. + +ARCHIVETOOL_DOKU_${LKR_UC}_${anz_seiten} + + +${search_image} + +${search_image} = ARCHIVETOOL_DOKU_ZH_30 + + + + +bviewer_opened +timeout=10 + + + +${image} +${timeout} + + +${loc} + + +Runs the given keyword with the given arguments, if ``condition`` is true. + +'${image}' in ${lkr_loc_img} +Change Image Folder +${imgpath}\\${LKR_UC} + + + + +Tries to locate given image from the screen for given time. + +${image} +timeout=${timeout} + + +${loc} + +Image "bviewer_opened" found at (11, 85) +${loc} = (11, 85) + + + +Runs the given keyword with the given arguments, if ``condition`` is true. + +'${image}' in ${lkr_loc_img} +Change Image Folder +${imgpath} + + + +${loc} = (11, 85) + + + + +${loc} + + +Moves the mouse pointer to an absolute coordinates. + +${loc} + + + + +Clicks with the specified mouse button. + + + + + + + +Tries to locate given image from the screen for given time. + +${search_image} +timeout=90 + +Image "ARCHIVETOOL_DOKU_ZH_30" found at (254, 605) + + + +Press given keyboard keys. + +Key.Alt +Key.F4 + + + + + + + +aae_suche_clear +timeout=5 + + + +${image} +${timeout} + + +${loc} + + +Runs the given keyword with the given arguments, if ``condition`` is true. + +'${image}' in ${lkr_loc_img} +Change Image Folder +${imgpath}\\${LKR_UC} + + + + +Tries to locate given image from the screen for given time. + +${image} +timeout=${timeout} + + +${loc} + +Image "aae_suche_clear" found at (404, 709) +${loc} = (404, 709) + + + +Runs the given keyword with the given arguments, if ``condition`` is true. + +'${image}' in ${lkr_loc_img} +Change Image Folder +${imgpath} + + + +${loc} = (404, 709) + + + + +${loc} + + +Moves the mouse pointer to an absolute coordinates. + +${loc} + + + + +Clicks with the specified mouse button. + + + + + + + + +aae_dokumentennr_bereit +timeout=5 + + +Runs the given keyword with the given arguments, if ``condition`` is true. + +'${image}' in ${lkr_loc_img} +Change Image Folder +${imgpath}\\${LKR_UC} + + + + +Tries to locate given image from the screen for given time. + +${image} +timeout=${timeout} + + +${loc} + +Image "aae_dokumentennr_bereit" found at (569, 464) +${loc} = (569, 464) + + + +Runs the given keyword with the given arguments, if ``condition`` is true. + +'${image}' in ${lkr_loc_img} +Change Image Folder +${imgpath} + + + + + + +Evaluates the given expression in Python and returns the result. + +${i} + 1 + + +${i} + +${i} = 1 + + + + + + + +${lkr_docs}[${i}] +${anz_seiten} + + +Makes a variable available everywhere within the scope of the current test. + +${dokid} +${lkr_doc} + +${dokid} = 106614249 + + + + +aae_dokumentennr +5 +100 +${lkr_doc} + + + +${image} +${timeout} + + +${loc} + + +Runs the given keyword with the given arguments, if ``condition`` is true. + +'${image}' in ${lkr_loc_img} +Change Image Folder +${imgpath}\\${LKR_UC} + + + + +Tries to locate given image from the screen for given time. + +${image} +timeout=${timeout} + + +${loc} + +Image "aae_dokumentennr" found at (452, 463) +${loc} = (452, 463) + + + +Runs the given keyword with the given arguments, if ``condition`` is true. + +'${image}' in ${lkr_loc_img} +Change Image Folder +${imgpath} + + + +${loc} = (452, 463) + + + +Clicks right of given location by given offset. + +${loc} +${offset} + +Clicking 1 time(s) at (552, 463) with left mouse button at interval 0.000000 + + + +Type text and keyboard keys. + +@{text} + + + + + + +Type text and keyboard keys. + +Key.enter + + + + + +aae_treffer_1 +timeout=10 + + + +${image} +${timeout} + + +${loc} + + +Runs the given keyword with the given arguments, if ``condition`` is true. + +'${image}' in ${lkr_loc_img} +Change Image Folder +${imgpath}\\${LKR_UC} + + + + +Tries to locate given image from the screen for given time. + +${image} +timeout=${timeout} + + +${loc} + +Image "aae_treffer_1" found at (870, 745) +${loc} = (870, 745) + + + +Runs the given keyword with the given arguments, if ``condition`` is true. + +'${image}' in ${lkr_loc_img} +Change Image Folder +${imgpath} + + + +${loc} = (870, 745) + + + + +${loc} + + +Moves the mouse pointer to an absolute coordinates. + +${loc} + + + + +Clicks with the specified mouse button. + + + + + + + +Type text and keyboard keys. + +Key.Tab +Key.Tab +Key.Tab +Key.Tab +Key.right + + + + + +aae_zeile_markiert +timeout=10 + + + +${image} +${timeout} + + +${loc} + + +Runs the given keyword with the given arguments, if ``condition`` is true. + +'${image}' in ${lkr_loc_img} +Change Image Folder +${imgpath}\\${LKR_UC} + + + + +Tries to locate given image from the screen for given time. + +${image} +timeout=${timeout} + + +${loc} + +Image "aae_zeile_markiert" found at (423, 786) +${loc} = (423, 786) + + + +Runs the given keyword with the given arguments, if ``condition`` is true. + +'${image}' in ${lkr_loc_img} +Change Image Folder +${imgpath} + + + +${loc} = (423, 786) + + + + +${loc} + + +Moves the mouse pointer to an absolute coordinates. + +${loc} + + + + +Clicks with the specified mouse button. + + + + + + + + +aae_viewer_b +timeout=10 + + + +${image} +${timeout} + + +${loc} + + +Runs the given keyword with the given arguments, if ``condition`` is true. + +'${image}' in ${lkr_loc_img} +Change Image Folder +${imgpath}\\${LKR_UC} + + + + +Tries to locate given image from the screen for given time. + +${image} +timeout=${timeout} + + +${loc} + +Image "aae_viewer_b" found at (641, 709) +${loc} = (641, 709) + + + +Runs the given keyword with the given arguments, if ``condition`` is true. + +'${image}' in ${lkr_loc_img} +Change Image Folder +${imgpath} + + + +${loc} = (641, 709) + + + + +${loc} + + +Moves the mouse pointer to an absolute coordinates. + +${loc} + + + + +Clicks with the specified mouse button. + + + + + + + + +bviewer_opened +10 + + +Runs the given keyword with the given arguments, if ``condition`` is true. + +'${image}' in ${lkr_loc_img} +Change Image Folder +${imgpath}\\${LKR_UC} + + + + +Tries to locate given image from the screen for given time. + +${image} +timeout=${timeout} + + +${loc} + +Image "bviewer_opened" found at (652, 94) +${loc} = (652, 94) + + + +Runs the given keyword with the given arguments, if ``condition`` is true. + +'${image}' in ${lkr_loc_img} +Change Image Folder +${imgpath} + + + + + + +Pauses the test executed for the given time. + +0.5 + +Slept 500 milliseconds + + + + +bviewer_opened +timeout=10 + + + +${image} +${timeout} + + +${loc} + + +Runs the given keyword with the given arguments, if ``condition`` is true. + +'${image}' in ${lkr_loc_img} +Change Image Folder +${imgpath}\\${LKR_UC} + + + + +Tries to locate given image from the screen for given time. + +${image} +timeout=${timeout} + + +${loc} + +Image "bviewer_opened" found at (652, 94) +${loc} = (652, 94) + + + +Runs the given keyword with the given arguments, if ``condition`` is true. + +'${image}' in ${lkr_loc_img} +Change Image Folder +${imgpath} + + + +${loc} = (652, 94) + + + + +${loc} + + +Moves the mouse pointer to an absolute coordinates. + +${loc} + + + + +Clicks with the specified mouse button. + + + + + + + +Pauses the test executed for the given time. + +0.5 + +Slept 500 milliseconds + + + +Press given keyboard keys. + +Key.Win +Key.Up + + + + +Returns the given values which can then be assigned to a variables. + +ARCHIVETOOL_DOKU_${LKR_UC}_${anz_seiten} + + +${search_image} + +${search_image} = ARCHIVETOOL_DOKU_ZH_100 + + + + +bviewer_opened +timeout=10 + + + +${image} +${timeout} + + +${loc} + + +Runs the given keyword with the given arguments, if ``condition`` is true. + +'${image}' in ${lkr_loc_img} +Change Image Folder +${imgpath}\\${LKR_UC} + + + + +Tries to locate given image from the screen for given time. + +${image} +timeout=${timeout} + + +${loc} + +Image "bviewer_opened" found at (11, 85) +${loc} = (11, 85) + + + +Runs the given keyword with the given arguments, if ``condition`` is true. + +'${image}' in ${lkr_loc_img} +Change Image Folder +${imgpath} + + + +${loc} = (11, 85) + + + + +${loc} + + +Moves the mouse pointer to an absolute coordinates. + +${loc} + + + + +Clicks with the specified mouse button. + + + + + + + +Tries to locate given image from the screen for given time. + +${search_image} +timeout=90 + +Image "ARCHIVETOOL_DOKU_ZH_100" found at (250, 593) + + + +Press given keyboard keys. + +Key.Alt +Key.F4 + + + + + + + +aae_suche_clear +timeout=5 + + + +${image} +${timeout} + + +${loc} + + +Runs the given keyword with the given arguments, if ``condition`` is true. + +'${image}' in ${lkr_loc_img} +Change Image Folder +${imgpath}\\${LKR_UC} + + + + +Tries to locate given image from the screen for given time. + +${image} +timeout=${timeout} + + +${loc} + +Image "aae_suche_clear" found at (404, 709) +${loc} = (404, 709) + + + +Runs the given keyword with the given arguments, if ``condition`` is true. + +'${image}' in ${lkr_loc_img} +Change Image Folder +${imgpath} + + + +${loc} = (404, 709) + + + + +${loc} + + +Moves the mouse pointer to an absolute coordinates. + +${loc} + + + + +Clicks with the specified mouse button. + + + + + + + + +aae_dokumentennr_bereit +timeout=5 + + +Runs the given keyword with the given arguments, if ``condition`` is true. + +'${image}' in ${lkr_loc_img} +Change Image Folder +${imgpath}\\${LKR_UC} + + + + +Tries to locate given image from the screen for given time. + +${image} +timeout=${timeout} + + +${loc} + +Image "aae_dokumentennr_bereit" found at (569, 464) +${loc} = (569, 464) + + + +Runs the given keyword with the given arguments, if ``condition`` is true. + +'${image}' in ${lkr_loc_img} +Change Image Folder +${imgpath} + + + + + + +Evaluates the given expression in Python and returns the result. + +${i} + 1 + + +${i} + +${i} = 2 + + + + + + + +${lkr_docs}[${i}] +${anz_seiten} + + +Makes a variable available everywhere within the scope of the current test. + +${dokid} +${lkr_doc} + +${dokid} = 106614594 + + + + +aae_dokumentennr +5 +100 +${lkr_doc} + + + +${image} +${timeout} + + +${loc} + + +Runs the given keyword with the given arguments, if ``condition`` is true. + +'${image}' in ${lkr_loc_img} +Change Image Folder +${imgpath}\\${LKR_UC} + + + + +Tries to locate given image from the screen for given time. + +${image} +timeout=${timeout} + + +${loc} + +Image "aae_dokumentennr" found at (452, 463) +${loc} = (452, 463) + + + +Runs the given keyword with the given arguments, if ``condition`` is true. + +'${image}' in ${lkr_loc_img} +Change Image Folder +${imgpath} + + + +${loc} = (452, 463) + + + +Clicks right of given location by given offset. + +${loc} +${offset} + +Clicking 1 time(s) at (552, 463) with left mouse button at interval 0.000000 + + + +Type text and keyboard keys. + +@{text} + + + + + + +Type text and keyboard keys. + +Key.enter + + + + + +aae_treffer_1 +timeout=10 + + + +${image} +${timeout} + + +${loc} + + +Runs the given keyword with the given arguments, if ``condition`` is true. + +'${image}' in ${lkr_loc_img} +Change Image Folder +${imgpath}\\${LKR_UC} + + + + +Tries to locate given image from the screen for given time. + +${image} +timeout=${timeout} + + +${loc} + +Image "aae_treffer_1" found at (870, 745) +${loc} = (870, 745) + + + +Runs the given keyword with the given arguments, if ``condition`` is true. + +'${image}' in ${lkr_loc_img} +Change Image Folder +${imgpath} + + + +${loc} = (870, 745) + + + + +${loc} + + +Moves the mouse pointer to an absolute coordinates. + +${loc} + + + + +Clicks with the specified mouse button. + + + + + + + +Type text and keyboard keys. + +Key.Tab +Key.Tab +Key.Tab +Key.Tab +Key.right + + + + + +aae_zeile_markiert +timeout=10 + + + +${image} +${timeout} + + +${loc} + + +Runs the given keyword with the given arguments, if ``condition`` is true. + +'${image}' in ${lkr_loc_img} +Change Image Folder +${imgpath}\\${LKR_UC} + + + + +Tries to locate given image from the screen for given time. + +${image} +timeout=${timeout} + + +${loc} + +Image "aae_zeile_markiert" found at (423, 786) +${loc} = (423, 786) + + + +Runs the given keyword with the given arguments, if ``condition`` is true. + +'${image}' in ${lkr_loc_img} +Change Image Folder +${imgpath} + + + +${loc} = (423, 786) + + + + +${loc} + + +Moves the mouse pointer to an absolute coordinates. + +${loc} + + + + +Clicks with the specified mouse button. + + + + + + + + +aae_viewer_b +timeout=10 + + + +${image} +${timeout} + + +${loc} + + +Runs the given keyword with the given arguments, if ``condition`` is true. + +'${image}' in ${lkr_loc_img} +Change Image Folder +${imgpath}\\${LKR_UC} + + + + +Tries to locate given image from the screen for given time. + +${image} +timeout=${timeout} + + +${loc} + +Image "aae_viewer_b" found at (641, 709) +${loc} = (641, 709) + + + +Runs the given keyword with the given arguments, if ``condition`` is true. + +'${image}' in ${lkr_loc_img} +Change Image Folder +${imgpath} + + + +${loc} = (641, 709) + + + + +${loc} + + +Moves the mouse pointer to an absolute coordinates. + +${loc} + + + + +Clicks with the specified mouse button. + + + + + + + + +bviewer_opened +10 + + +Runs the given keyword with the given arguments, if ``condition`` is true. + +'${image}' in ${lkr_loc_img} +Change Image Folder +${imgpath}\\${LKR_UC} + + + + +Tries to locate given image from the screen for given time. + +${image} +timeout=${timeout} + + +${loc} + +Image "bviewer_opened" found at (652, 94) +${loc} = (652, 94) + + + +Runs the given keyword with the given arguments, if ``condition`` is true. + +'${image}' in ${lkr_loc_img} +Change Image Folder +${imgpath} + + + + + + +Pauses the test executed for the given time. + +0.5 + +Slept 500 milliseconds + + + + +bviewer_opened +timeout=10 + + + +${image} +${timeout} + + +${loc} + + +Runs the given keyword with the given arguments, if ``condition`` is true. + +'${image}' in ${lkr_loc_img} +Change Image Folder +${imgpath}\\${LKR_UC} + + + + +Tries to locate given image from the screen for given time. + +${image} +timeout=${timeout} + + +${loc} + +Image "bviewer_opened" found at (652, 94) +${loc} = (652, 94) + + + +Runs the given keyword with the given arguments, if ``condition`` is true. + +'${image}' in ${lkr_loc_img} +Change Image Folder +${imgpath} + + + +${loc} = (652, 94) + + + + +${loc} + + +Moves the mouse pointer to an absolute coordinates. + +${loc} + + + + +Clicks with the specified mouse button. + + + + + + + +Pauses the test executed for the given time. + +0.5 + +Slept 500 milliseconds + + + +Press given keyboard keys. + +Key.Win +Key.Up + + + + +Returns the given values which can then be assigned to a variables. + +ARCHIVETOOL_DOKU_${LKR_UC}_${anz_seiten} + + +${search_image} + +${search_image} = ARCHIVETOOL_DOKU_ZH_300 + + + + +bviewer_opened +timeout=10 + + + +${image} +${timeout} + + +${loc} + + +Runs the given keyword with the given arguments, if ``condition`` is true. + +'${image}' in ${lkr_loc_img} +Change Image Folder +${imgpath}\\${LKR_UC} + + + + +Tries to locate given image from the screen for given time. + +${image} +timeout=${timeout} + + +${loc} + +Image "bviewer_opened" found at (11, 85) +${loc} = (11, 85) + + + +Runs the given keyword with the given arguments, if ``condition`` is true. + +'${image}' in ${lkr_loc_img} +Change Image Folder +${imgpath} + + + +${loc} = (11, 85) + + + + +${loc} + + +Moves the mouse pointer to an absolute coordinates. + +${loc} + + + + +Clicks with the specified mouse button. + + + + + + + +Tries to locate given image from the screen for given time. + +${search_image} +timeout=90 + +Image "ARCHIVETOOL_DOKU_ZH_300" found at (257, 599) + + + +Press given keyboard keys. + +Key.Alt +Key.F4 + + + + + + + +aae_suche_clear +timeout=5 + + + +${image} +${timeout} + + +${loc} + + +Runs the given keyword with the given arguments, if ``condition`` is true. + +'${image}' in ${lkr_loc_img} +Change Image Folder +${imgpath}\\${LKR_UC} + + + + +Tries to locate given image from the screen for given time. + +${image} +timeout=${timeout} + + +${loc} + +Image "aae_suche_clear" found at (404, 709) +${loc} = (404, 709) + + + +Runs the given keyword with the given arguments, if ``condition`` is true. + +'${image}' in ${lkr_loc_img} +Change Image Folder +${imgpath} + + + +${loc} = (404, 709) + + + + +${loc} + + +Moves the mouse pointer to an absolute coordinates. + +${loc} + + + + +Clicks with the specified mouse button. + + + + + + + + +aae_dokumentennr_bereit +timeout=5 + + +Runs the given keyword with the given arguments, if ``condition`` is true. + +'${image}' in ${lkr_loc_img} +Change Image Folder +${imgpath}\\${LKR_UC} + + + + +Tries to locate given image from the screen for given time. + +${image} +timeout=${timeout} + + +${loc} + +Image "aae_dokumentennr_bereit" found at (569, 464) +${loc} = (569, 464) + + + +Runs the given keyword with the given arguments, if ``condition`` is true. + +'${image}' in ${lkr_loc_img} +Change Image Folder +${imgpath} + + + + + + +Evaluates the given expression in Python and returns the result. + +${i} + 1 + + +${i} + +${i} = 3 + + + + + + + + + + +Runs the given keyword with the given arguments, if ``condition`` is true. + +${APPOPEN}==${True} +Terminate Application +alias=archivetool + + +Terminates the process launched with `Launch Application` with +given ``alias``. + +alias=archivetool + + + + + + +Runs the given keyword with the given arguments, if ``condition`` is true. + +${APPOPEN}==${True} +Quit All Viewer Processes + + + +Runs a process and waits for it to complete. + +cmd.exe /c taskkill /IM ArchiveViewAdvancedA.exe +shell=True + +Starting process: +cmd.exe /c taskkill /IM ArchiveViewAdvancedA.exe +Waiting for process to complete. +Process completed. + + + +Runs a process and waits for it to complete. + +cmd.exe /c taskkill /IM ArchiveViewAdvancedB.exe +shell=True + +Starting process: +cmd.exe /c taskkill /IM ArchiveViewAdvancedB.exe +Waiting for process to complete. +Process completed. + + + +Runs a process and waits for it to complete. + +cmd.exe /c taskkill /IM ArchiveViewAdvancedC.exe +shell=True + +Starting process: +cmd.exe /c taskkill /IM ArchiveViewAdvancedC.exe +Waiting for process to complete. +Process completed. + + + +Runs a process and waits for it to complete. + +cmd.exe /c taskkill /IM +ArchivToolExtAdvanced.exe +shell=True + +Starting process: +"cmd.exe /c taskkill /IM" ArchivToolExtAdvanced.exe +Waiting for process to complete. +Process completed. + + + +Runs a process and waits for it to complete. + +cmd.exe /c taskkill /IM +archtool.exe +shell=True + +Starting process: +"cmd.exe /c taskkill /IM" archtool.exe +Waiting for process to complete. +Process completed. + + + + + + + +Makes a variable available everywhere within the scope of the current suite. + +${APPOPEN} +${False} + +${APPOPEN} = False + + + + + + + + + + + + +Critical Tests +All Tests + + + + +Archivetool +Archivetool.Archivetool + + + + + diff --git a/test/fixtures/robot/archivetool/expected.py b/test/fixtures/robot/archivetool/expected.py new file mode 100644 index 00000000..ef9f5e00 --- /dev/null +++ b/test/fixtures/robot/archivetool/expected.py @@ -0,0 +1,51 @@ +# List of dicts for DSL 0,1,2... +# inventory_suites: list of Suite names the inventory function should find +# check_suites: The name of the item to be checked by the check (see Argument #4 in +# dict 'check_test_params' in front of the check test function +# checkgroup_parameters file in test/fixtures/checkgroup_parameters (without .py extension), +# can containing anything which can be set in the check's WATO page +# svc_status: The expected Nagios state of the suite +# svc_output: A Regex which is expected to match the Output + +[ + # discovery_suite_level 0 + {}, + # discovery_suite_level 1 + {}, + # discovery_suite_level 2 + { + 'inventory_suites': ['DUMMY', 'ARCHIVETOOL Suche LKR AI', 'ARCHIVETOOL Suche LKR FR', 'ARCHIVETOOL Suche LKR OW', 'ARCHIVETOOL Suche LKR SG', 'ARCHIVETOOL Suche LKR SH', 'ARCHIVETOOL Suche LKR UR', 'ARCHIVETOOL Suche LKR ZH'], + 'check_suites' : { + '1S 3T': { + # checkgroup_parameters file + None: { + 'svc_status': 0, + 'svc_output': ".*'1S 3T': PASS", + }, + # Check that Keyword MySleepSleep gets not recursed + 'MySleepSleep_0': { + 'svc_status': 0, + 'svc_output': ".*\[T\] 'Test4 - 3 Nested Sleeps': PASS.*?\[K\] 'MySleepSleep': PASS \(\d+\.\d+s\)$" + }, + # Check that Keyword MySleepSleep gets recursed only 1 level deep + 'MySleepSleep_1': { + 'svc_status': 0, + 'svc_output': ".*\[T\] 'Test4 - 3 Nested Sleeps': PASS.*?\[K\] 'MySleepSleep': PASS \(\d+\.\d+s\).*?\[K\] 'MySleep': PASS \(\d+\.\d+s\)$" + }, + # Check Keyword perfdata for MySleep.* + 'MySleep_perfdata': { + 'svc_status': 0, + 'svc_output': ".*", + 'perfdata' : [ + ('s1-s1-t2-k1_MySleep', '\d+\.\d+'), + ('s1-s1-t3-k1_MySleepSleep', '\d+\.\d+'), + ('s1-s1-t3-k1-k1_MySleep', '\d+\.\d+'), + ('s1-s1-t4-k1_MySleepSleepSleep', '\d+\.\d+'), + ('s1-s1-t4-k1-k1_MySleepSleep', '\d+\.\d+'), + ('s1-s1-t4-k1-k1-k1_MySleep', '\d+\.\d+'), + ] + }, + } + }, + }, +] \ No newline at end of file diff --git a/test/fixtures/robot/archivetool/input_agent.cmk b/test/fixtures/robot/archivetool/input_agent.cmk new file mode 100644 index 00000000..321a1776 --- /dev/null +++ b/test/fixtures/robot/archivetool/input_agent.cmk @@ -0,0 +1,18137 @@ +<<>> + + + + + + + + +Evaluates the given expression in Python and returns the result. + +${TESTDATA['${LKR_UC}']['active']}==${True} + + +${active} + +${active} = True + + + +Runs the given keyword with the given arguments, if ``condition`` is true. + +${active} +Add test case +ARCHIVETOOL Suche LKR ${LKR_UC} +ARCHIVETOOL Suche +${LKR_UC} + + + +ARCHIVETOOL Suche LKR ${LKR_UC} +ARCHIVETOOL Suche +${LKR_UC} + + + + + + + + + +Evaluates the given expression in Python and returns the result. + +${TESTDATA['${LKR_UC}']['active']}==${True} + + +${active} + +${active} = False + + + +Runs the given keyword with the given arguments, if ``condition`` is true. + +${active} +Add test case +ARCHIVETOOL Suche LKR ${LKR_UC} +ARCHIVETOOL Suche +${LKR_UC} + + + + + + + +Evaluates the given expression in Python and returns the result. + +${TESTDATA['${LKR_UC}']['active']}==${True} + + +${active} + +${active} = True + + + +Runs the given keyword with the given arguments, if ``condition`` is true. + +${active} +Add test case +ARCHIVETOOL Suche LKR ${LKR_UC} +ARCHIVETOOL Suche +${LKR_UC} + + + +ARCHIVETOOL Suche LKR ${LKR_UC} +ARCHIVETOOL Suche +${LKR_UC} + + + + + + + + + +Evaluates the given expression in Python and returns the result. + +${TESTDATA['${LKR_UC}']['active']}==${True} + + +${active} + +${active} = False + + + +Runs the given keyword with the given arguments, if ``condition`` is true. + +${active} +Add test case +ARCHIVETOOL Suche LKR ${LKR_UC} +ARCHIVETOOL Suche +${LKR_UC} + + + + + + + +Evaluates the given expression in Python and returns the result. + +${TESTDATA['${LKR_UC}']['active']}==${True} + + +${active} + +${active} = False + + + +Runs the given keyword with the given arguments, if ``condition`` is true. + +${active} +Add test case +ARCHIVETOOL Suche LKR ${LKR_UC} +ARCHIVETOOL Suche +${LKR_UC} + + + + + + + +Evaluates the given expression in Python and returns the result. + +${TESTDATA['${LKR_UC}']['active']}==${True} + + +${active} + +${active} = True + + + +Runs the given keyword with the given arguments, if ``condition`` is true. + +${active} +Add test case +ARCHIVETOOL Suche LKR ${LKR_UC} +ARCHIVETOOL Suche +${LKR_UC} + + + +ARCHIVETOOL Suche LKR ${LKR_UC} +ARCHIVETOOL Suche +${LKR_UC} + + + + + + + + + +Evaluates the given expression in Python and returns the result. + +${TESTDATA['${LKR_UC}']['active']}==${True} + + +${active} + +${active} = True + + + +Runs the given keyword with the given arguments, if ``condition`` is true. + +${active} +Add test case +ARCHIVETOOL Suche LKR ${LKR_UC} +ARCHIVETOOL Suche +${LKR_UC} + + + +ARCHIVETOOL Suche LKR ${LKR_UC} +ARCHIVETOOL Suche +${LKR_UC} + + + + + + + + + +Evaluates the given expression in Python and returns the result. + +${TESTDATA['${LKR_UC}']['active']}==${True} + + +${active} + +${active} = True + + + +Runs the given keyword with the given arguments, if ``condition`` is true. + +${active} +Add test case +ARCHIVETOOL Suche LKR ${LKR_UC} +ARCHIVETOOL Suche +${LKR_UC} + + + +ARCHIVETOOL Suche LKR ${LKR_UC} +ARCHIVETOOL Suche +${LKR_UC} + + + + + + + + + +Evaluates the given expression in Python and returns the result. + +${TESTDATA['${LKR_UC}']['active']}==${True} + + +${active} + +${active} = False + + + +Runs the given keyword with the given arguments, if ``condition`` is true. + +${active} +Add test case +ARCHIVETOOL Suche LKR ${LKR_UC} +ARCHIVETOOL Suche +${LKR_UC} + + + + + + + +Evaluates the given expression in Python and returns the result. + +${TESTDATA['${LKR_UC}']['active']}==${True} + + +${active} + +${active} = False + + + +Runs the given keyword with the given arguments, if ``condition`` is true. + +${active} +Add test case +ARCHIVETOOL Suche LKR ${LKR_UC} +ARCHIVETOOL Suche +${LKR_UC} + + + + + + + +Evaluates the given expression in Python and returns the result. + +${TESTDATA['${LKR_UC}']['active']}==${True} + + +${active} + +${active} = False + + + +Runs the given keyword with the given arguments, if ``condition`` is true. + +${active} +Add test case +ARCHIVETOOL Suche LKR ${LKR_UC} +ARCHIVETOOL Suche +${LKR_UC} + + + + + + + +Evaluates the given expression in Python and returns the result. + +${TESTDATA['${LKR_UC}']['active']}==${True} + + +${active} + +${active} = False + + + +Runs the given keyword with the given arguments, if ``condition`` is true. + +${active} +Add test case +ARCHIVETOOL Suche LKR ${LKR_UC} +ARCHIVETOOL Suche +${LKR_UC} + + + + + + + +Evaluates the given expression in Python and returns the result. + +${TESTDATA['${LKR_UC}']['active']}==${True} + + +${active} + +${active} = True + + + +Runs the given keyword with the given arguments, if ``condition`` is true. + +${active} +Add test case +ARCHIVETOOL Suche LKR ${LKR_UC} +ARCHIVETOOL Suche +${LKR_UC} + + + +ARCHIVETOOL Suche LKR ${LKR_UC} +ARCHIVETOOL Suche +${LKR_UC} + + + + + + + + + +Evaluates the given expression in Python and returns the result. + +${TESTDATA['${LKR_UC}']['active']}==${True} + + +${active} + +${active} = False + + + +Runs the given keyword with the given arguments, if ``condition`` is true. + +${active} +Add test case +ARCHIVETOOL Suche LKR ${LKR_UC} +ARCHIVETOOL Suche +${LKR_UC} + + + + + + + +Evaluates the given expression in Python and returns the result. + +${TESTDATA['${LKR_UC}']['active']}==${True} + + +${active} + +${active} = True + + + +Runs the given keyword with the given arguments, if ``condition`` is true. + +${active} +Add test case +ARCHIVETOOL Suche LKR ${LKR_UC} +ARCHIVETOOL Suche +${LKR_UC} + + + +ARCHIVETOOL Suche LKR ${LKR_UC} +ARCHIVETOOL Suche +${LKR_UC} + + + + + + + + + + + + + +Makes a variable available everywhere within the scope of the current test. + +${APPOPEN} +${False} + +${APPOPEN} = False + + + + +Runs the given keyword with the given arguments, if ``condition`` is true. + +${APPOPEN}==${True} +Terminate Application +alias=archivetool + + + + +Runs the given keyword with the given arguments, if ``condition`` is true. + +${APPOPEN}==${True} +Quit All Viewer Processes + + + + +Makes a variable available everywhere within the scope of the current suite. + +${APPOPEN} +${False} + +${APPOPEN} = False + + + + + + +Runs the given keyword with the given arguments, if ``condition`` is true. + +${APPOPEN}==${True} +Terminate Application +alias=archivetool + + + + +Runs the given keyword with the given arguments, if ``condition`` is true. + +${APPOPEN}==${True} +Quit All Viewer Processes + + + + +Makes a variable available everywhere within the scope of the current suite. + +${APPOPEN} +${False} + +${APPOPEN} = False + + + + + + + + + +AI + + +Sets where all reference images are stored. + +${imgpath} + + + + + +${lkr_uc} + + +Makes a variable available everywhere within the scope of the current test. + +${LKR_UC} +${lkr_uc} + +${LKR_UC} = AI + + + +Converts string to lower case. + +${lkr_uc} + + +${lkr_lc} + +${lkr_lc} = ai + + + +Makes a variable available everywhere within the scope of the current test. + +${LKR_LC} +${lkr_lc} + +${LKR_LC} = ai + + + +Makes a variable available everywhere within the scope of the current test. + +${lkr_docs} +${TESTDATA['${LKR_UC}']['docs']} + +${lkr_docs} = ['688944', '688976', '689082'] + + + +Makes a variable available everywhere within the scope of the current test. + +${lkr_cred} +${TESTDATA['${LKR_UC}']['credentials']} + +${lkr_cred} = ['airob', 'crypt:2LvC/GWqwYhum5TkHpHfkD9pfb7U9E6O5ZuzKIgKYA1fUPBjlGRG3i4nm2zP0b/D615FGwgYceCI'] + + + +Makes a variable available everywhere within the scope of the current test. + +${lkr_loc_img} +${TESTDATA['${LKR_UC}']['loc_img']} + +${lkr_loc_img} = [] + + + +Makes a variable available everywhere within the scope of the current test. + +${user} +${lkr_cred}[0] + +${user} = airob + + + +Decrypts cipher text and returns the plain text. + +${lkr_cred}[1] + + +${password} + +Decrypting text and return value. +${password} = *** + + + +Makes a variable available everywhere within the scope of the current test. + +${password} +${password} + +${password} = *** + + + + + + +Runs a process and waits for it to complete. + +cmd.exe /c taskkill /IM ArchiveViewAdvancedA.exe +shell=True + +Starting process: +cmd.exe /c taskkill /IM ArchiveViewAdvancedA.exe +Waiting for process to complete. +Process completed. + + + +Runs a process and waits for it to complete. + +cmd.exe /c taskkill /IM ArchiveViewAdvancedB.exe +shell=True + +Starting process: +cmd.exe /c taskkill /IM ArchiveViewAdvancedB.exe +Waiting for process to complete. +Process completed. + + + +Runs a process and waits for it to complete. + +cmd.exe /c taskkill /IM ArchiveViewAdvancedC.exe +shell=True + +Starting process: +cmd.exe /c taskkill /IM ArchiveViewAdvancedC.exe +Waiting for process to complete. +Process completed. + + + +Runs a process and waits for it to complete. + +cmd.exe /c taskkill /IM +ArchivToolExtAdvanced.exe +shell=True + +Starting process: +"cmd.exe /c taskkill /IM" ArchivToolExtAdvanced.exe +Waiting for process to complete. +Process completed. + + + +Runs a process and waits for it to complete. + +cmd.exe /c taskkill /IM +archtool.exe +shell=True + +Starting process: +"cmd.exe /c taskkill /IM" archtool.exe +Waiting for process to complete. +Process completed. + + + + + + +Runs a process and waits for it to complete. + +C:\\ProgramData\\checkmk\\agent\\robot\\archivetool\\ArchivetoolConfig\\sva_${LKR_LC} konfiguration.bat + +Starting process: +"C:\ProgramData\checkmk\agent\robot\archivetool\ArchivetoolConfig\sva_ai konfiguration.bat" +Waiting for process to complete. +Process completed. + + + +Launches an application. + +"${APP}" +alias=archivetool + + + + +Makes a variable available everywhere within the scope of the current suite. + +${APPOPEN} +${True} + +${APPOPEN} = True + + + + + + + +login_username +timeout=10 + + +${loc} + + +Runs the given keyword with the given arguments, if ``condition`` is true. + +'${image}' in ${lkr_loc_img} +Change Image Folder +${imgpath}\\${LKR_UC} + + + + +Tries to locate given image from the screen for given time. + +${image} +timeout=${timeout} + + +${loc} + +Image "login_username" found at (227, 149) +${loc} = (227, 149) + + + +Runs the given keyword with the given arguments, if ``condition`` is true. + +'${image}' in ${lkr_loc_img} +Change Image Folder +${imgpath} + + + +${loc} = (227, 149) + + + +Finds the reference image on screen and clicks it once. + +login_username + +Image "C:\ProgramData\checkmk\agent\robot\archivetool\images\login_username.png" found at Box(left=182, top=134, width=90, height=30) +Clicking image "login_username" in position (227, 149) + + + +Pauses the test executed for the given time. + +0.2 + +Slept 200 milliseconds + + + + +login_username +10 +20 +${user} + + + +${image} +${timeout} + + +${loc} + + +Runs the given keyword with the given arguments, if ``condition`` is true. + +'${image}' in ${lkr_loc_img} +Change Image Folder +${imgpath}\\${LKR_UC} + + + + +Tries to locate given image from the screen for given time. + +${image} +timeout=${timeout} + + +${loc} + +Image "login_username" found at (227, 149) +${loc} = (227, 149) + + + +Runs the given keyword with the given arguments, if ``condition`` is true. + +'${image}' in ${lkr_loc_img} +Change Image Folder +${imgpath} + + + +${loc} = (227, 149) + + + +Clicks right of given location by given offset. + +${loc} +${offset} + +Clicking 1 time(s) at (247, 149) with left mouse button at interval 0.000000 + + + +Type text and keyboard keys. + +@{text} + + + + + + +Pauses the test executed for the given time. + +0.2 + +Slept 200 milliseconds + + + +Type text and keyboard keys. + +Key.tab + + + + +Pauses the test executed for the given time. + +0.2 + +Slept 200 milliseconds + + + +Type text and keyboard keys. + +${password} +Key.enter +Key.enter + + + + + +archiv_vista_warn +timeout=5 + + + +${image} +${timeout} + + +${loc} + + +Runs the given keyword with the given arguments, if ``condition`` is true. + +'${image}' in ${lkr_loc_img} +Change Image Folder +${imgpath}\\${LKR_UC} + + + + +Tries to locate given image from the screen for given time. + +${image} +timeout=${timeout} + + +${loc} + +Image "archiv_vista_warn" found at (845, 559) +${loc} = (845, 559) + + + +Runs the given keyword with the given arguments, if ``condition`` is true. + +'${image}' in ${lkr_loc_img} +Change Image Folder +${imgpath} + + + +${loc} = (845, 559) + + + + +${loc} + + +Moves the mouse pointer to an absolute coordinates. + +${loc} + + + + +Clicks with the specified mouse button. + + + + + + + +Type text and keyboard keys. + +Key.enter + + + + +Tries to locate given image from the screen for given time. + +aae_toolbar +timeout=10 + +Image "aae_toolbar" found at (506, 709) + + + + + + +Returns ``True`` if reference image was found on screen or +``False`` otherwise. Never fails. + +aae_vorbelegung_checked + + +${vorbelegt_checked} + +${vorbelegt_checked} = False + + + +Runs the given keyword with the given arguments, if ``condition`` is true. + +${vorbelegt_checked}==${True} +Click Image +aae_vorbelegung_checked + + + + + + +Returns the given values which can then be assigned to a variables. + +0 + + +${i} + +${i} = 0 + + + + + + +${lkr_docs}[${i}] +${anz_seiten} + + +Makes a variable available everywhere within the scope of the current test. + +${dokid} +${lkr_doc} + +${dokid} = 688944 + + + + +aae_dokumentennr +5 +100 +${lkr_doc} + + + +${image} +${timeout} + + +${loc} + + +Runs the given keyword with the given arguments, if ``condition`` is true. + +'${image}' in ${lkr_loc_img} +Change Image Folder +${imgpath}\\${LKR_UC} + + + + +Tries to locate given image from the screen for given time. + +${image} +timeout=${timeout} + + +${loc} + +Image "aae_dokumentennr" found at (452, 463) +${loc} = (452, 463) + + + +Runs the given keyword with the given arguments, if ``condition`` is true. + +'${image}' in ${lkr_loc_img} +Change Image Folder +${imgpath} + + + +${loc} = (452, 463) + + + +Clicks right of given location by given offset. + +${loc} +${offset} + +Clicking 1 time(s) at (552, 463) with left mouse button at interval 0.000000 + + + +Type text and keyboard keys. + +@{text} + + + + + + +Type text and keyboard keys. + +Key.enter + + + + + +aae_treffer_1 +timeout=10 + + + +${image} +${timeout} + + +${loc} + + +Runs the given keyword with the given arguments, if ``condition`` is true. + +'${image}' in ${lkr_loc_img} +Change Image Folder +${imgpath}\\${LKR_UC} + + + + +Tries to locate given image from the screen for given time. + +${image} +timeout=${timeout} + + +${loc} + +Image "aae_treffer_1" found at (870, 745) +${loc} = (870, 745) + + + +Runs the given keyword with the given arguments, if ``condition`` is true. + +'${image}' in ${lkr_loc_img} +Change Image Folder +${imgpath} + + + +${loc} = (870, 745) + + + + +${loc} + + +Moves the mouse pointer to an absolute coordinates. + +${loc} + + + + +Clicks with the specified mouse button. + + + + + + + +Type text and keyboard keys. + +Key.Tab +Key.Tab +Key.Tab +Key.Tab +Key.right + + + + + +aae_zeile_markiert +timeout=10 + + + +${image} +${timeout} + + +${loc} + + +Runs the given keyword with the given arguments, if ``condition`` is true. + +'${image}' in ${lkr_loc_img} +Change Image Folder +${imgpath}\\${LKR_UC} + + + + +Tries to locate given image from the screen for given time. + +${image} +timeout=${timeout} + + +${loc} + +Image "aae_zeile_markiert" found at (423, 786) +${loc} = (423, 786) + + + +Runs the given keyword with the given arguments, if ``condition`` is true. + +'${image}' in ${lkr_loc_img} +Change Image Folder +${imgpath} + + + +${loc} = (423, 786) + + + + +${loc} + + +Moves the mouse pointer to an absolute coordinates. + +${loc} + + + + +Clicks with the specified mouse button. + + + + + + + + +aae_viewer_b +timeout=10 + + + +${image} +${timeout} + + +${loc} + + +Runs the given keyword with the given arguments, if ``condition`` is true. + +'${image}' in ${lkr_loc_img} +Change Image Folder +${imgpath}\\${LKR_UC} + + + + +Tries to locate given image from the screen for given time. + +${image} +timeout=${timeout} + + +${loc} + +Image "aae_viewer_b" found at (641, 709) +${loc} = (641, 709) + + + +Runs the given keyword with the given arguments, if ``condition`` is true. + +'${image}' in ${lkr_loc_img} +Change Image Folder +${imgpath} + + + +${loc} = (641, 709) + + + + +${loc} + + +Moves the mouse pointer to an absolute coordinates. + +${loc} + + + + +Clicks with the specified mouse button. + + + + + + + + +bviewer_opened +10 + + +Runs the given keyword with the given arguments, if ``condition`` is true. + +'${image}' in ${lkr_loc_img} +Change Image Folder +${imgpath}\\${LKR_UC} + + + + +Tries to locate given image from the screen for given time. + +${image} +timeout=${timeout} + + +${loc} + +Image "bviewer_opened" found at (652, 94) +${loc} = (652, 94) + + + +Runs the given keyword with the given arguments, if ``condition`` is true. + +'${image}' in ${lkr_loc_img} +Change Image Folder +${imgpath} + + + + + + +Pauses the test executed for the given time. + +0.5 + +Slept 500 milliseconds + + + + +bviewer_opened +timeout=10 + + + +${image} +${timeout} + + +${loc} + + +Runs the given keyword with the given arguments, if ``condition`` is true. + +'${image}' in ${lkr_loc_img} +Change Image Folder +${imgpath}\\${LKR_UC} + + + + +Tries to locate given image from the screen for given time. + +${image} +timeout=${timeout} + + +${loc} + +Image "bviewer_opened" found at (652, 94) +${loc} = (652, 94) + + + +Runs the given keyword with the given arguments, if ``condition`` is true. + +'${image}' in ${lkr_loc_img} +Change Image Folder +${imgpath} + + + +${loc} = (652, 94) + + + + +${loc} + + +Moves the mouse pointer to an absolute coordinates. + +${loc} + + + + +Clicks with the specified mouse button. + + + + + + + +Pauses the test executed for the given time. + +0.5 + +Slept 500 milliseconds + + + +Press given keyboard keys. + +Key.Win +Key.Up + + + + +Returns the given values which can then be assigned to a variables. + +ARCHIVETOOL_DOKU_${LKR_UC}_${anz_seiten} + + +${search_image} + +${search_image} = ARCHIVETOOL_DOKU_AI_30 + + + + +bviewer_opened +timeout=10 + + + +${image} +${timeout} + + +${loc} + + +Runs the given keyword with the given arguments, if ``condition`` is true. + +'${image}' in ${lkr_loc_img} +Change Image Folder +${imgpath}\\${LKR_UC} + + + + +Tries to locate given image from the screen for given time. + +${image} +timeout=${timeout} + + +${loc} + +Image "bviewer_opened" found at (11, 85) +${loc} = (11, 85) + + + +Runs the given keyword with the given arguments, if ``condition`` is true. + +'${image}' in ${lkr_loc_img} +Change Image Folder +${imgpath} + + + +${loc} = (11, 85) + + + + +${loc} + + +Moves the mouse pointer to an absolute coordinates. + +${loc} + + + + +Clicks with the specified mouse button. + + + + + + + +Tries to locate given image from the screen for given time. + +${search_image} +timeout=90 + +Image "ARCHIVETOOL_DOKU_AI_30" found at (192, 333) + + + +Press given keyboard keys. + +Key.Alt +Key.F4 + + + + + + + +aae_suche_clear +timeout=5 + + + +${image} +${timeout} + + +${loc} + + +Runs the given keyword with the given arguments, if ``condition`` is true. + +'${image}' in ${lkr_loc_img} +Change Image Folder +${imgpath}\\${LKR_UC} + + + + +Tries to locate given image from the screen for given time. + +${image} +timeout=${timeout} + + +${loc} + +Image "aae_suche_clear" found at (404, 709) +${loc} = (404, 709) + + + +Runs the given keyword with the given arguments, if ``condition`` is true. + +'${image}' in ${lkr_loc_img} +Change Image Folder +${imgpath} + + + +${loc} = (404, 709) + + + + +${loc} + + +Moves the mouse pointer to an absolute coordinates. + +${loc} + + + + +Clicks with the specified mouse button. + + + + + + + + +aae_dokumentennr_bereit +timeout=5 + + +Runs the given keyword with the given arguments, if ``condition`` is true. + +'${image}' in ${lkr_loc_img} +Change Image Folder +${imgpath}\\${LKR_UC} + + + + +Tries to locate given image from the screen for given time. + +${image} +timeout=${timeout} + + +${loc} + +Image "aae_dokumentennr_bereit" found at (569, 464) +${loc} = (569, 464) + + + +Runs the given keyword with the given arguments, if ``condition`` is true. + +'${image}' in ${lkr_loc_img} +Change Image Folder +${imgpath} + + + + + + +Evaluates the given expression in Python and returns the result. + +${i} + 1 + + +${i} + +${i} = 1 + + + + + + + +${lkr_docs}[${i}] +${anz_seiten} + + +Makes a variable available everywhere within the scope of the current test. + +${dokid} +${lkr_doc} + +${dokid} = 688976 + + + + +aae_dokumentennr +5 +100 +${lkr_doc} + + + +${image} +${timeout} + + +${loc} + + +Runs the given keyword with the given arguments, if ``condition`` is true. + +'${image}' in ${lkr_loc_img} +Change Image Folder +${imgpath}\\${LKR_UC} + + + + +Tries to locate given image from the screen for given time. + +${image} +timeout=${timeout} + + +${loc} + +Image "aae_dokumentennr" found at (452, 463) +${loc} = (452, 463) + + + +Runs the given keyword with the given arguments, if ``condition`` is true. + +'${image}' in ${lkr_loc_img} +Change Image Folder +${imgpath} + + + +${loc} = (452, 463) + + + +Clicks right of given location by given offset. + +${loc} +${offset} + +Clicking 1 time(s) at (552, 463) with left mouse button at interval 0.000000 + + + +Type text and keyboard keys. + +@{text} + + + + + + +Type text and keyboard keys. + +Key.enter + + + + + +aae_treffer_1 +timeout=10 + + + +${image} +${timeout} + + +${loc} + + +Runs the given keyword with the given arguments, if ``condition`` is true. + +'${image}' in ${lkr_loc_img} +Change Image Folder +${imgpath}\\${LKR_UC} + + + + +Tries to locate given image from the screen for given time. + +${image} +timeout=${timeout} + + +${loc} + +Image "aae_treffer_1" found at (870, 745) +${loc} = (870, 745) + + + +Runs the given keyword with the given arguments, if ``condition`` is true. + +'${image}' in ${lkr_loc_img} +Change Image Folder +${imgpath} + + + +${loc} = (870, 745) + + + + +${loc} + + +Moves the mouse pointer to an absolute coordinates. + +${loc} + + + + +Clicks with the specified mouse button. + + + + + + + +Type text and keyboard keys. + +Key.Tab +Key.Tab +Key.Tab +Key.Tab +Key.right + + + + + +aae_zeile_markiert +timeout=10 + + + +${image} +${timeout} + + +${loc} + + +Runs the given keyword with the given arguments, if ``condition`` is true. + +'${image}' in ${lkr_loc_img} +Change Image Folder +${imgpath}\\${LKR_UC} + + + + +Tries to locate given image from the screen for given time. + +${image} +timeout=${timeout} + + +${loc} + +Image "aae_zeile_markiert" found at (423, 786) +${loc} = (423, 786) + + + +Runs the given keyword with the given arguments, if ``condition`` is true. + +'${image}' in ${lkr_loc_img} +Change Image Folder +${imgpath} + + + +${loc} = (423, 786) + + + + +${loc} + + +Moves the mouse pointer to an absolute coordinates. + +${loc} + + + + +Clicks with the specified mouse button. + + + + + + + + +aae_viewer_b +timeout=10 + + + +${image} +${timeout} + + +${loc} + + +Runs the given keyword with the given arguments, if ``condition`` is true. + +'${image}' in ${lkr_loc_img} +Change Image Folder +${imgpath}\\${LKR_UC} + + + + +Tries to locate given image from the screen for given time. + +${image} +timeout=${timeout} + + +${loc} + +Image "aae_viewer_b" found at (641, 709) +${loc} = (641, 709) + + + +Runs the given keyword with the given arguments, if ``condition`` is true. + +'${image}' in ${lkr_loc_img} +Change Image Folder +${imgpath} + + + +${loc} = (641, 709) + + + + +${loc} + + +Moves the mouse pointer to an absolute coordinates. + +${loc} + + + + +Clicks with the specified mouse button. + + + + + + + + +bviewer_opened +10 + + +Runs the given keyword with the given arguments, if ``condition`` is true. + +'${image}' in ${lkr_loc_img} +Change Image Folder +${imgpath}\\${LKR_UC} + + + + +Tries to locate given image from the screen for given time. + +${image} +timeout=${timeout} + + +${loc} + +Image "bviewer_opened" found at (652, 94) +${loc} = (652, 94) + + + +Runs the given keyword with the given arguments, if ``condition`` is true. + +'${image}' in ${lkr_loc_img} +Change Image Folder +${imgpath} + + + + + + +Pauses the test executed for the given time. + +0.5 + +Slept 500 milliseconds + + + + +bviewer_opened +timeout=10 + + + +${image} +${timeout} + + +${loc} + + +Runs the given keyword with the given arguments, if ``condition`` is true. + +'${image}' in ${lkr_loc_img} +Change Image Folder +${imgpath}\\${LKR_UC} + + + + +Tries to locate given image from the screen for given time. + +${image} +timeout=${timeout} + + +${loc} + +Image "bviewer_opened" found at (652, 94) +${loc} = (652, 94) + + + +Runs the given keyword with the given arguments, if ``condition`` is true. + +'${image}' in ${lkr_loc_img} +Change Image Folder +${imgpath} + + + +${loc} = (652, 94) + + + + +${loc} + + +Moves the mouse pointer to an absolute coordinates. + +${loc} + + + + +Clicks with the specified mouse button. + + + + + + + +Pauses the test executed for the given time. + +0.5 + +Slept 500 milliseconds + + + +Press given keyboard keys. + +Key.Win +Key.Up + + + + +Returns the given values which can then be assigned to a variables. + +ARCHIVETOOL_DOKU_${LKR_UC}_${anz_seiten} + + +${search_image} + +${search_image} = ARCHIVETOOL_DOKU_AI_100 + + + + +bviewer_opened +timeout=10 + + + +${image} +${timeout} + + +${loc} + + +Runs the given keyword with the given arguments, if ``condition`` is true. + +'${image}' in ${lkr_loc_img} +Change Image Folder +${imgpath}\\${LKR_UC} + + + + +Tries to locate given image from the screen for given time. + +${image} +timeout=${timeout} + + +${loc} + +Image "bviewer_opened" found at (11, 85) +${loc} = (11, 85) + + + +Runs the given keyword with the given arguments, if ``condition`` is true. + +'${image}' in ${lkr_loc_img} +Change Image Folder +${imgpath} + + + +${loc} = (11, 85) + + + + +${loc} + + +Moves the mouse pointer to an absolute coordinates. + +${loc} + + + + +Clicks with the specified mouse button. + + + + + + + +Tries to locate given image from the screen for given time. + +${search_image} +timeout=90 + +Image "ARCHIVETOOL_DOKU_AI_100" found at (195, 303) + + + +Press given keyboard keys. + +Key.Alt +Key.F4 + + + + + + + +aae_suche_clear +timeout=5 + + + +${image} +${timeout} + + +${loc} + + +Runs the given keyword with the given arguments, if ``condition`` is true. + +'${image}' in ${lkr_loc_img} +Change Image Folder +${imgpath}\\${LKR_UC} + + + + +Tries to locate given image from the screen for given time. + +${image} +timeout=${timeout} + + +${loc} + +Image "aae_suche_clear" found at (404, 709) +${loc} = (404, 709) + + + +Runs the given keyword with the given arguments, if ``condition`` is true. + +'${image}' in ${lkr_loc_img} +Change Image Folder +${imgpath} + + + +${loc} = (404, 709) + + + + +${loc} + + +Moves the mouse pointer to an absolute coordinates. + +${loc} + + + + +Clicks with the specified mouse button. + + + + + + + + +aae_dokumentennr_bereit +timeout=5 + + +Runs the given keyword with the given arguments, if ``condition`` is true. + +'${image}' in ${lkr_loc_img} +Change Image Folder +${imgpath}\\${LKR_UC} + + + + +Tries to locate given image from the screen for given time. + +${image} +timeout=${timeout} + + +${loc} + +Image "aae_dokumentennr_bereit" found at (569, 464) +${loc} = (569, 464) + + + +Runs the given keyword with the given arguments, if ``condition`` is true. + +'${image}' in ${lkr_loc_img} +Change Image Folder +${imgpath} + + + + + + +Evaluates the given expression in Python and returns the result. + +${i} + 1 + + +${i} + +${i} = 2 + + + + + + + +${lkr_docs}[${i}] +${anz_seiten} + + +Makes a variable available everywhere within the scope of the current test. + +${dokid} +${lkr_doc} + +${dokid} = 689082 + + + + +aae_dokumentennr +5 +100 +${lkr_doc} + + + +${image} +${timeout} + + +${loc} + + +Runs the given keyword with the given arguments, if ``condition`` is true. + +'${image}' in ${lkr_loc_img} +Change Image Folder +${imgpath}\\${LKR_UC} + + + + +Tries to locate given image from the screen for given time. + +${image} +timeout=${timeout} + + +${loc} + +Image "aae_dokumentennr" found at (452, 463) +${loc} = (452, 463) + + + +Runs the given keyword with the given arguments, if ``condition`` is true. + +'${image}' in ${lkr_loc_img} +Change Image Folder +${imgpath} + + + +${loc} = (452, 463) + + + +Clicks right of given location by given offset. + +${loc} +${offset} + +Clicking 1 time(s) at (552, 463) with left mouse button at interval 0.000000 + + + +Type text and keyboard keys. + +@{text} + + + + + + +Type text and keyboard keys. + +Key.enter + + + + + +aae_treffer_1 +timeout=10 + + + +${image} +${timeout} + + +${loc} + + +Runs the given keyword with the given arguments, if ``condition`` is true. + +'${image}' in ${lkr_loc_img} +Change Image Folder +${imgpath}\\${LKR_UC} + + + + +Tries to locate given image from the screen for given time. + +${image} +timeout=${timeout} + + +${loc} + +Image "aae_treffer_1" found at (870, 745) +${loc} = (870, 745) + + + +Runs the given keyword with the given arguments, if ``condition`` is true. + +'${image}' in ${lkr_loc_img} +Change Image Folder +${imgpath} + + + +${loc} = (870, 745) + + + + +${loc} + + +Moves the mouse pointer to an absolute coordinates. + +${loc} + + + + +Clicks with the specified mouse button. + + + + + + + +Type text and keyboard keys. + +Key.Tab +Key.Tab +Key.Tab +Key.Tab +Key.right + + + + + +aae_zeile_markiert +timeout=10 + + + +${image} +${timeout} + + +${loc} + + +Runs the given keyword with the given arguments, if ``condition`` is true. + +'${image}' in ${lkr_loc_img} +Change Image Folder +${imgpath}\\${LKR_UC} + + + + +Tries to locate given image from the screen for given time. + +${image} +timeout=${timeout} + + +${loc} + +Image "aae_zeile_markiert" found at (423, 786) +${loc} = (423, 786) + + + +Runs the given keyword with the given arguments, if ``condition`` is true. + +'${image}' in ${lkr_loc_img} +Change Image Folder +${imgpath} + + + +${loc} = (423, 786) + + + + +${loc} + + +Moves the mouse pointer to an absolute coordinates. + +${loc} + + + + +Clicks with the specified mouse button. + + + + + + + + +aae_viewer_b +timeout=10 + + + +${image} +${timeout} + + +${loc} + + +Runs the given keyword with the given arguments, if ``condition`` is true. + +'${image}' in ${lkr_loc_img} +Change Image Folder +${imgpath}\\${LKR_UC} + + + + +Tries to locate given image from the screen for given time. + +${image} +timeout=${timeout} + + +${loc} + +Image "aae_viewer_b" found at (641, 709) +${loc} = (641, 709) + + + +Runs the given keyword with the given arguments, if ``condition`` is true. + +'${image}' in ${lkr_loc_img} +Change Image Folder +${imgpath} + + + +${loc} = (641, 709) + + + + +${loc} + + +Moves the mouse pointer to an absolute coordinates. + +${loc} + + + + +Clicks with the specified mouse button. + + + + + + + + +bviewer_opened +10 + + +Runs the given keyword with the given arguments, if ``condition`` is true. + +'${image}' in ${lkr_loc_img} +Change Image Folder +${imgpath}\\${LKR_UC} + + + + +Tries to locate given image from the screen for given time. + +${image} +timeout=${timeout} + + +${loc} + +Image "bviewer_opened" found at (652, 94) +${loc} = (652, 94) + + + +Runs the given keyword with the given arguments, if ``condition`` is true. + +'${image}' in ${lkr_loc_img} +Change Image Folder +${imgpath} + + + + + + +Pauses the test executed for the given time. + +0.5 + +Slept 500 milliseconds + + + + +bviewer_opened +timeout=10 + + + +${image} +${timeout} + + +${loc} + + +Runs the given keyword with the given arguments, if ``condition`` is true. + +'${image}' in ${lkr_loc_img} +Change Image Folder +${imgpath}\\${LKR_UC} + + + + +Tries to locate given image from the screen for given time. + +${image} +timeout=${timeout} + + +${loc} + +Image "bviewer_opened" found at (652, 94) +${loc} = (652, 94) + + + +Runs the given keyword with the given arguments, if ``condition`` is true. + +'${image}' in ${lkr_loc_img} +Change Image Folder +${imgpath} + + + +${loc} = (652, 94) + + + + +${loc} + + +Moves the mouse pointer to an absolute coordinates. + +${loc} + + + + +Clicks with the specified mouse button. + + + + + + + +Pauses the test executed for the given time. + +0.5 + +Slept 500 milliseconds + + + +Press given keyboard keys. + +Key.Win +Key.Up + + + + +Returns the given values which can then be assigned to a variables. + +ARCHIVETOOL_DOKU_${LKR_UC}_${anz_seiten} + + +${search_image} + +${search_image} = ARCHIVETOOL_DOKU_AI_300 + + + + +bviewer_opened +timeout=10 + + + +${image} +${timeout} + + +${loc} + + +Runs the given keyword with the given arguments, if ``condition`` is true. + +'${image}' in ${lkr_loc_img} +Change Image Folder +${imgpath}\\${LKR_UC} + + + + +Tries to locate given image from the screen for given time. + +${image} +timeout=${timeout} + + +${loc} + +Image "bviewer_opened" found at (11, 85) +${loc} = (11, 85) + + + +Runs the given keyword with the given arguments, if ``condition`` is true. + +'${image}' in ${lkr_loc_img} +Change Image Folder +${imgpath} + + + +${loc} = (11, 85) + + + + +${loc} + + +Moves the mouse pointer to an absolute coordinates. + +${loc} + + + + +Clicks with the specified mouse button. + + + + + + + +Tries to locate given image from the screen for given time. + +${search_image} +timeout=90 + +Image "ARCHIVETOOL_DOKU_AI_300" found at (147, 282) + + + +Press given keyboard keys. + +Key.Alt +Key.F4 + + + + + + + +aae_suche_clear +timeout=5 + + + +${image} +${timeout} + + +${loc} + + +Runs the given keyword with the given arguments, if ``condition`` is true. + +'${image}' in ${lkr_loc_img} +Change Image Folder +${imgpath}\\${LKR_UC} + + + + +Tries to locate given image from the screen for given time. + +${image} +timeout=${timeout} + + +${loc} + +Image "aae_suche_clear" found at (404, 709) +${loc} = (404, 709) + + + +Runs the given keyword with the given arguments, if ``condition`` is true. + +'${image}' in ${lkr_loc_img} +Change Image Folder +${imgpath} + + + +${loc} = (404, 709) + + + + +${loc} + + +Moves the mouse pointer to an absolute coordinates. + +${loc} + + + + +Clicks with the specified mouse button. + + + + + + + + +aae_dokumentennr_bereit +timeout=5 + + +Runs the given keyword with the given arguments, if ``condition`` is true. + +'${image}' in ${lkr_loc_img} +Change Image Folder +${imgpath}\\${LKR_UC} + + + + +Tries to locate given image from the screen for given time. + +${image} +timeout=${timeout} + + +${loc} + +Image "aae_dokumentennr_bereit" found at (569, 464) +${loc} = (569, 464) + + + +Runs the given keyword with the given arguments, if ``condition`` is true. + +'${image}' in ${lkr_loc_img} +Change Image Folder +${imgpath} + + + + + + +Evaluates the given expression in Python and returns the result. + +${i} + 1 + + +${i} + +${i} = 3 + + + + + + + + + + +Runs the given keyword with the given arguments, if ``condition`` is true. + +${APPOPEN}==${True} +Terminate Application +alias=archivetool + + +Terminates the process launched with `Launch Application` with +given ``alias``. + +alias=archivetool + + + + + + +Runs the given keyword with the given arguments, if ``condition`` is true. + +${APPOPEN}==${True} +Quit All Viewer Processes + + + +Runs a process and waits for it to complete. + +cmd.exe /c taskkill /IM ArchiveViewAdvancedA.exe +shell=True + +Starting process: +cmd.exe /c taskkill /IM ArchiveViewAdvancedA.exe +Waiting for process to complete. +Process completed. + + + +Runs a process and waits for it to complete. + +cmd.exe /c taskkill /IM ArchiveViewAdvancedB.exe +shell=True + +Starting process: +cmd.exe /c taskkill /IM ArchiveViewAdvancedB.exe +Waiting for process to complete. +Process completed. + + + +Runs a process and waits for it to complete. + +cmd.exe /c taskkill /IM ArchiveViewAdvancedC.exe +shell=True + +Starting process: +cmd.exe /c taskkill /IM ArchiveViewAdvancedC.exe +Waiting for process to complete. +Process completed. + + + +Runs a process and waits for it to complete. + +cmd.exe /c taskkill /IM +ArchivToolExtAdvanced.exe +shell=True + +Starting process: +"cmd.exe /c taskkill /IM" ArchivToolExtAdvanced.exe +Waiting for process to complete. +Process completed. + + + +Runs a process and waits for it to complete. + +cmd.exe /c taskkill /IM +archtool.exe +shell=True + +Starting process: +"cmd.exe /c taskkill /IM" archtool.exe +Waiting for process to complete. +Process completed. + + + + + + + +Makes a variable available everywhere within the scope of the current suite. + +${APPOPEN} +${False} + +${APPOPEN} = False + + + + + + + + + +FR + + +Sets where all reference images are stored. + +${imgpath} + + + + + +${lkr_uc} + + +Makes a variable available everywhere within the scope of the current test. + +${LKR_UC} +${lkr_uc} + +${LKR_UC} = FR + + + +Converts string to lower case. + +${lkr_uc} + + +${lkr_lc} + +${lkr_lc} = fr + + + +Makes a variable available everywhere within the scope of the current test. + +${LKR_LC} +${lkr_lc} + +${LKR_LC} = fr + + + +Makes a variable available everywhere within the scope of the current test. + +${lkr_docs} +${TESTDATA['${LKR_UC}']['docs']} + +${lkr_docs} = ['16060940', '16060970', '16061070'] + + + +Makes a variable available everywhere within the scope of the current test. + +${lkr_cred} +${TESTDATA['${LKR_UC}']['credentials']} + +${lkr_cred} = ['frrobo', 'crypt:pX750ZQk/P0/Jg8/j8+4eqh2uVLHVhHaQNZIU7+l4zO4u2saJPkDGq5o6G7mFVvUMQBGW56IxRq900qA'] + + + +Makes a variable available everywhere within the scope of the current test. + +${lkr_loc_img} +${TESTDATA['${LKR_UC}']['loc_img']} + +${lkr_loc_img} = ['aae_zeile_markiert'] + + + +Makes a variable available everywhere within the scope of the current test. + +${user} +${lkr_cred}[0] + +${user} = frrobo + + + +Decrypts cipher text and returns the plain text. + +${lkr_cred}[1] + + +${password} + +Decrypting text and return value. +${password} = *** + + + +Makes a variable available everywhere within the scope of the current test. + +${password} +${password} + +${password} = *** + + + + + + +Runs a process and waits for it to complete. + +cmd.exe /c taskkill /IM ArchiveViewAdvancedA.exe +shell=True + +Starting process: +cmd.exe /c taskkill /IM ArchiveViewAdvancedA.exe +Waiting for process to complete. +Process completed. + + + +Runs a process and waits for it to complete. + +cmd.exe /c taskkill /IM ArchiveViewAdvancedB.exe +shell=True + +Starting process: +cmd.exe /c taskkill /IM ArchiveViewAdvancedB.exe +Waiting for process to complete. +Process completed. + + + +Runs a process and waits for it to complete. + +cmd.exe /c taskkill /IM ArchiveViewAdvancedC.exe +shell=True + +Starting process: +cmd.exe /c taskkill /IM ArchiveViewAdvancedC.exe +Waiting for process to complete. +Process completed. + + + +Runs a process and waits for it to complete. + +cmd.exe /c taskkill /IM +ArchivToolExtAdvanced.exe +shell=True + +Starting process: +"cmd.exe /c taskkill /IM" ArchivToolExtAdvanced.exe +Waiting for process to complete. +Process completed. + + + +Runs a process and waits for it to complete. + +cmd.exe /c taskkill /IM +archtool.exe +shell=True + +Starting process: +"cmd.exe /c taskkill /IM" archtool.exe +Waiting for process to complete. +Process completed. + + + + + + +Runs a process and waits for it to complete. + +C:\\ProgramData\\checkmk\\agent\\robot\\archivetool\\ArchivetoolConfig\\sva_${LKR_LC} konfiguration.bat + +Starting process: +"C:\ProgramData\checkmk\agent\robot\archivetool\ArchivetoolConfig\sva_fr konfiguration.bat" +Waiting for process to complete. +Process completed. + + + +Launches an application. + +"${APP}" +alias=archivetool + + + + +Makes a variable available everywhere within the scope of the current suite. + +${APPOPEN} +${True} + +${APPOPEN} = True + + + + + + + +login_username +timeout=10 + + +${loc} + + +Runs the given keyword with the given arguments, if ``condition`` is true. + +'${image}' in ${lkr_loc_img} +Change Image Folder +${imgpath}\\${LKR_UC} + + + + +Tries to locate given image from the screen for given time. + +${image} +timeout=${timeout} + + +${loc} + +Image "login_username" found at (227, 149) +${loc} = (227, 149) + + + +Runs the given keyword with the given arguments, if ``condition`` is true. + +'${image}' in ${lkr_loc_img} +Change Image Folder +${imgpath} + + + +${loc} = (227, 149) + + + +Finds the reference image on screen and clicks it once. + +login_username + +Image "C:\ProgramData\checkmk\agent\robot\archivetool\images\login_username.png" found at Box(left=182, top=134, width=90, height=30) +Clicking image "login_username" in position (227, 149) + + + +Pauses the test executed for the given time. + +0.2 + +Slept 200 milliseconds + + + + +login_username +10 +20 +${user} + + + +${image} +${timeout} + + +${loc} + + +Runs the given keyword with the given arguments, if ``condition`` is true. + +'${image}' in ${lkr_loc_img} +Change Image Folder +${imgpath}\\${LKR_UC} + + + + +Tries to locate given image from the screen for given time. + +${image} +timeout=${timeout} + + +${loc} + +Image "login_username" found at (227, 149) +${loc} = (227, 149) + + + +Runs the given keyword with the given arguments, if ``condition`` is true. + +'${image}' in ${lkr_loc_img} +Change Image Folder +${imgpath} + + + +${loc} = (227, 149) + + + +Clicks right of given location by given offset. + +${loc} +${offset} + +Clicking 1 time(s) at (247, 149) with left mouse button at interval 0.000000 + + + +Type text and keyboard keys. + +@{text} + + + + + + +Pauses the test executed for the given time. + +0.2 + +Slept 200 milliseconds + + + +Type text and keyboard keys. + +Key.tab + + + + +Pauses the test executed for the given time. + +0.2 + +Slept 200 milliseconds + + + +Type text and keyboard keys. + +${password} +Key.enter +Key.enter + + + + + +archiv_vista_warn +timeout=5 + + + +${image} +${timeout} + + +${loc} + + +Runs the given keyword with the given arguments, if ``condition`` is true. + +'${image}' in ${lkr_loc_img} +Change Image Folder +${imgpath}\\${LKR_UC} + + + + +Tries to locate given image from the screen for given time. + +${image} +timeout=${timeout} + + +${loc} + +Image "archiv_vista_warn" found at (845, 559) +${loc} = (845, 559) + + + +Runs the given keyword with the given arguments, if ``condition`` is true. + +'${image}' in ${lkr_loc_img} +Change Image Folder +${imgpath} + + + +${loc} = (845, 559) + + + + +${loc} + + +Moves the mouse pointer to an absolute coordinates. + +${loc} + + + + +Clicks with the specified mouse button. + + + + + + + +Type text and keyboard keys. + +Key.enter + + + + +Tries to locate given image from the screen for given time. + +aae_toolbar +timeout=10 + +Image "aae_toolbar" found at (506, 709) + + + + + + +Returns ``True`` if reference image was found on screen or +``False`` otherwise. Never fails. + +aae_vorbelegung_checked + + +${vorbelegt_checked} + +${vorbelegt_checked} = False + + + +Runs the given keyword with the given arguments, if ``condition`` is true. + +${vorbelegt_checked}==${True} +Click Image +aae_vorbelegung_checked + + + + + + +Returns the given values which can then be assigned to a variables. + +0 + + +${i} + +${i} = 0 + + + + + + +${lkr_docs}[${i}] +${anz_seiten} + + +Makes a variable available everywhere within the scope of the current test. + +${dokid} +${lkr_doc} + +${dokid} = 16060940 + + + + +aae_dokumentennr +5 +100 +${lkr_doc} + + + +${image} +${timeout} + + +${loc} + + +Runs the given keyword with the given arguments, if ``condition`` is true. + +'${image}' in ${lkr_loc_img} +Change Image Folder +${imgpath}\\${LKR_UC} + + + + +Tries to locate given image from the screen for given time. + +${image} +timeout=${timeout} + + +${loc} + +Image "aae_dokumentennr" found at (452, 463) +${loc} = (452, 463) + + + +Runs the given keyword with the given arguments, if ``condition`` is true. + +'${image}' in ${lkr_loc_img} +Change Image Folder +${imgpath} + + + +${loc} = (452, 463) + + + +Clicks right of given location by given offset. + +${loc} +${offset} + +Clicking 1 time(s) at (552, 463) with left mouse button at interval 0.000000 + + + +Type text and keyboard keys. + +@{text} + + + + + + +Type text and keyboard keys. + +Key.enter + + + + + +aae_treffer_1 +timeout=10 + + + +${image} +${timeout} + + +${loc} + + +Runs the given keyword with the given arguments, if ``condition`` is true. + +'${image}' in ${lkr_loc_img} +Change Image Folder +${imgpath}\\${LKR_UC} + + + + +Tries to locate given image from the screen for given time. + +${image} +timeout=${timeout} + + +${loc} + +Image "aae_treffer_1" found at (870, 745) +${loc} = (870, 745) + + + +Runs the given keyword with the given arguments, if ``condition`` is true. + +'${image}' in ${lkr_loc_img} +Change Image Folder +${imgpath} + + + +${loc} = (870, 745) + + + + +${loc} + + +Moves the mouse pointer to an absolute coordinates. + +${loc} + + + + +Clicks with the specified mouse button. + + + + + + + +Type text and keyboard keys. + +Key.Tab +Key.Tab +Key.Tab +Key.Tab +Key.right + + + + + +aae_zeile_markiert +timeout=10 + + + +${image} +${timeout} + + +${loc} + + +Runs the given keyword with the given arguments, if ``condition`` is true. + +'${image}' in ${lkr_loc_img} +Change Image Folder +${imgpath}\\${LKR_UC} + + + +${imgpath}\\${LKR_UC} + + +Sets where all reference images are stored. + +${path} + + + + + + + + +Tries to locate given image from the screen for given time. + +${image} +timeout=${timeout} + + +${loc} + +Image "aae_zeile_markiert" found at (720, 787) +${loc} = (720, 787) + + + +Runs the given keyword with the given arguments, if ``condition`` is true. + +'${image}' in ${lkr_loc_img} +Change Image Folder +${imgpath} + + + +${imgpath} + + +Sets where all reference images are stored. + +${path} + + + + + + + +${loc} = (720, 787) + + + + +${loc} + + +Moves the mouse pointer to an absolute coordinates. + +${loc} + + + + +Clicks with the specified mouse button. + + + + + + + + +aae_viewer_b +timeout=10 + + + +${image} +${timeout} + + +${loc} + + +Runs the given keyword with the given arguments, if ``condition`` is true. + +'${image}' in ${lkr_loc_img} +Change Image Folder +${imgpath}\\${LKR_UC} + + + + +Tries to locate given image from the screen for given time. + +${image} +timeout=${timeout} + + +${loc} + +Image "aae_viewer_b" found at (641, 709) +${loc} = (641, 709) + + + +Runs the given keyword with the given arguments, if ``condition`` is true. + +'${image}' in ${lkr_loc_img} +Change Image Folder +${imgpath} + + + +${loc} = (641, 709) + + + + +${loc} + + +Moves the mouse pointer to an absolute coordinates. + +${loc} + + + + +Clicks with the specified mouse button. + + + + + + + + +bviewer_opened +10 + + +Runs the given keyword with the given arguments, if ``condition`` is true. + +'${image}' in ${lkr_loc_img} +Change Image Folder +${imgpath}\\${LKR_UC} + + + + +Tries to locate given image from the screen for given time. + +${image} +timeout=${timeout} + + +${loc} + +Image "bviewer_opened" found at (652, 94) +${loc} = (652, 94) + + + +Runs the given keyword with the given arguments, if ``condition`` is true. + +'${image}' in ${lkr_loc_img} +Change Image Folder +${imgpath} + + + + + + +Pauses the test executed for the given time. + +0.5 + +Slept 500 milliseconds + + + + +bviewer_opened +timeout=10 + + + +${image} +${timeout} + + +${loc} + + +Runs the given keyword with the given arguments, if ``condition`` is true. + +'${image}' in ${lkr_loc_img} +Change Image Folder +${imgpath}\\${LKR_UC} + + + + +Tries to locate given image from the screen for given time. + +${image} +timeout=${timeout} + + +${loc} + +Image "bviewer_opened" found at (652, 94) +${loc} = (652, 94) + + + +Runs the given keyword with the given arguments, if ``condition`` is true. + +'${image}' in ${lkr_loc_img} +Change Image Folder +${imgpath} + + + +${loc} = (652, 94) + + + + +${loc} + + +Moves the mouse pointer to an absolute coordinates. + +${loc} + + + + +Clicks with the specified mouse button. + + + + + + + +Pauses the test executed for the given time. + +0.5 + +Slept 500 milliseconds + + + +Press given keyboard keys. + +Key.Win +Key.Up + + + + +Returns the given values which can then be assigned to a variables. + +ARCHIVETOOL_DOKU_${LKR_UC}_${anz_seiten} + + +${search_image} + +${search_image} = ARCHIVETOOL_DOKU_FR_30 + + + + +bviewer_opened +timeout=10 + + + +${image} +${timeout} + + +${loc} + + +Runs the given keyword with the given arguments, if ``condition`` is true. + +'${image}' in ${lkr_loc_img} +Change Image Folder +${imgpath}\\${LKR_UC} + + + + +Tries to locate given image from the screen for given time. + +${image} +timeout=${timeout} + + +${loc} + +Image "bviewer_opened" found at (11, 85) +${loc} = (11, 85) + + + +Runs the given keyword with the given arguments, if ``condition`` is true. + +'${image}' in ${lkr_loc_img} +Change Image Folder +${imgpath} + + + +${loc} = (11, 85) + + + + +${loc} + + +Moves the mouse pointer to an absolute coordinates. + +${loc} + + + + +Clicks with the specified mouse button. + + + + + + + +Tries to locate given image from the screen for given time. + +${search_image} +timeout=90 + +Image "ARCHIVETOOL_DOKU_FR_30" found at (175, 208) + + + +Press given keyboard keys. + +Key.Alt +Key.F4 + + + + + + + +aae_suche_clear +timeout=5 + + + +${image} +${timeout} + + +${loc} + + +Runs the given keyword with the given arguments, if ``condition`` is true. + +'${image}' in ${lkr_loc_img} +Change Image Folder +${imgpath}\\${LKR_UC} + + + + +Tries to locate given image from the screen for given time. + +${image} +timeout=${timeout} + + +${loc} + +Image "aae_suche_clear" found at (404, 709) +${loc} = (404, 709) + + + +Runs the given keyword with the given arguments, if ``condition`` is true. + +'${image}' in ${lkr_loc_img} +Change Image Folder +${imgpath} + + + +${loc} = (404, 709) + + + + +${loc} + + +Moves the mouse pointer to an absolute coordinates. + +${loc} + + + + +Clicks with the specified mouse button. + + + + + + + + +aae_dokumentennr_bereit +timeout=5 + + +Runs the given keyword with the given arguments, if ``condition`` is true. + +'${image}' in ${lkr_loc_img} +Change Image Folder +${imgpath}\\${LKR_UC} + + + + +Tries to locate given image from the screen for given time. + +${image} +timeout=${timeout} + + +${loc} + +Image "aae_dokumentennr_bereit" found at (569, 464) +${loc} = (569, 464) + + + +Runs the given keyword with the given arguments, if ``condition`` is true. + +'${image}' in ${lkr_loc_img} +Change Image Folder +${imgpath} + + + + + + +Evaluates the given expression in Python and returns the result. + +${i} + 1 + + +${i} + +${i} = 1 + + + + + + + +${lkr_docs}[${i}] +${anz_seiten} + + +Makes a variable available everywhere within the scope of the current test. + +${dokid} +${lkr_doc} + +${dokid} = 16060970 + + + + +aae_dokumentennr +5 +100 +${lkr_doc} + + + +${image} +${timeout} + + +${loc} + + +Runs the given keyword with the given arguments, if ``condition`` is true. + +'${image}' in ${lkr_loc_img} +Change Image Folder +${imgpath}\\${LKR_UC} + + + + +Tries to locate given image from the screen for given time. + +${image} +timeout=${timeout} + + +${loc} + +Image "aae_dokumentennr" found at (452, 463) +${loc} = (452, 463) + + + +Runs the given keyword with the given arguments, if ``condition`` is true. + +'${image}' in ${lkr_loc_img} +Change Image Folder +${imgpath} + + + +${loc} = (452, 463) + + + +Clicks right of given location by given offset. + +${loc} +${offset} + +Clicking 1 time(s) at (552, 463) with left mouse button at interval 0.000000 + + + +Type text and keyboard keys. + +@{text} + + + + + + +Type text and keyboard keys. + +Key.enter + + + + + +aae_treffer_1 +timeout=10 + + + +${image} +${timeout} + + +${loc} + + +Runs the given keyword with the given arguments, if ``condition`` is true. + +'${image}' in ${lkr_loc_img} +Change Image Folder +${imgpath}\\${LKR_UC} + + + + +Tries to locate given image from the screen for given time. + +${image} +timeout=${timeout} + + +${loc} + +Image "aae_treffer_1" found at (870, 745) +${loc} = (870, 745) + + + +Runs the given keyword with the given arguments, if ``condition`` is true. + +'${image}' in ${lkr_loc_img} +Change Image Folder +${imgpath} + + + +${loc} = (870, 745) + + + + +${loc} + + +Moves the mouse pointer to an absolute coordinates. + +${loc} + + + + +Clicks with the specified mouse button. + + + + + + + +Type text and keyboard keys. + +Key.Tab +Key.Tab +Key.Tab +Key.Tab +Key.right + + + + + +aae_zeile_markiert +timeout=10 + + + +${image} +${timeout} + + +${loc} + + +Runs the given keyword with the given arguments, if ``condition`` is true. + +'${image}' in ${lkr_loc_img} +Change Image Folder +${imgpath}\\${LKR_UC} + + + +${imgpath}\\${LKR_UC} + + +Sets where all reference images are stored. + +${path} + + + + + + + + +Tries to locate given image from the screen for given time. + +${image} +timeout=${timeout} + + +${loc} + +Image "aae_zeile_markiert" found at (720, 787) +${loc} = (720, 787) + + + +Runs the given keyword with the given arguments, if ``condition`` is true. + +'${image}' in ${lkr_loc_img} +Change Image Folder +${imgpath} + + + +${imgpath} + + +Sets where all reference images are stored. + +${path} + + + + + + + +${loc} = (720, 787) + + + + +${loc} + + +Moves the mouse pointer to an absolute coordinates. + +${loc} + + + + +Clicks with the specified mouse button. + + + + + + + + +aae_viewer_b +timeout=10 + + + +${image} +${timeout} + + +${loc} + + +Runs the given keyword with the given arguments, if ``condition`` is true. + +'${image}' in ${lkr_loc_img} +Change Image Folder +${imgpath}\\${LKR_UC} + + + + +Tries to locate given image from the screen for given time. + +${image} +timeout=${timeout} + + +${loc} + +Image "aae_viewer_b" found at (641, 709) +${loc} = (641, 709) + + + +Runs the given keyword with the given arguments, if ``condition`` is true. + +'${image}' in ${lkr_loc_img} +Change Image Folder +${imgpath} + + + +${loc} = (641, 709) + + + + +${loc} + + +Moves the mouse pointer to an absolute coordinates. + +${loc} + + + + +Clicks with the specified mouse button. + + + + + + + + +bviewer_opened +10 + + +Runs the given keyword with the given arguments, if ``condition`` is true. + +'${image}' in ${lkr_loc_img} +Change Image Folder +${imgpath}\\${LKR_UC} + + + + +Tries to locate given image from the screen for given time. + +${image} +timeout=${timeout} + + +${loc} + +Image "bviewer_opened" found at (652, 94) +${loc} = (652, 94) + + + +Runs the given keyword with the given arguments, if ``condition`` is true. + +'${image}' in ${lkr_loc_img} +Change Image Folder +${imgpath} + + + + + + +Pauses the test executed for the given time. + +0.5 + +Slept 500 milliseconds + + + + +bviewer_opened +timeout=10 + + + +${image} +${timeout} + + +${loc} + + +Runs the given keyword with the given arguments, if ``condition`` is true. + +'${image}' in ${lkr_loc_img} +Change Image Folder +${imgpath}\\${LKR_UC} + + + + +Tries to locate given image from the screen for given time. + +${image} +timeout=${timeout} + + +${loc} + +Image "bviewer_opened" found at (652, 94) +${loc} = (652, 94) + + + +Runs the given keyword with the given arguments, if ``condition`` is true. + +'${image}' in ${lkr_loc_img} +Change Image Folder +${imgpath} + + + +${loc} = (652, 94) + + + + +${loc} + + +Moves the mouse pointer to an absolute coordinates. + +${loc} + + + + +Clicks with the specified mouse button. + + + + + + + +Pauses the test executed for the given time. + +0.5 + +Slept 500 milliseconds + + + +Press given keyboard keys. + +Key.Win +Key.Up + + + + +Returns the given values which can then be assigned to a variables. + +ARCHIVETOOL_DOKU_${LKR_UC}_${anz_seiten} + + +${search_image} + +${search_image} = ARCHIVETOOL_DOKU_FR_100 + + + + +bviewer_opened +timeout=10 + + + +${image} +${timeout} + + +${loc} + + +Runs the given keyword with the given arguments, if ``condition`` is true. + +'${image}' in ${lkr_loc_img} +Change Image Folder +${imgpath}\\${LKR_UC} + + + + +Tries to locate given image from the screen for given time. + +${image} +timeout=${timeout} + + +${loc} + +Image "bviewer_opened" found at (11, 85) +${loc} = (11, 85) + + + +Runs the given keyword with the given arguments, if ``condition`` is true. + +'${image}' in ${lkr_loc_img} +Change Image Folder +${imgpath} + + + +${loc} = (11, 85) + + + + +${loc} + + +Moves the mouse pointer to an absolute coordinates. + +${loc} + + + + +Clicks with the specified mouse button. + + + + + + + +Tries to locate given image from the screen for given time. + +${search_image} +timeout=90 + +Image "ARCHIVETOOL_DOKU_FR_100" found at (169, 191) + + + +Press given keyboard keys. + +Key.Alt +Key.F4 + + + + + + + +aae_suche_clear +timeout=5 + + + +${image} +${timeout} + + +${loc} + + +Runs the given keyword with the given arguments, if ``condition`` is true. + +'${image}' in ${lkr_loc_img} +Change Image Folder +${imgpath}\\${LKR_UC} + + + + +Tries to locate given image from the screen for given time. + +${image} +timeout=${timeout} + + +${loc} + +Image "aae_suche_clear" found at (404, 709) +${loc} = (404, 709) + + + +Runs the given keyword with the given arguments, if ``condition`` is true. + +'${image}' in ${lkr_loc_img} +Change Image Folder +${imgpath} + + + +${loc} = (404, 709) + + + + +${loc} + + +Moves the mouse pointer to an absolute coordinates. + +${loc} + + + + +Clicks with the specified mouse button. + + + + + + + + +aae_dokumentennr_bereit +timeout=5 + + +Runs the given keyword with the given arguments, if ``condition`` is true. + +'${image}' in ${lkr_loc_img} +Change Image Folder +${imgpath}\\${LKR_UC} + + + + +Tries to locate given image from the screen for given time. + +${image} +timeout=${timeout} + + +${loc} + +Image "aae_dokumentennr_bereit" found at (569, 464) +${loc} = (569, 464) + + + +Runs the given keyword with the given arguments, if ``condition`` is true. + +'${image}' in ${lkr_loc_img} +Change Image Folder +${imgpath} + + + + + + +Evaluates the given expression in Python and returns the result. + +${i} + 1 + + +${i} + +${i} = 2 + + + + + + + +${lkr_docs}[${i}] +${anz_seiten} + + +Makes a variable available everywhere within the scope of the current test. + +${dokid} +${lkr_doc} + +${dokid} = 16061070 + + + + +aae_dokumentennr +5 +100 +${lkr_doc} + + + +${image} +${timeout} + + +${loc} + + +Runs the given keyword with the given arguments, if ``condition`` is true. + +'${image}' in ${lkr_loc_img} +Change Image Folder +${imgpath}\\${LKR_UC} + + + + +Tries to locate given image from the screen for given time. + +${image} +timeout=${timeout} + + +${loc} + +Image "aae_dokumentennr" found at (452, 463) +${loc} = (452, 463) + + + +Runs the given keyword with the given arguments, if ``condition`` is true. + +'${image}' in ${lkr_loc_img} +Change Image Folder +${imgpath} + + + +${loc} = (452, 463) + + + +Clicks right of given location by given offset. + +${loc} +${offset} + +Clicking 1 time(s) at (552, 463) with left mouse button at interval 0.000000 + + + +Type text and keyboard keys. + +@{text} + + + + + + +Type text and keyboard keys. + +Key.enter + + + + + +aae_treffer_1 +timeout=10 + + + +${image} +${timeout} + + +${loc} + + +Runs the given keyword with the given arguments, if ``condition`` is true. + +'${image}' in ${lkr_loc_img} +Change Image Folder +${imgpath}\\${LKR_UC} + + + + +Tries to locate given image from the screen for given time. + +${image} +timeout=${timeout} + + +${loc} + +Image "aae_treffer_1" found at (870, 745) +${loc} = (870, 745) + + + +Runs the given keyword with the given arguments, if ``condition`` is true. + +'${image}' in ${lkr_loc_img} +Change Image Folder +${imgpath} + + + +${loc} = (870, 745) + + + + +${loc} + + +Moves the mouse pointer to an absolute coordinates. + +${loc} + + + + +Clicks with the specified mouse button. + + + + + + + +Type text and keyboard keys. + +Key.Tab +Key.Tab +Key.Tab +Key.Tab +Key.right + + + + + +aae_zeile_markiert +timeout=10 + + + +${image} +${timeout} + + +${loc} + + +Runs the given keyword with the given arguments, if ``condition`` is true. + +'${image}' in ${lkr_loc_img} +Change Image Folder +${imgpath}\\${LKR_UC} + + + +${imgpath}\\${LKR_UC} + + +Sets where all reference images are stored. + +${path} + + + + + + + + +Tries to locate given image from the screen for given time. + +${image} +timeout=${timeout} + + +${loc} + +Image "aae_zeile_markiert" found at (720, 787) +${loc} = (720, 787) + + + +Runs the given keyword with the given arguments, if ``condition`` is true. + +'${image}' in ${lkr_loc_img} +Change Image Folder +${imgpath} + + + +${imgpath} + + +Sets where all reference images are stored. + +${path} + + + + + + + +${loc} = (720, 787) + + + + +${loc} + + +Moves the mouse pointer to an absolute coordinates. + +${loc} + + + + +Clicks with the specified mouse button. + + + + + + + + +aae_viewer_b +timeout=10 + + + +${image} +${timeout} + + +${loc} + + +Runs the given keyword with the given arguments, if ``condition`` is true. + +'${image}' in ${lkr_loc_img} +Change Image Folder +${imgpath}\\${LKR_UC} + + + + +Tries to locate given image from the screen for given time. + +${image} +timeout=${timeout} + + +${loc} + +Image "aae_viewer_b" found at (641, 709) +${loc} = (641, 709) + + + +Runs the given keyword with the given arguments, if ``condition`` is true. + +'${image}' in ${lkr_loc_img} +Change Image Folder +${imgpath} + + + +${loc} = (641, 709) + + + + +${loc} + + +Moves the mouse pointer to an absolute coordinates. + +${loc} + + + + +Clicks with the specified mouse button. + + + + + + + + +bviewer_opened +10 + + +Runs the given keyword with the given arguments, if ``condition`` is true. + +'${image}' in ${lkr_loc_img} +Change Image Folder +${imgpath}\\${LKR_UC} + + + + +Tries to locate given image from the screen for given time. + +${image} +timeout=${timeout} + + +${loc} + +Image "bviewer_opened" found at (652, 94) +${loc} = (652, 94) + + + +Runs the given keyword with the given arguments, if ``condition`` is true. + +'${image}' in ${lkr_loc_img} +Change Image Folder +${imgpath} + + + + + + +Pauses the test executed for the given time. + +0.5 + +Slept 500 milliseconds + + + + +bviewer_opened +timeout=10 + + + +${image} +${timeout} + + +${loc} + + +Runs the given keyword with the given arguments, if ``condition`` is true. + +'${image}' in ${lkr_loc_img} +Change Image Folder +${imgpath}\\${LKR_UC} + + + + +Tries to locate given image from the screen for given time. + +${image} +timeout=${timeout} + + +${loc} + +Image "bviewer_opened" found at (652, 94) +${loc} = (652, 94) + + + +Runs the given keyword with the given arguments, if ``condition`` is true. + +'${image}' in ${lkr_loc_img} +Change Image Folder +${imgpath} + + + +${loc} = (652, 94) + + + + +${loc} + + +Moves the mouse pointer to an absolute coordinates. + +${loc} + + + + +Clicks with the specified mouse button. + + + + + + + +Pauses the test executed for the given time. + +0.5 + +Slept 500 milliseconds + + + +Press given keyboard keys. + +Key.Win +Key.Up + + + + +Returns the given values which can then be assigned to a variables. + +ARCHIVETOOL_DOKU_${LKR_UC}_${anz_seiten} + + +${search_image} + +${search_image} = ARCHIVETOOL_DOKU_FR_300 + + + + +bviewer_opened +timeout=10 + + + +${image} +${timeout} + + +${loc} + + +Runs the given keyword with the given arguments, if ``condition`` is true. + +'${image}' in ${lkr_loc_img} +Change Image Folder +${imgpath}\\${LKR_UC} + + + + +Tries to locate given image from the screen for given time. + +${image} +timeout=${timeout} + + +${loc} + +Image "bviewer_opened" found at (11, 85) +${loc} = (11, 85) + + + +Runs the given keyword with the given arguments, if ``condition`` is true. + +'${image}' in ${lkr_loc_img} +Change Image Folder +${imgpath} + + + +${loc} = (11, 85) + + + + +${loc} + + +Moves the mouse pointer to an absolute coordinates. + +${loc} + + + + +Clicks with the specified mouse button. + + + + + + + +Tries to locate given image from the screen for given time. + +${search_image} +timeout=90 + +Image "ARCHIVETOOL_DOKU_FR_300" found at (184, 199) + + + +Press given keyboard keys. + +Key.Alt +Key.F4 + + + + + + + +aae_suche_clear +timeout=5 + + + +${image} +${timeout} + + +${loc} + + +Runs the given keyword with the given arguments, if ``condition`` is true. + +'${image}' in ${lkr_loc_img} +Change Image Folder +${imgpath}\\${LKR_UC} + + + + +Tries to locate given image from the screen for given time. + +${image} +timeout=${timeout} + + +${loc} + +Image "aae_suche_clear" found at (404, 709) +${loc} = (404, 709) + + + +Runs the given keyword with the given arguments, if ``condition`` is true. + +'${image}' in ${lkr_loc_img} +Change Image Folder +${imgpath} + + + +${loc} = (404, 709) + + + + +${loc} + + +Moves the mouse pointer to an absolute coordinates. + +${loc} + + + + +Clicks with the specified mouse button. + + + + + + + + +aae_dokumentennr_bereit +timeout=5 + + +Runs the given keyword with the given arguments, if ``condition`` is true. + +'${image}' in ${lkr_loc_img} +Change Image Folder +${imgpath}\\${LKR_UC} + + + + +Tries to locate given image from the screen for given time. + +${image} +timeout=${timeout} + + +${loc} + +Image "aae_dokumentennr_bereit" found at (569, 464) +${loc} = (569, 464) + + + +Runs the given keyword with the given arguments, if ``condition`` is true. + +'${image}' in ${lkr_loc_img} +Change Image Folder +${imgpath} + + + + + + +Evaluates the given expression in Python and returns the result. + +${i} + 1 + + +${i} + +${i} = 3 + + + + + + + + + + +Runs the given keyword with the given arguments, if ``condition`` is true. + +${APPOPEN}==${True} +Terminate Application +alias=archivetool + + +Terminates the process launched with `Launch Application` with +given ``alias``. + +alias=archivetool + + + + + + +Runs the given keyword with the given arguments, if ``condition`` is true. + +${APPOPEN}==${True} +Quit All Viewer Processes + + + +Runs a process and waits for it to complete. + +cmd.exe /c taskkill /IM ArchiveViewAdvancedA.exe +shell=True + +Starting process: +cmd.exe /c taskkill /IM ArchiveViewAdvancedA.exe +Waiting for process to complete. +Process completed. + + + +Runs a process and waits for it to complete. + +cmd.exe /c taskkill /IM ArchiveViewAdvancedB.exe +shell=True + +Starting process: +cmd.exe /c taskkill /IM ArchiveViewAdvancedB.exe +Waiting for process to complete. +Process completed. + + + +Runs a process and waits for it to complete. + +cmd.exe /c taskkill /IM ArchiveViewAdvancedC.exe +shell=True + +Starting process: +cmd.exe /c taskkill /IM ArchiveViewAdvancedC.exe +Waiting for process to complete. +Process completed. + + + +Runs a process and waits for it to complete. + +cmd.exe /c taskkill /IM +ArchivToolExtAdvanced.exe +shell=True + +Starting process: +"cmd.exe /c taskkill /IM" ArchivToolExtAdvanced.exe +Waiting for process to complete. +Process completed. + + + +Runs a process and waits for it to complete. + +cmd.exe /c taskkill /IM +archtool.exe +shell=True + +Starting process: +"cmd.exe /c taskkill /IM" archtool.exe +Waiting for process to complete. +Process completed. + + + + + + + +Makes a variable available everywhere within the scope of the current suite. + +${APPOPEN} +${False} + +${APPOPEN} = False + + + + + + + + + +OW + + +Sets where all reference images are stored. + +${imgpath} + + + + + +${lkr_uc} + + +Makes a variable available everywhere within the scope of the current test. + +${LKR_UC} +${lkr_uc} + +${LKR_UC} = OW + + + +Converts string to lower case. + +${lkr_uc} + + +${lkr_lc} + +${lkr_lc} = ow + + + +Makes a variable available everywhere within the scope of the current test. + +${LKR_LC} +${lkr_lc} + +${LKR_LC} = ow + + + +Makes a variable available everywhere within the scope of the current test. + +${lkr_docs} +${TESTDATA['${LKR_UC}']['docs']} + +${lkr_docs} = ['4743187', '4743199', '4743308'] + + + +Makes a variable available everywhere within the scope of the current test. + +${lkr_cred} +${TESTDATA['${LKR_UC}']['credentials']} + +${lkr_cred} = ['owrobo', 'crypt:cL5h6dBPgc/5yY+/otK1ubUHl2c6+z0uF97R6xLhmDW9L8XSnCNHhnR/jGTwYwsM34TBpmWg13vb'] + + + +Makes a variable available everywhere within the scope of the current test. + +${lkr_loc_img} +${TESTDATA['${LKR_UC}']['loc_img']} + +${lkr_loc_img} = [] + + + +Makes a variable available everywhere within the scope of the current test. + +${user} +${lkr_cred}[0] + +${user} = owrobo + + + +Decrypts cipher text and returns the plain text. + +${lkr_cred}[1] + + +${password} + +Decrypting text and return value. +${password} = *** + + + +Makes a variable available everywhere within the scope of the current test. + +${password} +${password} + +${password} = *** + + + + + + +Runs a process and waits for it to complete. + +cmd.exe /c taskkill /IM ArchiveViewAdvancedA.exe +shell=True + +Starting process: +cmd.exe /c taskkill /IM ArchiveViewAdvancedA.exe +Waiting for process to complete. +Process completed. + + + +Runs a process and waits for it to complete. + +cmd.exe /c taskkill /IM ArchiveViewAdvancedB.exe +shell=True + +Starting process: +cmd.exe /c taskkill /IM ArchiveViewAdvancedB.exe +Waiting for process to complete. +Process completed. + + + +Runs a process and waits for it to complete. + +cmd.exe /c taskkill /IM ArchiveViewAdvancedC.exe +shell=True + +Starting process: +cmd.exe /c taskkill /IM ArchiveViewAdvancedC.exe +Waiting for process to complete. +Process completed. + + + +Runs a process and waits for it to complete. + +cmd.exe /c taskkill /IM +ArchivToolExtAdvanced.exe +shell=True + +Starting process: +"cmd.exe /c taskkill /IM" ArchivToolExtAdvanced.exe +Waiting for process to complete. +Process completed. + + + +Runs a process and waits for it to complete. + +cmd.exe /c taskkill /IM +archtool.exe +shell=True + +Starting process: +"cmd.exe /c taskkill /IM" archtool.exe +Waiting for process to complete. +Process completed. + + + + + + +Runs a process and waits for it to complete. + +C:\\ProgramData\\checkmk\\agent\\robot\\archivetool\\ArchivetoolConfig\\sva_${LKR_LC} konfiguration.bat + +Starting process: +"C:\ProgramData\checkmk\agent\robot\archivetool\ArchivetoolConfig\sva_ow konfiguration.bat" +Waiting for process to complete. +Process completed. + + + +Launches an application. + +"${APP}" +alias=archivetool + + + + +Makes a variable available everywhere within the scope of the current suite. + +${APPOPEN} +${True} + +${APPOPEN} = True + + + + + + + +login_username +timeout=10 + + +${loc} + + +Runs the given keyword with the given arguments, if ``condition`` is true. + +'${image}' in ${lkr_loc_img} +Change Image Folder +${imgpath}\\${LKR_UC} + + + + +Tries to locate given image from the screen for given time. + +${image} +timeout=${timeout} + + +${loc} + +Image "login_username" found at (227, 149) +${loc} = (227, 149) + + + +Runs the given keyword with the given arguments, if ``condition`` is true. + +'${image}' in ${lkr_loc_img} +Change Image Folder +${imgpath} + + + +${loc} = (227, 149) + + + +Finds the reference image on screen and clicks it once. + +login_username + +Image "C:\ProgramData\checkmk\agent\robot\archivetool\images\login_username.png" found at Box(left=182, top=134, width=90, height=30) +Clicking image "login_username" in position (227, 149) + + + +Pauses the test executed for the given time. + +0.2 + +Slept 200 milliseconds + + + + +login_username +10 +20 +${user} + + + +${image} +${timeout} + + +${loc} + + +Runs the given keyword with the given arguments, if ``condition`` is true. + +'${image}' in ${lkr_loc_img} +Change Image Folder +${imgpath}\\${LKR_UC} + + + + +Tries to locate given image from the screen for given time. + +${image} +timeout=${timeout} + + +${loc} + +Image "login_username" found at (227, 149) +${loc} = (227, 149) + + + +Runs the given keyword with the given arguments, if ``condition`` is true. + +'${image}' in ${lkr_loc_img} +Change Image Folder +${imgpath} + + + +${loc} = (227, 149) + + + +Clicks right of given location by given offset. + +${loc} +${offset} + +Clicking 1 time(s) at (247, 149) with left mouse button at interval 0.000000 + + + +Type text and keyboard keys. + +@{text} + + + + + + +Pauses the test executed for the given time. + +0.2 + +Slept 200 milliseconds + + + +Type text and keyboard keys. + +Key.tab + + + + +Pauses the test executed for the given time. + +0.2 + +Slept 200 milliseconds + + + +Type text and keyboard keys. + +${password} +Key.enter +Key.enter + + + + + +archiv_vista_warn +timeout=5 + + + +${image} +${timeout} + + +${loc} + + +Runs the given keyword with the given arguments, if ``condition`` is true. + +'${image}' in ${lkr_loc_img} +Change Image Folder +${imgpath}\\${LKR_UC} + + + + +Tries to locate given image from the screen for given time. + +${image} +timeout=${timeout} + + +${loc} + +Image "archiv_vista_warn" found at (845, 559) +${loc} = (845, 559) + + + +Runs the given keyword with the given arguments, if ``condition`` is true. + +'${image}' in ${lkr_loc_img} +Change Image Folder +${imgpath} + + + +${loc} = (845, 559) + + + + +${loc} + + +Moves the mouse pointer to an absolute coordinates. + +${loc} + + + + +Clicks with the specified mouse button. + + + + + + + +Type text and keyboard keys. + +Key.enter + + + + +Tries to locate given image from the screen for given time. + +aae_toolbar +timeout=10 + +Image "aae_toolbar" found at (506, 709) + + + + + + +Returns ``True`` if reference image was found on screen or +``False`` otherwise. Never fails. + +aae_vorbelegung_checked + + +${vorbelegt_checked} + +${vorbelegt_checked} = False + + + +Runs the given keyword with the given arguments, if ``condition`` is true. + +${vorbelegt_checked}==${True} +Click Image +aae_vorbelegung_checked + + + + + + +Returns the given values which can then be assigned to a variables. + +0 + + +${i} + +${i} = 0 + + + + + + +${lkr_docs}[${i}] +${anz_seiten} + + +Makes a variable available everywhere within the scope of the current test. + +${dokid} +${lkr_doc} + +${dokid} = 4743187 + + + + +aae_dokumentennr +5 +100 +${lkr_doc} + + + +${image} +${timeout} + + +${loc} + + +Runs the given keyword with the given arguments, if ``condition`` is true. + +'${image}' in ${lkr_loc_img} +Change Image Folder +${imgpath}\\${LKR_UC} + + + + +Tries to locate given image from the screen for given time. + +${image} +timeout=${timeout} + + +${loc} + +Image "aae_dokumentennr" found at (452, 463) +${loc} = (452, 463) + + + +Runs the given keyword with the given arguments, if ``condition`` is true. + +'${image}' in ${lkr_loc_img} +Change Image Folder +${imgpath} + + + +${loc} = (452, 463) + + + +Clicks right of given location by given offset. + +${loc} +${offset} + +Clicking 1 time(s) at (552, 463) with left mouse button at interval 0.000000 + + + +Type text and keyboard keys. + +@{text} + + + + + + +Type text and keyboard keys. + +Key.enter + + + + + +aae_treffer_1 +timeout=10 + + + +${image} +${timeout} + + +${loc} + + +Runs the given keyword with the given arguments, if ``condition`` is true. + +'${image}' in ${lkr_loc_img} +Change Image Folder +${imgpath}\\${LKR_UC} + + + + +Tries to locate given image from the screen for given time. + +${image} +timeout=${timeout} + + +${loc} + +Image "aae_treffer_1" found at (870, 745) +${loc} = (870, 745) + + + +Runs the given keyword with the given arguments, if ``condition`` is true. + +'${image}' in ${lkr_loc_img} +Change Image Folder +${imgpath} + + + +${loc} = (870, 745) + + + + +${loc} + + +Moves the mouse pointer to an absolute coordinates. + +${loc} + + + + +Clicks with the specified mouse button. + + + + + + + +Type text and keyboard keys. + +Key.Tab +Key.Tab +Key.Tab +Key.Tab +Key.right + + + + + +aae_zeile_markiert +timeout=10 + + + +${image} +${timeout} + + +${loc} + + +Runs the given keyword with the given arguments, if ``condition`` is true. + +'${image}' in ${lkr_loc_img} +Change Image Folder +${imgpath}\\${LKR_UC} + + + + +Tries to locate given image from the screen for given time. + +${image} +timeout=${timeout} + + +${loc} + +Image "aae_zeile_markiert" found at (423, 786) +${loc} = (423, 786) + + + +Runs the given keyword with the given arguments, if ``condition`` is true. + +'${image}' in ${lkr_loc_img} +Change Image Folder +${imgpath} + + + +${loc} = (423, 786) + + + + +${loc} + + +Moves the mouse pointer to an absolute coordinates. + +${loc} + + + + +Clicks with the specified mouse button. + + + + + + + + +aae_viewer_b +timeout=10 + + + +${image} +${timeout} + + +${loc} + + +Runs the given keyword with the given arguments, if ``condition`` is true. + +'${image}' in ${lkr_loc_img} +Change Image Folder +${imgpath}\\${LKR_UC} + + + + +Tries to locate given image from the screen for given time. + +${image} +timeout=${timeout} + + +${loc} + +Image "aae_viewer_b" found at (641, 709) +${loc} = (641, 709) + + + +Runs the given keyword with the given arguments, if ``condition`` is true. + +'${image}' in ${lkr_loc_img} +Change Image Folder +${imgpath} + + + +${loc} = (641, 709) + + + + +${loc} + + +Moves the mouse pointer to an absolute coordinates. + +${loc} + + + + +Clicks with the specified mouse button. + + + + + + + + +bviewer_opened +10 + + +Runs the given keyword with the given arguments, if ``condition`` is true. + +'${image}' in ${lkr_loc_img} +Change Image Folder +${imgpath}\\${LKR_UC} + + + + +Tries to locate given image from the screen for given time. + +${image} +timeout=${timeout} + + +${loc} + +Image "bviewer_opened" found at (652, 94) +${loc} = (652, 94) + + + +Runs the given keyword with the given arguments, if ``condition`` is true. + +'${image}' in ${lkr_loc_img} +Change Image Folder +${imgpath} + + + + + + +Pauses the test executed for the given time. + +0.5 + +Slept 500 milliseconds + + + + +bviewer_opened +timeout=10 + + + +${image} +${timeout} + + +${loc} + + +Runs the given keyword with the given arguments, if ``condition`` is true. + +'${image}' in ${lkr_loc_img} +Change Image Folder +${imgpath}\\${LKR_UC} + + + + +Tries to locate given image from the screen for given time. + +${image} +timeout=${timeout} + + +${loc} + +Image "bviewer_opened" found at (652, 94) +${loc} = (652, 94) + + + +Runs the given keyword with the given arguments, if ``condition`` is true. + +'${image}' in ${lkr_loc_img} +Change Image Folder +${imgpath} + + + +${loc} = (652, 94) + + + + +${loc} + + +Moves the mouse pointer to an absolute coordinates. + +${loc} + + + + +Clicks with the specified mouse button. + + + + + + + +Pauses the test executed for the given time. + +0.5 + +Slept 500 milliseconds + + + +Press given keyboard keys. + +Key.Win +Key.Up + + + + +Returns the given values which can then be assigned to a variables. + +ARCHIVETOOL_DOKU_${LKR_UC}_${anz_seiten} + + +${search_image} + +${search_image} = ARCHIVETOOL_DOKU_OW_30 + + + + +bviewer_opened +timeout=10 + + + +${image} +${timeout} + + +${loc} + + +Runs the given keyword with the given arguments, if ``condition`` is true. + +'${image}' in ${lkr_loc_img} +Change Image Folder +${imgpath}\\${LKR_UC} + + + + +Tries to locate given image from the screen for given time. + +${image} +timeout=${timeout} + + +${loc} + +Image "bviewer_opened" found at (11, 85) +${loc} = (11, 85) + + + +Runs the given keyword with the given arguments, if ``condition`` is true. + +'${image}' in ${lkr_loc_img} +Change Image Folder +${imgpath} + + + +${loc} = (11, 85) + + + + +${loc} + + +Moves the mouse pointer to an absolute coordinates. + +${loc} + + + + +Clicks with the specified mouse button. + + + + + + + +Tries to locate given image from the screen for given time. + +${search_image} +timeout=90 + +Image "ARCHIVETOOL_DOKU_OW_30" found at (264, 265) + + + +Press given keyboard keys. + +Key.Alt +Key.F4 + + + + + + + +aae_suche_clear +timeout=5 + + + +${image} +${timeout} + + +${loc} + + +Runs the given keyword with the given arguments, if ``condition`` is true. + +'${image}' in ${lkr_loc_img} +Change Image Folder +${imgpath}\\${LKR_UC} + + + + +Tries to locate given image from the screen for given time. + +${image} +timeout=${timeout} + + +${loc} + +Image "aae_suche_clear" found at (404, 709) +${loc} = (404, 709) + + + +Runs the given keyword with the given arguments, if ``condition`` is true. + +'${image}' in ${lkr_loc_img} +Change Image Folder +${imgpath} + + + +${loc} = (404, 709) + + + + +${loc} + + +Moves the mouse pointer to an absolute coordinates. + +${loc} + + + + +Clicks with the specified mouse button. + + + + + + + + +aae_dokumentennr_bereit +timeout=5 + + +Runs the given keyword with the given arguments, if ``condition`` is true. + +'${image}' in ${lkr_loc_img} +Change Image Folder +${imgpath}\\${LKR_UC} + + + + +Tries to locate given image from the screen for given time. + +${image} +timeout=${timeout} + + +${loc} + +Image "aae_dokumentennr_bereit" found at (569, 464) +${loc} = (569, 464) + + + +Runs the given keyword with the given arguments, if ``condition`` is true. + +'${image}' in ${lkr_loc_img} +Change Image Folder +${imgpath} + + + + + + +Evaluates the given expression in Python and returns the result. + +${i} + 1 + + +${i} + +${i} = 1 + + + + + + + +${lkr_docs}[${i}] +${anz_seiten} + + +Makes a variable available everywhere within the scope of the current test. + +${dokid} +${lkr_doc} + +${dokid} = 4743199 + + + + +aae_dokumentennr +5 +100 +${lkr_doc} + + + +${image} +${timeout} + + +${loc} + + +Runs the given keyword with the given arguments, if ``condition`` is true. + +'${image}' in ${lkr_loc_img} +Change Image Folder +${imgpath}\\${LKR_UC} + + + + +Tries to locate given image from the screen for given time. + +${image} +timeout=${timeout} + + +${loc} + +Image "aae_dokumentennr" found at (452, 463) +${loc} = (452, 463) + + + +Runs the given keyword with the given arguments, if ``condition`` is true. + +'${image}' in ${lkr_loc_img} +Change Image Folder +${imgpath} + + + +${loc} = (452, 463) + + + +Clicks right of given location by given offset. + +${loc} +${offset} + +Clicking 1 time(s) at (552, 463) with left mouse button at interval 0.000000 + + + +Type text and keyboard keys. + +@{text} + + + + + + +Type text and keyboard keys. + +Key.enter + + + + + +aae_treffer_1 +timeout=10 + + + +${image} +${timeout} + + +${loc} + + +Runs the given keyword with the given arguments, if ``condition`` is true. + +'${image}' in ${lkr_loc_img} +Change Image Folder +${imgpath}\\${LKR_UC} + + + + +Tries to locate given image from the screen for given time. + +${image} +timeout=${timeout} + + +${loc} + +Image "aae_treffer_1" found at (870, 745) +${loc} = (870, 745) + + + +Runs the given keyword with the given arguments, if ``condition`` is true. + +'${image}' in ${lkr_loc_img} +Change Image Folder +${imgpath} + + + +${loc} = (870, 745) + + + + +${loc} + + +Moves the mouse pointer to an absolute coordinates. + +${loc} + + + + +Clicks with the specified mouse button. + + + + + + + +Type text and keyboard keys. + +Key.Tab +Key.Tab +Key.Tab +Key.Tab +Key.right + + + + + +aae_zeile_markiert +timeout=10 + + + +${image} +${timeout} + + +${loc} + + +Runs the given keyword with the given arguments, if ``condition`` is true. + +'${image}' in ${lkr_loc_img} +Change Image Folder +${imgpath}\\${LKR_UC} + + + + +Tries to locate given image from the screen for given time. + +${image} +timeout=${timeout} + + +${loc} + +Image "aae_zeile_markiert" found at (423, 786) +${loc} = (423, 786) + + + +Runs the given keyword with the given arguments, if ``condition`` is true. + +'${image}' in ${lkr_loc_img} +Change Image Folder +${imgpath} + + + +${loc} = (423, 786) + + + + +${loc} + + +Moves the mouse pointer to an absolute coordinates. + +${loc} + + + + +Clicks with the specified mouse button. + + + + + + + + +aae_viewer_b +timeout=10 + + + +${image} +${timeout} + + +${loc} + + +Runs the given keyword with the given arguments, if ``condition`` is true. + +'${image}' in ${lkr_loc_img} +Change Image Folder +${imgpath}\\${LKR_UC} + + + + +Tries to locate given image from the screen for given time. + +${image} +timeout=${timeout} + + +${loc} + +Image "aae_viewer_b" found at (641, 709) +${loc} = (641, 709) + + + +Runs the given keyword with the given arguments, if ``condition`` is true. + +'${image}' in ${lkr_loc_img} +Change Image Folder +${imgpath} + + + +${loc} = (641, 709) + + + + +${loc} + + +Moves the mouse pointer to an absolute coordinates. + +${loc} + + + + +Clicks with the specified mouse button. + + + + + + + + +bviewer_opened +10 + + +Runs the given keyword with the given arguments, if ``condition`` is true. + +'${image}' in ${lkr_loc_img} +Change Image Folder +${imgpath}\\${LKR_UC} + + + + +Tries to locate given image from the screen for given time. + +${image} +timeout=${timeout} + + +${loc} + +Image "bviewer_opened" found at (652, 94) +${loc} = (652, 94) + + + +Runs the given keyword with the given arguments, if ``condition`` is true. + +'${image}' in ${lkr_loc_img} +Change Image Folder +${imgpath} + + + + + + +Pauses the test executed for the given time. + +0.5 + +Slept 500 milliseconds + + + + +bviewer_opened +timeout=10 + + + +${image} +${timeout} + + +${loc} + + +Runs the given keyword with the given arguments, if ``condition`` is true. + +'${image}' in ${lkr_loc_img} +Change Image Folder +${imgpath}\\${LKR_UC} + + + + +Tries to locate given image from the screen for given time. + +${image} +timeout=${timeout} + + +${loc} + +Image "bviewer_opened" found at (652, 94) +${loc} = (652, 94) + + + +Runs the given keyword with the given arguments, if ``condition`` is true. + +'${image}' in ${lkr_loc_img} +Change Image Folder +${imgpath} + + + +${loc} = (652, 94) + + + + +${loc} + + +Moves the mouse pointer to an absolute coordinates. + +${loc} + + + + +Clicks with the specified mouse button. + + + + + + + +Pauses the test executed for the given time. + +0.5 + +Slept 500 milliseconds + + + +Press given keyboard keys. + +Key.Win +Key.Up + + + + +Returns the given values which can then be assigned to a variables. + +ARCHIVETOOL_DOKU_${LKR_UC}_${anz_seiten} + + +${search_image} + +${search_image} = ARCHIVETOOL_DOKU_OW_100 + + + + +bviewer_opened +timeout=10 + + + +${image} +${timeout} + + +${loc} + + +Runs the given keyword with the given arguments, if ``condition`` is true. + +'${image}' in ${lkr_loc_img} +Change Image Folder +${imgpath}\\${LKR_UC} + + + + +Tries to locate given image from the screen for given time. + +${image} +timeout=${timeout} + + +${loc} + +Image "bviewer_opened" found at (11, 85) +${loc} = (11, 85) + + + +Runs the given keyword with the given arguments, if ``condition`` is true. + +'${image}' in ${lkr_loc_img} +Change Image Folder +${imgpath} + + + +${loc} = (11, 85) + + + + +${loc} + + +Moves the mouse pointer to an absolute coordinates. + +${loc} + + + + +Clicks with the specified mouse button. + + + + + + + +Tries to locate given image from the screen for given time. + +${search_image} +timeout=90 + +Image "ARCHIVETOOL_DOKU_OW_100" found at (280, 250) + + + +Press given keyboard keys. + +Key.Alt +Key.F4 + + + + + + + +aae_suche_clear +timeout=5 + + + +${image} +${timeout} + + +${loc} + + +Runs the given keyword with the given arguments, if ``condition`` is true. + +'${image}' in ${lkr_loc_img} +Change Image Folder +${imgpath}\\${LKR_UC} + + + + +Tries to locate given image from the screen for given time. + +${image} +timeout=${timeout} + + +${loc} + +Image "aae_suche_clear" found at (404, 709) +${loc} = (404, 709) + + + +Runs the given keyword with the given arguments, if ``condition`` is true. + +'${image}' in ${lkr_loc_img} +Change Image Folder +${imgpath} + + + +${loc} = (404, 709) + + + + +${loc} + + +Moves the mouse pointer to an absolute coordinates. + +${loc} + + + + +Clicks with the specified mouse button. + + + + + + + + +aae_dokumentennr_bereit +timeout=5 + + +Runs the given keyword with the given arguments, if ``condition`` is true. + +'${image}' in ${lkr_loc_img} +Change Image Folder +${imgpath}\\${LKR_UC} + + + + +Tries to locate given image from the screen for given time. + +${image} +timeout=${timeout} + + +${loc} + +Image "aae_dokumentennr_bereit" found at (569, 464) +${loc} = (569, 464) + + + +Runs the given keyword with the given arguments, if ``condition`` is true. + +'${image}' in ${lkr_loc_img} +Change Image Folder +${imgpath} + + + + + + +Evaluates the given expression in Python and returns the result. + +${i} + 1 + + +${i} + +${i} = 2 + + + + + + + +${lkr_docs}[${i}] +${anz_seiten} + + +Makes a variable available everywhere within the scope of the current test. + +${dokid} +${lkr_doc} + +${dokid} = 4743308 + + + + +aae_dokumentennr +5 +100 +${lkr_doc} + + + +${image} +${timeout} + + +${loc} + + +Runs the given keyword with the given arguments, if ``condition`` is true. + +'${image}' in ${lkr_loc_img} +Change Image Folder +${imgpath}\\${LKR_UC} + + + + +Tries to locate given image from the screen for given time. + +${image} +timeout=${timeout} + + +${loc} + +Image "aae_dokumentennr" found at (452, 463) +${loc} = (452, 463) + + + +Runs the given keyword with the given arguments, if ``condition`` is true. + +'${image}' in ${lkr_loc_img} +Change Image Folder +${imgpath} + + + +${loc} = (452, 463) + + + +Clicks right of given location by given offset. + +${loc} +${offset} + +Clicking 1 time(s) at (552, 463) with left mouse button at interval 0.000000 + + + +Type text and keyboard keys. + +@{text} + + + + + + +Type text and keyboard keys. + +Key.enter + + + + + +aae_treffer_1 +timeout=10 + + + +${image} +${timeout} + + +${loc} + + +Runs the given keyword with the given arguments, if ``condition`` is true. + +'${image}' in ${lkr_loc_img} +Change Image Folder +${imgpath}\\${LKR_UC} + + + + +Tries to locate given image from the screen for given time. + +${image} +timeout=${timeout} + + +${loc} + +Image "aae_treffer_1" found at (870, 745) +${loc} = (870, 745) + + + +Runs the given keyword with the given arguments, if ``condition`` is true. + +'${image}' in ${lkr_loc_img} +Change Image Folder +${imgpath} + + + +${loc} = (870, 745) + + + + +${loc} + + +Moves the mouse pointer to an absolute coordinates. + +${loc} + + + + +Clicks with the specified mouse button. + + + + + + + +Type text and keyboard keys. + +Key.Tab +Key.Tab +Key.Tab +Key.Tab +Key.right + + + + + +aae_zeile_markiert +timeout=10 + + + +${image} +${timeout} + + +${loc} + + +Runs the given keyword with the given arguments, if ``condition`` is true. + +'${image}' in ${lkr_loc_img} +Change Image Folder +${imgpath}\\${LKR_UC} + + + + +Tries to locate given image from the screen for given time. + +${image} +timeout=${timeout} + + +${loc} + +Image "aae_zeile_markiert" found at (423, 786) +${loc} = (423, 786) + + + +Runs the given keyword with the given arguments, if ``condition`` is true. + +'${image}' in ${lkr_loc_img} +Change Image Folder +${imgpath} + + + +${loc} = (423, 786) + + + + +${loc} + + +Moves the mouse pointer to an absolute coordinates. + +${loc} + + + + +Clicks with the specified mouse button. + + + + + + + + +aae_viewer_b +timeout=10 + + + +${image} +${timeout} + + +${loc} + + +Runs the given keyword with the given arguments, if ``condition`` is true. + +'${image}' in ${lkr_loc_img} +Change Image Folder +${imgpath}\\${LKR_UC} + + + + +Tries to locate given image from the screen for given time. + +${image} +timeout=${timeout} + + +${loc} + +Image "aae_viewer_b" found at (641, 709) +${loc} = (641, 709) + + + +Runs the given keyword with the given arguments, if ``condition`` is true. + +'${image}' in ${lkr_loc_img} +Change Image Folder +${imgpath} + + + +${loc} = (641, 709) + + + + +${loc} + + +Moves the mouse pointer to an absolute coordinates. + +${loc} + + + + +Clicks with the specified mouse button. + + + + + + + + +bviewer_opened +10 + + +Runs the given keyword with the given arguments, if ``condition`` is true. + +'${image}' in ${lkr_loc_img} +Change Image Folder +${imgpath}\\${LKR_UC} + + + + +Tries to locate given image from the screen for given time. + +${image} +timeout=${timeout} + + +${loc} + +Image "bviewer_opened" found at (652, 94) +${loc} = (652, 94) + + + +Runs the given keyword with the given arguments, if ``condition`` is true. + +'${image}' in ${lkr_loc_img} +Change Image Folder +${imgpath} + + + + + + +Pauses the test executed for the given time. + +0.5 + +Slept 500 milliseconds + + + + +bviewer_opened +timeout=10 + + + +${image} +${timeout} + + +${loc} + + +Runs the given keyword with the given arguments, if ``condition`` is true. + +'${image}' in ${lkr_loc_img} +Change Image Folder +${imgpath}\\${LKR_UC} + + + + +Tries to locate given image from the screen for given time. + +${image} +timeout=${timeout} + + +${loc} + +Image "bviewer_opened" found at (652, 94) +${loc} = (652, 94) + + + +Runs the given keyword with the given arguments, if ``condition`` is true. + +'${image}' in ${lkr_loc_img} +Change Image Folder +${imgpath} + + + +${loc} = (652, 94) + + + + +${loc} + + +Moves the mouse pointer to an absolute coordinates. + +${loc} + + + + +Clicks with the specified mouse button. + + + + + + + +Pauses the test executed for the given time. + +0.5 + +Slept 500 milliseconds + + + +Press given keyboard keys. + +Key.Win +Key.Up + + + + +Returns the given values which can then be assigned to a variables. + +ARCHIVETOOL_DOKU_${LKR_UC}_${anz_seiten} + + +${search_image} + +${search_image} = ARCHIVETOOL_DOKU_OW_300 + + + + +bviewer_opened +timeout=10 + + + +${image} +${timeout} + + +${loc} + + +Runs the given keyword with the given arguments, if ``condition`` is true. + +'${image}' in ${lkr_loc_img} +Change Image Folder +${imgpath}\\${LKR_UC} + + + + +Tries to locate given image from the screen for given time. + +${image} +timeout=${timeout} + + +${loc} + +Image "bviewer_opened" found at (11, 85) +${loc} = (11, 85) + + + +Runs the given keyword with the given arguments, if ``condition`` is true. + +'${image}' in ${lkr_loc_img} +Change Image Folder +${imgpath} + + + +${loc} = (11, 85) + + + + +${loc} + + +Moves the mouse pointer to an absolute coordinates. + +${loc} + + + + +Clicks with the specified mouse button. + + + + + + + +Tries to locate given image from the screen for given time. + +${search_image} +timeout=90 + +Image "ARCHIVETOOL_DOKU_OW_300" found at (267, 226) + + + +Press given keyboard keys. + +Key.Alt +Key.F4 + + + + + + + +aae_suche_clear +timeout=5 + + + +${image} +${timeout} + + +${loc} + + +Runs the given keyword with the given arguments, if ``condition`` is true. + +'${image}' in ${lkr_loc_img} +Change Image Folder +${imgpath}\\${LKR_UC} + + + + +Tries to locate given image from the screen for given time. + +${image} +timeout=${timeout} + + +${loc} + +Image "aae_suche_clear" found at (404, 709) +${loc} = (404, 709) + + + +Runs the given keyword with the given arguments, if ``condition`` is true. + +'${image}' in ${lkr_loc_img} +Change Image Folder +${imgpath} + + + +${loc} = (404, 709) + + + + +${loc} + + +Moves the mouse pointer to an absolute coordinates. + +${loc} + + + + +Clicks with the specified mouse button. + + + + + + + + +aae_dokumentennr_bereit +timeout=5 + + +Runs the given keyword with the given arguments, if ``condition`` is true. + +'${image}' in ${lkr_loc_img} +Change Image Folder +${imgpath}\\${LKR_UC} + + + + +Tries to locate given image from the screen for given time. + +${image} +timeout=${timeout} + + +${loc} + +Image "aae_dokumentennr_bereit" found at (569, 464) +${loc} = (569, 464) + + + +Runs the given keyword with the given arguments, if ``condition`` is true. + +'${image}' in ${lkr_loc_img} +Change Image Folder +${imgpath} + + + + + + +Evaluates the given expression in Python and returns the result. + +${i} + 1 + + +${i} + +${i} = 3 + + + + + + + + + + +Runs the given keyword with the given arguments, if ``condition`` is true. + +${APPOPEN}==${True} +Terminate Application +alias=archivetool + + +Terminates the process launched with `Launch Application` with +given ``alias``. + +alias=archivetool + + + + + + +Runs the given keyword with the given arguments, if ``condition`` is true. + +${APPOPEN}==${True} +Quit All Viewer Processes + + + +Runs a process and waits for it to complete. + +cmd.exe /c taskkill /IM ArchiveViewAdvancedA.exe +shell=True + +Starting process: +cmd.exe /c taskkill /IM ArchiveViewAdvancedA.exe +Waiting for process to complete. +Process completed. + + + +Runs a process and waits for it to complete. + +cmd.exe /c taskkill /IM ArchiveViewAdvancedB.exe +shell=True + +Starting process: +cmd.exe /c taskkill /IM ArchiveViewAdvancedB.exe +Waiting for process to complete. +Process completed. + + + +Runs a process and waits for it to complete. + +cmd.exe /c taskkill /IM ArchiveViewAdvancedC.exe +shell=True + +Starting process: +cmd.exe /c taskkill /IM ArchiveViewAdvancedC.exe +Waiting for process to complete. +Process completed. + + + +Runs a process and waits for it to complete. + +cmd.exe /c taskkill /IM +ArchivToolExtAdvanced.exe +shell=True + +Starting process: +"cmd.exe /c taskkill /IM" ArchivToolExtAdvanced.exe +Waiting for process to complete. +Process completed. + + + +Runs a process and waits for it to complete. + +cmd.exe /c taskkill /IM +archtool.exe +shell=True + +Starting process: +"cmd.exe /c taskkill /IM" archtool.exe +Waiting for process to complete. +Process completed. + + + + + + + +Makes a variable available everywhere within the scope of the current suite. + +${APPOPEN} +${False} + +${APPOPEN} = False + + + + + + + + + +SG + + +Sets where all reference images are stored. + +${imgpath} + + + + + +${lkr_uc} + + +Makes a variable available everywhere within the scope of the current test. + +${LKR_UC} +${lkr_uc} + +${LKR_UC} = SG + + + +Converts string to lower case. + +${lkr_uc} + + +${lkr_lc} + +${lkr_lc} = sg + + + +Makes a variable available everywhere within the scope of the current test. + +${LKR_LC} +${lkr_lc} + +${LKR_LC} = sg + + + +Makes a variable available everywhere within the scope of the current test. + +${lkr_docs} +${TESTDATA['${LKR_UC}']['docs']} + +${lkr_docs} = ['42577586', '42577888', '42577943'] + + + +Makes a variable available everywhere within the scope of the current test. + +${lkr_cred} +${TESTDATA['${LKR_UC}']['credentials']} + +${lkr_cred} = ['sgabx', 'crypt:cQuuuXSlozF7qXM2Rc2UYD/7JP+0tjiJ8qreN0MwVz1o3WCWZ7yCH9ZQh2AiZ+M6p5p40G7kFesz1fc='] + + + +Makes a variable available everywhere within the scope of the current test. + +${lkr_loc_img} +${TESTDATA['${LKR_UC}']['loc_img']} + +${lkr_loc_img} = [] + + + +Makes a variable available everywhere within the scope of the current test. + +${user} +${lkr_cred}[0] + +${user} = sgabx + + + +Decrypts cipher text and returns the plain text. + +${lkr_cred}[1] + + +${password} + +Decrypting text and return value. +${password} = *** + + + +Makes a variable available everywhere within the scope of the current test. + +${password} +${password} + +${password} = *** + + + + + + +Runs a process and waits for it to complete. + +cmd.exe /c taskkill /IM ArchiveViewAdvancedA.exe +shell=True + +Starting process: +cmd.exe /c taskkill /IM ArchiveViewAdvancedA.exe +Waiting for process to complete. +Process completed. + + + +Runs a process and waits for it to complete. + +cmd.exe /c taskkill /IM ArchiveViewAdvancedB.exe +shell=True + +Starting process: +cmd.exe /c taskkill /IM ArchiveViewAdvancedB.exe +Waiting for process to complete. +Process completed. + + + +Runs a process and waits for it to complete. + +cmd.exe /c taskkill /IM ArchiveViewAdvancedC.exe +shell=True + +Starting process: +cmd.exe /c taskkill /IM ArchiveViewAdvancedC.exe +Waiting for process to complete. +Process completed. + + + +Runs a process and waits for it to complete. + +cmd.exe /c taskkill /IM +ArchivToolExtAdvanced.exe +shell=True + +Starting process: +"cmd.exe /c taskkill /IM" ArchivToolExtAdvanced.exe +Waiting for process to complete. +Process completed. + + + +Runs a process and waits for it to complete. + +cmd.exe /c taskkill /IM +archtool.exe +shell=True + +Starting process: +"cmd.exe /c taskkill /IM" archtool.exe +Waiting for process to complete. +Process completed. + + + + + + +Runs a process and waits for it to complete. + +C:\\ProgramData\\checkmk\\agent\\robot\\archivetool\\ArchivetoolConfig\\sva_${LKR_LC} konfiguration.bat + +Starting process: +"C:\ProgramData\checkmk\agent\robot\archivetool\ArchivetoolConfig\sva_sg konfiguration.bat" +Waiting for process to complete. +Process completed. + + + +Launches an application. + +"${APP}" +alias=archivetool + + + + +Makes a variable available everywhere within the scope of the current suite. + +${APPOPEN} +${True} + +${APPOPEN} = True + + + + + + + +login_username +timeout=10 + + +${loc} + + +Runs the given keyword with the given arguments, if ``condition`` is true. + +'${image}' in ${lkr_loc_img} +Change Image Folder +${imgpath}\\${LKR_UC} + + + + +Tries to locate given image from the screen for given time. + +${image} +timeout=${timeout} + + +${loc} + +Image "login_username" found at (227, 149) +${loc} = (227, 149) + + + +Runs the given keyword with the given arguments, if ``condition`` is true. + +'${image}' in ${lkr_loc_img} +Change Image Folder +${imgpath} + + + +${loc} = (227, 149) + + + +Finds the reference image on screen and clicks it once. + +login_username + +Image "C:\ProgramData\checkmk\agent\robot\archivetool\images\login_username.png" found at Box(left=182, top=134, width=90, height=30) +Clicking image "login_username" in position (227, 149) + + + +Pauses the test executed for the given time. + +0.2 + +Slept 200 milliseconds + + + + +login_username +10 +20 +${user} + + + +${image} +${timeout} + + +${loc} + + +Runs the given keyword with the given arguments, if ``condition`` is true. + +'${image}' in ${lkr_loc_img} +Change Image Folder +${imgpath}\\${LKR_UC} + + + + +Tries to locate given image from the screen for given time. + +${image} +timeout=${timeout} + + +${loc} + +Image "login_username" found at (227, 149) +${loc} = (227, 149) + + + +Runs the given keyword with the given arguments, if ``condition`` is true. + +'${image}' in ${lkr_loc_img} +Change Image Folder +${imgpath} + + + +${loc} = (227, 149) + + + +Clicks right of given location by given offset. + +${loc} +${offset} + +Clicking 1 time(s) at (247, 149) with left mouse button at interval 0.000000 + + + +Type text and keyboard keys. + +@{text} + + + + + + +Pauses the test executed for the given time. + +0.2 + +Slept 200 milliseconds + + + +Type text and keyboard keys. + +Key.tab + + + + +Pauses the test executed for the given time. + +0.2 + +Slept 200 milliseconds + + + +Type text and keyboard keys. + +${password} +Key.enter +Key.enter + + + + + +archiv_vista_warn +timeout=5 + + + +${image} +${timeout} + + +${loc} + + +Runs the given keyword with the given arguments, if ``condition`` is true. + +'${image}' in ${lkr_loc_img} +Change Image Folder +${imgpath}\\${LKR_UC} + + + + +Tries to locate given image from the screen for given time. + +${image} +timeout=${timeout} + + +${loc} + +Image "archiv_vista_warn" found at (845, 559) +${loc} = (845, 559) + + + +Runs the given keyword with the given arguments, if ``condition`` is true. + +'${image}' in ${lkr_loc_img} +Change Image Folder +${imgpath} + + + +${loc} = (845, 559) + + + + +${loc} + + +Moves the mouse pointer to an absolute coordinates. + +${loc} + + + + +Clicks with the specified mouse button. + + + + + + + +Type text and keyboard keys. + +Key.enter + + + + +Tries to locate given image from the screen for given time. + +aae_toolbar +timeout=10 + +Image "aae_toolbar" found at (506, 709) + + + + + + +Returns ``True`` if reference image was found on screen or +``False`` otherwise. Never fails. + +aae_vorbelegung_checked + + +${vorbelegt_checked} + +${vorbelegt_checked} = False + + + +Runs the given keyword with the given arguments, if ``condition`` is true. + +${vorbelegt_checked}==${True} +Click Image +aae_vorbelegung_checked + + + + + + +Returns the given values which can then be assigned to a variables. + +0 + + +${i} + +${i} = 0 + + + + + + +${lkr_docs}[${i}] +${anz_seiten} + + +Makes a variable available everywhere within the scope of the current test. + +${dokid} +${lkr_doc} + +${dokid} = 42577586 + + + + +aae_dokumentennr +5 +100 +${lkr_doc} + + + +${image} +${timeout} + + +${loc} + + +Runs the given keyword with the given arguments, if ``condition`` is true. + +'${image}' in ${lkr_loc_img} +Change Image Folder +${imgpath}\\${LKR_UC} + + + + +Tries to locate given image from the screen for given time. + +${image} +timeout=${timeout} + + +${loc} + +Image "aae_dokumentennr" found at (452, 463) +${loc} = (452, 463) + + + +Runs the given keyword with the given arguments, if ``condition`` is true. + +'${image}' in ${lkr_loc_img} +Change Image Folder +${imgpath} + + + +${loc} = (452, 463) + + + +Clicks right of given location by given offset. + +${loc} +${offset} + +Clicking 1 time(s) at (552, 463) with left mouse button at interval 0.000000 + + + +Type text and keyboard keys. + +@{text} + + + + + + +Type text and keyboard keys. + +Key.enter + + + + + +aae_treffer_1 +timeout=10 + + + +${image} +${timeout} + + +${loc} + + +Runs the given keyword with the given arguments, if ``condition`` is true. + +'${image}' in ${lkr_loc_img} +Change Image Folder +${imgpath}\\${LKR_UC} + + + + +Tries to locate given image from the screen for given time. + +${image} +timeout=${timeout} + + +${loc} + +Image "aae_treffer_1" found at (870, 745) +${loc} = (870, 745) + + + +Runs the given keyword with the given arguments, if ``condition`` is true. + +'${image}' in ${lkr_loc_img} +Change Image Folder +${imgpath} + + + +${loc} = (870, 745) + + + + +${loc} + + +Moves the mouse pointer to an absolute coordinates. + +${loc} + + + + +Clicks with the specified mouse button. + + + + + + + +Type text and keyboard keys. + +Key.Tab +Key.Tab +Key.Tab +Key.Tab +Key.right + + + + + +aae_zeile_markiert +timeout=10 + + + +${image} +${timeout} + + +${loc} + + +Runs the given keyword with the given arguments, if ``condition`` is true. + +'${image}' in ${lkr_loc_img} +Change Image Folder +${imgpath}\\${LKR_UC} + + + + +Tries to locate given image from the screen for given time. + +${image} +timeout=${timeout} + + +${loc} + +Image "aae_zeile_markiert" found at (423, 786) +${loc} = (423, 786) + + + +Runs the given keyword with the given arguments, if ``condition`` is true. + +'${image}' in ${lkr_loc_img} +Change Image Folder +${imgpath} + + + +${loc} = (423, 786) + + + + +${loc} + + +Moves the mouse pointer to an absolute coordinates. + +${loc} + + + + +Clicks with the specified mouse button. + + + + + + + + +aae_viewer_b +timeout=10 + + + +${image} +${timeout} + + +${loc} + + +Runs the given keyword with the given arguments, if ``condition`` is true. + +'${image}' in ${lkr_loc_img} +Change Image Folder +${imgpath}\\${LKR_UC} + + + + +Tries to locate given image from the screen for given time. + +${image} +timeout=${timeout} + + +${loc} + +Image "aae_viewer_b" found at (641, 709) +${loc} = (641, 709) + + + +Runs the given keyword with the given arguments, if ``condition`` is true. + +'${image}' in ${lkr_loc_img} +Change Image Folder +${imgpath} + + + +${loc} = (641, 709) + + + + +${loc} + + +Moves the mouse pointer to an absolute coordinates. + +${loc} + + + + +Clicks with the specified mouse button. + + + + + + + + +bviewer_opened +10 + + +Runs the given keyword with the given arguments, if ``condition`` is true. + +'${image}' in ${lkr_loc_img} +Change Image Folder +${imgpath}\\${LKR_UC} + + + + +Tries to locate given image from the screen for given time. + +${image} +timeout=${timeout} + + +${loc} + +Image "bviewer_opened" found at (652, 94) +${loc} = (652, 94) + + + +Runs the given keyword with the given arguments, if ``condition`` is true. + +'${image}' in ${lkr_loc_img} +Change Image Folder +${imgpath} + + + + + + +Pauses the test executed for the given time. + +0.5 + +Slept 500 milliseconds + + + + +bviewer_opened +timeout=10 + + + +${image} +${timeout} + + +${loc} + + +Runs the given keyword with the given arguments, if ``condition`` is true. + +'${image}' in ${lkr_loc_img} +Change Image Folder +${imgpath}\\${LKR_UC} + + + + +Tries to locate given image from the screen for given time. + +${image} +timeout=${timeout} + + +${loc} + +Image "bviewer_opened" found at (652, 94) +${loc} = (652, 94) + + + +Runs the given keyword with the given arguments, if ``condition`` is true. + +'${image}' in ${lkr_loc_img} +Change Image Folder +${imgpath} + + + +${loc} = (652, 94) + + + + +${loc} + + +Moves the mouse pointer to an absolute coordinates. + +${loc} + + + + +Clicks with the specified mouse button. + + + + + + + +Pauses the test executed for the given time. + +0.5 + +Slept 500 milliseconds + + + +Press given keyboard keys. + +Key.Win +Key.Up + + + + +Returns the given values which can then be assigned to a variables. + +ARCHIVETOOL_DOKU_${LKR_UC}_${anz_seiten} + + +${search_image} + +${search_image} = ARCHIVETOOL_DOKU_SG_30 + + + + +bviewer_opened +timeout=10 + + + +${image} +${timeout} + + +${loc} + + +Runs the given keyword with the given arguments, if ``condition`` is true. + +'${image}' in ${lkr_loc_img} +Change Image Folder +${imgpath}\\${LKR_UC} + + + + +Tries to locate given image from the screen for given time. + +${image} +timeout=${timeout} + + +${loc} + +Image "bviewer_opened" found at (11, 85) +${loc} = (11, 85) + + + +Runs the given keyword with the given arguments, if ``condition`` is true. + +'${image}' in ${lkr_loc_img} +Change Image Folder +${imgpath} + + + +${loc} = (11, 85) + + + + +${loc} + + +Moves the mouse pointer to an absolute coordinates. + +${loc} + + + + +Clicks with the specified mouse button. + + + + + + + +Tries to locate given image from the screen for given time. + +${search_image} +timeout=90 + +Image "ARCHIVETOOL_DOKU_SG_30" found at (215, 284) + + + +Press given keyboard keys. + +Key.Alt +Key.F4 + + + + + + + +aae_suche_clear +timeout=5 + + + +${image} +${timeout} + + +${loc} + + +Runs the given keyword with the given arguments, if ``condition`` is true. + +'${image}' in ${lkr_loc_img} +Change Image Folder +${imgpath}\\${LKR_UC} + + + + +Tries to locate given image from the screen for given time. + +${image} +timeout=${timeout} + + +${loc} + +Image "aae_suche_clear" found at (404, 709) +${loc} = (404, 709) + + + +Runs the given keyword with the given arguments, if ``condition`` is true. + +'${image}' in ${lkr_loc_img} +Change Image Folder +${imgpath} + + + +${loc} = (404, 709) + + + + +${loc} + + +Moves the mouse pointer to an absolute coordinates. + +${loc} + + + + +Clicks with the specified mouse button. + + + + + + + + +aae_dokumentennr_bereit +timeout=5 + + +Runs the given keyword with the given arguments, if ``condition`` is true. + +'${image}' in ${lkr_loc_img} +Change Image Folder +${imgpath}\\${LKR_UC} + + + + +Tries to locate given image from the screen for given time. + +${image} +timeout=${timeout} + + +${loc} + +Image "aae_dokumentennr_bereit" found at (569, 464) +${loc} = (569, 464) + + + +Runs the given keyword with the given arguments, if ``condition`` is true. + +'${image}' in ${lkr_loc_img} +Change Image Folder +${imgpath} + + + + + + +Evaluates the given expression in Python and returns the result. + +${i} + 1 + + +${i} + +${i} = 1 + + + + + + + +${lkr_docs}[${i}] +${anz_seiten} + + +Makes a variable available everywhere within the scope of the current test. + +${dokid} +${lkr_doc} + +${dokid} = 42577888 + + + + +aae_dokumentennr +5 +100 +${lkr_doc} + + + +${image} +${timeout} + + +${loc} + + +Runs the given keyword with the given arguments, if ``condition`` is true. + +'${image}' in ${lkr_loc_img} +Change Image Folder +${imgpath}\\${LKR_UC} + + + + +Tries to locate given image from the screen for given time. + +${image} +timeout=${timeout} + + +${loc} + +Image "aae_dokumentennr" found at (452, 463) +${loc} = (452, 463) + + + +Runs the given keyword with the given arguments, if ``condition`` is true. + +'${image}' in ${lkr_loc_img} +Change Image Folder +${imgpath} + + + +${loc} = (452, 463) + + + +Clicks right of given location by given offset. + +${loc} +${offset} + +Clicking 1 time(s) at (552, 463) with left mouse button at interval 0.000000 + + + +Type text and keyboard keys. + +@{text} + + + + + + +Type text and keyboard keys. + +Key.enter + + + + + +aae_treffer_1 +timeout=10 + + + +${image} +${timeout} + + +${loc} + + +Runs the given keyword with the given arguments, if ``condition`` is true. + +'${image}' in ${lkr_loc_img} +Change Image Folder +${imgpath}\\${LKR_UC} + + + + +Tries to locate given image from the screen for given time. + +${image} +timeout=${timeout} + + +${loc} + +Image "aae_treffer_1" found at (870, 745) +${loc} = (870, 745) + + + +Runs the given keyword with the given arguments, if ``condition`` is true. + +'${image}' in ${lkr_loc_img} +Change Image Folder +${imgpath} + + + +${loc} = (870, 745) + + + + +${loc} + + +Moves the mouse pointer to an absolute coordinates. + +${loc} + + + + +Clicks with the specified mouse button. + + + + + + + +Type text and keyboard keys. + +Key.Tab +Key.Tab +Key.Tab +Key.Tab +Key.right + + + + + +aae_zeile_markiert +timeout=10 + + + +${image} +${timeout} + + +${loc} + + +Runs the given keyword with the given arguments, if ``condition`` is true. + +'${image}' in ${lkr_loc_img} +Change Image Folder +${imgpath}\\${LKR_UC} + + + + +Tries to locate given image from the screen for given time. + +${image} +timeout=${timeout} + + +${loc} + +Image "aae_zeile_markiert" found at (423, 786) +${loc} = (423, 786) + + + +Runs the given keyword with the given arguments, if ``condition`` is true. + +'${image}' in ${lkr_loc_img} +Change Image Folder +${imgpath} + + + +${loc} = (423, 786) + + + + +${loc} + + +Moves the mouse pointer to an absolute coordinates. + +${loc} + + + + +Clicks with the specified mouse button. + + + + + + + + +aae_viewer_b +timeout=10 + + + +${image} +${timeout} + + +${loc} + + +Runs the given keyword with the given arguments, if ``condition`` is true. + +'${image}' in ${lkr_loc_img} +Change Image Folder +${imgpath}\\${LKR_UC} + + + + +Tries to locate given image from the screen for given time. + +${image} +timeout=${timeout} + + +${loc} + +Image "aae_viewer_b" found at (641, 709) +${loc} = (641, 709) + + + +Runs the given keyword with the given arguments, if ``condition`` is true. + +'${image}' in ${lkr_loc_img} +Change Image Folder +${imgpath} + + + +${loc} = (641, 709) + + + + +${loc} + + +Moves the mouse pointer to an absolute coordinates. + +${loc} + + + + +Clicks with the specified mouse button. + + + + + + + + +bviewer_opened +10 + + +Runs the given keyword with the given arguments, if ``condition`` is true. + +'${image}' in ${lkr_loc_img} +Change Image Folder +${imgpath}\\${LKR_UC} + + + + +Tries to locate given image from the screen for given time. + +${image} +timeout=${timeout} + + +${loc} + +Image "bviewer_opened" found at (652, 94) +${loc} = (652, 94) + + + +Runs the given keyword with the given arguments, if ``condition`` is true. + +'${image}' in ${lkr_loc_img} +Change Image Folder +${imgpath} + + + + + + +Pauses the test executed for the given time. + +0.5 + +Slept 500 milliseconds + + + + +bviewer_opened +timeout=10 + + + +${image} +${timeout} + + +${loc} + + +Runs the given keyword with the given arguments, if ``condition`` is true. + +'${image}' in ${lkr_loc_img} +Change Image Folder +${imgpath}\\${LKR_UC} + + + + +Tries to locate given image from the screen for given time. + +${image} +timeout=${timeout} + + +${loc} + +Image "bviewer_opened" found at (652, 94) +${loc} = (652, 94) + + + +Runs the given keyword with the given arguments, if ``condition`` is true. + +'${image}' in ${lkr_loc_img} +Change Image Folder +${imgpath} + + + +${loc} = (652, 94) + + + + +${loc} + + +Moves the mouse pointer to an absolute coordinates. + +${loc} + + + + +Clicks with the specified mouse button. + + + + + + + +Pauses the test executed for the given time. + +0.5 + +Slept 500 milliseconds + + + +Press given keyboard keys. + +Key.Win +Key.Up + + + + +Returns the given values which can then be assigned to a variables. + +ARCHIVETOOL_DOKU_${LKR_UC}_${anz_seiten} + + +${search_image} + +${search_image} = ARCHIVETOOL_DOKU_SG_100 + + + + +bviewer_opened +timeout=10 + + + +${image} +${timeout} + + +${loc} + + +Runs the given keyword with the given arguments, if ``condition`` is true. + +'${image}' in ${lkr_loc_img} +Change Image Folder +${imgpath}\\${LKR_UC} + + + + +Tries to locate given image from the screen for given time. + +${image} +timeout=${timeout} + + +${loc} + +Image "bviewer_opened" found at (11, 85) +${loc} = (11, 85) + + + +Runs the given keyword with the given arguments, if ``condition`` is true. + +'${image}' in ${lkr_loc_img} +Change Image Folder +${imgpath} + + + +${loc} = (11, 85) + + + + +${loc} + + +Moves the mouse pointer to an absolute coordinates. + +${loc} + + + + +Clicks with the specified mouse button. + + + + + + + +Tries to locate given image from the screen for given time. + +${search_image} +timeout=90 + +Image "ARCHIVETOOL_DOKU_SG_100" found at (174, 204) + + + +Press given keyboard keys. + +Key.Alt +Key.F4 + + + + + + + +aae_suche_clear +timeout=5 + + + +${image} +${timeout} + + +${loc} + + +Runs the given keyword with the given arguments, if ``condition`` is true. + +'${image}' in ${lkr_loc_img} +Change Image Folder +${imgpath}\\${LKR_UC} + + + + +Tries to locate given image from the screen for given time. + +${image} +timeout=${timeout} + + +${loc} + +Image "aae_suche_clear" found at (404, 709) +${loc} = (404, 709) + + + +Runs the given keyword with the given arguments, if ``condition`` is true. + +'${image}' in ${lkr_loc_img} +Change Image Folder +${imgpath} + + + +${loc} = (404, 709) + + + + +${loc} + + +Moves the mouse pointer to an absolute coordinates. + +${loc} + + + + +Clicks with the specified mouse button. + + + + + + + + +aae_dokumentennr_bereit +timeout=5 + + +Runs the given keyword with the given arguments, if ``condition`` is true. + +'${image}' in ${lkr_loc_img} +Change Image Folder +${imgpath}\\${LKR_UC} + + + + +Tries to locate given image from the screen for given time. + +${image} +timeout=${timeout} + + +${loc} + +Image "aae_dokumentennr_bereit" found at (569, 464) +${loc} = (569, 464) + + + +Runs the given keyword with the given arguments, if ``condition`` is true. + +'${image}' in ${lkr_loc_img} +Change Image Folder +${imgpath} + + + + + + +Evaluates the given expression in Python and returns the result. + +${i} + 1 + + +${i} + +${i} = 2 + + + + + + + +${lkr_docs}[${i}] +${anz_seiten} + + +Makes a variable available everywhere within the scope of the current test. + +${dokid} +${lkr_doc} + +${dokid} = 42577943 + + + + +aae_dokumentennr +5 +100 +${lkr_doc} + + + +${image} +${timeout} + + +${loc} + + +Runs the given keyword with the given arguments, if ``condition`` is true. + +'${image}' in ${lkr_loc_img} +Change Image Folder +${imgpath}\\${LKR_UC} + + + + +Tries to locate given image from the screen for given time. + +${image} +timeout=${timeout} + + +${loc} + +Image "aae_dokumentennr" found at (452, 463) +${loc} = (452, 463) + + + +Runs the given keyword with the given arguments, if ``condition`` is true. + +'${image}' in ${lkr_loc_img} +Change Image Folder +${imgpath} + + + +${loc} = (452, 463) + + + +Clicks right of given location by given offset. + +${loc} +${offset} + +Clicking 1 time(s) at (552, 463) with left mouse button at interval 0.000000 + + + +Type text and keyboard keys. + +@{text} + + + + + + +Type text and keyboard keys. + +Key.enter + + + + + +aae_treffer_1 +timeout=10 + + + +${image} +${timeout} + + +${loc} + + +Runs the given keyword with the given arguments, if ``condition`` is true. + +'${image}' in ${lkr_loc_img} +Change Image Folder +${imgpath}\\${LKR_UC} + + + + +Tries to locate given image from the screen for given time. + +${image} +timeout=${timeout} + + +${loc} + +Image "aae_treffer_1" found at (870, 745) +${loc} = (870, 745) + + + +Runs the given keyword with the given arguments, if ``condition`` is true. + +'${image}' in ${lkr_loc_img} +Change Image Folder +${imgpath} + + + +${loc} = (870, 745) + + + + +${loc} + + +Moves the mouse pointer to an absolute coordinates. + +${loc} + + + + +Clicks with the specified mouse button. + + + + + + + +Type text and keyboard keys. + +Key.Tab +Key.Tab +Key.Tab +Key.Tab +Key.right + + + + + +aae_zeile_markiert +timeout=10 + + + +${image} +${timeout} + + +${loc} + + +Runs the given keyword with the given arguments, if ``condition`` is true. + +'${image}' in ${lkr_loc_img} +Change Image Folder +${imgpath}\\${LKR_UC} + + + + +Tries to locate given image from the screen for given time. + +${image} +timeout=${timeout} + + +${loc} + +Image "aae_zeile_markiert" found at (423, 786) +${loc} = (423, 786) + + + +Runs the given keyword with the given arguments, if ``condition`` is true. + +'${image}' in ${lkr_loc_img} +Change Image Folder +${imgpath} + + + +${loc} = (423, 786) + + + + +${loc} + + +Moves the mouse pointer to an absolute coordinates. + +${loc} + + + + +Clicks with the specified mouse button. + + + + + + + + +aae_viewer_b +timeout=10 + + + +${image} +${timeout} + + +${loc} + + +Runs the given keyword with the given arguments, if ``condition`` is true. + +'${image}' in ${lkr_loc_img} +Change Image Folder +${imgpath}\\${LKR_UC} + + + + +Tries to locate given image from the screen for given time. + +${image} +timeout=${timeout} + + +${loc} + +Image "aae_viewer_b" found at (641, 709) +${loc} = (641, 709) + + + +Runs the given keyword with the given arguments, if ``condition`` is true. + +'${image}' in ${lkr_loc_img} +Change Image Folder +${imgpath} + + + +${loc} = (641, 709) + + + + +${loc} + + +Moves the mouse pointer to an absolute coordinates. + +${loc} + + + + +Clicks with the specified mouse button. + + + + + + + + +bviewer_opened +10 + + +Runs the given keyword with the given arguments, if ``condition`` is true. + +'${image}' in ${lkr_loc_img} +Change Image Folder +${imgpath}\\${LKR_UC} + + + + +Tries to locate given image from the screen for given time. + +${image} +timeout=${timeout} + + +${loc} + +Image "bviewer_opened" found at (652, 94) +${loc} = (652, 94) + + + +Runs the given keyword with the given arguments, if ``condition`` is true. + +'${image}' in ${lkr_loc_img} +Change Image Folder +${imgpath} + + + + + + +Pauses the test executed for the given time. + +0.5 + +Slept 500 milliseconds + + + + +bviewer_opened +timeout=10 + + + +${image} +${timeout} + + +${loc} + + +Runs the given keyword with the given arguments, if ``condition`` is true. + +'${image}' in ${lkr_loc_img} +Change Image Folder +${imgpath}\\${LKR_UC} + + + + +Tries to locate given image from the screen for given time. + +${image} +timeout=${timeout} + + +${loc} + +Image "bviewer_opened" found at (652, 94) +${loc} = (652, 94) + + + +Runs the given keyword with the given arguments, if ``condition`` is true. + +'${image}' in ${lkr_loc_img} +Change Image Folder +${imgpath} + + + +${loc} = (652, 94) + + + + +${loc} + + +Moves the mouse pointer to an absolute coordinates. + +${loc} + + + + +Clicks with the specified mouse button. + + + + + + + +Pauses the test executed for the given time. + +0.5 + +Slept 500 milliseconds + + + +Press given keyboard keys. + +Key.Win +Key.Up + + + + +Returns the given values which can then be assigned to a variables. + +ARCHIVETOOL_DOKU_${LKR_UC}_${anz_seiten} + + +${search_image} + +${search_image} = ARCHIVETOOL_DOKU_SG_300 + + + + +bviewer_opened +timeout=10 + + + +${image} +${timeout} + + +${loc} + + +Runs the given keyword with the given arguments, if ``condition`` is true. + +'${image}' in ${lkr_loc_img} +Change Image Folder +${imgpath}\\${LKR_UC} + + + + +Tries to locate given image from the screen for given time. + +${image} +timeout=${timeout} + + +${loc} + +Image "bviewer_opened" found at (11, 85) +${loc} = (11, 85) + + + +Runs the given keyword with the given arguments, if ``condition`` is true. + +'${image}' in ${lkr_loc_img} +Change Image Folder +${imgpath} + + + +${loc} = (11, 85) + + + + +${loc} + + +Moves the mouse pointer to an absolute coordinates. + +${loc} + + + + +Clicks with the specified mouse button. + + + + + + + +Tries to locate given image from the screen for given time. + +${search_image} +timeout=90 + +Image "ARCHIVETOOL_DOKU_SG_300" found at (177, 208) + + + +Press given keyboard keys. + +Key.Alt +Key.F4 + + + + + + + +aae_suche_clear +timeout=5 + + + +${image} +${timeout} + + +${loc} + + +Runs the given keyword with the given arguments, if ``condition`` is true. + +'${image}' in ${lkr_loc_img} +Change Image Folder +${imgpath}\\${LKR_UC} + + + + +Tries to locate given image from the screen for given time. + +${image} +timeout=${timeout} + + +${loc} + +Image "aae_suche_clear" found at (404, 709) +${loc} = (404, 709) + + + +Runs the given keyword with the given arguments, if ``condition`` is true. + +'${image}' in ${lkr_loc_img} +Change Image Folder +${imgpath} + + + +${loc} = (404, 709) + + + + +${loc} + + +Moves the mouse pointer to an absolute coordinates. + +${loc} + + + + +Clicks with the specified mouse button. + + + + + + + + +aae_dokumentennr_bereit +timeout=5 + + +Runs the given keyword with the given arguments, if ``condition`` is true. + +'${image}' in ${lkr_loc_img} +Change Image Folder +${imgpath}\\${LKR_UC} + + + + +Tries to locate given image from the screen for given time. + +${image} +timeout=${timeout} + + +${loc} + +Image "aae_dokumentennr_bereit" found at (569, 464) +${loc} = (569, 464) + + + +Runs the given keyword with the given arguments, if ``condition`` is true. + +'${image}' in ${lkr_loc_img} +Change Image Folder +${imgpath} + + + + + + +Evaluates the given expression in Python and returns the result. + +${i} + 1 + + +${i} + +${i} = 3 + + + + + + + + + + +Runs the given keyword with the given arguments, if ``condition`` is true. + +${APPOPEN}==${True} +Terminate Application +alias=archivetool + + +Terminates the process launched with `Launch Application` with +given ``alias``. + +alias=archivetool + + + + + + +Runs the given keyword with the given arguments, if ``condition`` is true. + +${APPOPEN}==${True} +Quit All Viewer Processes + + + +Runs a process and waits for it to complete. + +cmd.exe /c taskkill /IM ArchiveViewAdvancedA.exe +shell=True + +Starting process: +cmd.exe /c taskkill /IM ArchiveViewAdvancedA.exe +Waiting for process to complete. +Process completed. + + + +Runs a process and waits for it to complete. + +cmd.exe /c taskkill /IM ArchiveViewAdvancedB.exe +shell=True + +Starting process: +cmd.exe /c taskkill /IM ArchiveViewAdvancedB.exe +Waiting for process to complete. +Process completed. + + + +Runs a process and waits for it to complete. + +cmd.exe /c taskkill /IM ArchiveViewAdvancedC.exe +shell=True + +Starting process: +cmd.exe /c taskkill /IM ArchiveViewAdvancedC.exe +Waiting for process to complete. +Process completed. + + + +Runs a process and waits for it to complete. + +cmd.exe /c taskkill /IM +ArchivToolExtAdvanced.exe +shell=True + +Starting process: +"cmd.exe /c taskkill /IM" ArchivToolExtAdvanced.exe +Waiting for process to complete. +Process completed. + + + +Runs a process and waits for it to complete. + +cmd.exe /c taskkill /IM +archtool.exe +shell=True + +Starting process: +"cmd.exe /c taskkill /IM" archtool.exe +Waiting for process to complete. +Process completed. + + + + + + + +Makes a variable available everywhere within the scope of the current suite. + +${APPOPEN} +${False} + +${APPOPEN} = False + + + + + + + + + +SH + + +Sets where all reference images are stored. + +${imgpath} + + + + + +${lkr_uc} + + +Makes a variable available everywhere within the scope of the current test. + +${LKR_UC} +${lkr_uc} + +${LKR_UC} = SH + + + +Converts string to lower case. + +${lkr_uc} + + +${lkr_lc} + +${lkr_lc} = sh + + + +Makes a variable available everywhere within the scope of the current test. + +${LKR_LC} +${lkr_lc} + +${LKR_LC} = sh + + + +Makes a variable available everywhere within the scope of the current test. + +${lkr_docs} +${TESTDATA['${LKR_UC}']['docs']} + +${lkr_docs} = ['6177394', '6177689', '6178142'] + + + +Makes a variable available everywhere within the scope of the current test. + +${lkr_cred} +${TESTDATA['${LKR_UC}']['credentials']} + +${lkr_cred} = ['sh0998', 'crypt:Q0kAp77eyC6JV2HSqixE8PnrOAfBLWk0OUbjF2OB02xFddE+u05Rmieq96LefKWugLXMFtMiHac='] + + + +Makes a variable available everywhere within the scope of the current test. + +${lkr_loc_img} +${TESTDATA['${LKR_UC}']['loc_img']} + +${lkr_loc_img} = [] + + + +Makes a variable available everywhere within the scope of the current test. + +${user} +${lkr_cred}[0] + +${user} = sh0998 + + + +Decrypts cipher text and returns the plain text. + +${lkr_cred}[1] + + +${password} + +Decrypting text and return value. +${password} = *** + + + +Makes a variable available everywhere within the scope of the current test. + +${password} +${password} + +${password} = *** + + + + + + +Runs a process and waits for it to complete. + +cmd.exe /c taskkill /IM ArchiveViewAdvancedA.exe +shell=True + +Starting process: +cmd.exe /c taskkill /IM ArchiveViewAdvancedA.exe +Waiting for process to complete. +Process completed. + + + +Runs a process and waits for it to complete. + +cmd.exe /c taskkill /IM ArchiveViewAdvancedB.exe +shell=True + +Starting process: +cmd.exe /c taskkill /IM ArchiveViewAdvancedB.exe +Waiting for process to complete. +Process completed. + + + +Runs a process and waits for it to complete. + +cmd.exe /c taskkill /IM ArchiveViewAdvancedC.exe +shell=True + +Starting process: +cmd.exe /c taskkill /IM ArchiveViewAdvancedC.exe +Waiting for process to complete. +Process completed. + + + +Runs a process and waits for it to complete. + +cmd.exe /c taskkill /IM +ArchivToolExtAdvanced.exe +shell=True + +Starting process: +"cmd.exe /c taskkill /IM" ArchivToolExtAdvanced.exe +Waiting for process to complete. +Process completed. + + + +Runs a process and waits for it to complete. + +cmd.exe /c taskkill /IM +archtool.exe +shell=True + +Starting process: +"cmd.exe /c taskkill /IM" archtool.exe +Waiting for process to complete. +Process completed. + + + + + + +Runs a process and waits for it to complete. + +C:\\ProgramData\\checkmk\\agent\\robot\\archivetool\\ArchivetoolConfig\\sva_${LKR_LC} konfiguration.bat + +Starting process: +"C:\ProgramData\checkmk\agent\robot\archivetool\ArchivetoolConfig\sva_sh konfiguration.bat" +Waiting for process to complete. +Process completed. + + + +Launches an application. + +"${APP}" +alias=archivetool + + + + +Makes a variable available everywhere within the scope of the current suite. + +${APPOPEN} +${True} + +${APPOPEN} = True + + + + + + + +login_username +timeout=10 + + +${loc} + + +Runs the given keyword with the given arguments, if ``condition`` is true. + +'${image}' in ${lkr_loc_img} +Change Image Folder +${imgpath}\\${LKR_UC} + + + + +Tries to locate given image from the screen for given time. + +${image} +timeout=${timeout} + + +${loc} + +Image "login_username" found at (227, 149) +${loc} = (227, 149) + + + +Runs the given keyword with the given arguments, if ``condition`` is true. + +'${image}' in ${lkr_loc_img} +Change Image Folder +${imgpath} + + + +${loc} = (227, 149) + + + +Finds the reference image on screen and clicks it once. + +login_username + +Image "C:\ProgramData\checkmk\agent\robot\archivetool\images\login_username.png" found at Box(left=182, top=134, width=90, height=30) +Clicking image "login_username" in position (227, 149) + + + +Pauses the test executed for the given time. + +0.2 + +Slept 200 milliseconds + + + + +login_username +10 +20 +${user} + + + +${image} +${timeout} + + +${loc} + + +Runs the given keyword with the given arguments, if ``condition`` is true. + +'${image}' in ${lkr_loc_img} +Change Image Folder +${imgpath}\\${LKR_UC} + + + + +Tries to locate given image from the screen for given time. + +${image} +timeout=${timeout} + + +${loc} + +Image "login_username" found at (227, 149) +${loc} = (227, 149) + + + +Runs the given keyword with the given arguments, if ``condition`` is true. + +'${image}' in ${lkr_loc_img} +Change Image Folder +${imgpath} + + + +${loc} = (227, 149) + + + +Clicks right of given location by given offset. + +${loc} +${offset} + +Clicking 1 time(s) at (247, 149) with left mouse button at interval 0.000000 + + + +Type text and keyboard keys. + +@{text} + + + + + + +Pauses the test executed for the given time. + +0.2 + +Slept 200 milliseconds + + + +Type text and keyboard keys. + +Key.tab + + + + +Pauses the test executed for the given time. + +0.2 + +Slept 200 milliseconds + + + +Type text and keyboard keys. + +${password} +Key.enter +Key.enter + + + + + +archiv_vista_warn +timeout=5 + + + +${image} +${timeout} + + +${loc} + + +Runs the given keyword with the given arguments, if ``condition`` is true. + +'${image}' in ${lkr_loc_img} +Change Image Folder +${imgpath}\\${LKR_UC} + + + + +Tries to locate given image from the screen for given time. + +${image} +timeout=${timeout} + + +${loc} + +Image "archiv_vista_warn" found at (845, 559) +${loc} = (845, 559) + + + +Runs the given keyword with the given arguments, if ``condition`` is true. + +'${image}' in ${lkr_loc_img} +Change Image Folder +${imgpath} + + + +${loc} = (845, 559) + + + + +${loc} + + +Moves the mouse pointer to an absolute coordinates. + +${loc} + + + + +Clicks with the specified mouse button. + + + + + + + +Type text and keyboard keys. + +Key.enter + + + + +Tries to locate given image from the screen for given time. + +aae_toolbar +timeout=10 + +Image "aae_toolbar" found at (506, 709) + + + + + + +Returns ``True`` if reference image was found on screen or +``False`` otherwise. Never fails. + +aae_vorbelegung_checked + + +${vorbelegt_checked} + +${vorbelegt_checked} = False + + + +Runs the given keyword with the given arguments, if ``condition`` is true. + +${vorbelegt_checked}==${True} +Click Image +aae_vorbelegung_checked + + + + + + +Returns the given values which can then be assigned to a variables. + +0 + + +${i} + +${i} = 0 + + + + + + +${lkr_docs}[${i}] +${anz_seiten} + + +Makes a variable available everywhere within the scope of the current test. + +${dokid} +${lkr_doc} + +${dokid} = 6177394 + + + + +aae_dokumentennr +5 +100 +${lkr_doc} + + + +${image} +${timeout} + + +${loc} + + +Runs the given keyword with the given arguments, if ``condition`` is true. + +'${image}' in ${lkr_loc_img} +Change Image Folder +${imgpath}\\${LKR_UC} + + + + +Tries to locate given image from the screen for given time. + +${image} +timeout=${timeout} + + +${loc} + +Image "aae_dokumentennr" found at (452, 463) +${loc} = (452, 463) + + + +Runs the given keyword with the given arguments, if ``condition`` is true. + +'${image}' in ${lkr_loc_img} +Change Image Folder +${imgpath} + + + +${loc} = (452, 463) + + + +Clicks right of given location by given offset. + +${loc} +${offset} + +Clicking 1 time(s) at (552, 463) with left mouse button at interval 0.000000 + + + +Type text and keyboard keys. + +@{text} + + + + + + +Type text and keyboard keys. + +Key.enter + + + + + +aae_treffer_1 +timeout=10 + + + +${image} +${timeout} + + +${loc} + + +Runs the given keyword with the given arguments, if ``condition`` is true. + +'${image}' in ${lkr_loc_img} +Change Image Folder +${imgpath}\\${LKR_UC} + + + + +Tries to locate given image from the screen for given time. + +${image} +timeout=${timeout} + + +${loc} + +Image "aae_treffer_1" found at (870, 745) +${loc} = (870, 745) + + + +Runs the given keyword with the given arguments, if ``condition`` is true. + +'${image}' in ${lkr_loc_img} +Change Image Folder +${imgpath} + + + +${loc} = (870, 745) + + + + +${loc} + + +Moves the mouse pointer to an absolute coordinates. + +${loc} + + + + +Clicks with the specified mouse button. + + + + + + + +Type text and keyboard keys. + +Key.Tab +Key.Tab +Key.Tab +Key.Tab +Key.right + + + + + +aae_zeile_markiert +timeout=10 + + + +${image} +${timeout} + + +${loc} + + +Runs the given keyword with the given arguments, if ``condition`` is true. + +'${image}' in ${lkr_loc_img} +Change Image Folder +${imgpath}\\${LKR_UC} + + + + +Tries to locate given image from the screen for given time. + +${image} +timeout=${timeout} + + +${loc} + +Image "aae_zeile_markiert" found at (423, 786) +${loc} = (423, 786) + + + +Runs the given keyword with the given arguments, if ``condition`` is true. + +'${image}' in ${lkr_loc_img} +Change Image Folder +${imgpath} + + + +${loc} = (423, 786) + + + + +${loc} + + +Moves the mouse pointer to an absolute coordinates. + +${loc} + + + + +Clicks with the specified mouse button. + + + + + + + + +aae_viewer_b +timeout=10 + + + +${image} +${timeout} + + +${loc} + + +Runs the given keyword with the given arguments, if ``condition`` is true. + +'${image}' in ${lkr_loc_img} +Change Image Folder +${imgpath}\\${LKR_UC} + + + + +Tries to locate given image from the screen for given time. + +${image} +timeout=${timeout} + + +${loc} + +Image "aae_viewer_b" found at (641, 709) +${loc} = (641, 709) + + + +Runs the given keyword with the given arguments, if ``condition`` is true. + +'${image}' in ${lkr_loc_img} +Change Image Folder +${imgpath} + + + +${loc} = (641, 709) + + + + +${loc} + + +Moves the mouse pointer to an absolute coordinates. + +${loc} + + + + +Clicks with the specified mouse button. + + + + + + + + +bviewer_opened +10 + + +Runs the given keyword with the given arguments, if ``condition`` is true. + +'${image}' in ${lkr_loc_img} +Change Image Folder +${imgpath}\\${LKR_UC} + + + + +Tries to locate given image from the screen for given time. + +${image} +timeout=${timeout} + + +${loc} + +Image "bviewer_opened" found at (652, 94) +${loc} = (652, 94) + + + +Runs the given keyword with the given arguments, if ``condition`` is true. + +'${image}' in ${lkr_loc_img} +Change Image Folder +${imgpath} + + + + + + +Pauses the test executed for the given time. + +0.5 + +Slept 500 milliseconds + + + + +bviewer_opened +timeout=10 + + + +${image} +${timeout} + + +${loc} + + +Runs the given keyword with the given arguments, if ``condition`` is true. + +'${image}' in ${lkr_loc_img} +Change Image Folder +${imgpath}\\${LKR_UC} + + + + +Tries to locate given image from the screen for given time. + +${image} +timeout=${timeout} + + +${loc} + +Image "bviewer_opened" found at (652, 94) +${loc} = (652, 94) + + + +Runs the given keyword with the given arguments, if ``condition`` is true. + +'${image}' in ${lkr_loc_img} +Change Image Folder +${imgpath} + + + +${loc} = (652, 94) + + + + +${loc} + + +Moves the mouse pointer to an absolute coordinates. + +${loc} + + + + +Clicks with the specified mouse button. + + + + + + + +Pauses the test executed for the given time. + +0.5 + +Slept 500 milliseconds + + + +Press given keyboard keys. + +Key.Win +Key.Up + + + + +Returns the given values which can then be assigned to a variables. + +ARCHIVETOOL_DOKU_${LKR_UC}_${anz_seiten} + + +${search_image} + +${search_image} = ARCHIVETOOL_DOKU_SH_30 + + + + +bviewer_opened +timeout=10 + + + +${image} +${timeout} + + +${loc} + + +Runs the given keyword with the given arguments, if ``condition`` is true. + +'${image}' in ${lkr_loc_img} +Change Image Folder +${imgpath}\\${LKR_UC} + + + + +Tries to locate given image from the screen for given time. + +${image} +timeout=${timeout} + + +${loc} + +Image "bviewer_opened" found at (11, 85) +${loc} = (11, 85) + + + +Runs the given keyword with the given arguments, if ``condition`` is true. + +'${image}' in ${lkr_loc_img} +Change Image Folder +${imgpath} + + + +${loc} = (11, 85) + + + + +${loc} + + +Moves the mouse pointer to an absolute coordinates. + +${loc} + + + + +Clicks with the specified mouse button. + + + + + + + +Tries to locate given image from the screen for given time. + +${search_image} +timeout=90 + +Image "ARCHIVETOOL_DOKU_SH_30" found at (200, 212) + + + +Press given keyboard keys. + +Key.Alt +Key.F4 + + + + + + + +aae_suche_clear +timeout=5 + + + +${image} +${timeout} + + +${loc} + + +Runs the given keyword with the given arguments, if ``condition`` is true. + +'${image}' in ${lkr_loc_img} +Change Image Folder +${imgpath}\\${LKR_UC} + + + + +Tries to locate given image from the screen for given time. + +${image} +timeout=${timeout} + + +${loc} + +Image "aae_suche_clear" found at (404, 709) +${loc} = (404, 709) + + + +Runs the given keyword with the given arguments, if ``condition`` is true. + +'${image}' in ${lkr_loc_img} +Change Image Folder +${imgpath} + + + +${loc} = (404, 709) + + + + +${loc} + + +Moves the mouse pointer to an absolute coordinates. + +${loc} + + + + +Clicks with the specified mouse button. + + + + + + + + +aae_dokumentennr_bereit +timeout=5 + + +Runs the given keyword with the given arguments, if ``condition`` is true. + +'${image}' in ${lkr_loc_img} +Change Image Folder +${imgpath}\\${LKR_UC} + + + + +Tries to locate given image from the screen for given time. + +${image} +timeout=${timeout} + + +${loc} + +Image "aae_dokumentennr_bereit" found at (569, 464) +${loc} = (569, 464) + + + +Runs the given keyword with the given arguments, if ``condition`` is true. + +'${image}' in ${lkr_loc_img} +Change Image Folder +${imgpath} + + + + + + +Evaluates the given expression in Python and returns the result. + +${i} + 1 + + +${i} + +${i} = 1 + + + + + + + +${lkr_docs}[${i}] +${anz_seiten} + + +Makes a variable available everywhere within the scope of the current test. + +${dokid} +${lkr_doc} + +${dokid} = 6177689 + + + + +aae_dokumentennr +5 +100 +${lkr_doc} + + + +${image} +${timeout} + + +${loc} + + +Runs the given keyword with the given arguments, if ``condition`` is true. + +'${image}' in ${lkr_loc_img} +Change Image Folder +${imgpath}\\${LKR_UC} + + + + +Tries to locate given image from the screen for given time. + +${image} +timeout=${timeout} + + +${loc} + +Image "aae_dokumentennr" found at (452, 463) +${loc} = (452, 463) + + + +Runs the given keyword with the given arguments, if ``condition`` is true. + +'${image}' in ${lkr_loc_img} +Change Image Folder +${imgpath} + + + +${loc} = (452, 463) + + + +Clicks right of given location by given offset. + +${loc} +${offset} + +Clicking 1 time(s) at (552, 463) with left mouse button at interval 0.000000 + + + +Type text and keyboard keys. + +@{text} + + + + + + +Type text and keyboard keys. + +Key.enter + + + + + +aae_treffer_1 +timeout=10 + + + +${image} +${timeout} + + +${loc} + + +Runs the given keyword with the given arguments, if ``condition`` is true. + +'${image}' in ${lkr_loc_img} +Change Image Folder +${imgpath}\\${LKR_UC} + + + + +Tries to locate given image from the screen for given time. + +${image} +timeout=${timeout} + + +${loc} + +Image "aae_treffer_1" found at (870, 745) +${loc} = (870, 745) + + + +Runs the given keyword with the given arguments, if ``condition`` is true. + +'${image}' in ${lkr_loc_img} +Change Image Folder +${imgpath} + + + +${loc} = (870, 745) + + + + +${loc} + + +Moves the mouse pointer to an absolute coordinates. + +${loc} + + + + +Clicks with the specified mouse button. + + + + + + + +Type text and keyboard keys. + +Key.Tab +Key.Tab +Key.Tab +Key.Tab +Key.right + + + + + +aae_zeile_markiert +timeout=10 + + + +${image} +${timeout} + + +${loc} + + +Runs the given keyword with the given arguments, if ``condition`` is true. + +'${image}' in ${lkr_loc_img} +Change Image Folder +${imgpath}\\${LKR_UC} + + + + +Tries to locate given image from the screen for given time. + +${image} +timeout=${timeout} + + +${loc} + +Image "aae_zeile_markiert" found at (423, 786) +${loc} = (423, 786) + + + +Runs the given keyword with the given arguments, if ``condition`` is true. + +'${image}' in ${lkr_loc_img} +Change Image Folder +${imgpath} + + + +${loc} = (423, 786) + + + + +${loc} + + +Moves the mouse pointer to an absolute coordinates. + +${loc} + + + + +Clicks with the specified mouse button. + + + + + + + + +aae_viewer_b +timeout=10 + + + +${image} +${timeout} + + +${loc} + + +Runs the given keyword with the given arguments, if ``condition`` is true. + +'${image}' in ${lkr_loc_img} +Change Image Folder +${imgpath}\\${LKR_UC} + + + + +Tries to locate given image from the screen for given time. + +${image} +timeout=${timeout} + + +${loc} + +Image "aae_viewer_b" found at (641, 709) +${loc} = (641, 709) + + + +Runs the given keyword with the given arguments, if ``condition`` is true. + +'${image}' in ${lkr_loc_img} +Change Image Folder +${imgpath} + + + +${loc} = (641, 709) + + + + +${loc} + + +Moves the mouse pointer to an absolute coordinates. + +${loc} + + + + +Clicks with the specified mouse button. + + + + + + + + +bviewer_opened +10 + + +Runs the given keyword with the given arguments, if ``condition`` is true. + +'${image}' in ${lkr_loc_img} +Change Image Folder +${imgpath}\\${LKR_UC} + + + + +Tries to locate given image from the screen for given time. + +${image} +timeout=${timeout} + + +${loc} + +Image "bviewer_opened" found at (652, 94) +${loc} = (652, 94) + + + +Runs the given keyword with the given arguments, if ``condition`` is true. + +'${image}' in ${lkr_loc_img} +Change Image Folder +${imgpath} + + + + + + +Pauses the test executed for the given time. + +0.5 + +Slept 500 milliseconds + + + + +bviewer_opened +timeout=10 + + + +${image} +${timeout} + + +${loc} + + +Runs the given keyword with the given arguments, if ``condition`` is true. + +'${image}' in ${lkr_loc_img} +Change Image Folder +${imgpath}\\${LKR_UC} + + + + +Tries to locate given image from the screen for given time. + +${image} +timeout=${timeout} + + +${loc} + +Image "bviewer_opened" found at (652, 94) +${loc} = (652, 94) + + + +Runs the given keyword with the given arguments, if ``condition`` is true. + +'${image}' in ${lkr_loc_img} +Change Image Folder +${imgpath} + + + +${loc} = (652, 94) + + + + +${loc} + + +Moves the mouse pointer to an absolute coordinates. + +${loc} + + + + +Clicks with the specified mouse button. + + + + + + + +Pauses the test executed for the given time. + +0.5 + +Slept 500 milliseconds + + + +Press given keyboard keys. + +Key.Win +Key.Up + + + + +Returns the given values which can then be assigned to a variables. + +ARCHIVETOOL_DOKU_${LKR_UC}_${anz_seiten} + + +${search_image} + +${search_image} = ARCHIVETOOL_DOKU_SH_100 + + + + +bviewer_opened +timeout=10 + + + +${image} +${timeout} + + +${loc} + + +Runs the given keyword with the given arguments, if ``condition`` is true. + +'${image}' in ${lkr_loc_img} +Change Image Folder +${imgpath}\\${LKR_UC} + + + + +Tries to locate given image from the screen for given time. + +${image} +timeout=${timeout} + + +${loc} + +Image "bviewer_opened" found at (11, 85) +${loc} = (11, 85) + + + +Runs the given keyword with the given arguments, if ``condition`` is true. + +'${image}' in ${lkr_loc_img} +Change Image Folder +${imgpath} + + + +${loc} = (11, 85) + + + + +${loc} + + +Moves the mouse pointer to an absolute coordinates. + +${loc} + + + + +Clicks with the specified mouse button. + + + + + + + +Tries to locate given image from the screen for given time. + +${search_image} +timeout=90 + +Image "ARCHIVETOOL_DOKU_SH_100" found at (199, 219) + + + +Press given keyboard keys. + +Key.Alt +Key.F4 + + + + + + + +aae_suche_clear +timeout=5 + + + +${image} +${timeout} + + +${loc} + + +Runs the given keyword with the given arguments, if ``condition`` is true. + +'${image}' in ${lkr_loc_img} +Change Image Folder +${imgpath}\\${LKR_UC} + + + + +Tries to locate given image from the screen for given time. + +${image} +timeout=${timeout} + + +${loc} + +Image "aae_suche_clear" found at (404, 709) +${loc} = (404, 709) + + + +Runs the given keyword with the given arguments, if ``condition`` is true. + +'${image}' in ${lkr_loc_img} +Change Image Folder +${imgpath} + + + +${loc} = (404, 709) + + + + +${loc} + + +Moves the mouse pointer to an absolute coordinates. + +${loc} + + + + +Clicks with the specified mouse button. + + + + + + + + +aae_dokumentennr_bereit +timeout=5 + + +Runs the given keyword with the given arguments, if ``condition`` is true. + +'${image}' in ${lkr_loc_img} +Change Image Folder +${imgpath}\\${LKR_UC} + + + + +Tries to locate given image from the screen for given time. + +${image} +timeout=${timeout} + + +${loc} + +Image "aae_dokumentennr_bereit" found at (569, 464) +${loc} = (569, 464) + + + +Runs the given keyword with the given arguments, if ``condition`` is true. + +'${image}' in ${lkr_loc_img} +Change Image Folder +${imgpath} + + + + + + +Evaluates the given expression in Python and returns the result. + +${i} + 1 + + +${i} + +${i} = 2 + + + + + + + +${lkr_docs}[${i}] +${anz_seiten} + + +Makes a variable available everywhere within the scope of the current test. + +${dokid} +${lkr_doc} + +${dokid} = 6178142 + + + + +aae_dokumentennr +5 +100 +${lkr_doc} + + + +${image} +${timeout} + + +${loc} + + +Runs the given keyword with the given arguments, if ``condition`` is true. + +'${image}' in ${lkr_loc_img} +Change Image Folder +${imgpath}\\${LKR_UC} + + + + +Tries to locate given image from the screen for given time. + +${image} +timeout=${timeout} + + +${loc} + +Image "aae_dokumentennr" found at (452, 463) +${loc} = (452, 463) + + + +Runs the given keyword with the given arguments, if ``condition`` is true. + +'${image}' in ${lkr_loc_img} +Change Image Folder +${imgpath} + + + +${loc} = (452, 463) + + + +Clicks right of given location by given offset. + +${loc} +${offset} + +Clicking 1 time(s) at (552, 463) with left mouse button at interval 0.000000 + + + +Type text and keyboard keys. + +@{text} + + + + + + +Type text and keyboard keys. + +Key.enter + + + + + +aae_treffer_1 +timeout=10 + + + +${image} +${timeout} + + +${loc} + + +Runs the given keyword with the given arguments, if ``condition`` is true. + +'${image}' in ${lkr_loc_img} +Change Image Folder +${imgpath}\\${LKR_UC} + + + + +Tries to locate given image from the screen for given time. + +${image} +timeout=${timeout} + + +${loc} + +Image "aae_treffer_1" found at (870, 745) +${loc} = (870, 745) + + + +Runs the given keyword with the given arguments, if ``condition`` is true. + +'${image}' in ${lkr_loc_img} +Change Image Folder +${imgpath} + + + +${loc} = (870, 745) + + + + +${loc} + + +Moves the mouse pointer to an absolute coordinates. + +${loc} + + + + +Clicks with the specified mouse button. + + + + + + + +Type text and keyboard keys. + +Key.Tab +Key.Tab +Key.Tab +Key.Tab +Key.right + + + + + +aae_zeile_markiert +timeout=10 + + + +${image} +${timeout} + + +${loc} + + +Runs the given keyword with the given arguments, if ``condition`` is true. + +'${image}' in ${lkr_loc_img} +Change Image Folder +${imgpath}\\${LKR_UC} + + + + +Tries to locate given image from the screen for given time. + +${image} +timeout=${timeout} + + +${loc} + +Image "aae_zeile_markiert" found at (423, 786) +${loc} = (423, 786) + + + +Runs the given keyword with the given arguments, if ``condition`` is true. + +'${image}' in ${lkr_loc_img} +Change Image Folder +${imgpath} + + + +${loc} = (423, 786) + + + + +${loc} + + +Moves the mouse pointer to an absolute coordinates. + +${loc} + + + + +Clicks with the specified mouse button. + + + + + + + + +aae_viewer_b +timeout=10 + + + +${image} +${timeout} + + +${loc} + + +Runs the given keyword with the given arguments, if ``condition`` is true. + +'${image}' in ${lkr_loc_img} +Change Image Folder +${imgpath}\\${LKR_UC} + + + + +Tries to locate given image from the screen for given time. + +${image} +timeout=${timeout} + + +${loc} + +Image "aae_viewer_b" found at (641, 709) +${loc} = (641, 709) + + + +Runs the given keyword with the given arguments, if ``condition`` is true. + +'${image}' in ${lkr_loc_img} +Change Image Folder +${imgpath} + + + +${loc} = (641, 709) + + + + +${loc} + + +Moves the mouse pointer to an absolute coordinates. + +${loc} + + + + +Clicks with the specified mouse button. + + + + + + + + +bviewer_opened +10 + + +Runs the given keyword with the given arguments, if ``condition`` is true. + +'${image}' in ${lkr_loc_img} +Change Image Folder +${imgpath}\\${LKR_UC} + + + + +Tries to locate given image from the screen for given time. + +${image} +timeout=${timeout} + + +${loc} + +Image "bviewer_opened" found at (652, 94) +${loc} = (652, 94) + + + +Runs the given keyword with the given arguments, if ``condition`` is true. + +'${image}' in ${lkr_loc_img} +Change Image Folder +${imgpath} + + + + + + +Pauses the test executed for the given time. + +0.5 + +Slept 500 milliseconds + + + + +bviewer_opened +timeout=10 + + + +${image} +${timeout} + + +${loc} + + +Runs the given keyword with the given arguments, if ``condition`` is true. + +'${image}' in ${lkr_loc_img} +Change Image Folder +${imgpath}\\${LKR_UC} + + + + +Tries to locate given image from the screen for given time. + +${image} +timeout=${timeout} + + +${loc} + +Image "bviewer_opened" found at (652, 94) +${loc} = (652, 94) + + + +Runs the given keyword with the given arguments, if ``condition`` is true. + +'${image}' in ${lkr_loc_img} +Change Image Folder +${imgpath} + + + +${loc} = (652, 94) + + + + +${loc} + + +Moves the mouse pointer to an absolute coordinates. + +${loc} + + + + +Clicks with the specified mouse button. + + + + + + + +Pauses the test executed for the given time. + +0.5 + +Slept 500 milliseconds + + + +Press given keyboard keys. + +Key.Win +Key.Up + + + + +Returns the given values which can then be assigned to a variables. + +ARCHIVETOOL_DOKU_${LKR_UC}_${anz_seiten} + + +${search_image} + +${search_image} = ARCHIVETOOL_DOKU_SH_300 + + + + +bviewer_opened +timeout=10 + + + +${image} +${timeout} + + +${loc} + + +Runs the given keyword with the given arguments, if ``condition`` is true. + +'${image}' in ${lkr_loc_img} +Change Image Folder +${imgpath}\\${LKR_UC} + + + + +Tries to locate given image from the screen for given time. + +${image} +timeout=${timeout} + + +${loc} + +Image "bviewer_opened" found at (11, 85) +${loc} = (11, 85) + + + +Runs the given keyword with the given arguments, if ``condition`` is true. + +'${image}' in ${lkr_loc_img} +Change Image Folder +${imgpath} + + + +${loc} = (11, 85) + + + + +${loc} + + +Moves the mouse pointer to an absolute coordinates. + +${loc} + + + + +Clicks with the specified mouse button. + + + + + + + +Tries to locate given image from the screen for given time. + +${search_image} +timeout=90 + +Image "ARCHIVETOOL_DOKU_SH_300" found at (220, 208) + + + +Press given keyboard keys. + +Key.Alt +Key.F4 + + + + + + + +aae_suche_clear +timeout=5 + + + +${image} +${timeout} + + +${loc} + + +Runs the given keyword with the given arguments, if ``condition`` is true. + +'${image}' in ${lkr_loc_img} +Change Image Folder +${imgpath}\\${LKR_UC} + + + + +Tries to locate given image from the screen for given time. + +${image} +timeout=${timeout} + + +${loc} + +Image "aae_suche_clear" found at (404, 709) +${loc} = (404, 709) + + + +Runs the given keyword with the given arguments, if ``condition`` is true. + +'${image}' in ${lkr_loc_img} +Change Image Folder +${imgpath} + + + +${loc} = (404, 709) + + + + +${loc} + + +Moves the mouse pointer to an absolute coordinates. + +${loc} + + + + +Clicks with the specified mouse button. + + + + + + + + +aae_dokumentennr_bereit +timeout=5 + + +Runs the given keyword with the given arguments, if ``condition`` is true. + +'${image}' in ${lkr_loc_img} +Change Image Folder +${imgpath}\\${LKR_UC} + + + + +Tries to locate given image from the screen for given time. + +${image} +timeout=${timeout} + + +${loc} + +Image "aae_dokumentennr_bereit" found at (569, 464) +${loc} = (569, 464) + + + +Runs the given keyword with the given arguments, if ``condition`` is true. + +'${image}' in ${lkr_loc_img} +Change Image Folder +${imgpath} + + + + + + +Evaluates the given expression in Python and returns the result. + +${i} + 1 + + +${i} + +${i} = 3 + + + + + + + + + + +Runs the given keyword with the given arguments, if ``condition`` is true. + +${APPOPEN}==${True} +Terminate Application +alias=archivetool + + +Terminates the process launched with `Launch Application` with +given ``alias``. + +alias=archivetool + + + + + + +Runs the given keyword with the given arguments, if ``condition`` is true. + +${APPOPEN}==${True} +Quit All Viewer Processes + + + +Runs a process and waits for it to complete. + +cmd.exe /c taskkill /IM ArchiveViewAdvancedA.exe +shell=True + +Starting process: +cmd.exe /c taskkill /IM ArchiveViewAdvancedA.exe +Waiting for process to complete. +Process completed. + + + +Runs a process and waits for it to complete. + +cmd.exe /c taskkill /IM ArchiveViewAdvancedB.exe +shell=True + +Starting process: +cmd.exe /c taskkill /IM ArchiveViewAdvancedB.exe +Waiting for process to complete. +Process completed. + + + +Runs a process and waits for it to complete. + +cmd.exe /c taskkill /IM ArchiveViewAdvancedC.exe +shell=True + +Starting process: +cmd.exe /c taskkill /IM ArchiveViewAdvancedC.exe +Waiting for process to complete. +Process completed. + + + +Runs a process and waits for it to complete. + +cmd.exe /c taskkill /IM +ArchivToolExtAdvanced.exe +shell=True + +Starting process: +"cmd.exe /c taskkill /IM" ArchivToolExtAdvanced.exe +Waiting for process to complete. +Process completed. + + + +Runs a process and waits for it to complete. + +cmd.exe /c taskkill /IM +archtool.exe +shell=True + +Starting process: +"cmd.exe /c taskkill /IM" archtool.exe +Waiting for process to complete. +Process completed. + + + + + + + +Makes a variable available everywhere within the scope of the current suite. + +${APPOPEN} +${False} + +${APPOPEN} = False + + + + + + + + + +UR + + +Sets where all reference images are stored. + +${imgpath} + + + + + +${lkr_uc} + + +Makes a variable available everywhere within the scope of the current test. + +${LKR_UC} +${lkr_uc} + +${LKR_UC} = UR + + + +Converts string to lower case. + +${lkr_uc} + + +${lkr_lc} + +${lkr_lc} = ur + + + +Makes a variable available everywhere within the scope of the current test. + +${LKR_LC} +${lkr_lc} + +${LKR_LC} = ur + + + +Makes a variable available everywhere within the scope of the current test. + +${lkr_docs} +${TESTDATA['${LKR_UC}']['docs']} + +${lkr_docs} = ['1827996', '1828026', '1828126'] + + + +Makes a variable available everywhere within the scope of the current test. + +${lkr_cred} +${TESTDATA['${LKR_UC}']['credentials']} + +${lkr_cred} = ['urmf', 'crypt:4BvQw6JTldye6IBNhu19Ip8AwAefUKB3/P3KGvHQMn2VPelDakiMdaIEbr0ZDkhN9bngrISddkU='] + + + +Makes a variable available everywhere within the scope of the current test. + +${lkr_loc_img} +${TESTDATA['${LKR_UC}']['loc_img']} + +${lkr_loc_img} = [] + + + +Makes a variable available everywhere within the scope of the current test. + +${user} +${lkr_cred}[0] + +${user} = urmf + + + +Decrypts cipher text and returns the plain text. + +${lkr_cred}[1] + + +${password} + +Decrypting text and return value. +${password} = *** + + + +Makes a variable available everywhere within the scope of the current test. + +${password} +${password} + +${password} = *** + + + + + + +Runs a process and waits for it to complete. + +cmd.exe /c taskkill /IM ArchiveViewAdvancedA.exe +shell=True + +Starting process: +cmd.exe /c taskkill /IM ArchiveViewAdvancedA.exe +Waiting for process to complete. +Process completed. + + + +Runs a process and waits for it to complete. + +cmd.exe /c taskkill /IM ArchiveViewAdvancedB.exe +shell=True + +Starting process: +cmd.exe /c taskkill /IM ArchiveViewAdvancedB.exe +Waiting for process to complete. +Process completed. + + + +Runs a process and waits for it to complete. + +cmd.exe /c taskkill /IM ArchiveViewAdvancedC.exe +shell=True + +Starting process: +cmd.exe /c taskkill /IM ArchiveViewAdvancedC.exe +Waiting for process to complete. +Process completed. + + + +Runs a process and waits for it to complete. + +cmd.exe /c taskkill /IM +ArchivToolExtAdvanced.exe +shell=True + +Starting process: +"cmd.exe /c taskkill /IM" ArchivToolExtAdvanced.exe +Waiting for process to complete. +Process completed. + + + +Runs a process and waits for it to complete. + +cmd.exe /c taskkill /IM +archtool.exe +shell=True + +Starting process: +"cmd.exe /c taskkill /IM" archtool.exe +Waiting for process to complete. +Process completed. + + + + + + +Runs a process and waits for it to complete. + +C:\\ProgramData\\checkmk\\agent\\robot\\archivetool\\ArchivetoolConfig\\sva_${LKR_LC} konfiguration.bat + +Starting process: +"C:\ProgramData\checkmk\agent\robot\archivetool\ArchivetoolConfig\sva_ur konfiguration.bat" +Waiting for process to complete. +Process completed. + + + +Launches an application. + +"${APP}" +alias=archivetool + + + + +Makes a variable available everywhere within the scope of the current suite. + +${APPOPEN} +${True} + +${APPOPEN} = True + + + + + + + +login_username +timeout=10 + + +${loc} + + +Runs the given keyword with the given arguments, if ``condition`` is true. + +'${image}' in ${lkr_loc_img} +Change Image Folder +${imgpath}\\${LKR_UC} + + + + +Tries to locate given image from the screen for given time. + +${image} +timeout=${timeout} + + +${loc} + +Image "login_username" found at (227, 149) +${loc} = (227, 149) + + + +Runs the given keyword with the given arguments, if ``condition`` is true. + +'${image}' in ${lkr_loc_img} +Change Image Folder +${imgpath} + + + +${loc} = (227, 149) + + + +Finds the reference image on screen and clicks it once. + +login_username + +Image "C:\ProgramData\checkmk\agent\robot\archivetool\images\login_username.png" found at Box(left=182, top=134, width=90, height=30) +Clicking image "login_username" in position (227, 149) + + + +Pauses the test executed for the given time. + +0.2 + +Slept 200 milliseconds + + + + +login_username +10 +20 +${user} + + + +${image} +${timeout} + + +${loc} + + +Runs the given keyword with the given arguments, if ``condition`` is true. + +'${image}' in ${lkr_loc_img} +Change Image Folder +${imgpath}\\${LKR_UC} + + + + +Tries to locate given image from the screen for given time. + +${image} +timeout=${timeout} + + +${loc} + +Image "login_username" found at (227, 149) +${loc} = (227, 149) + + + +Runs the given keyword with the given arguments, if ``condition`` is true. + +'${image}' in ${lkr_loc_img} +Change Image Folder +${imgpath} + + + +${loc} = (227, 149) + + + +Clicks right of given location by given offset. + +${loc} +${offset} + +Clicking 1 time(s) at (247, 149) with left mouse button at interval 0.000000 + + + +Type text and keyboard keys. + +@{text} + + + + + + +Pauses the test executed for the given time. + +0.2 + +Slept 200 milliseconds + + + +Type text and keyboard keys. + +Key.tab + + + + +Pauses the test executed for the given time. + +0.2 + +Slept 200 milliseconds + + + +Type text and keyboard keys. + +${password} +Key.enter +Key.enter + + + + + +archiv_vista_warn +timeout=5 + + + +${image} +${timeout} + + +${loc} + + +Runs the given keyword with the given arguments, if ``condition`` is true. + +'${image}' in ${lkr_loc_img} +Change Image Folder +${imgpath}\\${LKR_UC} + + + + +Tries to locate given image from the screen for given time. + +${image} +timeout=${timeout} + + +${loc} + +Image "archiv_vista_warn" found at (845, 559) +${loc} = (845, 559) + + + +Runs the given keyword with the given arguments, if ``condition`` is true. + +'${image}' in ${lkr_loc_img} +Change Image Folder +${imgpath} + + + +${loc} = (845, 559) + + + + +${loc} + + +Moves the mouse pointer to an absolute coordinates. + +${loc} + + + + +Clicks with the specified mouse button. + + + + + + + +Type text and keyboard keys. + +Key.enter + + + + +Tries to locate given image from the screen for given time. + +aae_toolbar +timeout=10 + +Image "aae_toolbar" found at (506, 709) + + + + + + +Returns ``True`` if reference image was found on screen or +``False`` otherwise. Never fails. + +aae_vorbelegung_checked + + +${vorbelegt_checked} + +${vorbelegt_checked} = False + + + +Runs the given keyword with the given arguments, if ``condition`` is true. + +${vorbelegt_checked}==${True} +Click Image +aae_vorbelegung_checked + + + + + + +Returns the given values which can then be assigned to a variables. + +0 + + +${i} + +${i} = 0 + + + + + + +${lkr_docs}[${i}] +${anz_seiten} + + +Makes a variable available everywhere within the scope of the current test. + +${dokid} +${lkr_doc} + +${dokid} = 1827996 + + + + +aae_dokumentennr +5 +100 +${lkr_doc} + + + +${image} +${timeout} + + +${loc} + + +Runs the given keyword with the given arguments, if ``condition`` is true. + +'${image}' in ${lkr_loc_img} +Change Image Folder +${imgpath}\\${LKR_UC} + + + + +Tries to locate given image from the screen for given time. + +${image} +timeout=${timeout} + + +${loc} + +Image "aae_dokumentennr" found at (452, 463) +${loc} = (452, 463) + + + +Runs the given keyword with the given arguments, if ``condition`` is true. + +'${image}' in ${lkr_loc_img} +Change Image Folder +${imgpath} + + + +${loc} = (452, 463) + + + +Clicks right of given location by given offset. + +${loc} +${offset} + +Clicking 1 time(s) at (552, 463) with left mouse button at interval 0.000000 + + + +Type text and keyboard keys. + +@{text} + + + + + + +Type text and keyboard keys. + +Key.enter + + + + + +aae_treffer_1 +timeout=10 + + + +${image} +${timeout} + + +${loc} + + +Runs the given keyword with the given arguments, if ``condition`` is true. + +'${image}' in ${lkr_loc_img} +Change Image Folder +${imgpath}\\${LKR_UC} + + + + +Tries to locate given image from the screen for given time. + +${image} +timeout=${timeout} + + +${loc} + +Image "aae_treffer_1" found at (870, 745) +${loc} = (870, 745) + + + +Runs the given keyword with the given arguments, if ``condition`` is true. + +'${image}' in ${lkr_loc_img} +Change Image Folder +${imgpath} + + + +${loc} = (870, 745) + + + + +${loc} + + +Moves the mouse pointer to an absolute coordinates. + +${loc} + + + + +Clicks with the specified mouse button. + + + + + + + +Type text and keyboard keys. + +Key.Tab +Key.Tab +Key.Tab +Key.Tab +Key.right + + + + + +aae_zeile_markiert +timeout=10 + + + +${image} +${timeout} + + +${loc} + + +Runs the given keyword with the given arguments, if ``condition`` is true. + +'${image}' in ${lkr_loc_img} +Change Image Folder +${imgpath}\\${LKR_UC} + + + + +Tries to locate given image from the screen for given time. + +${image} +timeout=${timeout} + + +${loc} + +Image "aae_zeile_markiert" found at (423, 786) +${loc} = (423, 786) + + + +Runs the given keyword with the given arguments, if ``condition`` is true. + +'${image}' in ${lkr_loc_img} +Change Image Folder +${imgpath} + + + +${loc} = (423, 786) + + + + +${loc} + + +Moves the mouse pointer to an absolute coordinates. + +${loc} + + + + +Clicks with the specified mouse button. + + + + + + + + +aae_viewer_b +timeout=10 + + + +${image} +${timeout} + + +${loc} + + +Runs the given keyword with the given arguments, if ``condition`` is true. + +'${image}' in ${lkr_loc_img} +Change Image Folder +${imgpath}\\${LKR_UC} + + + + +Tries to locate given image from the screen for given time. + +${image} +timeout=${timeout} + + +${loc} + +Image "aae_viewer_b" found at (641, 709) +${loc} = (641, 709) + + + +Runs the given keyword with the given arguments, if ``condition`` is true. + +'${image}' in ${lkr_loc_img} +Change Image Folder +${imgpath} + + + +${loc} = (641, 709) + + + + +${loc} + + +Moves the mouse pointer to an absolute coordinates. + +${loc} + + + + +Clicks with the specified mouse button. + + + + + + + + +bviewer_opened +10 + + +Runs the given keyword with the given arguments, if ``condition`` is true. + +'${image}' in ${lkr_loc_img} +Change Image Folder +${imgpath}\\${LKR_UC} + + + + +Tries to locate given image from the screen for given time. + +${image} +timeout=${timeout} + + +${loc} + +Image "bviewer_opened" found at (652, 94) +${loc} = (652, 94) + + + +Runs the given keyword with the given arguments, if ``condition`` is true. + +'${image}' in ${lkr_loc_img} +Change Image Folder +${imgpath} + + + + + + +Pauses the test executed for the given time. + +0.5 + +Slept 500 milliseconds + + + + +bviewer_opened +timeout=10 + + + +${image} +${timeout} + + +${loc} + + +Runs the given keyword with the given arguments, if ``condition`` is true. + +'${image}' in ${lkr_loc_img} +Change Image Folder +${imgpath}\\${LKR_UC} + + + + +Tries to locate given image from the screen for given time. + +${image} +timeout=${timeout} + + +${loc} + +Image "bviewer_opened" found at (652, 94) +${loc} = (652, 94) + + + +Runs the given keyword with the given arguments, if ``condition`` is true. + +'${image}' in ${lkr_loc_img} +Change Image Folder +${imgpath} + + + +${loc} = (652, 94) + + + + +${loc} + + +Moves the mouse pointer to an absolute coordinates. + +${loc} + + + + +Clicks with the specified mouse button. + + + + + + + +Pauses the test executed for the given time. + +0.5 + +Slept 500 milliseconds + + + +Press given keyboard keys. + +Key.Win +Key.Up + + + + +Returns the given values which can then be assigned to a variables. + +ARCHIVETOOL_DOKU_${LKR_UC}_${anz_seiten} + + +${search_image} + +${search_image} = ARCHIVETOOL_DOKU_UR_30 + + + + +bviewer_opened +timeout=10 + + + +${image} +${timeout} + + +${loc} + + +Runs the given keyword with the given arguments, if ``condition`` is true. + +'${image}' in ${lkr_loc_img} +Change Image Folder +${imgpath}\\${LKR_UC} + + + + +Tries to locate given image from the screen for given time. + +${image} +timeout=${timeout} + + +${loc} + +Image "bviewer_opened" found at (11, 85) +${loc} = (11, 85) + + + +Runs the given keyword with the given arguments, if ``condition`` is true. + +'${image}' in ${lkr_loc_img} +Change Image Folder +${imgpath} + + + +${loc} = (11, 85) + + + + +${loc} + + +Moves the mouse pointer to an absolute coordinates. + +${loc} + + + + +Clicks with the specified mouse button. + + + + + + + +Tries to locate given image from the screen for given time. + +${search_image} +timeout=90 + +Image "ARCHIVETOOL_DOKU_UR_30" found at (404, 283) + + + +Press given keyboard keys. + +Key.Alt +Key.F4 + + + + + + + +aae_suche_clear +timeout=5 + + + +${image} +${timeout} + + +${loc} + + +Runs the given keyword with the given arguments, if ``condition`` is true. + +'${image}' in ${lkr_loc_img} +Change Image Folder +${imgpath}\\${LKR_UC} + + + + +Tries to locate given image from the screen for given time. + +${image} +timeout=${timeout} + + +${loc} + +Image "aae_suche_clear" found at (404, 709) +${loc} = (404, 709) + + + +Runs the given keyword with the given arguments, if ``condition`` is true. + +'${image}' in ${lkr_loc_img} +Change Image Folder +${imgpath} + + + +${loc} = (404, 709) + + + + +${loc} + + +Moves the mouse pointer to an absolute coordinates. + +${loc} + + + + +Clicks with the specified mouse button. + + + + + + + + +aae_dokumentennr_bereit +timeout=5 + + +Runs the given keyword with the given arguments, if ``condition`` is true. + +'${image}' in ${lkr_loc_img} +Change Image Folder +${imgpath}\\${LKR_UC} + + + + +Tries to locate given image from the screen for given time. + +${image} +timeout=${timeout} + + +${loc} + +Image "aae_dokumentennr_bereit" found at (569, 464) +${loc} = (569, 464) + + + +Runs the given keyword with the given arguments, if ``condition`` is true. + +'${image}' in ${lkr_loc_img} +Change Image Folder +${imgpath} + + + + + + +Evaluates the given expression in Python and returns the result. + +${i} + 1 + + +${i} + +${i} = 1 + + + + + + + +${lkr_docs}[${i}] +${anz_seiten} + + +Makes a variable available everywhere within the scope of the current test. + +${dokid} +${lkr_doc} + +${dokid} = 1828026 + + + + +aae_dokumentennr +5 +100 +${lkr_doc} + + + +${image} +${timeout} + + +${loc} + + +Runs the given keyword with the given arguments, if ``condition`` is true. + +'${image}' in ${lkr_loc_img} +Change Image Folder +${imgpath}\\${LKR_UC} + + + + +Tries to locate given image from the screen for given time. + +${image} +timeout=${timeout} + + +${loc} + +Image "aae_dokumentennr" found at (452, 463) +${loc} = (452, 463) + + + +Runs the given keyword with the given arguments, if ``condition`` is true. + +'${image}' in ${lkr_loc_img} +Change Image Folder +${imgpath} + + + +${loc} = (452, 463) + + + +Clicks right of given location by given offset. + +${loc} +${offset} + +Clicking 1 time(s) at (552, 463) with left mouse button at interval 0.000000 + + + +Type text and keyboard keys. + +@{text} + + + + + + +Type text and keyboard keys. + +Key.enter + + + + + +aae_treffer_1 +timeout=10 + + + +${image} +${timeout} + + +${loc} + + +Runs the given keyword with the given arguments, if ``condition`` is true. + +'${image}' in ${lkr_loc_img} +Change Image Folder +${imgpath}\\${LKR_UC} + + + + +Tries to locate given image from the screen for given time. + +${image} +timeout=${timeout} + + +${loc} + +Image "aae_treffer_1" found at (870, 745) +${loc} = (870, 745) + + + +Runs the given keyword with the given arguments, if ``condition`` is true. + +'${image}' in ${lkr_loc_img} +Change Image Folder +${imgpath} + + + +${loc} = (870, 745) + + + + +${loc} + + +Moves the mouse pointer to an absolute coordinates. + +${loc} + + + + +Clicks with the specified mouse button. + + + + + + + +Type text and keyboard keys. + +Key.Tab +Key.Tab +Key.Tab +Key.Tab +Key.right + + + + + +aae_zeile_markiert +timeout=10 + + + +${image} +${timeout} + + +${loc} + + +Runs the given keyword with the given arguments, if ``condition`` is true. + +'${image}' in ${lkr_loc_img} +Change Image Folder +${imgpath}\\${LKR_UC} + + + + +Tries to locate given image from the screen for given time. + +${image} +timeout=${timeout} + + +${loc} + +Image "aae_zeile_markiert" found at (423, 786) +${loc} = (423, 786) + + + +Runs the given keyword with the given arguments, if ``condition`` is true. + +'${image}' in ${lkr_loc_img} +Change Image Folder +${imgpath} + + + +${loc} = (423, 786) + + + + +${loc} + + +Moves the mouse pointer to an absolute coordinates. + +${loc} + + + + +Clicks with the specified mouse button. + + + + + + + + +aae_viewer_b +timeout=10 + + + +${image} +${timeout} + + +${loc} + + +Runs the given keyword with the given arguments, if ``condition`` is true. + +'${image}' in ${lkr_loc_img} +Change Image Folder +${imgpath}\\${LKR_UC} + + + + +Tries to locate given image from the screen for given time. + +${image} +timeout=${timeout} + + +${loc} + +Image "aae_viewer_b" found at (641, 709) +${loc} = (641, 709) + + + +Runs the given keyword with the given arguments, if ``condition`` is true. + +'${image}' in ${lkr_loc_img} +Change Image Folder +${imgpath} + + + +${loc} = (641, 709) + + + + +${loc} + + +Moves the mouse pointer to an absolute coordinates. + +${loc} + + + + +Clicks with the specified mouse button. + + + + + + + + +bviewer_opened +10 + + +Runs the given keyword with the given arguments, if ``condition`` is true. + +'${image}' in ${lkr_loc_img} +Change Image Folder +${imgpath}\\${LKR_UC} + + + + +Tries to locate given image from the screen for given time. + +${image} +timeout=${timeout} + + +${loc} + +Image "bviewer_opened" found at (652, 94) +${loc} = (652, 94) + + + +Runs the given keyword with the given arguments, if ``condition`` is true. + +'${image}' in ${lkr_loc_img} +Change Image Folder +${imgpath} + + + + + + +Pauses the test executed for the given time. + +0.5 + +Slept 500 milliseconds + + + + +bviewer_opened +timeout=10 + + + +${image} +${timeout} + + +${loc} + + +Runs the given keyword with the given arguments, if ``condition`` is true. + +'${image}' in ${lkr_loc_img} +Change Image Folder +${imgpath}\\${LKR_UC} + + + + +Tries to locate given image from the screen for given time. + +${image} +timeout=${timeout} + + +${loc} + +Image "bviewer_opened" found at (652, 94) +${loc} = (652, 94) + + + +Runs the given keyword with the given arguments, if ``condition`` is true. + +'${image}' in ${lkr_loc_img} +Change Image Folder +${imgpath} + + + +${loc} = (652, 94) + + + + +${loc} + + +Moves the mouse pointer to an absolute coordinates. + +${loc} + + + + +Clicks with the specified mouse button. + + + + + + + +Pauses the test executed for the given time. + +0.5 + +Slept 500 milliseconds + + + +Press given keyboard keys. + +Key.Win +Key.Up + + + + +Returns the given values which can then be assigned to a variables. + +ARCHIVETOOL_DOKU_${LKR_UC}_${anz_seiten} + + +${search_image} + +${search_image} = ARCHIVETOOL_DOKU_UR_100 + + + + +bviewer_opened +timeout=10 + + + +${image} +${timeout} + + +${loc} + + +Runs the given keyword with the given arguments, if ``condition`` is true. + +'${image}' in ${lkr_loc_img} +Change Image Folder +${imgpath}\\${LKR_UC} + + + + +Tries to locate given image from the screen for given time. + +${image} +timeout=${timeout} + + +${loc} + +Image "bviewer_opened" found at (11, 85) +${loc} = (11, 85) + + + +Runs the given keyword with the given arguments, if ``condition`` is true. + +'${image}' in ${lkr_loc_img} +Change Image Folder +${imgpath} + + + +${loc} = (11, 85) + + + + +${loc} + + +Moves the mouse pointer to an absolute coordinates. + +${loc} + + + + +Clicks with the specified mouse button. + + + + + + + +Tries to locate given image from the screen for given time. + +${search_image} +timeout=90 + +Image "ARCHIVETOOL_DOKU_UR_100" found at (321, 292) + + + +Press given keyboard keys. + +Key.Alt +Key.F4 + + + + + + + +aae_suche_clear +timeout=5 + + + +${image} +${timeout} + + +${loc} + + +Runs the given keyword with the given arguments, if ``condition`` is true. + +'${image}' in ${lkr_loc_img} +Change Image Folder +${imgpath}\\${LKR_UC} + + + + +Tries to locate given image from the screen for given time. + +${image} +timeout=${timeout} + + +${loc} + +Image "aae_suche_clear" found at (404, 709) +${loc} = (404, 709) + + + +Runs the given keyword with the given arguments, if ``condition`` is true. + +'${image}' in ${lkr_loc_img} +Change Image Folder +${imgpath} + + + +${loc} = (404, 709) + + + + +${loc} + + +Moves the mouse pointer to an absolute coordinates. + +${loc} + + + + +Clicks with the specified mouse button. + + + + + + + + +aae_dokumentennr_bereit +timeout=5 + + +Runs the given keyword with the given arguments, if ``condition`` is true. + +'${image}' in ${lkr_loc_img} +Change Image Folder +${imgpath}\\${LKR_UC} + + + + +Tries to locate given image from the screen for given time. + +${image} +timeout=${timeout} + + +${loc} + +Image "aae_dokumentennr_bereit" found at (569, 464) +${loc} = (569, 464) + + + +Runs the given keyword with the given arguments, if ``condition`` is true. + +'${image}' in ${lkr_loc_img} +Change Image Folder +${imgpath} + + + + + + +Evaluates the given expression in Python and returns the result. + +${i} + 1 + + +${i} + +${i} = 2 + + + + + + + +${lkr_docs}[${i}] +${anz_seiten} + + +Makes a variable available everywhere within the scope of the current test. + +${dokid} +${lkr_doc} + +${dokid} = 1828126 + + + + +aae_dokumentennr +5 +100 +${lkr_doc} + + + +${image} +${timeout} + + +${loc} + + +Runs the given keyword with the given arguments, if ``condition`` is true. + +'${image}' in ${lkr_loc_img} +Change Image Folder +${imgpath}\\${LKR_UC} + + + + +Tries to locate given image from the screen for given time. + +${image} +timeout=${timeout} + + +${loc} + +Image "aae_dokumentennr" found at (452, 463) +${loc} = (452, 463) + + + +Runs the given keyword with the given arguments, if ``condition`` is true. + +'${image}' in ${lkr_loc_img} +Change Image Folder +${imgpath} + + + +${loc} = (452, 463) + + + +Clicks right of given location by given offset. + +${loc} +${offset} + +Clicking 1 time(s) at (552, 463) with left mouse button at interval 0.000000 + + + +Type text and keyboard keys. + +@{text} + + + + + + +Type text and keyboard keys. + +Key.enter + + + + + +aae_treffer_1 +timeout=10 + + + +${image} +${timeout} + + +${loc} + + +Runs the given keyword with the given arguments, if ``condition`` is true. + +'${image}' in ${lkr_loc_img} +Change Image Folder +${imgpath}\\${LKR_UC} + + + + +Tries to locate given image from the screen for given time. + +${image} +timeout=${timeout} + + +${loc} + +Image "aae_treffer_1" found at (870, 745) +${loc} = (870, 745) + + + +Runs the given keyword with the given arguments, if ``condition`` is true. + +'${image}' in ${lkr_loc_img} +Change Image Folder +${imgpath} + + + +${loc} = (870, 745) + + + + +${loc} + + +Moves the mouse pointer to an absolute coordinates. + +${loc} + + + + +Clicks with the specified mouse button. + + + + + + + +Type text and keyboard keys. + +Key.Tab +Key.Tab +Key.Tab +Key.Tab +Key.right + + + + + +aae_zeile_markiert +timeout=10 + + + +${image} +${timeout} + + +${loc} + + +Runs the given keyword with the given arguments, if ``condition`` is true. + +'${image}' in ${lkr_loc_img} +Change Image Folder +${imgpath}\\${LKR_UC} + + + + +Tries to locate given image from the screen for given time. + +${image} +timeout=${timeout} + + +${loc} + +Image "aae_zeile_markiert" found at (423, 786) +${loc} = (423, 786) + + + +Runs the given keyword with the given arguments, if ``condition`` is true. + +'${image}' in ${lkr_loc_img} +Change Image Folder +${imgpath} + + + +${loc} = (423, 786) + + + + +${loc} + + +Moves the mouse pointer to an absolute coordinates. + +${loc} + + + + +Clicks with the specified mouse button. + + + + + + + + +aae_viewer_b +timeout=10 + + + +${image} +${timeout} + + +${loc} + + +Runs the given keyword with the given arguments, if ``condition`` is true. + +'${image}' in ${lkr_loc_img} +Change Image Folder +${imgpath}\\${LKR_UC} + + + + +Tries to locate given image from the screen for given time. + +${image} +timeout=${timeout} + + +${loc} + +Image "aae_viewer_b" found at (641, 709) +${loc} = (641, 709) + + + +Runs the given keyword with the given arguments, if ``condition`` is true. + +'${image}' in ${lkr_loc_img} +Change Image Folder +${imgpath} + + + +${loc} = (641, 709) + + + + +${loc} + + +Moves the mouse pointer to an absolute coordinates. + +${loc} + + + + +Clicks with the specified mouse button. + + + + + + + + +bviewer_opened +10 + + +Runs the given keyword with the given arguments, if ``condition`` is true. + +'${image}' in ${lkr_loc_img} +Change Image Folder +${imgpath}\\${LKR_UC} + + + + +Tries to locate given image from the screen for given time. + +${image} +timeout=${timeout} + + +${loc} + +Image "bviewer_opened" found at (652, 94) +${loc} = (652, 94) + + + +Runs the given keyword with the given arguments, if ``condition`` is true. + +'${image}' in ${lkr_loc_img} +Change Image Folder +${imgpath} + + + + + + +Pauses the test executed for the given time. + +0.5 + +Slept 500 milliseconds + + + + +bviewer_opened +timeout=10 + + + +${image} +${timeout} + + +${loc} + + +Runs the given keyword with the given arguments, if ``condition`` is true. + +'${image}' in ${lkr_loc_img} +Change Image Folder +${imgpath}\\${LKR_UC} + + + + +Tries to locate given image from the screen for given time. + +${image} +timeout=${timeout} + + +${loc} + +Image "bviewer_opened" found at (652, 94) +${loc} = (652, 94) + + + +Runs the given keyword with the given arguments, if ``condition`` is true. + +'${image}' in ${lkr_loc_img} +Change Image Folder +${imgpath} + + + +${loc} = (652, 94) + + + + +${loc} + + +Moves the mouse pointer to an absolute coordinates. + +${loc} + + + + +Clicks with the specified mouse button. + + + + + + + +Pauses the test executed for the given time. + +0.5 + +Slept 500 milliseconds + + + +Press given keyboard keys. + +Key.Win +Key.Up + + + + +Returns the given values which can then be assigned to a variables. + +ARCHIVETOOL_DOKU_${LKR_UC}_${anz_seiten} + + +${search_image} + +${search_image} = ARCHIVETOOL_DOKU_UR_300 + + + + +bviewer_opened +timeout=10 + + + +${image} +${timeout} + + +${loc} + + +Runs the given keyword with the given arguments, if ``condition`` is true. + +'${image}' in ${lkr_loc_img} +Change Image Folder +${imgpath}\\${LKR_UC} + + + + +Tries to locate given image from the screen for given time. + +${image} +timeout=${timeout} + + +${loc} + +Image "bviewer_opened" found at (11, 85) +${loc} = (11, 85) + + + +Runs the given keyword with the given arguments, if ``condition`` is true. + +'${image}' in ${lkr_loc_img} +Change Image Folder +${imgpath} + + + +${loc} = (11, 85) + + + + +${loc} + + +Moves the mouse pointer to an absolute coordinates. + +${loc} + + + + +Clicks with the specified mouse button. + + + + + + + +Tries to locate given image from the screen for given time. + +${search_image} +timeout=90 + +Image "ARCHIVETOOL_DOKU_UR_300" found at (315, 265) + + + +Press given keyboard keys. + +Key.Alt +Key.F4 + + + + + + + +aae_suche_clear +timeout=5 + + + +${image} +${timeout} + + +${loc} + + +Runs the given keyword with the given arguments, if ``condition`` is true. + +'${image}' in ${lkr_loc_img} +Change Image Folder +${imgpath}\\${LKR_UC} + + + + +Tries to locate given image from the screen for given time. + +${image} +timeout=${timeout} + + +${loc} + +Image "aae_suche_clear" found at (404, 709) +${loc} = (404, 709) + + + +Runs the given keyword with the given arguments, if ``condition`` is true. + +'${image}' in ${lkr_loc_img} +Change Image Folder +${imgpath} + + + +${loc} = (404, 709) + + + + +${loc} + + +Moves the mouse pointer to an absolute coordinates. + +${loc} + + + + +Clicks with the specified mouse button. + + + + + + + + +aae_dokumentennr_bereit +timeout=5 + + +Runs the given keyword with the given arguments, if ``condition`` is true. + +'${image}' in ${lkr_loc_img} +Change Image Folder +${imgpath}\\${LKR_UC} + + + + +Tries to locate given image from the screen for given time. + +${image} +timeout=${timeout} + + +${loc} + +Image "aae_dokumentennr_bereit" found at (569, 464) +${loc} = (569, 464) + + + +Runs the given keyword with the given arguments, if ``condition`` is true. + +'${image}' in ${lkr_loc_img} +Change Image Folder +${imgpath} + + + + + + +Evaluates the given expression in Python and returns the result. + +${i} + 1 + + +${i} + +${i} = 3 + + + + + + + + + + +Runs the given keyword with the given arguments, if ``condition`` is true. + +${APPOPEN}==${True} +Terminate Application +alias=archivetool + + +Terminates the process launched with `Launch Application` with +given ``alias``. + +alias=archivetool + + + + + + +Runs the given keyword with the given arguments, if ``condition`` is true. + +${APPOPEN}==${True} +Quit All Viewer Processes + + + +Runs a process and waits for it to complete. + +cmd.exe /c taskkill /IM ArchiveViewAdvancedA.exe +shell=True + +Starting process: +cmd.exe /c taskkill /IM ArchiveViewAdvancedA.exe +Waiting for process to complete. +Process completed. + + + +Runs a process and waits for it to complete. + +cmd.exe /c taskkill /IM ArchiveViewAdvancedB.exe +shell=True + +Starting process: +cmd.exe /c taskkill /IM ArchiveViewAdvancedB.exe +Waiting for process to complete. +Process completed. + + + +Runs a process and waits for it to complete. + +cmd.exe /c taskkill /IM ArchiveViewAdvancedC.exe +shell=True + +Starting process: +cmd.exe /c taskkill /IM ArchiveViewAdvancedC.exe +Waiting for process to complete. +Process completed. + + + +Runs a process and waits for it to complete. + +cmd.exe /c taskkill /IM +ArchivToolExtAdvanced.exe +shell=True + +Starting process: +"cmd.exe /c taskkill /IM" ArchivToolExtAdvanced.exe +Waiting for process to complete. +Process completed. + + + +Runs a process and waits for it to complete. + +cmd.exe /c taskkill /IM +archtool.exe +shell=True + +Starting process: +"cmd.exe /c taskkill /IM" archtool.exe +Waiting for process to complete. +Process completed. + + + + + + + +Makes a variable available everywhere within the scope of the current suite. + +${APPOPEN} +${False} + +${APPOPEN} = False + + + + + + + + + +ZH + + +Sets where all reference images are stored. + +${imgpath} + + + + + +${lkr_uc} + + +Makes a variable available everywhere within the scope of the current test. + +${LKR_UC} +${lkr_uc} + +${LKR_UC} = ZH + + + +Converts string to lower case. + +${lkr_uc} + + +${lkr_lc} + +${lkr_lc} = zh + + + +Makes a variable available everywhere within the scope of the current test. + +${LKR_LC} +${lkr_lc} + +${LKR_LC} = zh + + + +Makes a variable available everywhere within the scope of the current test. + +${lkr_docs} +${TESTDATA['${LKR_UC}']['docs']} + +${lkr_docs} = ['106614160', '106614249', '106614594'] + + + +Makes a variable available everywhere within the scope of the current test. + +${lkr_cred} +${TESTDATA['${LKR_UC}']['credentials']} + +${lkr_cred} = ['ZH9995', 'crypt:246ElyxZk+Mi9rNaiUCLhcCofWF+ibiRu06AjHfSLQCxWW+oQnqUVFPF04GMnwKegeRVeh/gsGU='] + + + +Makes a variable available everywhere within the scope of the current test. + +${lkr_loc_img} +${TESTDATA['${LKR_UC}']['loc_img']} + +${lkr_loc_img} = [] + + + +Makes a variable available everywhere within the scope of the current test. + +${user} +${lkr_cred}[0] + +${user} = ZH9995 + + + +Decrypts cipher text and returns the plain text. + +${lkr_cred}[1] + + +${password} + +Decrypting text and return value. +${password} = *** + + + +Makes a variable available everywhere within the scope of the current test. + +${password} +${password} + +${password} = *** + + + + + + +Runs a process and waits for it to complete. + +cmd.exe /c taskkill /IM ArchiveViewAdvancedA.exe +shell=True + +Starting process: +cmd.exe /c taskkill /IM ArchiveViewAdvancedA.exe +Waiting for process to complete. +Process completed. + + + +Runs a process and waits for it to complete. + +cmd.exe /c taskkill /IM ArchiveViewAdvancedB.exe +shell=True + +Starting process: +cmd.exe /c taskkill /IM ArchiveViewAdvancedB.exe +Waiting for process to complete. +Process completed. + + + +Runs a process and waits for it to complete. + +cmd.exe /c taskkill /IM ArchiveViewAdvancedC.exe +shell=True + +Starting process: +cmd.exe /c taskkill /IM ArchiveViewAdvancedC.exe +Waiting for process to complete. +Process completed. + + + +Runs a process and waits for it to complete. + +cmd.exe /c taskkill /IM +ArchivToolExtAdvanced.exe +shell=True + +Starting process: +"cmd.exe /c taskkill /IM" ArchivToolExtAdvanced.exe +Waiting for process to complete. +Process completed. + + + +Runs a process and waits for it to complete. + +cmd.exe /c taskkill /IM +archtool.exe +shell=True + +Starting process: +"cmd.exe /c taskkill /IM" archtool.exe +Waiting for process to complete. +Process completed. + + + + + + +Runs a process and waits for it to complete. + +C:\\ProgramData\\checkmk\\agent\\robot\\archivetool\\ArchivetoolConfig\\sva_${LKR_LC} konfiguration.bat + +Starting process: +"C:\ProgramData\checkmk\agent\robot\archivetool\ArchivetoolConfig\sva_zh konfiguration.bat" +Waiting for process to complete. +Process completed. + + + +Launches an application. + +"${APP}" +alias=archivetool + + + + +Makes a variable available everywhere within the scope of the current suite. + +${APPOPEN} +${True} + +${APPOPEN} = True + + + + + + + +login_username +timeout=10 + + +${loc} + + +Runs the given keyword with the given arguments, if ``condition`` is true. + +'${image}' in ${lkr_loc_img} +Change Image Folder +${imgpath}\\${LKR_UC} + + + + +Tries to locate given image from the screen for given time. + +${image} +timeout=${timeout} + + +${loc} + +Image "login_username" found at (227, 149) +${loc} = (227, 149) + + + +Runs the given keyword with the given arguments, if ``condition`` is true. + +'${image}' in ${lkr_loc_img} +Change Image Folder +${imgpath} + + + +${loc} = (227, 149) + + + +Finds the reference image on screen and clicks it once. + +login_username + +Image "C:\ProgramData\checkmk\agent\robot\archivetool\images\login_username.png" found at Box(left=182, top=134, width=90, height=30) +Clicking image "login_username" in position (227, 149) + + + +Pauses the test executed for the given time. + +0.2 + +Slept 200 milliseconds + + + + +login_username +10 +20 +${user} + + + +${image} +${timeout} + + +${loc} + + +Runs the given keyword with the given arguments, if ``condition`` is true. + +'${image}' in ${lkr_loc_img} +Change Image Folder +${imgpath}\\${LKR_UC} + + + + +Tries to locate given image from the screen for given time. + +${image} +timeout=${timeout} + + +${loc} + +Image "login_username" found at (227, 149) +${loc} = (227, 149) + + + +Runs the given keyword with the given arguments, if ``condition`` is true. + +'${image}' in ${lkr_loc_img} +Change Image Folder +${imgpath} + + + +${loc} = (227, 149) + + + +Clicks right of given location by given offset. + +${loc} +${offset} + +Clicking 1 time(s) at (247, 149) with left mouse button at interval 0.000000 + + + +Type text and keyboard keys. + +@{text} + + + + + + +Pauses the test executed for the given time. + +0.2 + +Slept 200 milliseconds + + + +Type text and keyboard keys. + +Key.tab + + + + +Pauses the test executed for the given time. + +0.2 + +Slept 200 milliseconds + + + +Type text and keyboard keys. + +${password} +Key.enter +Key.enter + + + + + +archiv_vista_warn +timeout=5 + + + +${image} +${timeout} + + +${loc} + + +Runs the given keyword with the given arguments, if ``condition`` is true. + +'${image}' in ${lkr_loc_img} +Change Image Folder +${imgpath}\\${LKR_UC} + + + + +Tries to locate given image from the screen for given time. + +${image} +timeout=${timeout} + + +${loc} + +Image "archiv_vista_warn" found at (845, 559) +${loc} = (845, 559) + + + +Runs the given keyword with the given arguments, if ``condition`` is true. + +'${image}' in ${lkr_loc_img} +Change Image Folder +${imgpath} + + + +${loc} = (845, 559) + + + + +${loc} + + +Moves the mouse pointer to an absolute coordinates. + +${loc} + + + + +Clicks with the specified mouse button. + + + + + + + +Type text and keyboard keys. + +Key.enter + + + + +Tries to locate given image from the screen for given time. + +aae_toolbar +timeout=10 + +Image "aae_toolbar" found at (506, 709) + + + + + + +Returns ``True`` if reference image was found on screen or +``False`` otherwise. Never fails. + +aae_vorbelegung_checked + + +${vorbelegt_checked} + +${vorbelegt_checked} = False + + + +Runs the given keyword with the given arguments, if ``condition`` is true. + +${vorbelegt_checked}==${True} +Click Image +aae_vorbelegung_checked + + + + + + +Returns the given values which can then be assigned to a variables. + +0 + + +${i} + +${i} = 0 + + + + + + +${lkr_docs}[${i}] +${anz_seiten} + + +Makes a variable available everywhere within the scope of the current test. + +${dokid} +${lkr_doc} + +${dokid} = 106614160 + + + + +aae_dokumentennr +5 +100 +${lkr_doc} + + + +${image} +${timeout} + + +${loc} + + +Runs the given keyword with the given arguments, if ``condition`` is true. + +'${image}' in ${lkr_loc_img} +Change Image Folder +${imgpath}\\${LKR_UC} + + + + +Tries to locate given image from the screen for given time. + +${image} +timeout=${timeout} + + +${loc} + +Image "aae_dokumentennr" found at (452, 463) +${loc} = (452, 463) + + + +Runs the given keyword with the given arguments, if ``condition`` is true. + +'${image}' in ${lkr_loc_img} +Change Image Folder +${imgpath} + + + +${loc} = (452, 463) + + + +Clicks right of given location by given offset. + +${loc} +${offset} + +Clicking 1 time(s) at (552, 463) with left mouse button at interval 0.000000 + + + +Type text and keyboard keys. + +@{text} + + + + + + +Type text and keyboard keys. + +Key.enter + + + + + +aae_treffer_1 +timeout=10 + + + +${image} +${timeout} + + +${loc} + + +Runs the given keyword with the given arguments, if ``condition`` is true. + +'${image}' in ${lkr_loc_img} +Change Image Folder +${imgpath}\\${LKR_UC} + + + + +Tries to locate given image from the screen for given time. + +${image} +timeout=${timeout} + + +${loc} + +Image "aae_treffer_1" found at (870, 745) +${loc} = (870, 745) + + + +Runs the given keyword with the given arguments, if ``condition`` is true. + +'${image}' in ${lkr_loc_img} +Change Image Folder +${imgpath} + + + +${loc} = (870, 745) + + + + +${loc} + + +Moves the mouse pointer to an absolute coordinates. + +${loc} + + + + +Clicks with the specified mouse button. + + + + + + + +Type text and keyboard keys. + +Key.Tab +Key.Tab +Key.Tab +Key.Tab +Key.right + + + + + +aae_zeile_markiert +timeout=10 + + + +${image} +${timeout} + + +${loc} + + +Runs the given keyword with the given arguments, if ``condition`` is true. + +'${image}' in ${lkr_loc_img} +Change Image Folder +${imgpath}\\${LKR_UC} + + + + +Tries to locate given image from the screen for given time. + +${image} +timeout=${timeout} + + +${loc} + +Image "aae_zeile_markiert" found at (423, 786) +${loc} = (423, 786) + + + +Runs the given keyword with the given arguments, if ``condition`` is true. + +'${image}' in ${lkr_loc_img} +Change Image Folder +${imgpath} + + + +${loc} = (423, 786) + + + + +${loc} + + +Moves the mouse pointer to an absolute coordinates. + +${loc} + + + + +Clicks with the specified mouse button. + + + + + + + + +aae_viewer_b +timeout=10 + + + +${image} +${timeout} + + +${loc} + + +Runs the given keyword with the given arguments, if ``condition`` is true. + +'${image}' in ${lkr_loc_img} +Change Image Folder +${imgpath}\\${LKR_UC} + + + + +Tries to locate given image from the screen for given time. + +${image} +timeout=${timeout} + + +${loc} + +Image "aae_viewer_b" found at (641, 709) +${loc} = (641, 709) + + + +Runs the given keyword with the given arguments, if ``condition`` is true. + +'${image}' in ${lkr_loc_img} +Change Image Folder +${imgpath} + + + +${loc} = (641, 709) + + + + +${loc} + + +Moves the mouse pointer to an absolute coordinates. + +${loc} + + + + +Clicks with the specified mouse button. + + + + + + + + +bviewer_opened +10 + + +Runs the given keyword with the given arguments, if ``condition`` is true. + +'${image}' in ${lkr_loc_img} +Change Image Folder +${imgpath}\\${LKR_UC} + + + + +Tries to locate given image from the screen for given time. + +${image} +timeout=${timeout} + + +${loc} + +Image "bviewer_opened" found at (652, 94) +${loc} = (652, 94) + + + +Runs the given keyword with the given arguments, if ``condition`` is true. + +'${image}' in ${lkr_loc_img} +Change Image Folder +${imgpath} + + + + + + +Pauses the test executed for the given time. + +0.5 + +Slept 500 milliseconds + + + + +bviewer_opened +timeout=10 + + + +${image} +${timeout} + + +${loc} + + +Runs the given keyword with the given arguments, if ``condition`` is true. + +'${image}' in ${lkr_loc_img} +Change Image Folder +${imgpath}\\${LKR_UC} + + + + +Tries to locate given image from the screen for given time. + +${image} +timeout=${timeout} + + +${loc} + +Image "bviewer_opened" found at (652, 94) +${loc} = (652, 94) + + + +Runs the given keyword with the given arguments, if ``condition`` is true. + +'${image}' in ${lkr_loc_img} +Change Image Folder +${imgpath} + + + +${loc} = (652, 94) + + + + +${loc} + + +Moves the mouse pointer to an absolute coordinates. + +${loc} + + + + +Clicks with the specified mouse button. + + + + + + + +Pauses the test executed for the given time. + +0.5 + +Slept 500 milliseconds + + + +Press given keyboard keys. + +Key.Win +Key.Up + + + + +Returns the given values which can then be assigned to a variables. + +ARCHIVETOOL_DOKU_${LKR_UC}_${anz_seiten} + + +${search_image} + +${search_image} = ARCHIVETOOL_DOKU_ZH_30 + + + + +bviewer_opened +timeout=10 + + + +${image} +${timeout} + + +${loc} + + +Runs the given keyword with the given arguments, if ``condition`` is true. + +'${image}' in ${lkr_loc_img} +Change Image Folder +${imgpath}\\${LKR_UC} + + + + +Tries to locate given image from the screen for given time. + +${image} +timeout=${timeout} + + +${loc} + +Image "bviewer_opened" found at (11, 85) +${loc} = (11, 85) + + + +Runs the given keyword with the given arguments, if ``condition`` is true. + +'${image}' in ${lkr_loc_img} +Change Image Folder +${imgpath} + + + +${loc} = (11, 85) + + + + +${loc} + + +Moves the mouse pointer to an absolute coordinates. + +${loc} + + + + +Clicks with the specified mouse button. + + + + + + + +Tries to locate given image from the screen for given time. + +${search_image} +timeout=90 + +Image "ARCHIVETOOL_DOKU_ZH_30" found at (254, 605) + + + +Press given keyboard keys. + +Key.Alt +Key.F4 + + + + + + + +aae_suche_clear +timeout=5 + + + +${image} +${timeout} + + +${loc} + + +Runs the given keyword with the given arguments, if ``condition`` is true. + +'${image}' in ${lkr_loc_img} +Change Image Folder +${imgpath}\\${LKR_UC} + + + + +Tries to locate given image from the screen for given time. + +${image} +timeout=${timeout} + + +${loc} + +Image "aae_suche_clear" found at (404, 709) +${loc} = (404, 709) + + + +Runs the given keyword with the given arguments, if ``condition`` is true. + +'${image}' in ${lkr_loc_img} +Change Image Folder +${imgpath} + + + +${loc} = (404, 709) + + + + +${loc} + + +Moves the mouse pointer to an absolute coordinates. + +${loc} + + + + +Clicks with the specified mouse button. + + + + + + + + +aae_dokumentennr_bereit +timeout=5 + + +Runs the given keyword with the given arguments, if ``condition`` is true. + +'${image}' in ${lkr_loc_img} +Change Image Folder +${imgpath}\\${LKR_UC} + + + + +Tries to locate given image from the screen for given time. + +${image} +timeout=${timeout} + + +${loc} + +Image "aae_dokumentennr_bereit" found at (569, 464) +${loc} = (569, 464) + + + +Runs the given keyword with the given arguments, if ``condition`` is true. + +'${image}' in ${lkr_loc_img} +Change Image Folder +${imgpath} + + + + + + +Evaluates the given expression in Python and returns the result. + +${i} + 1 + + +${i} + +${i} = 1 + + + + + + + +${lkr_docs}[${i}] +${anz_seiten} + + +Makes a variable available everywhere within the scope of the current test. + +${dokid} +${lkr_doc} + +${dokid} = 106614249 + + + + +aae_dokumentennr +5 +100 +${lkr_doc} + + + +${image} +${timeout} + + +${loc} + + +Runs the given keyword with the given arguments, if ``condition`` is true. + +'${image}' in ${lkr_loc_img} +Change Image Folder +${imgpath}\\${LKR_UC} + + + + +Tries to locate given image from the screen for given time. + +${image} +timeout=${timeout} + + +${loc} + +Image "aae_dokumentennr" found at (452, 463) +${loc} = (452, 463) + + + +Runs the given keyword with the given arguments, if ``condition`` is true. + +'${image}' in ${lkr_loc_img} +Change Image Folder +${imgpath} + + + +${loc} = (452, 463) + + + +Clicks right of given location by given offset. + +${loc} +${offset} + +Clicking 1 time(s) at (552, 463) with left mouse button at interval 0.000000 + + + +Type text and keyboard keys. + +@{text} + + + + + + +Type text and keyboard keys. + +Key.enter + + + + + +aae_treffer_1 +timeout=10 + + + +${image} +${timeout} + + +${loc} + + +Runs the given keyword with the given arguments, if ``condition`` is true. + +'${image}' in ${lkr_loc_img} +Change Image Folder +${imgpath}\\${LKR_UC} + + + + +Tries to locate given image from the screen for given time. + +${image} +timeout=${timeout} + + +${loc} + +Image "aae_treffer_1" found at (870, 745) +${loc} = (870, 745) + + + +Runs the given keyword with the given arguments, if ``condition`` is true. + +'${image}' in ${lkr_loc_img} +Change Image Folder +${imgpath} + + + +${loc} = (870, 745) + + + + +${loc} + + +Moves the mouse pointer to an absolute coordinates. + +${loc} + + + + +Clicks with the specified mouse button. + + + + + + + +Type text and keyboard keys. + +Key.Tab +Key.Tab +Key.Tab +Key.Tab +Key.right + + + + + +aae_zeile_markiert +timeout=10 + + + +${image} +${timeout} + + +${loc} + + +Runs the given keyword with the given arguments, if ``condition`` is true. + +'${image}' in ${lkr_loc_img} +Change Image Folder +${imgpath}\\${LKR_UC} + + + + +Tries to locate given image from the screen for given time. + +${image} +timeout=${timeout} + + +${loc} + +Image "aae_zeile_markiert" found at (423, 786) +${loc} = (423, 786) + + + +Runs the given keyword with the given arguments, if ``condition`` is true. + +'${image}' in ${lkr_loc_img} +Change Image Folder +${imgpath} + + + +${loc} = (423, 786) + + + + +${loc} + + +Moves the mouse pointer to an absolute coordinates. + +${loc} + + + + +Clicks with the specified mouse button. + + + + + + + + +aae_viewer_b +timeout=10 + + + +${image} +${timeout} + + +${loc} + + +Runs the given keyword with the given arguments, if ``condition`` is true. + +'${image}' in ${lkr_loc_img} +Change Image Folder +${imgpath}\\${LKR_UC} + + + + +Tries to locate given image from the screen for given time. + +${image} +timeout=${timeout} + + +${loc} + +Image "aae_viewer_b" found at (641, 709) +${loc} = (641, 709) + + + +Runs the given keyword with the given arguments, if ``condition`` is true. + +'${image}' in ${lkr_loc_img} +Change Image Folder +${imgpath} + + + +${loc} = (641, 709) + + + + +${loc} + + +Moves the mouse pointer to an absolute coordinates. + +${loc} + + + + +Clicks with the specified mouse button. + + + + + + + + +bviewer_opened +10 + + +Runs the given keyword with the given arguments, if ``condition`` is true. + +'${image}' in ${lkr_loc_img} +Change Image Folder +${imgpath}\\${LKR_UC} + + + + +Tries to locate given image from the screen for given time. + +${image} +timeout=${timeout} + + +${loc} + +Image "bviewer_opened" found at (652, 94) +${loc} = (652, 94) + + + +Runs the given keyword with the given arguments, if ``condition`` is true. + +'${image}' in ${lkr_loc_img} +Change Image Folder +${imgpath} + + + + + + +Pauses the test executed for the given time. + +0.5 + +Slept 500 milliseconds + + + + +bviewer_opened +timeout=10 + + + +${image} +${timeout} + + +${loc} + + +Runs the given keyword with the given arguments, if ``condition`` is true. + +'${image}' in ${lkr_loc_img} +Change Image Folder +${imgpath}\\${LKR_UC} + + + + +Tries to locate given image from the screen for given time. + +${image} +timeout=${timeout} + + +${loc} + +Image "bviewer_opened" found at (652, 94) +${loc} = (652, 94) + + + +Runs the given keyword with the given arguments, if ``condition`` is true. + +'${image}' in ${lkr_loc_img} +Change Image Folder +${imgpath} + + + +${loc} = (652, 94) + + + + +${loc} + + +Moves the mouse pointer to an absolute coordinates. + +${loc} + + + + +Clicks with the specified mouse button. + + + + + + + +Pauses the test executed for the given time. + +0.5 + +Slept 500 milliseconds + + + +Press given keyboard keys. + +Key.Win +Key.Up + + + + +Returns the given values which can then be assigned to a variables. + +ARCHIVETOOL_DOKU_${LKR_UC}_${anz_seiten} + + +${search_image} + +${search_image} = ARCHIVETOOL_DOKU_ZH_100 + + + + +bviewer_opened +timeout=10 + + + +${image} +${timeout} + + +${loc} + + +Runs the given keyword with the given arguments, if ``condition`` is true. + +'${image}' in ${lkr_loc_img} +Change Image Folder +${imgpath}\\${LKR_UC} + + + + +Tries to locate given image from the screen for given time. + +${image} +timeout=${timeout} + + +${loc} + +Image "bviewer_opened" found at (11, 85) +${loc} = (11, 85) + + + +Runs the given keyword with the given arguments, if ``condition`` is true. + +'${image}' in ${lkr_loc_img} +Change Image Folder +${imgpath} + + + +${loc} = (11, 85) + + + + +${loc} + + +Moves the mouse pointer to an absolute coordinates. + +${loc} + + + + +Clicks with the specified mouse button. + + + + + + + +Tries to locate given image from the screen for given time. + +${search_image} +timeout=90 + +Image "ARCHIVETOOL_DOKU_ZH_100" found at (250, 593) + + + +Press given keyboard keys. + +Key.Alt +Key.F4 + + + + + + + +aae_suche_clear +timeout=5 + + + +${image} +${timeout} + + +${loc} + + +Runs the given keyword with the given arguments, if ``condition`` is true. + +'${image}' in ${lkr_loc_img} +Change Image Folder +${imgpath}\\${LKR_UC} + + + + +Tries to locate given image from the screen for given time. + +${image} +timeout=${timeout} + + +${loc} + +Image "aae_suche_clear" found at (404, 709) +${loc} = (404, 709) + + + +Runs the given keyword with the given arguments, if ``condition`` is true. + +'${image}' in ${lkr_loc_img} +Change Image Folder +${imgpath} + + + +${loc} = (404, 709) + + + + +${loc} + + +Moves the mouse pointer to an absolute coordinates. + +${loc} + + + + +Clicks with the specified mouse button. + + + + + + + + +aae_dokumentennr_bereit +timeout=5 + + +Runs the given keyword with the given arguments, if ``condition`` is true. + +'${image}' in ${lkr_loc_img} +Change Image Folder +${imgpath}\\${LKR_UC} + + + + +Tries to locate given image from the screen for given time. + +${image} +timeout=${timeout} + + +${loc} + +Image "aae_dokumentennr_bereit" found at (569, 464) +${loc} = (569, 464) + + + +Runs the given keyword with the given arguments, if ``condition`` is true. + +'${image}' in ${lkr_loc_img} +Change Image Folder +${imgpath} + + + + + + +Evaluates the given expression in Python and returns the result. + +${i} + 1 + + +${i} + +${i} = 2 + + + + + + + +${lkr_docs}[${i}] +${anz_seiten} + + +Makes a variable available everywhere within the scope of the current test. + +${dokid} +${lkr_doc} + +${dokid} = 106614594 + + + + +aae_dokumentennr +5 +100 +${lkr_doc} + + + +${image} +${timeout} + + +${loc} + + +Runs the given keyword with the given arguments, if ``condition`` is true. + +'${image}' in ${lkr_loc_img} +Change Image Folder +${imgpath}\\${LKR_UC} + + + + +Tries to locate given image from the screen for given time. + +${image} +timeout=${timeout} + + +${loc} + +Image "aae_dokumentennr" found at (452, 463) +${loc} = (452, 463) + + + +Runs the given keyword with the given arguments, if ``condition`` is true. + +'${image}' in ${lkr_loc_img} +Change Image Folder +${imgpath} + + + +${loc} = (452, 463) + + + +Clicks right of given location by given offset. + +${loc} +${offset} + +Clicking 1 time(s) at (552, 463) with left mouse button at interval 0.000000 + + + +Type text and keyboard keys. + +@{text} + + + + + + +Type text and keyboard keys. + +Key.enter + + + + + +aae_treffer_1 +timeout=10 + + + +${image} +${timeout} + + +${loc} + + +Runs the given keyword with the given arguments, if ``condition`` is true. + +'${image}' in ${lkr_loc_img} +Change Image Folder +${imgpath}\\${LKR_UC} + + + + +Tries to locate given image from the screen for given time. + +${image} +timeout=${timeout} + + +${loc} + +Image "aae_treffer_1" found at (870, 745) +${loc} = (870, 745) + + + +Runs the given keyword with the given arguments, if ``condition`` is true. + +'${image}' in ${lkr_loc_img} +Change Image Folder +${imgpath} + + + +${loc} = (870, 745) + + + + +${loc} + + +Moves the mouse pointer to an absolute coordinates. + +${loc} + + + + +Clicks with the specified mouse button. + + + + + + + +Type text and keyboard keys. + +Key.Tab +Key.Tab +Key.Tab +Key.Tab +Key.right + + + + + +aae_zeile_markiert +timeout=10 + + + +${image} +${timeout} + + +${loc} + + +Runs the given keyword with the given arguments, if ``condition`` is true. + +'${image}' in ${lkr_loc_img} +Change Image Folder +${imgpath}\\${LKR_UC} + + + + +Tries to locate given image from the screen for given time. + +${image} +timeout=${timeout} + + +${loc} + +Image "aae_zeile_markiert" found at (423, 786) +${loc} = (423, 786) + + + +Runs the given keyword with the given arguments, if ``condition`` is true. + +'${image}' in ${lkr_loc_img} +Change Image Folder +${imgpath} + + + +${loc} = (423, 786) + + + + +${loc} + + +Moves the mouse pointer to an absolute coordinates. + +${loc} + + + + +Clicks with the specified mouse button. + + + + + + + + +aae_viewer_b +timeout=10 + + + +${image} +${timeout} + + +${loc} + + +Runs the given keyword with the given arguments, if ``condition`` is true. + +'${image}' in ${lkr_loc_img} +Change Image Folder +${imgpath}\\${LKR_UC} + + + + +Tries to locate given image from the screen for given time. + +${image} +timeout=${timeout} + + +${loc} + +Image "aae_viewer_b" found at (641, 709) +${loc} = (641, 709) + + + +Runs the given keyword with the given arguments, if ``condition`` is true. + +'${image}' in ${lkr_loc_img} +Change Image Folder +${imgpath} + + + +${loc} = (641, 709) + + + + +${loc} + + +Moves the mouse pointer to an absolute coordinates. + +${loc} + + + + +Clicks with the specified mouse button. + + + + + + + + +bviewer_opened +10 + + +Runs the given keyword with the given arguments, if ``condition`` is true. + +'${image}' in ${lkr_loc_img} +Change Image Folder +${imgpath}\\${LKR_UC} + + + + +Tries to locate given image from the screen for given time. + +${image} +timeout=${timeout} + + +${loc} + +Image "bviewer_opened" found at (652, 94) +${loc} = (652, 94) + + + +Runs the given keyword with the given arguments, if ``condition`` is true. + +'${image}' in ${lkr_loc_img} +Change Image Folder +${imgpath} + + + + + + +Pauses the test executed for the given time. + +0.5 + +Slept 500 milliseconds + + + + +bviewer_opened +timeout=10 + + + +${image} +${timeout} + + +${loc} + + +Runs the given keyword with the given arguments, if ``condition`` is true. + +'${image}' in ${lkr_loc_img} +Change Image Folder +${imgpath}\\${LKR_UC} + + + + +Tries to locate given image from the screen for given time. + +${image} +timeout=${timeout} + + +${loc} + +Image "bviewer_opened" found at (652, 94) +${loc} = (652, 94) + + + +Runs the given keyword with the given arguments, if ``condition`` is true. + +'${image}' in ${lkr_loc_img} +Change Image Folder +${imgpath} + + + +${loc} = (652, 94) + + + + +${loc} + + +Moves the mouse pointer to an absolute coordinates. + +${loc} + + + + +Clicks with the specified mouse button. + + + + + + + +Pauses the test executed for the given time. + +0.5 + +Slept 500 milliseconds + + + +Press given keyboard keys. + +Key.Win +Key.Up + + + + +Returns the given values which can then be assigned to a variables. + +ARCHIVETOOL_DOKU_${LKR_UC}_${anz_seiten} + + +${search_image} + +${search_image} = ARCHIVETOOL_DOKU_ZH_300 + + + + +bviewer_opened +timeout=10 + + + +${image} +${timeout} + + +${loc} + + +Runs the given keyword with the given arguments, if ``condition`` is true. + +'${image}' in ${lkr_loc_img} +Change Image Folder +${imgpath}\\${LKR_UC} + + + + +Tries to locate given image from the screen for given time. + +${image} +timeout=${timeout} + + +${loc} + +Image "bviewer_opened" found at (11, 85) +${loc} = (11, 85) + + + +Runs the given keyword with the given arguments, if ``condition`` is true. + +'${image}' in ${lkr_loc_img} +Change Image Folder +${imgpath} + + + +${loc} = (11, 85) + + + + +${loc} + + +Moves the mouse pointer to an absolute coordinates. + +${loc} + + + + +Clicks with the specified mouse button. + + + + + + + +Tries to locate given image from the screen for given time. + +${search_image} +timeout=90 + +Image "ARCHIVETOOL_DOKU_ZH_300" found at (257, 599) + + + +Press given keyboard keys. + +Key.Alt +Key.F4 + + + + + + + +aae_suche_clear +timeout=5 + + + +${image} +${timeout} + + +${loc} + + +Runs the given keyword with the given arguments, if ``condition`` is true. + +'${image}' in ${lkr_loc_img} +Change Image Folder +${imgpath}\\${LKR_UC} + + + + +Tries to locate given image from the screen for given time. + +${image} +timeout=${timeout} + + +${loc} + +Image "aae_suche_clear" found at (404, 709) +${loc} = (404, 709) + + + +Runs the given keyword with the given arguments, if ``condition`` is true. + +'${image}' in ${lkr_loc_img} +Change Image Folder +${imgpath} + + + +${loc} = (404, 709) + + + + +${loc} + + +Moves the mouse pointer to an absolute coordinates. + +${loc} + + + + +Clicks with the specified mouse button. + + + + + + + + +aae_dokumentennr_bereit +timeout=5 + + +Runs the given keyword with the given arguments, if ``condition`` is true. + +'${image}' in ${lkr_loc_img} +Change Image Folder +${imgpath}\\${LKR_UC} + + + + +Tries to locate given image from the screen for given time. + +${image} +timeout=${timeout} + + +${loc} + +Image "aae_dokumentennr_bereit" found at (569, 464) +${loc} = (569, 464) + + + +Runs the given keyword with the given arguments, if ``condition`` is true. + +'${image}' in ${lkr_loc_img} +Change Image Folder +${imgpath} + + + + + + +Evaluates the given expression in Python and returns the result. + +${i} + 1 + + +${i} + +${i} = 3 + + + + + + + + + + +Runs the given keyword with the given arguments, if ``condition`` is true. + +${APPOPEN}==${True} +Terminate Application +alias=archivetool + + +Terminates the process launched with `Launch Application` with +given ``alias``. + +alias=archivetool + + + + + + +Runs the given keyword with the given arguments, if ``condition`` is true. + +${APPOPEN}==${True} +Quit All Viewer Processes + + + +Runs a process and waits for it to complete. + +cmd.exe /c taskkill /IM ArchiveViewAdvancedA.exe +shell=True + +Starting process: +cmd.exe /c taskkill /IM ArchiveViewAdvancedA.exe +Waiting for process to complete. +Process completed. + + + +Runs a process and waits for it to complete. + +cmd.exe /c taskkill /IM ArchiveViewAdvancedB.exe +shell=True + +Starting process: +cmd.exe /c taskkill /IM ArchiveViewAdvancedB.exe +Waiting for process to complete. +Process completed. + + + +Runs a process and waits for it to complete. + +cmd.exe /c taskkill /IM ArchiveViewAdvancedC.exe +shell=True + +Starting process: +cmd.exe /c taskkill /IM ArchiveViewAdvancedC.exe +Waiting for process to complete. +Process completed. + + + +Runs a process and waits for it to complete. + +cmd.exe /c taskkill /IM +ArchivToolExtAdvanced.exe +shell=True + +Starting process: +"cmd.exe /c taskkill /IM" ArchivToolExtAdvanced.exe +Waiting for process to complete. +Process completed. + + + +Runs a process and waits for it to complete. + +cmd.exe /c taskkill /IM +archtool.exe +shell=True + +Starting process: +"cmd.exe /c taskkill /IM" archtool.exe +Waiting for process to complete. +Process completed. + + + + + + + +Makes a variable available everywhere within the scope of the current suite. + +${APPOPEN} +${False} + +${APPOPEN} = False + + + + + + + + + + + + +Critical Tests +All Tests + + + + +Archivetool +Archivetool.Archivetool + + + + + diff --git a/test/fixtures/robot/archivetool/input_check.json b/test/fixtures/robot/archivetool/input_check.json new file mode 100644 index 00000000..1653388d --- /dev/null +++ b/test/fixtures/robot/archivetool/input_check.json @@ -0,0 +1 @@ +[["\r\n"], ["\r\n"], ["\r\n"], ["\r\n"], ["\r\n"], ["\r\n"], ["\r\n"], ["\r\n"], ["Evaluates the given expression in Python and returns the result.\r\n"], ["\r\n"], ["${TESTDATA['${LKR_UC}']['active']}==${True}\r\n"], ["\r\n"], ["\r\n"], ["${active}\r\n"], ["\r\n"], ["${active} = True\r\n"], ["\r\n"], ["\r\n"], ["\r\n"], ["Runs the given keyword with the given arguments, if ``condition`` is true.\r\n"], ["\r\n"], ["${active}\r\n"], ["Add test case\r\n"], ["ARCHIVETOOL Suche LKR ${LKR_UC}\r\n"], ["ARCHIVETOOL Suche\r\n"], ["${LKR_UC}\r\n"], ["\r\n"], ["\r\n"], ["\r\n"], ["ARCHIVETOOL Suche LKR ${LKR_UC}\r\n"], ["ARCHIVETOOL Suche\r\n"], ["${LKR_UC}\r\n"], ["\r\n"], ["\r\n"], ["\r\n"], ["\r\n"], ["\r\n"], ["\r\n"], ["\r\n"], ["\r\n"], ["\r\n"], ["Evaluates the given expression in Python and returns the result.\r\n"], ["\r\n"], ["${TESTDATA['${LKR_UC}']['active']}==${True}\r\n"], ["\r\n"], ["\r\n"], ["${active}\r\n"], ["\r\n"], ["${active} = False\r\n"], ["\r\n"], ["\r\n"], ["\r\n"], ["Runs the given keyword with the given arguments, if ``condition`` is true.\r\n"], ["\r\n"], ["${active}\r\n"], ["Add test case\r\n"], ["ARCHIVETOOL Suche LKR ${LKR_UC}\r\n"], ["ARCHIVETOOL Suche\r\n"], ["${LKR_UC}\r\n"], ["\r\n"], ["\r\n"], ["\r\n"], ["\r\n"], ["\r\n"], ["\r\n"], ["\r\n"], ["Evaluates the given expression in Python and returns the result.\r\n"], ["\r\n"], ["${TESTDATA['${LKR_UC}']['active']}==${True}\r\n"], ["\r\n"], ["\r\n"], ["${active}\r\n"], ["\r\n"], ["${active} = True\r\n"], ["\r\n"], ["\r\n"], ["\r\n"], ["Runs the given keyword with the given arguments, if ``condition`` is true.\r\n"], ["\r\n"], ["${active}\r\n"], ["Add test case\r\n"], ["ARCHIVETOOL Suche LKR ${LKR_UC}\r\n"], ["ARCHIVETOOL Suche\r\n"], ["${LKR_UC}\r\n"], ["\r\n"], ["\r\n"], ["\r\n"], ["ARCHIVETOOL Suche LKR ${LKR_UC}\r\n"], ["ARCHIVETOOL Suche\r\n"], ["${LKR_UC}\r\n"], ["\r\n"], ["\r\n"], ["\r\n"], ["\r\n"], ["\r\n"], ["\r\n"], ["\r\n"], ["\r\n"], ["\r\n"], ["Evaluates the given expression in Python and returns the result.\r\n"], ["\r\n"], ["${TESTDATA['${LKR_UC}']['active']}==${True}\r\n"], ["\r\n"], ["\r\n"], ["${active}\r\n"], ["\r\n"], ["${active} = False\r\n"], ["\r\n"], ["\r\n"], ["\r\n"], ["Runs the given keyword with the given arguments, if ``condition`` is true.\r\n"], ["\r\n"], ["${active}\r\n"], ["Add test case\r\n"], ["ARCHIVETOOL Suche LKR ${LKR_UC}\r\n"], ["ARCHIVETOOL Suche\r\n"], ["${LKR_UC}\r\n"], ["\r\n"], ["\r\n"], ["\r\n"], ["\r\n"], ["\r\n"], ["\r\n"], ["\r\n"], ["Evaluates the given expression in Python and returns the result.\r\n"], ["\r\n"], ["${TESTDATA['${LKR_UC}']['active']}==${True}\r\n"], ["\r\n"], ["\r\n"], ["${active}\r\n"], ["\r\n"], ["${active} = False\r\n"], ["\r\n"], ["\r\n"], ["\r\n"], ["Runs the given keyword with the given arguments, if ``condition`` is true.\r\n"], ["\r\n"], ["${active}\r\n"], ["Add test case\r\n"], ["ARCHIVETOOL Suche LKR ${LKR_UC}\r\n"], ["ARCHIVETOOL Suche\r\n"], ["${LKR_UC}\r\n"], ["\r\n"], ["\r\n"], ["\r\n"], ["\r\n"], ["\r\n"], ["\r\n"], ["\r\n"], ["Evaluates the given expression in Python and returns the result.\r\n"], ["\r\n"], ["${TESTDATA['${LKR_UC}']['active']}==${True}\r\n"], ["\r\n"], ["\r\n"], ["${active}\r\n"], ["\r\n"], ["${active} = True\r\n"], ["\r\n"], ["\r\n"], ["\r\n"], ["Runs the given keyword with the given arguments, if ``condition`` is true.\r\n"], ["\r\n"], ["${active}\r\n"], ["Add test case\r\n"], ["ARCHIVETOOL Suche LKR ${LKR_UC}\r\n"], ["ARCHIVETOOL Suche\r\n"], ["${LKR_UC}\r\n"], ["\r\n"], ["\r\n"], ["\r\n"], ["ARCHIVETOOL Suche LKR ${LKR_UC}\r\n"], ["ARCHIVETOOL Suche\r\n"], ["${LKR_UC}\r\n"], ["\r\n"], ["\r\n"], ["\r\n"], ["\r\n"], ["\r\n"], ["\r\n"], ["\r\n"], ["\r\n"], ["\r\n"], ["Evaluates the given expression in Python and returns the result.\r\n"], ["\r\n"], ["${TESTDATA['${LKR_UC}']['active']}==${True}\r\n"], ["\r\n"], ["\r\n"], ["${active}\r\n"], ["\r\n"], ["${active} = True\r\n"], ["\r\n"], ["\r\n"], ["\r\n"], ["Runs the given keyword with the given arguments, if ``condition`` is true.\r\n"], ["\r\n"], ["${active}\r\n"], ["Add test case\r\n"], ["ARCHIVETOOL Suche LKR ${LKR_UC}\r\n"], ["ARCHIVETOOL Suche\r\n"], ["${LKR_UC}\r\n"], ["\r\n"], ["\r\n"], ["\r\n"], ["ARCHIVETOOL Suche LKR ${LKR_UC}\r\n"], ["ARCHIVETOOL Suche\r\n"], ["${LKR_UC}\r\n"], ["\r\n"], ["\r\n"], ["\r\n"], ["\r\n"], ["\r\n"], ["\r\n"], ["\r\n"], ["\r\n"], ["\r\n"], ["Evaluates the given expression in Python and returns the result.\r\n"], ["\r\n"], ["${TESTDATA['${LKR_UC}']['active']}==${True}\r\n"], ["\r\n"], ["\r\n"], ["${active}\r\n"], ["\r\n"], ["${active} = True\r\n"], ["\r\n"], ["\r\n"], ["\r\n"], ["Runs the given keyword with the given arguments, if ``condition`` is true.\r\n"], ["\r\n"], ["${active}\r\n"], ["Add test case\r\n"], ["ARCHIVETOOL Suche LKR ${LKR_UC}\r\n"], ["ARCHIVETOOL Suche\r\n"], ["${LKR_UC}\r\n"], ["\r\n"], ["\r\n"], ["\r\n"], ["ARCHIVETOOL Suche LKR ${LKR_UC}\r\n"], ["ARCHIVETOOL Suche\r\n"], ["${LKR_UC}\r\n"], ["\r\n"], ["\r\n"], ["\r\n"], ["\r\n"], ["\r\n"], ["\r\n"], ["\r\n"], ["\r\n"], ["\r\n"], ["Evaluates the given expression in Python and returns the result.\r\n"], ["\r\n"], ["${TESTDATA['${LKR_UC}']['active']}==${True}\r\n"], ["\r\n"], ["\r\n"], ["${active}\r\n"], ["\r\n"], ["${active} = False\r\n"], ["\r\n"], ["\r\n"], ["\r\n"], ["Runs the given keyword with the given arguments, if ``condition`` is true.\r\n"], ["\r\n"], ["${active}\r\n"], ["Add test case\r\n"], ["ARCHIVETOOL Suche LKR ${LKR_UC}\r\n"], ["ARCHIVETOOL Suche\r\n"], ["${LKR_UC}\r\n"], ["\r\n"], ["\r\n"], ["\r\n"], ["\r\n"], ["\r\n"], ["\r\n"], ["\r\n"], ["Evaluates the given expression in Python and returns the result.\r\n"], ["\r\n"], ["${TESTDATA['${LKR_UC}']['active']}==${True}\r\n"], ["\r\n"], ["\r\n"], ["${active}\r\n"], ["\r\n"], ["${active} = False\r\n"], ["\r\n"], ["\r\n"], ["\r\n"], ["Runs the given keyword with the given arguments, if ``condition`` is true.\r\n"], ["\r\n"], ["${active}\r\n"], ["Add test case\r\n"], ["ARCHIVETOOL Suche LKR ${LKR_UC}\r\n"], ["ARCHIVETOOL Suche\r\n"], ["${LKR_UC}\r\n"], ["\r\n"], ["\r\n"], ["\r\n"], ["\r\n"], ["\r\n"], ["\r\n"], ["\r\n"], ["Evaluates the given expression in Python and returns the result.\r\n"], ["\r\n"], ["${TESTDATA['${LKR_UC}']['active']}==${True}\r\n"], ["\r\n"], ["\r\n"], ["${active}\r\n"], ["\r\n"], ["${active} = False\r\n"], ["\r\n"], ["\r\n"], ["\r\n"], ["Runs the given keyword with the given arguments, if ``condition`` is true.\r\n"], ["\r\n"], ["${active}\r\n"], ["Add test case\r\n"], ["ARCHIVETOOL Suche LKR ${LKR_UC}\r\n"], ["ARCHIVETOOL Suche\r\n"], ["${LKR_UC}\r\n"], ["\r\n"], ["\r\n"], ["\r\n"], ["\r\n"], ["\r\n"], ["\r\n"], ["\r\n"], ["Evaluates the given expression in Python and returns the result.\r\n"], ["\r\n"], ["${TESTDATA['${LKR_UC}']['active']}==${True}\r\n"], ["\r\n"], ["\r\n"], ["${active}\r\n"], ["\r\n"], ["${active} = False\r\n"], ["\r\n"], ["\r\n"], ["\r\n"], ["Runs the given keyword with the given arguments, if ``condition`` is true.\r\n"], ["\r\n"], ["${active}\r\n"], ["Add test case\r\n"], ["ARCHIVETOOL Suche LKR ${LKR_UC}\r\n"], ["ARCHIVETOOL Suche\r\n"], ["${LKR_UC}\r\n"], ["\r\n"], ["\r\n"], ["\r\n"], ["\r\n"], ["\r\n"], ["\r\n"], ["\r\n"], ["Evaluates the given expression in Python and returns the result.\r\n"], ["\r\n"], ["${TESTDATA['${LKR_UC}']['active']}==${True}\r\n"], ["\r\n"], ["\r\n"], ["${active}\r\n"], ["\r\n"], ["${active} = True\r\n"], ["\r\n"], ["\r\n"], ["\r\n"], ["Runs the given keyword with the given arguments, if ``condition`` is true.\r\n"], ["\r\n"], ["${active}\r\n"], ["Add test case\r\n"], ["ARCHIVETOOL Suche LKR ${LKR_UC}\r\n"], ["ARCHIVETOOL Suche\r\n"], ["${LKR_UC}\r\n"], ["\r\n"], ["\r\n"], ["\r\n"], ["ARCHIVETOOL Suche LKR ${LKR_UC}\r\n"], ["ARCHIVETOOL Suche\r\n"], ["${LKR_UC}\r\n"], ["\r\n"], ["\r\n"], ["\r\n"], ["\r\n"], ["\r\n"], ["\r\n"], ["\r\n"], ["\r\n"], ["\r\n"], ["Evaluates the given expression in Python and returns the result.\r\n"], ["\r\n"], ["${TESTDATA['${LKR_UC}']['active']}==${True}\r\n"], ["\r\n"], ["\r\n"], ["${active}\r\n"], ["\r\n"], ["${active} = False\r\n"], ["\r\n"], ["\r\n"], ["\r\n"], ["Runs the given keyword with the given arguments, if ``condition`` is true.\r\n"], ["\r\n"], ["${active}\r\n"], ["Add test case\r\n"], ["ARCHIVETOOL Suche LKR ${LKR_UC}\r\n"], ["ARCHIVETOOL Suche\r\n"], ["${LKR_UC}\r\n"], ["\r\n"], ["\r\n"], ["\r\n"], ["\r\n"], ["\r\n"], ["\r\n"], ["\r\n"], ["Evaluates the given expression in Python and returns the result.\r\n"], ["\r\n"], ["${TESTDATA['${LKR_UC}']['active']}==${True}\r\n"], ["\r\n"], ["\r\n"], ["${active}\r\n"], ["\r\n"], ["${active} = True\r\n"], ["\r\n"], ["\r\n"], ["\r\n"], ["Runs the given keyword with the given arguments, if ``condition`` is true.\r\n"], ["\r\n"], ["${active}\r\n"], ["Add test case\r\n"], ["ARCHIVETOOL Suche LKR ${LKR_UC}\r\n"], ["ARCHIVETOOL Suche\r\n"], ["${LKR_UC}\r\n"], ["\r\n"], ["\r\n"], ["\r\n"], ["ARCHIVETOOL Suche LKR ${LKR_UC}\r\n"], ["ARCHIVETOOL Suche\r\n"], ["${LKR_UC}\r\n"], ["\r\n"], ["\r\n"], ["\r\n"], ["\r\n"], ["\r\n"], ["\r\n"], ["\r\n"], ["\r\n"], ["\r\n"], ["\r\n"], ["\r\n"], ["\r\n"], ["\r\n"], ["Makes a variable available everywhere within the scope of the current test.\r\n"], ["\r\n"], ["${APPOPEN}\r\n"], ["${False}\r\n"], ["\r\n"], ["${APPOPEN} = False\r\n"], ["\r\n"], ["\r\n"], ["\r\n"], ["\r\n"], ["Runs the given keyword with the given arguments, if ``condition`` is true.\r\n"], ["\r\n"], ["${APPOPEN}==${True}\r\n"], ["Terminate Application\r\n"], ["alias=archivetool\r\n"], ["\r\n"], ["\r\n"], ["\r\n"], ["\r\n"], ["Runs the given keyword with the given arguments, if ``condition`` is true.\r\n"], ["\r\n"], ["${APPOPEN}==${True}\r\n"], ["Quit All Viewer Processes\r\n"], ["\r\n"], ["\r\n"], ["\r\n"], ["\r\n"], ["Makes a variable available everywhere within the scope of the current suite.\r\n"], ["\r\n"], ["${APPOPEN}\r\n"], ["${False}\r\n"], ["\r\n"], ["${APPOPEN} = False\r\n"], ["\r\n"], ["\r\n"], ["\r\n"], ["\r\n"], ["\r\n"], ["\r\n"], ["Runs the given keyword with the given arguments, if ``condition`` is true.\r\n"], ["\r\n"], ["${APPOPEN}==${True}\r\n"], ["Terminate Application\r\n"], ["alias=archivetool\r\n"], ["\r\n"], ["\r\n"], ["\r\n"], ["\r\n"], ["Runs the given keyword with the given arguments, if ``condition`` is true.\r\n"], ["\r\n"], ["${APPOPEN}==${True}\r\n"], ["Quit All Viewer Processes\r\n"], ["\r\n"], ["\r\n"], ["\r\n"], ["\r\n"], ["Makes a variable available everywhere within the scope of the current suite.\r\n"], ["\r\n"], ["${APPOPEN}\r\n"], ["${False}\r\n"], ["\r\n"], ["${APPOPEN} = False\r\n"], ["\r\n"], ["\r\n"], ["\r\n"], ["\r\n"], ["\r\n"], ["\r\n"], ["\r\n"], ["\r\n"], ["\r\n"], ["AI\r\n"], ["\r\n"], ["\r\n"], ["Sets where all reference images are stored.\r\n"], ["\r\n"], ["${imgpath}\r\n"], ["\r\n"], ["\r\n"], ["\r\n"], ["\r\n"], ["\r\n"], ["${lkr_uc}\r\n"], ["\r\n"], ["\r\n"], ["Makes a variable available everywhere within the scope of the current test.\r\n"], ["\r\n"], ["${LKR_UC}\r\n"], ["${lkr_uc}\r\n"], ["\r\n"], ["${LKR_UC} = AI\r\n"], ["\r\n"], ["\r\n"], ["\r\n"], ["Converts string to lower case.\r\n"], ["\r\n"], ["${lkr_uc}\r\n"], ["\r\n"], ["\r\n"], ["${lkr_lc}\r\n"], ["\r\n"], ["${lkr_lc} = ai\r\n"], ["\r\n"], ["\r\n"], ["\r\n"], ["Makes a variable available everywhere within the scope of the current test.\r\n"], ["\r\n"], ["${LKR_LC}\r\n"], ["${lkr_lc}\r\n"], ["\r\n"], ["${LKR_LC} = ai\r\n"], ["\r\n"], ["\r\n"], ["\r\n"], ["Makes a variable available everywhere within the scope of the current test.\r\n"], ["\r\n"], ["${lkr_docs}\r\n"], ["${TESTDATA['${LKR_UC}']['docs']}\r\n"], ["\r\n"], ["${lkr_docs} = ['688944', '688976', '689082']\r\n"], ["\r\n"], ["\r\n"], ["\r\n"], ["Makes a variable available everywhere within the scope of the current test.\r\n"], ["\r\n"], ["${lkr_cred}\r\n"], ["${TESTDATA['${LKR_UC}']['credentials']}\r\n"], ["\r\n"], ["${lkr_cred} = ['airob', 'crypt:2LvC/GWqwYhum5TkHpHfkD9pfb7U9E6O5ZuzKIgKYA1fUPBjlGRG3i4nm2zP0b/D615FGwgYceCI']\r\n"], ["\r\n"], ["\r\n"], ["\r\n"], ["Makes a variable available everywhere within the scope of the current test.\r\n"], ["\r\n"], ["${lkr_loc_img}\r\n"], ["${TESTDATA['${LKR_UC}']['loc_img']}\r\n"], ["\r\n"], ["${lkr_loc_img} = []\r\n"], ["\r\n"], ["\r\n"], ["\r\n"], ["Makes a variable available everywhere within the scope of the current test.\r\n"], ["\r\n"], ["${user}\r\n"], ["${lkr_cred}[0]\r\n"], ["\r\n"], ["${user} = airob\r\n"], ["\r\n"], ["\r\n"], ["\r\n"], ["Decrypts cipher text and returns the plain text.\r\n"], ["\r\n"], ["${lkr_cred}[1]\r\n"], ["\r\n"], ["\r\n"], ["${password}\r\n"], ["\r\n"], ["Decrypting text and return value.\r\n"], ["${password} = ***\r\n"], ["\r\n"], ["\r\n"], ["\r\n"], ["Makes a variable available everywhere within the scope of the current test.\r\n"], ["\r\n"], ["${password}\r\n"], ["${password}\r\n"], ["\r\n"], ["${password} = ***\r\n"], ["\r\n"], ["\r\n"], ["\r\n"], ["\r\n"], ["\r\n"], ["\r\n"], ["Runs a process and waits for it to complete.\r\n"], ["\r\n"], ["cmd.exe /c taskkill /IM ArchiveViewAdvancedA.exe\r\n"], ["shell=True\r\n"], ["\r\n"], ["Starting process:\r\n"], ["cmd.exe /c taskkill /IM ArchiveViewAdvancedA.exe\r\n"], ["Waiting for process to complete.\r\n"], ["Process completed.\r\n"], ["\r\n"], ["\r\n"], ["\r\n"], ["Runs a process and waits for it to complete.\r\n"], ["\r\n"], ["cmd.exe /c taskkill /IM ArchiveViewAdvancedB.exe\r\n"], ["shell=True\r\n"], ["\r\n"], ["Starting process:\r\n"], ["cmd.exe /c taskkill /IM ArchiveViewAdvancedB.exe\r\n"], ["Waiting for process to complete.\r\n"], ["Process completed.\r\n"], ["\r\n"], ["\r\n"], ["\r\n"], ["Runs a process and waits for it to complete.\r\n"], ["\r\n"], ["cmd.exe /c taskkill /IM ArchiveViewAdvancedC.exe\r\n"], ["shell=True\r\n"], ["\r\n"], ["Starting process:\r\n"], ["cmd.exe /c taskkill /IM ArchiveViewAdvancedC.exe\r\n"], ["Waiting for process to complete.\r\n"], ["Process completed.\r\n"], ["\r\n"], ["\r\n"], ["\r\n"], ["Runs a process and waits for it to complete.\r\n"], ["\r\n"], ["cmd.exe /c taskkill /IM\r\n"], ["ArchivToolExtAdvanced.exe\r\n"], ["shell=True\r\n"], ["\r\n"], ["Starting process:\r\n"], ["\"cmd.exe /c taskkill /IM\" ArchivToolExtAdvanced.exe\r\n"], ["Waiting for process to complete.\r\n"], ["Process completed.\r\n"], ["\r\n"], ["\r\n"], ["\r\n"], ["Runs a process and waits for it to complete.\r\n"], ["\r\n"], ["cmd.exe /c taskkill /IM\r\n"], ["archtool.exe\r\n"], ["shell=True\r\n"], ["\r\n"], ["Starting process:\r\n"], ["\"cmd.exe /c taskkill /IM\" archtool.exe\r\n"], ["Waiting for process to complete.\r\n"], ["Process completed.\r\n"], ["\r\n"], ["\r\n"], ["\r\n"], ["\r\n"], ["\r\n"], ["\r\n"], ["Runs a process and waits for it to complete.\r\n"], ["\r\n"], ["C:\\\\ProgramData\\\\checkmk\\\\agent\\\\robot\\\\archivetool\\\\ArchivetoolConfig\\\\sva_${LKR_LC} konfiguration.bat\r\n"], ["\r\n"], ["Starting process:\r\n"], ["\"C:\\ProgramData\\checkmk\\agent\\robot\\archivetool\\ArchivetoolConfig\\sva_ai konfiguration.bat\"\r\n"], ["Waiting for process to complete.\r\n"], ["Process completed.\r\n"], ["\r\n"], ["\r\n"], ["\r\n"], ["Launches an application.\r\n"], ["\r\n"], ["\"${APP}\"\r\n"], ["alias=archivetool\r\n"], ["\r\n"], ["\r\n"], ["\r\n"], ["\r\n"], ["Makes a variable available everywhere within the scope of the current suite.\r\n"], ["\r\n"], ["${APPOPEN}\r\n"], ["${True}\r\n"], ["\r\n"], ["${APPOPEN} = True\r\n"], ["\r\n"], ["\r\n"], ["\r\n"], ["\r\n"], ["\r\n"], ["\r\n"], ["\r\n"], ["login_username\r\n"], ["timeout=10\r\n"], ["\r\n"], ["\r\n"], ["${loc}\r\n"], ["\r\n"], ["\r\n"], ["Runs the given keyword with the given arguments, if ``condition`` is true.\r\n"], ["\r\n"], ["'${image}' in ${lkr_loc_img}\r\n"], ["Change Image Folder\r\n"], ["${imgpath}\\\\${LKR_UC}\r\n"], ["\r\n"], ["\r\n"], ["\r\n"], ["\r\n"], ["Tries to locate given image from the screen for given time.\r\n"], ["\r\n"], ["${image}\r\n"], ["timeout=${timeout}\r\n"], ["\r\n"], ["\r\n"], ["${loc}\r\n"], ["\r\n"], ["Image \"login_username\" found at (227, 149)\r\n"], ["${loc} = (227, 149)\r\n"], ["\r\n"], ["\r\n"], ["\r\n"], ["Runs the given keyword with the given arguments, if ``condition`` is true.\r\n"], ["\r\n"], ["'${image}' in ${lkr_loc_img}\r\n"], ["Change Image Folder\r\n"], ["${imgpath}\r\n"], ["\r\n"], ["\r\n"], ["\r\n"], ["${loc} = (227, 149)\r\n"], ["\r\n"], ["\r\n"], ["\r\n"], ["Finds the reference image on screen and clicks it once.\r\n"], ["\r\n"], ["login_username\r\n"], ["\r\n"], ["Image \"C:\\ProgramData\\checkmk\\agent\\robot\\archivetool\\images\\login_username.png\" found at Box(left=182, top=134, width=90, height=30)\r\n"], ["Clicking image \"login_username\" in position (227, 149)\r\n"], ["\r\n"], ["\r\n"], ["\r\n"], ["Pauses the test executed for the given time.\r\n"], ["\r\n"], ["0.2\r\n"], ["\r\n"], ["Slept 200 milliseconds\r\n"], ["\r\n"], ["\r\n"], ["\r\n"], ["\r\n"], ["login_username\r\n"], ["10\r\n"], ["20\r\n"], ["${user}\r\n"], ["\r\n"], ["\r\n"], ["\r\n"], ["${image}\r\n"], ["${timeout}\r\n"], ["\r\n"], ["\r\n"], ["${loc}\r\n"], ["\r\n"], ["\r\n"], ["Runs the given keyword with the given arguments, if ``condition`` is true.\r\n"], ["\r\n"], ["'${image}' in ${lkr_loc_img}\r\n"], ["Change Image Folder\r\n"], ["${imgpath}\\\\${LKR_UC}\r\n"], ["\r\n"], ["\r\n"], ["\r\n"], ["\r\n"], ["Tries to locate given image from the screen for given time.\r\n"], ["\r\n"], ["${image}\r\n"], ["timeout=${timeout}\r\n"], ["\r\n"], ["\r\n"], ["${loc}\r\n"], ["\r\n"], ["Image \"login_username\" found at (227, 149)\r\n"], ["${loc} = (227, 149)\r\n"], ["\r\n"], ["\r\n"], ["\r\n"], ["Runs the given keyword with the given arguments, if ``condition`` is true.\r\n"], ["\r\n"], ["'${image}' in ${lkr_loc_img}\r\n"], ["Change Image Folder\r\n"], ["${imgpath}\r\n"], ["\r\n"], ["\r\n"], ["\r\n"], ["${loc} = (227, 149)\r\n"], ["\r\n"], ["\r\n"], ["\r\n"], ["Clicks right of given location by given offset.\r\n"], ["\r\n"], ["${loc}\r\n"], ["${offset}\r\n"], ["\r\n"], ["Clicking 1 time(s) at (247, 149) with left mouse button at interval 0.000000\r\n"], ["\r\n"], ["\r\n"], ["\r\n"], ["Type text and keyboard keys.\r\n"], ["\r\n"], ["@{text}\r\n"], ["\r\n"], ["\r\n"], ["\r\n"], ["\r\n"], ["\r\n"], ["\r\n"], ["Pauses the test executed for the given time.\r\n"], ["\r\n"], ["0.2\r\n"], ["\r\n"], ["Slept 200 milliseconds\r\n"], ["\r\n"], ["\r\n"], ["\r\n"], ["Type text and keyboard keys.\r\n"], ["\r\n"], ["Key.tab\r\n"], ["\r\n"], ["\r\n"], ["\r\n"], ["\r\n"], ["Pauses the test executed for the given time.\r\n"], ["\r\n"], ["0.2\r\n"], ["\r\n"], ["Slept 200 milliseconds\r\n"], ["\r\n"], ["\r\n"], ["\r\n"], ["Type text and keyboard keys.\r\n"], ["\r\n"], ["${password}\r\n"], ["Key.enter\r\n"], ["Key.enter\r\n"], ["\r\n"], ["\r\n"], ["\r\n"], ["\r\n"], ["\r\n"], ["archiv_vista_warn\r\n"], ["timeout=5\r\n"], ["\r\n"], ["\r\n"], ["\r\n"], ["${image}\r\n"], ["${timeout}\r\n"], ["\r\n"], ["\r\n"], ["${loc}\r\n"], ["\r\n"], ["\r\n"], ["Runs the given keyword with the given arguments, if ``condition`` is true.\r\n"], ["\r\n"], ["'${image}' in ${lkr_loc_img}\r\n"], ["Change Image Folder\r\n"], ["${imgpath}\\\\${LKR_UC}\r\n"], ["\r\n"], ["\r\n"], ["\r\n"], ["\r\n"], ["Tries to locate given image from the screen for given time.\r\n"], ["\r\n"], ["${image}\r\n"], ["timeout=${timeout}\r\n"], ["\r\n"], ["\r\n"], ["${loc}\r\n"], ["\r\n"], ["Image \"archiv_vista_warn\" found at (845, 559)\r\n"], ["${loc} = (845, 559)\r\n"], ["\r\n"], ["\r\n"], ["\r\n"], ["Runs the given keyword with the given arguments, if ``condition`` is true.\r\n"], ["\r\n"], ["'${image}' in ${lkr_loc_img}\r\n"], ["Change Image Folder\r\n"], ["${imgpath}\r\n"], ["\r\n"], ["\r\n"], ["\r\n"], ["${loc} = (845, 559)\r\n"], ["\r\n"], ["\r\n"], ["\r\n"], ["\r\n"], ["${loc}\r\n"], ["\r\n"], ["\r\n"], ["Moves the mouse pointer to an absolute coordinates.\r\n"], ["\r\n"], ["${loc}\r\n"], ["\r\n"], ["\r\n"], ["\r\n"], ["\r\n"], ["Clicks with the specified mouse button.\r\n"], ["\r\n"], ["\r\n"], ["\r\n"], ["\r\n"], ["\r\n"], ["\r\n"], ["\r\n"], ["Type text and keyboard keys.\r\n"], ["\r\n"], ["Key.enter\r\n"], ["\r\n"], ["\r\n"], ["\r\n"], ["\r\n"], ["Tries to locate given image from the screen for given time.\r\n"], ["\r\n"], ["aae_toolbar\r\n"], ["timeout=10\r\n"], ["\r\n"], ["Image \"aae_toolbar\" found at (506, 709)\r\n"], ["\r\n"], ["\r\n"], ["\r\n"], ["\r\n"], ["\r\n"], ["\r\n"], ["Returns ``True`` if reference image was found on screen or\r\n"], ["``False`` otherwise. Never fails.\r\n"], ["\r\n"], ["aae_vorbelegung_checked\r\n"], ["\r\n"], ["\r\n"], ["${vorbelegt_checked}\r\n"], ["\r\n"], ["${vorbelegt_checked} = False\r\n"], ["\r\n"], ["\r\n"], ["\r\n"], ["Runs the given keyword with the given arguments, if ``condition`` is true.\r\n"], ["\r\n"], ["${vorbelegt_checked}==${True}\r\n"], ["Click Image\r\n"], ["aae_vorbelegung_checked\r\n"], ["\r\n"], ["\r\n"], ["\r\n"], ["\r\n"], ["\r\n"], ["\r\n"], ["Returns the given values which can then be assigned to a variables.\r\n"], ["\r\n"], ["0\r\n"], ["\r\n"], ["\r\n"], ["${i}\r\n"], ["\r\n"], ["${i} = 0\r\n"], ["\r\n"], ["\r\n"], ["\r\n"], ["\r\n"], ["\r\n"], ["\r\n"], ["${lkr_docs}[${i}]\r\n"], ["${anz_seiten}\r\n"], ["\r\n"], ["\r\n"], ["Makes a variable available everywhere within the scope of the current test.\r\n"], ["\r\n"], ["${dokid}\r\n"], ["${lkr_doc}\r\n"], ["\r\n"], ["${dokid} = 688944\r\n"], ["\r\n"], ["\r\n"], ["\r\n"], ["\r\n"], ["aae_dokumentennr\r\n"], ["5\r\n"], ["100\r\n"], ["${lkr_doc}\r\n"], ["\r\n"], ["\r\n"], ["\r\n"], ["${image}\r\n"], ["${timeout}\r\n"], ["\r\n"], ["\r\n"], ["${loc}\r\n"], ["\r\n"], ["\r\n"], ["Runs the given keyword with the given arguments, if ``condition`` is true.\r\n"], ["\r\n"], ["'${image}' in ${lkr_loc_img}\r\n"], ["Change Image Folder\r\n"], ["${imgpath}\\\\${LKR_UC}\r\n"], ["\r\n"], ["\r\n"], ["\r\n"], ["\r\n"], ["Tries to locate given image from the screen for given time.\r\n"], ["\r\n"], ["${image}\r\n"], ["timeout=${timeout}\r\n"], ["\r\n"], ["\r\n"], ["${loc}\r\n"], ["\r\n"], ["Image \"aae_dokumentennr\" found at (452, 463)\r\n"], ["${loc} = (452, 463)\r\n"], ["\r\n"], ["\r\n"], ["\r\n"], ["Runs the given keyword with the given arguments, if ``condition`` is true.\r\n"], ["\r\n"], ["'${image}' in ${lkr_loc_img}\r\n"], ["Change Image Folder\r\n"], ["${imgpath}\r\n"], ["\r\n"], ["\r\n"], ["\r\n"], ["${loc} = (452, 463)\r\n"], ["\r\n"], ["\r\n"], ["\r\n"], ["Clicks right of given location by given offset.\r\n"], ["\r\n"], ["${loc}\r\n"], ["${offset}\r\n"], ["\r\n"], ["Clicking 1 time(s) at (552, 463) with left mouse button at interval 0.000000\r\n"], ["\r\n"], ["\r\n"], ["\r\n"], ["Type text and keyboard keys.\r\n"], ["\r\n"], ["@{text}\r\n"], ["\r\n"], ["\r\n"], ["\r\n"], ["\r\n"], ["\r\n"], ["\r\n"], ["Type text and keyboard keys.\r\n"], ["\r\n"], ["Key.enter\r\n"], ["\r\n"], ["\r\n"], ["\r\n"], ["\r\n"], ["\r\n"], ["aae_treffer_1\r\n"], ["timeout=10\r\n"], ["\r\n"], ["\r\n"], ["\r\n"], ["${image}\r\n"], ["${timeout}\r\n"], ["\r\n"], ["\r\n"], ["${loc}\r\n"], ["\r\n"], ["\r\n"], ["Runs the given keyword with the given arguments, if ``condition`` is true.\r\n"], ["\r\n"], ["'${image}' in ${lkr_loc_img}\r\n"], ["Change Image Folder\r\n"], ["${imgpath}\\\\${LKR_UC}\r\n"], ["\r\n"], ["\r\n"], ["\r\n"], ["\r\n"], ["Tries to locate given image from the screen for given time.\r\n"], ["\r\n"], ["${image}\r\n"], ["timeout=${timeout}\r\n"], ["\r\n"], ["\r\n"], ["${loc}\r\n"], ["\r\n"], ["Image \"aae_treffer_1\" found at (870, 745)\r\n"], ["${loc} = (870, 745)\r\n"], ["\r\n"], ["\r\n"], ["\r\n"], ["Runs the given keyword with the given arguments, if ``condition`` is true.\r\n"], ["\r\n"], ["'${image}' in ${lkr_loc_img}\r\n"], ["Change Image Folder\r\n"], ["${imgpath}\r\n"], ["\r\n"], ["\r\n"], ["\r\n"], ["${loc} = (870, 745)\r\n"], ["\r\n"], ["\r\n"], ["\r\n"], ["\r\n"], ["${loc}\r\n"], ["\r\n"], ["\r\n"], ["Moves the mouse pointer to an absolute coordinates.\r\n"], ["\r\n"], ["${loc}\r\n"], ["\r\n"], ["\r\n"], ["\r\n"], ["\r\n"], ["Clicks with the specified mouse button.\r\n"], ["\r\n"], ["\r\n"], ["\r\n"], ["\r\n"], ["\r\n"], ["\r\n"], ["\r\n"], ["Type text and keyboard keys.\r\n"], ["\r\n"], ["Key.Tab\r\n"], ["Key.Tab\r\n"], ["Key.Tab\r\n"], ["Key.Tab\r\n"], ["Key.right\r\n"], ["\r\n"], ["\r\n"], ["\r\n"], ["\r\n"], ["\r\n"], ["aae_zeile_markiert\r\n"], ["timeout=10\r\n"], ["\r\n"], ["\r\n"], ["\r\n"], ["${image}\r\n"], ["${timeout}\r\n"], ["\r\n"], ["\r\n"], ["${loc}\r\n"], ["\r\n"], ["\r\n"], ["Runs the given keyword with the given arguments, if ``condition`` is true.\r\n"], ["\r\n"], ["'${image}' in ${lkr_loc_img}\r\n"], ["Change Image Folder\r\n"], ["${imgpath}\\\\${LKR_UC}\r\n"], ["\r\n"], ["\r\n"], ["\r\n"], ["\r\n"], ["Tries to locate given image from the screen for given time.\r\n"], ["\r\n"], ["${image}\r\n"], ["timeout=${timeout}\r\n"], ["\r\n"], ["\r\n"], ["${loc}\r\n"], ["\r\n"], ["Image \"aae_zeile_markiert\" found at (423, 786)\r\n"], ["${loc} = (423, 786)\r\n"], ["\r\n"], ["\r\n"], ["\r\n"], ["Runs the given keyword with the given arguments, if ``condition`` is true.\r\n"], ["\r\n"], ["'${image}' in ${lkr_loc_img}\r\n"], ["Change Image Folder\r\n"], ["${imgpath}\r\n"], ["\r\n"], ["\r\n"], ["\r\n"], ["${loc} = (423, 786)\r\n"], ["\r\n"], ["\r\n"], ["\r\n"], ["\r\n"], ["${loc}\r\n"], ["\r\n"], ["\r\n"], ["Moves the mouse pointer to an absolute coordinates.\r\n"], ["\r\n"], ["${loc}\r\n"], ["\r\n"], ["\r\n"], ["\r\n"], ["\r\n"], ["Clicks with the specified mouse button.\r\n"], ["\r\n"], ["\r\n"], ["\r\n"], ["\r\n"], ["\r\n"], ["\r\n"], ["\r\n"], ["\r\n"], ["aae_viewer_b\r\n"], ["timeout=10\r\n"], ["\r\n"], ["\r\n"], ["\r\n"], ["${image}\r\n"], ["${timeout}\r\n"], ["\r\n"], ["\r\n"], ["${loc}\r\n"], ["\r\n"], ["\r\n"], ["Runs the given keyword with the given arguments, if ``condition`` is true.\r\n"], ["\r\n"], ["'${image}' in ${lkr_loc_img}\r\n"], ["Change Image Folder\r\n"], ["${imgpath}\\\\${LKR_UC}\r\n"], ["\r\n"], ["\r\n"], ["\r\n"], ["\r\n"], ["Tries to locate given image from the screen for given time.\r\n"], ["\r\n"], ["${image}\r\n"], ["timeout=${timeout}\r\n"], ["\r\n"], ["\r\n"], ["${loc}\r\n"], ["\r\n"], ["Image \"aae_viewer_b\" found at (641, 709)\r\n"], ["${loc} = (641, 709)\r\n"], ["\r\n"], ["\r\n"], ["\r\n"], ["Runs the given keyword with the given arguments, if ``condition`` is true.\r\n"], ["\r\n"], ["'${image}' in ${lkr_loc_img}\r\n"], ["Change Image Folder\r\n"], ["${imgpath}\r\n"], ["\r\n"], ["\r\n"], ["\r\n"], ["${loc} = (641, 709)\r\n"], ["\r\n"], ["\r\n"], ["\r\n"], ["\r\n"], ["${loc}\r\n"], ["\r\n"], ["\r\n"], ["Moves the mouse pointer to an absolute coordinates.\r\n"], ["\r\n"], ["${loc}\r\n"], ["\r\n"], ["\r\n"], ["\r\n"], ["\r\n"], ["Clicks with the specified mouse button.\r\n"], ["\r\n"], ["\r\n"], ["\r\n"], ["\r\n"], ["\r\n"], ["\r\n"], ["\r\n"], ["\r\n"], ["bviewer_opened\r\n"], ["10\r\n"], ["\r\n"], ["\r\n"], ["Runs the given keyword with the given arguments, if ``condition`` is true.\r\n"], ["\r\n"], ["'${image}' in ${lkr_loc_img}\r\n"], ["Change Image Folder\r\n"], ["${imgpath}\\\\${LKR_UC}\r\n"], ["\r\n"], ["\r\n"], ["\r\n"], ["\r\n"], ["Tries to locate given image from the screen for given time.\r\n"], ["\r\n"], ["${image}\r\n"], ["timeout=${timeout}\r\n"], ["\r\n"], ["\r\n"], ["${loc}\r\n"], ["\r\n"], ["Image \"bviewer_opened\" found at (652, 94)\r\n"], ["${loc} = (652, 94)\r\n"], ["\r\n"], ["\r\n"], ["\r\n"], ["Runs the given keyword with the given arguments, if ``condition`` is true.\r\n"], ["\r\n"], ["'${image}' in ${lkr_loc_img}\r\n"], ["Change Image Folder\r\n"], ["${imgpath}\r\n"], ["\r\n"], ["\r\n"], ["\r\n"], ["\r\n"], ["\r\n"], ["\r\n"], ["Pauses the test executed for the given time.\r\n"], ["\r\n"], ["0.5\r\n"], ["\r\n"], ["Slept 500 milliseconds\r\n"], ["\r\n"], ["\r\n"], ["\r\n"], ["\r\n"], ["bviewer_opened\r\n"], ["timeout=10\r\n"], ["\r\n"], ["\r\n"], ["\r\n"], ["${image}\r\n"], ["${timeout}\r\n"], ["\r\n"], ["\r\n"], ["${loc}\r\n"], ["\r\n"], ["\r\n"], ["Runs the given keyword with the given arguments, if ``condition`` is true.\r\n"], ["\r\n"], ["'${image}' in ${lkr_loc_img}\r\n"], ["Change Image Folder\r\n"], ["${imgpath}\\\\${LKR_UC}\r\n"], ["\r\n"], ["\r\n"], ["\r\n"], ["\r\n"], ["Tries to locate given image from the screen for given time.\r\n"], ["\r\n"], ["${image}\r\n"], ["timeout=${timeout}\r\n"], ["\r\n"], ["\r\n"], ["${loc}\r\n"], ["\r\n"], ["Image \"bviewer_opened\" found at (652, 94)\r\n"], ["${loc} = (652, 94)\r\n"], ["\r\n"], ["\r\n"], ["\r\n"], ["Runs the given keyword with the given arguments, if ``condition`` is true.\r\n"], ["\r\n"], ["'${image}' in ${lkr_loc_img}\r\n"], ["Change Image Folder\r\n"], ["${imgpath}\r\n"], ["\r\n"], ["\r\n"], ["\r\n"], ["${loc} = (652, 94)\r\n"], ["\r\n"], ["\r\n"], ["\r\n"], ["\r\n"], ["${loc}\r\n"], ["\r\n"], ["\r\n"], ["Moves the mouse pointer to an absolute coordinates.\r\n"], ["\r\n"], ["${loc}\r\n"], ["\r\n"], ["\r\n"], ["\r\n"], ["\r\n"], ["Clicks with the specified mouse button.\r\n"], ["\r\n"], ["\r\n"], ["\r\n"], ["\r\n"], ["\r\n"], ["\r\n"], ["\r\n"], ["Pauses the test executed for the given time.\r\n"], ["\r\n"], ["0.5\r\n"], ["\r\n"], ["Slept 500 milliseconds\r\n"], ["\r\n"], ["\r\n"], ["\r\n"], ["Press given keyboard keys.\r\n"], ["\r\n"], ["Key.Win\r\n"], ["Key.Up\r\n"], ["\r\n"], ["\r\n"], ["\r\n"], ["\r\n"], ["Returns the given values which can then be assigned to a variables.\r\n"], ["\r\n"], ["ARCHIVETOOL_DOKU_${LKR_UC}_${anz_seiten}\r\n"], ["\r\n"], ["\r\n"], ["${search_image}\r\n"], ["\r\n"], ["${search_image} = ARCHIVETOOL_DOKU_AI_30\r\n"], ["\r\n"], ["\r\n"], ["\r\n"], ["\r\n"], ["bviewer_opened\r\n"], ["timeout=10\r\n"], ["\r\n"], ["\r\n"], ["\r\n"], ["${image}\r\n"], ["${timeout}\r\n"], ["\r\n"], ["\r\n"], ["${loc}\r\n"], ["\r\n"], ["\r\n"], ["Runs the given keyword with the given arguments, if ``condition`` is true.\r\n"], ["\r\n"], ["'${image}' in ${lkr_loc_img}\r\n"], ["Change Image Folder\r\n"], ["${imgpath}\\\\${LKR_UC}\r\n"], ["\r\n"], ["\r\n"], ["\r\n"], ["\r\n"], ["Tries to locate given image from the screen for given time.\r\n"], ["\r\n"], ["${image}\r\n"], ["timeout=${timeout}\r\n"], ["\r\n"], ["\r\n"], ["${loc}\r\n"], ["\r\n"], ["Image \"bviewer_opened\" found at (11, 85)\r\n"], ["${loc} = (11, 85)\r\n"], ["\r\n"], ["\r\n"], ["\r\n"], ["Runs the given keyword with the given arguments, if ``condition`` is true.\r\n"], ["\r\n"], ["'${image}' in ${lkr_loc_img}\r\n"], ["Change Image Folder\r\n"], ["${imgpath}\r\n"], ["\r\n"], ["\r\n"], ["\r\n"], ["${loc} = (11, 85)\r\n"], ["\r\n"], ["\r\n"], ["\r\n"], ["\r\n"], ["${loc}\r\n"], ["\r\n"], ["\r\n"], ["Moves the mouse pointer to an absolute coordinates.\r\n"], ["\r\n"], ["${loc}\r\n"], ["\r\n"], ["\r\n"], ["\r\n"], ["\r\n"], ["Clicks with the specified mouse button.\r\n"], ["\r\n"], ["\r\n"], ["\r\n"], ["\r\n"], ["\r\n"], ["\r\n"], ["\r\n"], ["Tries to locate given image from the screen for given time.\r\n"], ["\r\n"], ["${search_image}\r\n"], ["timeout=90\r\n"], ["\r\n"], ["Image \"ARCHIVETOOL_DOKU_AI_30\" found at (192, 333)\r\n"], ["\r\n"], ["\r\n"], ["\r\n"], ["Press given keyboard keys.\r\n"], ["\r\n"], ["Key.Alt\r\n"], ["Key.F4\r\n"], ["\r\n"], ["\r\n"], ["\r\n"], ["\r\n"], ["\r\n"], ["\r\n"], ["\r\n"], ["aae_suche_clear\r\n"], ["timeout=5\r\n"], ["\r\n"], ["\r\n"], ["\r\n"], ["${image}\r\n"], ["${timeout}\r\n"], ["\r\n"], ["\r\n"], ["${loc}\r\n"], ["\r\n"], ["\r\n"], ["Runs the given keyword with the given arguments, if ``condition`` is true.\r\n"], ["\r\n"], ["'${image}' in ${lkr_loc_img}\r\n"], ["Change Image Folder\r\n"], ["${imgpath}\\\\${LKR_UC}\r\n"], ["\r\n"], ["\r\n"], ["\r\n"], ["\r\n"], ["Tries to locate given image from the screen for given time.\r\n"], ["\r\n"], ["${image}\r\n"], ["timeout=${timeout}\r\n"], ["\r\n"], ["\r\n"], ["${loc}\r\n"], ["\r\n"], ["Image \"aae_suche_clear\" found at (404, 709)\r\n"], ["${loc} = (404, 709)\r\n"], ["\r\n"], ["\r\n"], ["\r\n"], ["Runs the given keyword with the given arguments, if ``condition`` is true.\r\n"], ["\r\n"], ["'${image}' in ${lkr_loc_img}\r\n"], ["Change Image Folder\r\n"], ["${imgpath}\r\n"], ["\r\n"], ["\r\n"], ["\r\n"], ["${loc} = (404, 709)\r\n"], ["\r\n"], ["\r\n"], ["\r\n"], ["\r\n"], ["${loc}\r\n"], ["\r\n"], ["\r\n"], ["Moves the mouse pointer to an absolute coordinates.\r\n"], ["\r\n"], ["${loc}\r\n"], ["\r\n"], ["\r\n"], ["\r\n"], ["\r\n"], ["Clicks with the specified mouse button.\r\n"], ["\r\n"], ["\r\n"], ["\r\n"], ["\r\n"], ["\r\n"], ["\r\n"], ["\r\n"], ["\r\n"], ["aae_dokumentennr_bereit\r\n"], ["timeout=5\r\n"], ["\r\n"], ["\r\n"], ["Runs the given keyword with the given arguments, if ``condition`` is true.\r\n"], ["\r\n"], ["'${image}' in ${lkr_loc_img}\r\n"], ["Change Image Folder\r\n"], ["${imgpath}\\\\${LKR_UC}\r\n"], ["\r\n"], ["\r\n"], ["\r\n"], ["\r\n"], ["Tries to locate given image from the screen for given time.\r\n"], ["\r\n"], ["${image}\r\n"], ["timeout=${timeout}\r\n"], ["\r\n"], ["\r\n"], ["${loc}\r\n"], ["\r\n"], ["Image \"aae_dokumentennr_bereit\" found at (569, 464)\r\n"], ["${loc} = (569, 464)\r\n"], ["\r\n"], ["\r\n"], ["\r\n"], ["Runs the given keyword with the given arguments, if ``condition`` is true.\r\n"], ["\r\n"], ["'${image}' in ${lkr_loc_img}\r\n"], ["Change Image Folder\r\n"], ["${imgpath}\r\n"], ["\r\n"], ["\r\n"], ["\r\n"], ["\r\n"], ["\r\n"], ["\r\n"], ["Evaluates the given expression in Python and returns the result.\r\n"], ["\r\n"], ["${i} + 1\r\n"], ["\r\n"], ["\r\n"], ["${i}\r\n"], ["\r\n"], ["${i} = 1\r\n"], ["\r\n"], ["\r\n"], ["\r\n"], ["\r\n"], ["\r\n"], ["\r\n"], ["\r\n"], ["${lkr_docs}[${i}]\r\n"], ["${anz_seiten}\r\n"], ["\r\n"], ["\r\n"], ["Makes a variable available everywhere within the scope of the current test.\r\n"], ["\r\n"], ["${dokid}\r\n"], ["${lkr_doc}\r\n"], ["\r\n"], ["${dokid} = 688976\r\n"], ["\r\n"], ["\r\n"], ["\r\n"], ["\r\n"], ["aae_dokumentennr\r\n"], ["5\r\n"], ["100\r\n"], ["${lkr_doc}\r\n"], ["\r\n"], ["\r\n"], ["\r\n"], ["${image}\r\n"], ["${timeout}\r\n"], ["\r\n"], ["\r\n"], ["${loc}\r\n"], ["\r\n"], ["\r\n"], ["Runs the given keyword with the given arguments, if ``condition`` is true.\r\n"], ["\r\n"], ["'${image}' in ${lkr_loc_img}\r\n"], ["Change Image Folder\r\n"], ["${imgpath}\\\\${LKR_UC}\r\n"], ["\r\n"], ["\r\n"], ["\r\n"], ["\r\n"], ["Tries to locate given image from the screen for given time.\r\n"], ["\r\n"], ["${image}\r\n"], ["timeout=${timeout}\r\n"], ["\r\n"], ["\r\n"], ["${loc}\r\n"], ["\r\n"], ["Image \"aae_dokumentennr\" found at (452, 463)\r\n"], ["${loc} = (452, 463)\r\n"], ["\r\n"], ["\r\n"], ["\r\n"], ["Runs the given keyword with the given arguments, if ``condition`` is true.\r\n"], ["\r\n"], ["'${image}' in ${lkr_loc_img}\r\n"], ["Change Image Folder\r\n"], ["${imgpath}\r\n"], ["\r\n"], ["\r\n"], ["\r\n"], ["${loc} = (452, 463)\r\n"], ["\r\n"], ["\r\n"], ["\r\n"], ["Clicks right of given location by given offset.\r\n"], ["\r\n"], ["${loc}\r\n"], ["${offset}\r\n"], ["\r\n"], ["Clicking 1 time(s) at (552, 463) with left mouse button at interval 0.000000\r\n"], ["\r\n"], ["\r\n"], ["\r\n"], ["Type text and keyboard keys.\r\n"], ["\r\n"], ["@{text}\r\n"], ["\r\n"], ["\r\n"], ["\r\n"], ["\r\n"], ["\r\n"], ["\r\n"], ["Type text and keyboard keys.\r\n"], ["\r\n"], ["Key.enter\r\n"], ["\r\n"], ["\r\n"], ["\r\n"], ["\r\n"], ["\r\n"], ["aae_treffer_1\r\n"], ["timeout=10\r\n"], ["\r\n"], ["\r\n"], ["\r\n"], ["${image}\r\n"], ["${timeout}\r\n"], ["\r\n"], ["\r\n"], ["${loc}\r\n"], ["\r\n"], ["\r\n"], ["Runs the given keyword with the given arguments, if ``condition`` is true.\r\n"], ["\r\n"], ["'${image}' in ${lkr_loc_img}\r\n"], ["Change Image Folder\r\n"], ["${imgpath}\\\\${LKR_UC}\r\n"], ["\r\n"], ["\r\n"], ["\r\n"], ["\r\n"], ["Tries to locate given image from the screen for given time.\r\n"], ["\r\n"], ["${image}\r\n"], ["timeout=${timeout}\r\n"], ["\r\n"], ["\r\n"], ["${loc}\r\n"], ["\r\n"], ["Image \"aae_treffer_1\" found at (870, 745)\r\n"], ["${loc} = (870, 745)\r\n"], ["\r\n"], ["\r\n"], ["\r\n"], ["Runs the given keyword with the given arguments, if ``condition`` is true.\r\n"], ["\r\n"], ["'${image}' in ${lkr_loc_img}\r\n"], ["Change Image Folder\r\n"], ["${imgpath}\r\n"], ["\r\n"], ["\r\n"], ["\r\n"], ["${loc} = (870, 745)\r\n"], ["\r\n"], ["\r\n"], ["\r\n"], ["\r\n"], ["${loc}\r\n"], ["\r\n"], ["\r\n"], ["Moves the mouse pointer to an absolute coordinates.\r\n"], ["\r\n"], ["${loc}\r\n"], ["\r\n"], ["\r\n"], ["\r\n"], ["\r\n"], ["Clicks with the specified mouse button.\r\n"], ["\r\n"], ["\r\n"], ["\r\n"], ["\r\n"], ["\r\n"], ["\r\n"], ["\r\n"], ["Type text and keyboard keys.\r\n"], ["\r\n"], ["Key.Tab\r\n"], ["Key.Tab\r\n"], ["Key.Tab\r\n"], ["Key.Tab\r\n"], ["Key.right\r\n"], ["\r\n"], ["\r\n"], ["\r\n"], ["\r\n"], ["\r\n"], ["aae_zeile_markiert\r\n"], ["timeout=10\r\n"], ["\r\n"], ["\r\n"], ["\r\n"], ["${image}\r\n"], ["${timeout}\r\n"], ["\r\n"], ["\r\n"], ["${loc}\r\n"], ["\r\n"], ["\r\n"], ["Runs the given keyword with the given arguments, if ``condition`` is true.\r\n"], ["\r\n"], ["'${image}' in ${lkr_loc_img}\r\n"], ["Change Image Folder\r\n"], ["${imgpath}\\\\${LKR_UC}\r\n"], ["\r\n"], ["\r\n"], ["\r\n"], ["\r\n"], ["Tries to locate given image from the screen for given time.\r\n"], ["\r\n"], ["${image}\r\n"], ["timeout=${timeout}\r\n"], ["\r\n"], ["\r\n"], ["${loc}\r\n"], ["\r\n"], ["Image \"aae_zeile_markiert\" found at (423, 786)\r\n"], ["${loc} = (423, 786)\r\n"], ["\r\n"], ["\r\n"], ["\r\n"], ["Runs the given keyword with the given arguments, if ``condition`` is true.\r\n"], ["\r\n"], ["'${image}' in ${lkr_loc_img}\r\n"], ["Change Image Folder\r\n"], ["${imgpath}\r\n"], ["\r\n"], ["\r\n"], ["\r\n"], ["${loc} = (423, 786)\r\n"], ["\r\n"], ["\r\n"], ["\r\n"], ["\r\n"], ["${loc}\r\n"], ["\r\n"], ["\r\n"], ["Moves the mouse pointer to an absolute coordinates.\r\n"], ["\r\n"], ["${loc}\r\n"], ["\r\n"], ["\r\n"], ["\r\n"], ["\r\n"], ["Clicks with the specified mouse button.\r\n"], ["\r\n"], ["\r\n"], ["\r\n"], ["\r\n"], ["\r\n"], ["\r\n"], ["\r\n"], ["\r\n"], ["aae_viewer_b\r\n"], ["timeout=10\r\n"], ["\r\n"], ["\r\n"], ["\r\n"], ["${image}\r\n"], ["${timeout}\r\n"], ["\r\n"], ["\r\n"], ["${loc}\r\n"], ["\r\n"], ["\r\n"], ["Runs the given keyword with the given arguments, if ``condition`` is true.\r\n"], ["\r\n"], ["'${image}' in ${lkr_loc_img}\r\n"], ["Change Image Folder\r\n"], ["${imgpath}\\\\${LKR_UC}\r\n"], ["\r\n"], ["\r\n"], ["\r\n"], ["\r\n"], ["Tries to locate given image from the screen for given time.\r\n"], ["\r\n"], ["${image}\r\n"], ["timeout=${timeout}\r\n"], ["\r\n"], ["\r\n"], ["${loc}\r\n"], ["\r\n"], ["Image \"aae_viewer_b\" found at (641, 709)\r\n"], ["${loc} = (641, 709)\r\n"], ["\r\n"], ["\r\n"], ["\r\n"], ["Runs the given keyword with the given arguments, if ``condition`` is true.\r\n"], ["\r\n"], ["'${image}' in ${lkr_loc_img}\r\n"], ["Change Image Folder\r\n"], ["${imgpath}\r\n"], ["\r\n"], ["\r\n"], ["\r\n"], ["${loc} = (641, 709)\r\n"], ["\r\n"], ["\r\n"], ["\r\n"], ["\r\n"], ["${loc}\r\n"], ["\r\n"], ["\r\n"], ["Moves the mouse pointer to an absolute coordinates.\r\n"], ["\r\n"], ["${loc}\r\n"], ["\r\n"], ["\r\n"], ["\r\n"], ["\r\n"], ["Clicks with the specified mouse button.\r\n"], ["\r\n"], ["\r\n"], ["\r\n"], ["\r\n"], ["\r\n"], ["\r\n"], ["\r\n"], ["\r\n"], ["bviewer_opened\r\n"], ["10\r\n"], ["\r\n"], ["\r\n"], ["Runs the given keyword with the given arguments, if ``condition`` is true.\r\n"], ["\r\n"], ["'${image}' in ${lkr_loc_img}\r\n"], ["Change Image Folder\r\n"], ["${imgpath}\\\\${LKR_UC}\r\n"], ["\r\n"], ["\r\n"], ["\r\n"], ["\r\n"], ["Tries to locate given image from the screen for given time.\r\n"], ["\r\n"], ["${image}\r\n"], ["timeout=${timeout}\r\n"], ["\r\n"], ["\r\n"], ["${loc}\r\n"], ["\r\n"], ["Image \"bviewer_opened\" found at (652, 94)\r\n"], ["${loc} = (652, 94)\r\n"], ["\r\n"], ["\r\n"], ["\r\n"], ["Runs the given keyword with the given arguments, if ``condition`` is true.\r\n"], ["\r\n"], ["'${image}' in ${lkr_loc_img}\r\n"], ["Change Image Folder\r\n"], ["${imgpath}\r\n"], ["\r\n"], ["\r\n"], ["\r\n"], ["\r\n"], ["\r\n"], ["\r\n"], ["Pauses the test executed for the given time.\r\n"], ["\r\n"], ["0.5\r\n"], ["\r\n"], ["Slept 500 milliseconds\r\n"], ["\r\n"], ["\r\n"], ["\r\n"], ["\r\n"], ["bviewer_opened\r\n"], ["timeout=10\r\n"], ["\r\n"], ["\r\n"], ["\r\n"], ["${image}\r\n"], ["${timeout}\r\n"], ["\r\n"], ["\r\n"], ["${loc}\r\n"], ["\r\n"], ["\r\n"], ["Runs the given keyword with the given arguments, if ``condition`` is true.\r\n"], ["\r\n"], ["'${image}' in ${lkr_loc_img}\r\n"], ["Change Image Folder\r\n"], ["${imgpath}\\\\${LKR_UC}\r\n"], ["\r\n"], ["\r\n"], ["\r\n"], ["\r\n"], ["Tries to locate given image from the screen for given time.\r\n"], ["\r\n"], ["${image}\r\n"], ["timeout=${timeout}\r\n"], ["\r\n"], ["\r\n"], ["${loc}\r\n"], ["\r\n"], ["Image \"bviewer_opened\" found at (652, 94)\r\n"], ["${loc} = (652, 94)\r\n"], ["\r\n"], ["\r\n"], ["\r\n"], ["Runs the given keyword with the given arguments, if ``condition`` is true.\r\n"], ["\r\n"], ["'${image}' in ${lkr_loc_img}\r\n"], ["Change Image Folder\r\n"], ["${imgpath}\r\n"], ["\r\n"], ["\r\n"], ["\r\n"], ["${loc} = (652, 94)\r\n"], ["\r\n"], ["\r\n"], ["\r\n"], ["\r\n"], ["${loc}\r\n"], ["\r\n"], ["\r\n"], ["Moves the mouse pointer to an absolute coordinates.\r\n"], ["\r\n"], ["${loc}\r\n"], ["\r\n"], ["\r\n"], ["\r\n"], ["\r\n"], ["Clicks with the specified mouse button.\r\n"], ["\r\n"], ["\r\n"], ["\r\n"], ["\r\n"], ["\r\n"], ["\r\n"], ["\r\n"], ["Pauses the test executed for the given time.\r\n"], ["\r\n"], ["0.5\r\n"], ["\r\n"], ["Slept 500 milliseconds\r\n"], ["\r\n"], ["\r\n"], ["\r\n"], ["Press given keyboard keys.\r\n"], ["\r\n"], ["Key.Win\r\n"], ["Key.Up\r\n"], ["\r\n"], ["\r\n"], ["\r\n"], ["\r\n"], ["Returns the given values which can then be assigned to a variables.\r\n"], ["\r\n"], ["ARCHIVETOOL_DOKU_${LKR_UC}_${anz_seiten}\r\n"], ["\r\n"], ["\r\n"], ["${search_image}\r\n"], ["\r\n"], ["${search_image} = ARCHIVETOOL_DOKU_AI_100\r\n"], ["\r\n"], ["\r\n"], ["\r\n"], ["\r\n"], ["bviewer_opened\r\n"], ["timeout=10\r\n"], ["\r\n"], ["\r\n"], ["\r\n"], ["${image}\r\n"], ["${timeout}\r\n"], ["\r\n"], ["\r\n"], ["${loc}\r\n"], ["\r\n"], ["\r\n"], ["Runs the given keyword with the given arguments, if ``condition`` is true.\r\n"], ["\r\n"], ["'${image}' in ${lkr_loc_img}\r\n"], ["Change Image Folder\r\n"], ["${imgpath}\\\\${LKR_UC}\r\n"], ["\r\n"], ["\r\n"], ["\r\n"], ["\r\n"], ["Tries to locate given image from the screen for given time.\r\n"], ["\r\n"], ["${image}\r\n"], ["timeout=${timeout}\r\n"], ["\r\n"], ["\r\n"], ["${loc}\r\n"], ["\r\n"], ["Image \"bviewer_opened\" found at (11, 85)\r\n"], ["${loc} = (11, 85)\r\n"], ["\r\n"], ["\r\n"], ["\r\n"], ["Runs the given keyword with the given arguments, if ``condition`` is true.\r\n"], ["\r\n"], ["'${image}' in ${lkr_loc_img}\r\n"], ["Change Image Folder\r\n"], ["${imgpath}\r\n"], ["\r\n"], ["\r\n"], ["\r\n"], ["${loc} = (11, 85)\r\n"], ["\r\n"], ["\r\n"], ["\r\n"], ["\r\n"], ["${loc}\r\n"], ["\r\n"], ["\r\n"], ["Moves the mouse pointer to an absolute coordinates.\r\n"], ["\r\n"], ["${loc}\r\n"], ["\r\n"], ["\r\n"], ["\r\n"], ["\r\n"], ["Clicks with the specified mouse button.\r\n"], ["\r\n"], ["\r\n"], ["\r\n"], ["\r\n"], ["\r\n"], ["\r\n"], ["\r\n"], ["Tries to locate given image from the screen for given time.\r\n"], ["\r\n"], ["${search_image}\r\n"], ["timeout=90\r\n"], ["\r\n"], ["Image \"ARCHIVETOOL_DOKU_AI_100\" found at (195, 303)\r\n"], ["\r\n"], ["\r\n"], ["\r\n"], ["Press given keyboard keys.\r\n"], ["\r\n"], ["Key.Alt\r\n"], ["Key.F4\r\n"], ["\r\n"], ["\r\n"], ["\r\n"], ["\r\n"], ["\r\n"], ["\r\n"], ["\r\n"], ["aae_suche_clear\r\n"], ["timeout=5\r\n"], ["\r\n"], ["\r\n"], ["\r\n"], ["${image}\r\n"], ["${timeout}\r\n"], ["\r\n"], ["\r\n"], ["${loc}\r\n"], ["\r\n"], ["\r\n"], ["Runs the given keyword with the given arguments, if ``condition`` is true.\r\n"], ["\r\n"], ["'${image}' in ${lkr_loc_img}\r\n"], ["Change Image Folder\r\n"], ["${imgpath}\\\\${LKR_UC}\r\n"], ["\r\n"], ["\r\n"], ["\r\n"], ["\r\n"], ["Tries to locate given image from the screen for given time.\r\n"], ["\r\n"], ["${image}\r\n"], ["timeout=${timeout}\r\n"], ["\r\n"], ["\r\n"], ["${loc}\r\n"], ["\r\n"], ["Image \"aae_suche_clear\" found at (404, 709)\r\n"], ["${loc} = (404, 709)\r\n"], ["\r\n"], ["\r\n"], ["\r\n"], ["Runs the given keyword with the given arguments, if ``condition`` is true.\r\n"], ["\r\n"], ["'${image}' in ${lkr_loc_img}\r\n"], ["Change Image Folder\r\n"], ["${imgpath}\r\n"], ["\r\n"], ["\r\n"], ["\r\n"], ["${loc} = (404, 709)\r\n"], ["\r\n"], ["\r\n"], ["\r\n"], ["\r\n"], ["${loc}\r\n"], ["\r\n"], ["\r\n"], ["Moves the mouse pointer to an absolute coordinates.\r\n"], ["\r\n"], ["${loc}\r\n"], ["\r\n"], ["\r\n"], ["\r\n"], ["\r\n"], ["Clicks with the specified mouse button.\r\n"], ["\r\n"], ["\r\n"], ["\r\n"], ["\r\n"], ["\r\n"], ["\r\n"], ["\r\n"], ["\r\n"], ["aae_dokumentennr_bereit\r\n"], ["timeout=5\r\n"], ["\r\n"], ["\r\n"], ["Runs the given keyword with the given arguments, if ``condition`` is true.\r\n"], ["\r\n"], ["'${image}' in ${lkr_loc_img}\r\n"], ["Change Image Folder\r\n"], ["${imgpath}\\\\${LKR_UC}\r\n"], ["\r\n"], ["\r\n"], ["\r\n"], ["\r\n"], ["Tries to locate given image from the screen for given time.\r\n"], ["\r\n"], ["${image}\r\n"], ["timeout=${timeout}\r\n"], ["\r\n"], ["\r\n"], ["${loc}\r\n"], ["\r\n"], ["Image \"aae_dokumentennr_bereit\" found at (569, 464)\r\n"], ["${loc} = (569, 464)\r\n"], ["\r\n"], ["\r\n"], ["\r\n"], ["Runs the given keyword with the given arguments, if ``condition`` is true.\r\n"], ["\r\n"], ["'${image}' in ${lkr_loc_img}\r\n"], ["Change Image Folder\r\n"], ["${imgpath}\r\n"], ["\r\n"], ["\r\n"], ["\r\n"], ["\r\n"], ["\r\n"], ["\r\n"], ["Evaluates the given expression in Python and returns the result.\r\n"], ["\r\n"], ["${i} + 1\r\n"], ["\r\n"], ["\r\n"], ["${i}\r\n"], ["\r\n"], ["${i} = 2\r\n"], ["\r\n"], ["\r\n"], ["\r\n"], ["\r\n"], ["\r\n"], ["\r\n"], ["\r\n"], ["${lkr_docs}[${i}]\r\n"], ["${anz_seiten}\r\n"], ["\r\n"], ["\r\n"], ["Makes a variable available everywhere within the scope of the current test.\r\n"], ["\r\n"], ["${dokid}\r\n"], ["${lkr_doc}\r\n"], ["\r\n"], ["${dokid} = 689082\r\n"], ["\r\n"], ["\r\n"], ["\r\n"], ["\r\n"], ["aae_dokumentennr\r\n"], ["5\r\n"], ["100\r\n"], ["${lkr_doc}\r\n"], ["\r\n"], ["\r\n"], ["\r\n"], ["${image}\r\n"], ["${timeout}\r\n"], ["\r\n"], ["\r\n"], ["${loc}\r\n"], ["\r\n"], ["\r\n"], ["Runs the given keyword with the given arguments, if ``condition`` is true.\r\n"], ["\r\n"], ["'${image}' in ${lkr_loc_img}\r\n"], ["Change Image Folder\r\n"], ["${imgpath}\\\\${LKR_UC}\r\n"], ["\r\n"], ["\r\n"], ["\r\n"], ["\r\n"], ["Tries to locate given image from the screen for given time.\r\n"], ["\r\n"], ["${image}\r\n"], ["timeout=${timeout}\r\n"], ["\r\n"], ["\r\n"], ["${loc}\r\n"], ["\r\n"], ["Image \"aae_dokumentennr\" found at (452, 463)\r\n"], ["${loc} = (452, 463)\r\n"], ["\r\n"], ["\r\n"], ["\r\n"], ["Runs the given keyword with the given arguments, if ``condition`` is true.\r\n"], ["\r\n"], ["'${image}' in ${lkr_loc_img}\r\n"], ["Change Image Folder\r\n"], ["${imgpath}\r\n"], ["\r\n"], ["\r\n"], ["\r\n"], ["${loc} = (452, 463)\r\n"], ["\r\n"], ["\r\n"], ["\r\n"], ["Clicks right of given location by given offset.\r\n"], ["\r\n"], ["${loc}\r\n"], ["${offset}\r\n"], ["\r\n"], ["Clicking 1 time(s) at (552, 463) with left mouse button at interval 0.000000\r\n"], ["\r\n"], ["\r\n"], ["\r\n"], ["Type text and keyboard keys.\r\n"], ["\r\n"], ["@{text}\r\n"], ["\r\n"], ["\r\n"], ["\r\n"], ["\r\n"], ["\r\n"], ["\r\n"], ["Type text and keyboard keys.\r\n"], ["\r\n"], ["Key.enter\r\n"], ["\r\n"], ["\r\n"], ["\r\n"], ["\r\n"], ["\r\n"], ["aae_treffer_1\r\n"], ["timeout=10\r\n"], ["\r\n"], ["\r\n"], ["\r\n"], ["${image}\r\n"], ["${timeout}\r\n"], ["\r\n"], ["\r\n"], ["${loc}\r\n"], ["\r\n"], ["\r\n"], ["Runs the given keyword with the given arguments, if ``condition`` is true.\r\n"], ["\r\n"], ["'${image}' in ${lkr_loc_img}\r\n"], ["Change Image Folder\r\n"], ["${imgpath}\\\\${LKR_UC}\r\n"], ["\r\n"], ["\r\n"], ["\r\n"], ["\r\n"], ["Tries to locate given image from the screen for given time.\r\n"], ["\r\n"], ["${image}\r\n"], ["timeout=${timeout}\r\n"], ["\r\n"], ["\r\n"], ["${loc}\r\n"], ["\r\n"], ["Image \"aae_treffer_1\" found at (870, 745)\r\n"], ["${loc} = (870, 745)\r\n"], ["\r\n"], ["\r\n"], ["\r\n"], ["Runs the given keyword with the given arguments, if ``condition`` is true.\r\n"], ["\r\n"], ["'${image}' in ${lkr_loc_img}\r\n"], ["Change Image Folder\r\n"], ["${imgpath}\r\n"], ["\r\n"], ["\r\n"], ["\r\n"], ["${loc} = (870, 745)\r\n"], ["\r\n"], ["\r\n"], ["\r\n"], ["\r\n"], ["${loc}\r\n"], ["\r\n"], ["\r\n"], ["Moves the mouse pointer to an absolute coordinates.\r\n"], ["\r\n"], ["${loc}\r\n"], ["\r\n"], ["\r\n"], ["\r\n"], ["\r\n"], ["Clicks with the specified mouse button.\r\n"], ["\r\n"], ["\r\n"], ["\r\n"], ["\r\n"], ["\r\n"], ["\r\n"], ["\r\n"], ["Type text and keyboard keys.\r\n"], ["\r\n"], ["Key.Tab\r\n"], ["Key.Tab\r\n"], ["Key.Tab\r\n"], ["Key.Tab\r\n"], ["Key.right\r\n"], ["\r\n"], ["\r\n"], ["\r\n"], ["\r\n"], ["\r\n"], ["aae_zeile_markiert\r\n"], ["timeout=10\r\n"], ["\r\n"], ["\r\n"], ["\r\n"], ["${image}\r\n"], ["${timeout}\r\n"], ["\r\n"], ["\r\n"], ["${loc}\r\n"], ["\r\n"], ["\r\n"], ["Runs the given keyword with the given arguments, if ``condition`` is true.\r\n"], ["\r\n"], ["'${image}' in ${lkr_loc_img}\r\n"], ["Change Image Folder\r\n"], ["${imgpath}\\\\${LKR_UC}\r\n"], ["\r\n"], ["\r\n"], ["\r\n"], ["\r\n"], ["Tries to locate given image from the screen for given time.\r\n"], ["\r\n"], ["${image}\r\n"], ["timeout=${timeout}\r\n"], ["\r\n"], ["\r\n"], ["${loc}\r\n"], ["\r\n"], ["Image \"aae_zeile_markiert\" found at (423, 786)\r\n"], ["${loc} = (423, 786)\r\n"], ["\r\n"], ["\r\n"], ["\r\n"], ["Runs the given keyword with the given arguments, if ``condition`` is true.\r\n"], ["\r\n"], ["'${image}' in ${lkr_loc_img}\r\n"], ["Change Image Folder\r\n"], ["${imgpath}\r\n"], ["\r\n"], ["\r\n"], ["\r\n"], ["${loc} = (423, 786)\r\n"], ["\r\n"], ["\r\n"], ["\r\n"], ["\r\n"], ["${loc}\r\n"], ["\r\n"], ["\r\n"], ["Moves the mouse pointer to an absolute coordinates.\r\n"], ["\r\n"], ["${loc}\r\n"], ["\r\n"], ["\r\n"], ["\r\n"], ["\r\n"], ["Clicks with the specified mouse button.\r\n"], ["\r\n"], ["\r\n"], ["\r\n"], ["\r\n"], ["\r\n"], ["\r\n"], ["\r\n"], ["\r\n"], ["aae_viewer_b\r\n"], ["timeout=10\r\n"], ["\r\n"], ["\r\n"], ["\r\n"], ["${image}\r\n"], ["${timeout}\r\n"], ["\r\n"], ["\r\n"], ["${loc}\r\n"], ["\r\n"], ["\r\n"], ["Runs the given keyword with the given arguments, if ``condition`` is true.\r\n"], ["\r\n"], ["'${image}' in ${lkr_loc_img}\r\n"], ["Change Image Folder\r\n"], ["${imgpath}\\\\${LKR_UC}\r\n"], ["\r\n"], ["\r\n"], ["\r\n"], ["\r\n"], ["Tries to locate given image from the screen for given time.\r\n"], ["\r\n"], ["${image}\r\n"], ["timeout=${timeout}\r\n"], ["\r\n"], ["\r\n"], ["${loc}\r\n"], ["\r\n"], ["Image \"aae_viewer_b\" found at (641, 709)\r\n"], ["${loc} = (641, 709)\r\n"], ["\r\n"], ["\r\n"], ["\r\n"], ["Runs the given keyword with the given arguments, if ``condition`` is true.\r\n"], ["\r\n"], ["'${image}' in ${lkr_loc_img}\r\n"], ["Change Image Folder\r\n"], ["${imgpath}\r\n"], ["\r\n"], ["\r\n"], ["\r\n"], ["${loc} = (641, 709)\r\n"], ["\r\n"], ["\r\n"], ["\r\n"], ["\r\n"], ["${loc}\r\n"], ["\r\n"], ["\r\n"], ["Moves the mouse pointer to an absolute coordinates.\r\n"], ["\r\n"], ["${loc}\r\n"], ["\r\n"], ["\r\n"], ["\r\n"], ["\r\n"], ["Clicks with the specified mouse button.\r\n"], ["\r\n"], ["\r\n"], ["\r\n"], ["\r\n"], ["\r\n"], ["\r\n"], ["\r\n"], ["\r\n"], ["bviewer_opened\r\n"], ["10\r\n"], ["\r\n"], ["\r\n"], ["Runs the given keyword with the given arguments, if ``condition`` is true.\r\n"], ["\r\n"], ["'${image}' in ${lkr_loc_img}\r\n"], ["Change Image Folder\r\n"], ["${imgpath}\\\\${LKR_UC}\r\n"], ["\r\n"], ["\r\n"], ["\r\n"], ["\r\n"], ["Tries to locate given image from the screen for given time.\r\n"], ["\r\n"], ["${image}\r\n"], ["timeout=${timeout}\r\n"], ["\r\n"], ["\r\n"], ["${loc}\r\n"], ["\r\n"], ["Image \"bviewer_opened\" found at (652, 94)\r\n"], ["${loc} = (652, 94)\r\n"], ["\r\n"], ["\r\n"], ["\r\n"], ["Runs the given keyword with the given arguments, if ``condition`` is true.\r\n"], ["\r\n"], ["'${image}' in ${lkr_loc_img}\r\n"], ["Change Image Folder\r\n"], ["${imgpath}\r\n"], ["\r\n"], ["\r\n"], ["\r\n"], ["\r\n"], ["\r\n"], ["\r\n"], ["Pauses the test executed for the given time.\r\n"], ["\r\n"], ["0.5\r\n"], ["\r\n"], ["Slept 500 milliseconds\r\n"], ["\r\n"], ["\r\n"], ["\r\n"], ["\r\n"], ["bviewer_opened\r\n"], ["timeout=10\r\n"], ["\r\n"], ["\r\n"], ["\r\n"], ["${image}\r\n"], ["${timeout}\r\n"], ["\r\n"], ["\r\n"], ["${loc}\r\n"], ["\r\n"], ["\r\n"], ["Runs the given keyword with the given arguments, if ``condition`` is true.\r\n"], ["\r\n"], ["'${image}' in ${lkr_loc_img}\r\n"], ["Change Image Folder\r\n"], ["${imgpath}\\\\${LKR_UC}\r\n"], ["\r\n"], ["\r\n"], ["\r\n"], ["\r\n"], ["Tries to locate given image from the screen for given time.\r\n"], ["\r\n"], ["${image}\r\n"], ["timeout=${timeout}\r\n"], ["\r\n"], ["\r\n"], ["${loc}\r\n"], ["\r\n"], ["Image \"bviewer_opened\" found at (652, 94)\r\n"], ["${loc} = (652, 94)\r\n"], ["\r\n"], ["\r\n"], ["\r\n"], ["Runs the given keyword with the given arguments, if ``condition`` is true.\r\n"], ["\r\n"], ["'${image}' in ${lkr_loc_img}\r\n"], ["Change Image Folder\r\n"], ["${imgpath}\r\n"], ["\r\n"], ["\r\n"], ["\r\n"], ["${loc} = (652, 94)\r\n"], ["\r\n"], ["\r\n"], ["\r\n"], ["\r\n"], ["${loc}\r\n"], ["\r\n"], ["\r\n"], ["Moves the mouse pointer to an absolute coordinates.\r\n"], ["\r\n"], ["${loc}\r\n"], ["\r\n"], ["\r\n"], ["\r\n"], ["\r\n"], ["Clicks with the specified mouse button.\r\n"], ["\r\n"], ["\r\n"], ["\r\n"], ["\r\n"], ["\r\n"], ["\r\n"], ["\r\n"], ["Pauses the test executed for the given time.\r\n"], ["\r\n"], ["0.5\r\n"], ["\r\n"], ["Slept 500 milliseconds\r\n"], ["\r\n"], ["\r\n"], ["\r\n"], ["Press given keyboard keys.\r\n"], ["\r\n"], ["Key.Win\r\n"], ["Key.Up\r\n"], ["\r\n"], ["\r\n"], ["\r\n"], ["\r\n"], ["Returns the given values which can then be assigned to a variables.\r\n"], ["\r\n"], ["ARCHIVETOOL_DOKU_${LKR_UC}_${anz_seiten}\r\n"], ["\r\n"], ["\r\n"], ["${search_image}\r\n"], ["\r\n"], ["${search_image} = ARCHIVETOOL_DOKU_AI_300\r\n"], ["\r\n"], ["\r\n"], ["\r\n"], ["\r\n"], ["bviewer_opened\r\n"], ["timeout=10\r\n"], ["\r\n"], ["\r\n"], ["\r\n"], ["${image}\r\n"], ["${timeout}\r\n"], ["\r\n"], ["\r\n"], ["${loc}\r\n"], ["\r\n"], ["\r\n"], ["Runs the given keyword with the given arguments, if ``condition`` is true.\r\n"], ["\r\n"], ["'${image}' in ${lkr_loc_img}\r\n"], ["Change Image Folder\r\n"], ["${imgpath}\\\\${LKR_UC}\r\n"], ["\r\n"], ["\r\n"], ["\r\n"], ["\r\n"], ["Tries to locate given image from the screen for given time.\r\n"], ["\r\n"], ["${image}\r\n"], ["timeout=${timeout}\r\n"], ["\r\n"], ["\r\n"], ["${loc}\r\n"], ["\r\n"], ["Image \"bviewer_opened\" found at (11, 85)\r\n"], ["${loc} = (11, 85)\r\n"], ["\r\n"], ["\r\n"], ["\r\n"], ["Runs the given keyword with the given arguments, if ``condition`` is true.\r\n"], ["\r\n"], ["'${image}' in ${lkr_loc_img}\r\n"], ["Change Image Folder\r\n"], ["${imgpath}\r\n"], ["\r\n"], ["\r\n"], ["\r\n"], ["${loc} = (11, 85)\r\n"], ["\r\n"], ["\r\n"], ["\r\n"], ["\r\n"], ["${loc}\r\n"], ["\r\n"], ["\r\n"], ["Moves the mouse pointer to an absolute coordinates.\r\n"], ["\r\n"], ["${loc}\r\n"], ["\r\n"], ["\r\n"], ["\r\n"], ["\r\n"], ["Clicks with the specified mouse button.\r\n"], ["\r\n"], ["\r\n"], ["\r\n"], ["\r\n"], ["\r\n"], ["\r\n"], ["\r\n"], ["Tries to locate given image from the screen for given time.\r\n"], ["\r\n"], ["${search_image}\r\n"], ["timeout=90\r\n"], ["\r\n"], ["Image \"ARCHIVETOOL_DOKU_AI_300\" found at (147, 282)\r\n"], ["\r\n"], ["\r\n"], ["\r\n"], ["Press given keyboard keys.\r\n"], ["\r\n"], ["Key.Alt\r\n"], ["Key.F4\r\n"], ["\r\n"], ["\r\n"], ["\r\n"], ["\r\n"], ["\r\n"], ["\r\n"], ["\r\n"], ["aae_suche_clear\r\n"], ["timeout=5\r\n"], ["\r\n"], ["\r\n"], ["\r\n"], ["${image}\r\n"], ["${timeout}\r\n"], ["\r\n"], ["\r\n"], ["${loc}\r\n"], ["\r\n"], ["\r\n"], ["Runs the given keyword with the given arguments, if ``condition`` is true.\r\n"], ["\r\n"], ["'${image}' in ${lkr_loc_img}\r\n"], ["Change Image Folder\r\n"], ["${imgpath}\\\\${LKR_UC}\r\n"], ["\r\n"], ["\r\n"], ["\r\n"], ["\r\n"], ["Tries to locate given image from the screen for given time.\r\n"], ["\r\n"], ["${image}\r\n"], ["timeout=${timeout}\r\n"], ["\r\n"], ["\r\n"], ["${loc}\r\n"], ["\r\n"], ["Image \"aae_suche_clear\" found at (404, 709)\r\n"], ["${loc} = (404, 709)\r\n"], ["\r\n"], ["\r\n"], ["\r\n"], ["Runs the given keyword with the given arguments, if ``condition`` is true.\r\n"], ["\r\n"], ["'${image}' in ${lkr_loc_img}\r\n"], ["Change Image Folder\r\n"], ["${imgpath}\r\n"], ["\r\n"], ["\r\n"], ["\r\n"], ["${loc} = (404, 709)\r\n"], ["\r\n"], ["\r\n"], ["\r\n"], ["\r\n"], ["${loc}\r\n"], ["\r\n"], ["\r\n"], ["Moves the mouse pointer to an absolute coordinates.\r\n"], ["\r\n"], ["${loc}\r\n"], ["\r\n"], ["\r\n"], ["\r\n"], ["\r\n"], ["Clicks with the specified mouse button.\r\n"], ["\r\n"], ["\r\n"], ["\r\n"], ["\r\n"], ["\r\n"], ["\r\n"], ["\r\n"], ["\r\n"], ["aae_dokumentennr_bereit\r\n"], ["timeout=5\r\n"], ["\r\n"], ["\r\n"], ["Runs the given keyword with the given arguments, if ``condition`` is true.\r\n"], ["\r\n"], ["'${image}' in ${lkr_loc_img}\r\n"], ["Change Image Folder\r\n"], ["${imgpath}\\\\${LKR_UC}\r\n"], ["\r\n"], ["\r\n"], ["\r\n"], ["\r\n"], ["Tries to locate given image from the screen for given time.\r\n"], ["\r\n"], ["${image}\r\n"], ["timeout=${timeout}\r\n"], ["\r\n"], ["\r\n"], ["${loc}\r\n"], ["\r\n"], ["Image \"aae_dokumentennr_bereit\" found at (569, 464)\r\n"], ["${loc} = (569, 464)\r\n"], ["\r\n"], ["\r\n"], ["\r\n"], ["Runs the given keyword with the given arguments, if ``condition`` is true.\r\n"], ["\r\n"], ["'${image}' in ${lkr_loc_img}\r\n"], ["Change Image Folder\r\n"], ["${imgpath}\r\n"], ["\r\n"], ["\r\n"], ["\r\n"], ["\r\n"], ["\r\n"], ["\r\n"], ["Evaluates the given expression in Python and returns the result.\r\n"], ["\r\n"], ["${i} + 1\r\n"], ["\r\n"], ["\r\n"], ["${i}\r\n"], ["\r\n"], ["${i} = 3\r\n"], ["\r\n"], ["\r\n"], ["\r\n"], ["\r\n"], ["\r\n"], ["\r\n"], ["\r\n"], ["\r\n"], ["\r\n"], ["\r\n"], ["Runs the given keyword with the given arguments, if ``condition`` is true.\r\n"], ["\r\n"], ["${APPOPEN}==${True}\r\n"], ["Terminate Application\r\n"], ["alias=archivetool\r\n"], ["\r\n"], ["\r\n"], ["Terminates the process launched with `Launch Application` with\r\n"], ["given ``alias``.\r\n"], ["\r\n"], ["alias=archivetool\r\n"], ["\r\n"], ["\r\n"], ["\r\n"], ["\r\n"], ["\r\n"], ["\r\n"], ["Runs the given keyword with the given arguments, if ``condition`` is true.\r\n"], ["\r\n"], ["${APPOPEN}==${True}\r\n"], ["Quit All Viewer Processes\r\n"], ["\r\n"], ["\r\n"], ["\r\n"], ["Runs a process and waits for it to complete.\r\n"], ["\r\n"], ["cmd.exe /c taskkill /IM ArchiveViewAdvancedA.exe\r\n"], ["shell=True\r\n"], ["\r\n"], ["Starting process:\r\n"], ["cmd.exe /c taskkill /IM ArchiveViewAdvancedA.exe\r\n"], ["Waiting for process to complete.\r\n"], ["Process completed.\r\n"], ["\r\n"], ["\r\n"], ["\r\n"], ["Runs a process and waits for it to complete.\r\n"], ["\r\n"], ["cmd.exe /c taskkill /IM ArchiveViewAdvancedB.exe\r\n"], ["shell=True\r\n"], ["\r\n"], ["Starting process:\r\n"], ["cmd.exe /c taskkill /IM ArchiveViewAdvancedB.exe\r\n"], ["Waiting for process to complete.\r\n"], ["Process completed.\r\n"], ["\r\n"], ["\r\n"], ["\r\n"], ["Runs a process and waits for it to complete.\r\n"], ["\r\n"], ["cmd.exe /c taskkill /IM ArchiveViewAdvancedC.exe\r\n"], ["shell=True\r\n"], ["\r\n"], ["Starting process:\r\n"], ["cmd.exe /c taskkill /IM ArchiveViewAdvancedC.exe\r\n"], ["Waiting for process to complete.\r\n"], ["Process completed.\r\n"], ["\r\n"], ["\r\n"], ["\r\n"], ["Runs a process and waits for it to complete.\r\n"], ["\r\n"], ["cmd.exe /c taskkill /IM\r\n"], ["ArchivToolExtAdvanced.exe\r\n"], ["shell=True\r\n"], ["\r\n"], ["Starting process:\r\n"], ["\"cmd.exe /c taskkill /IM\" ArchivToolExtAdvanced.exe\r\n"], ["Waiting for process to complete.\r\n"], ["Process completed.\r\n"], ["\r\n"], ["\r\n"], ["\r\n"], ["Runs a process and waits for it to complete.\r\n"], ["\r\n"], ["cmd.exe /c taskkill /IM\r\n"], ["archtool.exe\r\n"], ["shell=True\r\n"], ["\r\n"], ["Starting process:\r\n"], ["\"cmd.exe /c taskkill /IM\" archtool.exe\r\n"], ["Waiting for process to complete.\r\n"], ["Process completed.\r\n"], ["\r\n"], ["\r\n"], ["\r\n"], ["\r\n"], ["\r\n"], ["\r\n"], ["\r\n"], ["Makes a variable available everywhere within the scope of the current suite.\r\n"], ["\r\n"], ["${APPOPEN}\r\n"], ["${False}\r\n"], ["\r\n"], ["${APPOPEN} = False\r\n"], ["\r\n"], ["\r\n"], ["\r\n"], ["\r\n"], ["\r\n"], ["\r\n"], ["\r\n"], ["\r\n"], ["\r\n"], ["FR\r\n"], ["\r\n"], ["\r\n"], ["Sets where all reference images are stored.\r\n"], ["\r\n"], ["${imgpath}\r\n"], ["\r\n"], ["\r\n"], ["\r\n"], ["\r\n"], ["\r\n"], ["${lkr_uc}\r\n"], ["\r\n"], ["\r\n"], ["Makes a variable available everywhere within the scope of the current test.\r\n"], ["\r\n"], ["${LKR_UC}\r\n"], ["${lkr_uc}\r\n"], ["\r\n"], ["${LKR_UC} = FR\r\n"], ["\r\n"], ["\r\n"], ["\r\n"], ["Converts string to lower case.\r\n"], ["\r\n"], ["${lkr_uc}\r\n"], ["\r\n"], ["\r\n"], ["${lkr_lc}\r\n"], ["\r\n"], ["${lkr_lc} = fr\r\n"], ["\r\n"], ["\r\n"], ["\r\n"], ["Makes a variable available everywhere within the scope of the current test.\r\n"], ["\r\n"], ["${LKR_LC}\r\n"], ["${lkr_lc}\r\n"], ["\r\n"], ["${LKR_LC} = fr\r\n"], ["\r\n"], ["\r\n"], ["\r\n"], ["Makes a variable available everywhere within the scope of the current test.\r\n"], ["\r\n"], ["${lkr_docs}\r\n"], ["${TESTDATA['${LKR_UC}']['docs']}\r\n"], ["\r\n"], ["${lkr_docs} = ['16060940', '16060970', '16061070']\r\n"], ["\r\n"], ["\r\n"], ["\r\n"], ["Makes a variable available everywhere within the scope of the current test.\r\n"], ["\r\n"], ["${lkr_cred}\r\n"], ["${TESTDATA['${LKR_UC}']['credentials']}\r\n"], ["\r\n"], ["${lkr_cred} = ['frrobo', 'crypt:pX750ZQk/P0/Jg8/j8+4eqh2uVLHVhHaQNZIU7+l4zO4u2saJPkDGq5o6G7mFVvUMQBGW56IxRq900qA']\r\n"], ["\r\n"], ["\r\n"], ["\r\n"], ["Makes a variable available everywhere within the scope of the current test.\r\n"], ["\r\n"], ["${lkr_loc_img}\r\n"], ["${TESTDATA['${LKR_UC}']['loc_img']}\r\n"], ["\r\n"], ["${lkr_loc_img} = ['aae_zeile_markiert']\r\n"], ["\r\n"], ["\r\n"], ["\r\n"], ["Makes a variable available everywhere within the scope of the current test.\r\n"], ["\r\n"], ["${user}\r\n"], ["${lkr_cred}[0]\r\n"], ["\r\n"], ["${user} = frrobo\r\n"], ["\r\n"], ["\r\n"], ["\r\n"], ["Decrypts cipher text and returns the plain text.\r\n"], ["\r\n"], ["${lkr_cred}[1]\r\n"], ["\r\n"], ["\r\n"], ["${password}\r\n"], ["\r\n"], ["Decrypting text and return value.\r\n"], ["${password} = ***\r\n"], ["\r\n"], ["\r\n"], ["\r\n"], ["Makes a variable available everywhere within the scope of the current test.\r\n"], ["\r\n"], ["${password}\r\n"], ["${password}\r\n"], ["\r\n"], ["${password} = ***\r\n"], ["\r\n"], ["\r\n"], ["\r\n"], ["\r\n"], ["\r\n"], ["\r\n"], ["Runs a process and waits for it to complete.\r\n"], ["\r\n"], ["cmd.exe /c taskkill /IM ArchiveViewAdvancedA.exe\r\n"], ["shell=True\r\n"], ["\r\n"], ["Starting process:\r\n"], ["cmd.exe /c taskkill /IM ArchiveViewAdvancedA.exe\r\n"], ["Waiting for process to complete.\r\n"], ["Process completed.\r\n"], ["\r\n"], ["\r\n"], ["\r\n"], ["Runs a process and waits for it to complete.\r\n"], ["\r\n"], ["cmd.exe /c taskkill /IM ArchiveViewAdvancedB.exe\r\n"], ["shell=True\r\n"], ["\r\n"], ["Starting process:\r\n"], ["cmd.exe /c taskkill /IM ArchiveViewAdvancedB.exe\r\n"], ["Waiting for process to complete.\r\n"], ["Process completed.\r\n"], ["\r\n"], ["\r\n"], ["\r\n"], ["Runs a process and waits for it to complete.\r\n"], ["\r\n"], ["cmd.exe /c taskkill /IM ArchiveViewAdvancedC.exe\r\n"], ["shell=True\r\n"], ["\r\n"], ["Starting process:\r\n"], ["cmd.exe /c taskkill /IM ArchiveViewAdvancedC.exe\r\n"], ["Waiting for process to complete.\r\n"], ["Process completed.\r\n"], ["\r\n"], ["\r\n"], ["\r\n"], ["Runs a process and waits for it to complete.\r\n"], ["\r\n"], ["cmd.exe /c taskkill /IM\r\n"], ["ArchivToolExtAdvanced.exe\r\n"], ["shell=True\r\n"], ["\r\n"], ["Starting process:\r\n"], ["\"cmd.exe /c taskkill /IM\" ArchivToolExtAdvanced.exe\r\n"], ["Waiting for process to complete.\r\n"], ["Process completed.\r\n"], ["\r\n"], ["\r\n"], ["\r\n"], ["Runs a process and waits for it to complete.\r\n"], ["\r\n"], ["cmd.exe /c taskkill /IM\r\n"], ["archtool.exe\r\n"], ["shell=True\r\n"], ["\r\n"], ["Starting process:\r\n"], ["\"cmd.exe /c taskkill /IM\" archtool.exe\r\n"], ["Waiting for process to complete.\r\n"], ["Process completed.\r\n"], ["\r\n"], ["\r\n"], ["\r\n"], ["\r\n"], ["\r\n"], ["\r\n"], ["Runs a process and waits for it to complete.\r\n"], ["\r\n"], ["C:\\\\ProgramData\\\\checkmk\\\\agent\\\\robot\\\\archivetool\\\\ArchivetoolConfig\\\\sva_${LKR_LC} konfiguration.bat\r\n"], ["\r\n"], ["Starting process:\r\n"], ["\"C:\\ProgramData\\checkmk\\agent\\robot\\archivetool\\ArchivetoolConfig\\sva_fr konfiguration.bat\"\r\n"], ["Waiting for process to complete.\r\n"], ["Process completed.\r\n"], ["\r\n"], ["\r\n"], ["\r\n"], ["Launches an application.\r\n"], ["\r\n"], ["\"${APP}\"\r\n"], ["alias=archivetool\r\n"], ["\r\n"], ["\r\n"], ["\r\n"], ["\r\n"], ["Makes a variable available everywhere within the scope of the current suite.\r\n"], ["\r\n"], ["${APPOPEN}\r\n"], ["${True}\r\n"], ["\r\n"], ["${APPOPEN} = True\r\n"], ["\r\n"], ["\r\n"], ["\r\n"], ["\r\n"], ["\r\n"], ["\r\n"], ["\r\n"], ["login_username\r\n"], ["timeout=10\r\n"], ["\r\n"], ["\r\n"], ["${loc}\r\n"], ["\r\n"], ["\r\n"], ["Runs the given keyword with the given arguments, if ``condition`` is true.\r\n"], ["\r\n"], ["'${image}' in ${lkr_loc_img}\r\n"], ["Change Image Folder\r\n"], ["${imgpath}\\\\${LKR_UC}\r\n"], ["\r\n"], ["\r\n"], ["\r\n"], ["\r\n"], ["Tries to locate given image from the screen for given time.\r\n"], ["\r\n"], ["${image}\r\n"], ["timeout=${timeout}\r\n"], ["\r\n"], ["\r\n"], ["${loc}\r\n"], ["\r\n"], ["Image \"login_username\" found at (227, 149)\r\n"], ["${loc} = (227, 149)\r\n"], ["\r\n"], ["\r\n"], ["\r\n"], ["Runs the given keyword with the given arguments, if ``condition`` is true.\r\n"], ["\r\n"], ["'${image}' in ${lkr_loc_img}\r\n"], ["Change Image Folder\r\n"], ["${imgpath}\r\n"], ["\r\n"], ["\r\n"], ["\r\n"], ["${loc} = (227, 149)\r\n"], ["\r\n"], ["\r\n"], ["\r\n"], ["Finds the reference image on screen and clicks it once.\r\n"], ["\r\n"], ["login_username\r\n"], ["\r\n"], ["Image \"C:\\ProgramData\\checkmk\\agent\\robot\\archivetool\\images\\login_username.png\" found at Box(left=182, top=134, width=90, height=30)\r\n"], ["Clicking image \"login_username\" in position (227, 149)\r\n"], ["\r\n"], ["\r\n"], ["\r\n"], ["Pauses the test executed for the given time.\r\n"], ["\r\n"], ["0.2\r\n"], ["\r\n"], ["Slept 200 milliseconds\r\n"], ["\r\n"], ["\r\n"], ["\r\n"], ["\r\n"], ["login_username\r\n"], ["10\r\n"], ["20\r\n"], ["${user}\r\n"], ["\r\n"], ["\r\n"], ["\r\n"], ["${image}\r\n"], ["${timeout}\r\n"], ["\r\n"], ["\r\n"], ["${loc}\r\n"], ["\r\n"], ["\r\n"], ["Runs the given keyword with the given arguments, if ``condition`` is true.\r\n"], ["\r\n"], ["'${image}' in ${lkr_loc_img}\r\n"], ["Change Image Folder\r\n"], ["${imgpath}\\\\${LKR_UC}\r\n"], ["\r\n"], ["\r\n"], ["\r\n"], ["\r\n"], ["Tries to locate given image from the screen for given time.\r\n"], ["\r\n"], ["${image}\r\n"], ["timeout=${timeout}\r\n"], ["\r\n"], ["\r\n"], ["${loc}\r\n"], ["\r\n"], ["Image \"login_username\" found at (227, 149)\r\n"], ["${loc} = (227, 149)\r\n"], ["\r\n"], ["\r\n"], ["\r\n"], ["Runs the given keyword with the given arguments, if ``condition`` is true.\r\n"], ["\r\n"], ["'${image}' in ${lkr_loc_img}\r\n"], ["Change Image Folder\r\n"], ["${imgpath}\r\n"], ["\r\n"], ["\r\n"], ["\r\n"], ["${loc} = (227, 149)\r\n"], ["\r\n"], ["\r\n"], ["\r\n"], ["Clicks right of given location by given offset.\r\n"], ["\r\n"], ["${loc}\r\n"], ["${offset}\r\n"], ["\r\n"], ["Clicking 1 time(s) at (247, 149) with left mouse button at interval 0.000000\r\n"], ["\r\n"], ["\r\n"], ["\r\n"], ["Type text and keyboard keys.\r\n"], ["\r\n"], ["@{text}\r\n"], ["\r\n"], ["\r\n"], ["\r\n"], ["\r\n"], ["\r\n"], ["\r\n"], ["Pauses the test executed for the given time.\r\n"], ["\r\n"], ["0.2\r\n"], ["\r\n"], ["Slept 200 milliseconds\r\n"], ["\r\n"], ["\r\n"], ["\r\n"], ["Type text and keyboard keys.\r\n"], ["\r\n"], ["Key.tab\r\n"], ["\r\n"], ["\r\n"], ["\r\n"], ["\r\n"], ["Pauses the test executed for the given time.\r\n"], ["\r\n"], ["0.2\r\n"], ["\r\n"], ["Slept 200 milliseconds\r\n"], ["\r\n"], ["\r\n"], ["\r\n"], ["Type text and keyboard keys.\r\n"], ["\r\n"], ["${password}\r\n"], ["Key.enter\r\n"], ["Key.enter\r\n"], ["\r\n"], ["\r\n"], ["\r\n"], ["\r\n"], ["\r\n"], ["archiv_vista_warn\r\n"], ["timeout=5\r\n"], ["\r\n"], ["\r\n"], ["\r\n"], ["${image}\r\n"], ["${timeout}\r\n"], ["\r\n"], ["\r\n"], ["${loc}\r\n"], ["\r\n"], ["\r\n"], ["Runs the given keyword with the given arguments, if ``condition`` is true.\r\n"], ["\r\n"], ["'${image}' in ${lkr_loc_img}\r\n"], ["Change Image Folder\r\n"], ["${imgpath}\\\\${LKR_UC}\r\n"], ["\r\n"], ["\r\n"], ["\r\n"], ["\r\n"], ["Tries to locate given image from the screen for given time.\r\n"], ["\r\n"], ["${image}\r\n"], ["timeout=${timeout}\r\n"], ["\r\n"], ["\r\n"], ["${loc}\r\n"], ["\r\n"], ["Image \"archiv_vista_warn\" found at (845, 559)\r\n"], ["${loc} = (845, 559)\r\n"], ["\r\n"], ["\r\n"], ["\r\n"], ["Runs the given keyword with the given arguments, if ``condition`` is true.\r\n"], ["\r\n"], ["'${image}' in ${lkr_loc_img}\r\n"], ["Change Image Folder\r\n"], ["${imgpath}\r\n"], ["\r\n"], ["\r\n"], ["\r\n"], ["${loc} = (845, 559)\r\n"], ["\r\n"], ["\r\n"], ["\r\n"], ["\r\n"], ["${loc}\r\n"], ["\r\n"], ["\r\n"], ["Moves the mouse pointer to an absolute coordinates.\r\n"], ["\r\n"], ["${loc}\r\n"], ["\r\n"], ["\r\n"], ["\r\n"], ["\r\n"], ["Clicks with the specified mouse button.\r\n"], ["\r\n"], ["\r\n"], ["\r\n"], ["\r\n"], ["\r\n"], ["\r\n"], ["\r\n"], ["Type text and keyboard keys.\r\n"], ["\r\n"], ["Key.enter\r\n"], ["\r\n"], ["\r\n"], ["\r\n"], ["\r\n"], ["Tries to locate given image from the screen for given time.\r\n"], ["\r\n"], ["aae_toolbar\r\n"], ["timeout=10\r\n"], ["\r\n"], ["Image \"aae_toolbar\" found at (506, 709)\r\n"], ["\r\n"], ["\r\n"], ["\r\n"], ["\r\n"], ["\r\n"], ["\r\n"], ["Returns ``True`` if reference image was found on screen or\r\n"], ["``False`` otherwise. Never fails.\r\n"], ["\r\n"], ["aae_vorbelegung_checked\r\n"], ["\r\n"], ["\r\n"], ["${vorbelegt_checked}\r\n"], ["\r\n"], ["${vorbelegt_checked} = False\r\n"], ["\r\n"], ["\r\n"], ["\r\n"], ["Runs the given keyword with the given arguments, if ``condition`` is true.\r\n"], ["\r\n"], ["${vorbelegt_checked}==${True}\r\n"], ["Click Image\r\n"], ["aae_vorbelegung_checked\r\n"], ["\r\n"], ["\r\n"], ["\r\n"], ["\r\n"], ["\r\n"], ["\r\n"], ["Returns the given values which can then be assigned to a variables.\r\n"], ["\r\n"], ["0\r\n"], ["\r\n"], ["\r\n"], ["${i}\r\n"], ["\r\n"], ["${i} = 0\r\n"], ["\r\n"], ["\r\n"], ["\r\n"], ["\r\n"], ["\r\n"], ["\r\n"], ["${lkr_docs}[${i}]\r\n"], ["${anz_seiten}\r\n"], ["\r\n"], ["\r\n"], ["Makes a variable available everywhere within the scope of the current test.\r\n"], ["\r\n"], ["${dokid}\r\n"], ["${lkr_doc}\r\n"], ["\r\n"], ["${dokid} = 16060940\r\n"], ["\r\n"], ["\r\n"], ["\r\n"], ["\r\n"], ["aae_dokumentennr\r\n"], ["5\r\n"], ["100\r\n"], ["${lkr_doc}\r\n"], ["\r\n"], ["\r\n"], ["\r\n"], ["${image}\r\n"], ["${timeout}\r\n"], ["\r\n"], ["\r\n"], ["${loc}\r\n"], ["\r\n"], ["\r\n"], ["Runs the given keyword with the given arguments, if ``condition`` is true.\r\n"], ["\r\n"], ["'${image}' in ${lkr_loc_img}\r\n"], ["Change Image Folder\r\n"], ["${imgpath}\\\\${LKR_UC}\r\n"], ["\r\n"], ["\r\n"], ["\r\n"], ["\r\n"], ["Tries to locate given image from the screen for given time.\r\n"], ["\r\n"], ["${image}\r\n"], ["timeout=${timeout}\r\n"], ["\r\n"], ["\r\n"], ["${loc}\r\n"], ["\r\n"], ["Image \"aae_dokumentennr\" found at (452, 463)\r\n"], ["${loc} = (452, 463)\r\n"], ["\r\n"], ["\r\n"], ["\r\n"], ["Runs the given keyword with the given arguments, if ``condition`` is true.\r\n"], ["\r\n"], ["'${image}' in ${lkr_loc_img}\r\n"], ["Change Image Folder\r\n"], ["${imgpath}\r\n"], ["\r\n"], ["\r\n"], ["\r\n"], ["${loc} = (452, 463)\r\n"], ["\r\n"], ["\r\n"], ["\r\n"], ["Clicks right of given location by given offset.\r\n"], ["\r\n"], ["${loc}\r\n"], ["${offset}\r\n"], ["\r\n"], ["Clicking 1 time(s) at (552, 463) with left mouse button at interval 0.000000\r\n"], ["\r\n"], ["\r\n"], ["\r\n"], ["Type text and keyboard keys.\r\n"], ["\r\n"], ["@{text}\r\n"], ["\r\n"], ["\r\n"], ["\r\n"], ["\r\n"], ["\r\n"], ["\r\n"], ["Type text and keyboard keys.\r\n"], ["\r\n"], ["Key.enter\r\n"], ["\r\n"], ["\r\n"], ["\r\n"], ["\r\n"], ["\r\n"], ["aae_treffer_1\r\n"], ["timeout=10\r\n"], ["\r\n"], ["\r\n"], ["\r\n"], ["${image}\r\n"], ["${timeout}\r\n"], ["\r\n"], ["\r\n"], ["${loc}\r\n"], ["\r\n"], ["\r\n"], ["Runs the given keyword with the given arguments, if ``condition`` is true.\r\n"], ["\r\n"], ["'${image}' in ${lkr_loc_img}\r\n"], ["Change Image Folder\r\n"], ["${imgpath}\\\\${LKR_UC}\r\n"], ["\r\n"], ["\r\n"], ["\r\n"], ["\r\n"], ["Tries to locate given image from the screen for given time.\r\n"], ["\r\n"], ["${image}\r\n"], ["timeout=${timeout}\r\n"], ["\r\n"], ["\r\n"], ["${loc}\r\n"], ["\r\n"], ["Image \"aae_treffer_1\" found at (870, 745)\r\n"], ["${loc} = (870, 745)\r\n"], ["\r\n"], ["\r\n"], ["\r\n"], ["Runs the given keyword with the given arguments, if ``condition`` is true.\r\n"], ["\r\n"], ["'${image}' in ${lkr_loc_img}\r\n"], ["Change Image Folder\r\n"], ["${imgpath}\r\n"], ["\r\n"], ["\r\n"], ["\r\n"], ["${loc} = (870, 745)\r\n"], ["\r\n"], ["\r\n"], ["\r\n"], ["\r\n"], ["${loc}\r\n"], ["\r\n"], ["\r\n"], ["Moves the mouse pointer to an absolute coordinates.\r\n"], ["\r\n"], ["${loc}\r\n"], ["\r\n"], ["\r\n"], ["\r\n"], ["\r\n"], ["Clicks with the specified mouse button.\r\n"], ["\r\n"], ["\r\n"], ["\r\n"], ["\r\n"], ["\r\n"], ["\r\n"], ["\r\n"], ["Type text and keyboard keys.\r\n"], ["\r\n"], ["Key.Tab\r\n"], ["Key.Tab\r\n"], ["Key.Tab\r\n"], ["Key.Tab\r\n"], ["Key.right\r\n"], ["\r\n"], ["\r\n"], ["\r\n"], ["\r\n"], ["\r\n"], ["aae_zeile_markiert\r\n"], ["timeout=10\r\n"], ["\r\n"], ["\r\n"], ["\r\n"], ["${image}\r\n"], ["${timeout}\r\n"], ["\r\n"], ["\r\n"], ["${loc}\r\n"], ["\r\n"], ["\r\n"], ["Runs the given keyword with the given arguments, if ``condition`` is true.\r\n"], ["\r\n"], ["'${image}' in ${lkr_loc_img}\r\n"], ["Change Image Folder\r\n"], ["${imgpath}\\\\${LKR_UC}\r\n"], ["\r\n"], ["\r\n"], ["\r\n"], ["${imgpath}\\\\${LKR_UC}\r\n"], ["\r\n"], ["\r\n"], ["Sets where all reference images are stored.\r\n"], ["\r\n"], ["${path}\r\n"], ["\r\n"], ["\r\n"], ["\r\n"], ["\r\n"], ["\r\n"], ["\r\n"], ["\r\n"], ["\r\n"], ["Tries to locate given image from the screen for given time.\r\n"], ["\r\n"], ["${image}\r\n"], ["timeout=${timeout}\r\n"], ["\r\n"], ["\r\n"], ["${loc}\r\n"], ["\r\n"], ["Image \"aae_zeile_markiert\" found at (720, 787)\r\n"], ["${loc} = (720, 787)\r\n"], ["\r\n"], ["\r\n"], ["\r\n"], ["Runs the given keyword with the given arguments, if ``condition`` is true.\r\n"], ["\r\n"], ["'${image}' in ${lkr_loc_img}\r\n"], ["Change Image Folder\r\n"], ["${imgpath}\r\n"], ["\r\n"], ["\r\n"], ["\r\n"], ["${imgpath}\r\n"], ["\r\n"], ["\r\n"], ["Sets where all reference images are stored.\r\n"], ["\r\n"], ["${path}\r\n"], ["\r\n"], ["\r\n"], ["\r\n"], ["\r\n"], ["\r\n"], ["\r\n"], ["\r\n"], ["${loc} = (720, 787)\r\n"], ["\r\n"], ["\r\n"], ["\r\n"], ["\r\n"], ["${loc}\r\n"], ["\r\n"], ["\r\n"], ["Moves the mouse pointer to an absolute coordinates.\r\n"], ["\r\n"], ["${loc}\r\n"], ["\r\n"], ["\r\n"], ["\r\n"], ["\r\n"], ["Clicks with the specified mouse button.\r\n"], ["\r\n"], ["\r\n"], ["\r\n"], ["\r\n"], ["\r\n"], ["\r\n"], ["\r\n"], ["\r\n"], ["aae_viewer_b\r\n"], ["timeout=10\r\n"], ["\r\n"], ["\r\n"], ["\r\n"], ["${image}\r\n"], ["${timeout}\r\n"], ["\r\n"], ["\r\n"], ["${loc}\r\n"], ["\r\n"], ["\r\n"], ["Runs the given keyword with the given arguments, if ``condition`` is true.\r\n"], ["\r\n"], ["'${image}' in ${lkr_loc_img}\r\n"], ["Change Image Folder\r\n"], ["${imgpath}\\\\${LKR_UC}\r\n"], ["\r\n"], ["\r\n"], ["\r\n"], ["\r\n"], ["Tries to locate given image from the screen for given time.\r\n"], ["\r\n"], ["${image}\r\n"], ["timeout=${timeout}\r\n"], ["\r\n"], ["\r\n"], ["${loc}\r\n"], ["\r\n"], ["Image \"aae_viewer_b\" found at (641, 709)\r\n"], ["${loc} = (641, 709)\r\n"], ["\r\n"], ["\r\n"], ["\r\n"], ["Runs the given keyword with the given arguments, if ``condition`` is true.\r\n"], ["\r\n"], ["'${image}' in ${lkr_loc_img}\r\n"], ["Change Image Folder\r\n"], ["${imgpath}\r\n"], ["\r\n"], ["\r\n"], ["\r\n"], ["${loc} = (641, 709)\r\n"], ["\r\n"], ["\r\n"], ["\r\n"], ["\r\n"], ["${loc}\r\n"], ["\r\n"], ["\r\n"], ["Moves the mouse pointer to an absolute coordinates.\r\n"], ["\r\n"], ["${loc}\r\n"], ["\r\n"], ["\r\n"], ["\r\n"], ["\r\n"], ["Clicks with the specified mouse button.\r\n"], ["\r\n"], ["\r\n"], ["\r\n"], ["\r\n"], ["\r\n"], ["\r\n"], ["\r\n"], ["\r\n"], ["bviewer_opened\r\n"], ["10\r\n"], ["\r\n"], ["\r\n"], ["Runs the given keyword with the given arguments, if ``condition`` is true.\r\n"], ["\r\n"], ["'${image}' in ${lkr_loc_img}\r\n"], ["Change Image Folder\r\n"], ["${imgpath}\\\\${LKR_UC}\r\n"], ["\r\n"], ["\r\n"], ["\r\n"], ["\r\n"], ["Tries to locate given image from the screen for given time.\r\n"], ["\r\n"], ["${image}\r\n"], ["timeout=${timeout}\r\n"], ["\r\n"], ["\r\n"], ["${loc}\r\n"], ["\r\n"], ["Image \"bviewer_opened\" found at (652, 94)\r\n"], ["${loc} = (652, 94)\r\n"], ["\r\n"], ["\r\n"], ["\r\n"], ["Runs the given keyword with the given arguments, if ``condition`` is true.\r\n"], ["\r\n"], ["'${image}' in ${lkr_loc_img}\r\n"], ["Change Image Folder\r\n"], ["${imgpath}\r\n"], ["\r\n"], ["\r\n"], ["\r\n"], ["\r\n"], ["\r\n"], ["\r\n"], ["Pauses the test executed for the given time.\r\n"], ["\r\n"], ["0.5\r\n"], ["\r\n"], ["Slept 500 milliseconds\r\n"], ["\r\n"], ["\r\n"], ["\r\n"], ["\r\n"], ["bviewer_opened\r\n"], ["timeout=10\r\n"], ["\r\n"], ["\r\n"], ["\r\n"], ["${image}\r\n"], ["${timeout}\r\n"], ["\r\n"], ["\r\n"], ["${loc}\r\n"], ["\r\n"], ["\r\n"], ["Runs the given keyword with the given arguments, if ``condition`` is true.\r\n"], ["\r\n"], ["'${image}' in ${lkr_loc_img}\r\n"], ["Change Image Folder\r\n"], ["${imgpath}\\\\${LKR_UC}\r\n"], ["\r\n"], ["\r\n"], ["\r\n"], ["\r\n"], ["Tries to locate given image from the screen for given time.\r\n"], ["\r\n"], ["${image}\r\n"], ["timeout=${timeout}\r\n"], ["\r\n"], ["\r\n"], ["${loc}\r\n"], ["\r\n"], ["Image \"bviewer_opened\" found at (652, 94)\r\n"], ["${loc} = (652, 94)\r\n"], ["\r\n"], ["\r\n"], ["\r\n"], ["Runs the given keyword with the given arguments, if ``condition`` is true.\r\n"], ["\r\n"], ["'${image}' in ${lkr_loc_img}\r\n"], ["Change Image Folder\r\n"], ["${imgpath}\r\n"], ["\r\n"], ["\r\n"], ["\r\n"], ["${loc} = (652, 94)\r\n"], ["\r\n"], ["\r\n"], ["\r\n"], ["\r\n"], ["${loc}\r\n"], ["\r\n"], ["\r\n"], ["Moves the mouse pointer to an absolute coordinates.\r\n"], ["\r\n"], ["${loc}\r\n"], ["\r\n"], ["\r\n"], ["\r\n"], ["\r\n"], ["Clicks with the specified mouse button.\r\n"], ["\r\n"], ["\r\n"], ["\r\n"], ["\r\n"], ["\r\n"], ["\r\n"], ["\r\n"], ["Pauses the test executed for the given time.\r\n"], ["\r\n"], ["0.5\r\n"], ["\r\n"], ["Slept 500 milliseconds\r\n"], ["\r\n"], ["\r\n"], ["\r\n"], ["Press given keyboard keys.\r\n"], ["\r\n"], ["Key.Win\r\n"], ["Key.Up\r\n"], ["\r\n"], ["\r\n"], ["\r\n"], ["\r\n"], ["Returns the given values which can then be assigned to a variables.\r\n"], ["\r\n"], ["ARCHIVETOOL_DOKU_${LKR_UC}_${anz_seiten}\r\n"], ["\r\n"], ["\r\n"], ["${search_image}\r\n"], ["\r\n"], ["${search_image} = ARCHIVETOOL_DOKU_FR_30\r\n"], ["\r\n"], ["\r\n"], ["\r\n"], ["\r\n"], ["bviewer_opened\r\n"], ["timeout=10\r\n"], ["\r\n"], ["\r\n"], ["\r\n"], ["${image}\r\n"], ["${timeout}\r\n"], ["\r\n"], ["\r\n"], ["${loc}\r\n"], ["\r\n"], ["\r\n"], ["Runs the given keyword with the given arguments, if ``condition`` is true.\r\n"], ["\r\n"], ["'${image}' in ${lkr_loc_img}\r\n"], ["Change Image Folder\r\n"], ["${imgpath}\\\\${LKR_UC}\r\n"], ["\r\n"], ["\r\n"], ["\r\n"], ["\r\n"], ["Tries to locate given image from the screen for given time.\r\n"], ["\r\n"], ["${image}\r\n"], ["timeout=${timeout}\r\n"], ["\r\n"], ["\r\n"], ["${loc}\r\n"], ["\r\n"], ["Image \"bviewer_opened\" found at (11, 85)\r\n"], ["${loc} = (11, 85)\r\n"], ["\r\n"], ["\r\n"], ["\r\n"], ["Runs the given keyword with the given arguments, if ``condition`` is true.\r\n"], ["\r\n"], ["'${image}' in ${lkr_loc_img}\r\n"], ["Change Image Folder\r\n"], ["${imgpath}\r\n"], ["\r\n"], ["\r\n"], ["\r\n"], ["${loc} = (11, 85)\r\n"], ["\r\n"], ["\r\n"], ["\r\n"], ["\r\n"], ["${loc}\r\n"], ["\r\n"], ["\r\n"], ["Moves the mouse pointer to an absolute coordinates.\r\n"], ["\r\n"], ["${loc}\r\n"], ["\r\n"], ["\r\n"], ["\r\n"], ["\r\n"], ["Clicks with the specified mouse button.\r\n"], ["\r\n"], ["\r\n"], ["\r\n"], ["\r\n"], ["\r\n"], ["\r\n"], ["\r\n"], ["Tries to locate given image from the screen for given time.\r\n"], ["\r\n"], ["${search_image}\r\n"], ["timeout=90\r\n"], ["\r\n"], ["Image \"ARCHIVETOOL_DOKU_FR_30\" found at (175, 208)\r\n"], ["\r\n"], ["\r\n"], ["\r\n"], ["Press given keyboard keys.\r\n"], ["\r\n"], ["Key.Alt\r\n"], ["Key.F4\r\n"], ["\r\n"], ["\r\n"], ["\r\n"], ["\r\n"], ["\r\n"], ["\r\n"], ["\r\n"], ["aae_suche_clear\r\n"], ["timeout=5\r\n"], ["\r\n"], ["\r\n"], ["\r\n"], ["${image}\r\n"], ["${timeout}\r\n"], ["\r\n"], ["\r\n"], ["${loc}\r\n"], ["\r\n"], ["\r\n"], ["Runs the given keyword with the given arguments, if ``condition`` is true.\r\n"], ["\r\n"], ["'${image}' in ${lkr_loc_img}\r\n"], ["Change Image Folder\r\n"], ["${imgpath}\\\\${LKR_UC}\r\n"], ["\r\n"], ["\r\n"], ["\r\n"], ["\r\n"], ["Tries to locate given image from the screen for given time.\r\n"], ["\r\n"], ["${image}\r\n"], ["timeout=${timeout}\r\n"], ["\r\n"], ["\r\n"], ["${loc}\r\n"], ["\r\n"], ["Image \"aae_suche_clear\" found at (404, 709)\r\n"], ["${loc} = (404, 709)\r\n"], ["\r\n"], ["\r\n"], ["\r\n"], ["Runs the given keyword with the given arguments, if ``condition`` is true.\r\n"], ["\r\n"], ["'${image}' in ${lkr_loc_img}\r\n"], ["Change Image Folder\r\n"], ["${imgpath}\r\n"], ["\r\n"], ["\r\n"], ["\r\n"], ["${loc} = (404, 709)\r\n"], ["\r\n"], ["\r\n"], ["\r\n"], ["\r\n"], ["${loc}\r\n"], ["\r\n"], ["\r\n"], ["Moves the mouse pointer to an absolute coordinates.\r\n"], ["\r\n"], ["${loc}\r\n"], ["\r\n"], ["\r\n"], ["\r\n"], ["\r\n"], ["Clicks with the specified mouse button.\r\n"], ["\r\n"], ["\r\n"], ["\r\n"], ["\r\n"], ["\r\n"], ["\r\n"], ["\r\n"], ["\r\n"], ["aae_dokumentennr_bereit\r\n"], ["timeout=5\r\n"], ["\r\n"], ["\r\n"], ["Runs the given keyword with the given arguments, if ``condition`` is true.\r\n"], ["\r\n"], ["'${image}' in ${lkr_loc_img}\r\n"], ["Change Image Folder\r\n"], ["${imgpath}\\\\${LKR_UC}\r\n"], ["\r\n"], ["\r\n"], ["\r\n"], ["\r\n"], ["Tries to locate given image from the screen for given time.\r\n"], ["\r\n"], ["${image}\r\n"], ["timeout=${timeout}\r\n"], ["\r\n"], ["\r\n"], ["${loc}\r\n"], ["\r\n"], ["Image \"aae_dokumentennr_bereit\" found at (569, 464)\r\n"], ["${loc} = (569, 464)\r\n"], ["\r\n"], ["\r\n"], ["\r\n"], ["Runs the given keyword with the given arguments, if ``condition`` is true.\r\n"], ["\r\n"], ["'${image}' in ${lkr_loc_img}\r\n"], ["Change Image Folder\r\n"], ["${imgpath}\r\n"], ["\r\n"], ["\r\n"], ["\r\n"], ["\r\n"], ["\r\n"], ["\r\n"], ["Evaluates the given expression in Python and returns the result.\r\n"], ["\r\n"], ["${i} + 1\r\n"], ["\r\n"], ["\r\n"], ["${i}\r\n"], ["\r\n"], ["${i} = 1\r\n"], ["\r\n"], ["\r\n"], ["\r\n"], ["\r\n"], ["\r\n"], ["\r\n"], ["\r\n"], ["${lkr_docs}[${i}]\r\n"], ["${anz_seiten}\r\n"], ["\r\n"], ["\r\n"], ["Makes a variable available everywhere within the scope of the current test.\r\n"], ["\r\n"], ["${dokid}\r\n"], ["${lkr_doc}\r\n"], ["\r\n"], ["${dokid} = 16060970\r\n"], ["\r\n"], ["\r\n"], ["\r\n"], ["\r\n"], ["aae_dokumentennr\r\n"], ["5\r\n"], ["100\r\n"], ["${lkr_doc}\r\n"], ["\r\n"], ["\r\n"], ["\r\n"], ["${image}\r\n"], ["${timeout}\r\n"], ["\r\n"], ["\r\n"], ["${loc}\r\n"], ["\r\n"], ["\r\n"], ["Runs the given keyword with the given arguments, if ``condition`` is true.\r\n"], ["\r\n"], ["'${image}' in ${lkr_loc_img}\r\n"], ["Change Image Folder\r\n"], ["${imgpath}\\\\${LKR_UC}\r\n"], ["\r\n"], ["\r\n"], ["\r\n"], ["\r\n"], ["Tries to locate given image from the screen for given time.\r\n"], ["\r\n"], ["${image}\r\n"], ["timeout=${timeout}\r\n"], ["\r\n"], ["\r\n"], ["${loc}\r\n"], ["\r\n"], ["Image \"aae_dokumentennr\" found at (452, 463)\r\n"], ["${loc} = (452, 463)\r\n"], ["\r\n"], ["\r\n"], ["\r\n"], ["Runs the given keyword with the given arguments, if ``condition`` is true.\r\n"], ["\r\n"], ["'${image}' in ${lkr_loc_img}\r\n"], ["Change Image Folder\r\n"], ["${imgpath}\r\n"], ["\r\n"], ["\r\n"], ["\r\n"], ["${loc} = (452, 463)\r\n"], ["\r\n"], ["\r\n"], ["\r\n"], ["Clicks right of given location by given offset.\r\n"], ["\r\n"], ["${loc}\r\n"], ["${offset}\r\n"], ["\r\n"], ["Clicking 1 time(s) at (552, 463) with left mouse button at interval 0.000000\r\n"], ["\r\n"], ["\r\n"], ["\r\n"], ["Type text and keyboard keys.\r\n"], ["\r\n"], ["@{text}\r\n"], ["\r\n"], ["\r\n"], ["\r\n"], ["\r\n"], ["\r\n"], ["\r\n"], ["Type text and keyboard keys.\r\n"], ["\r\n"], ["Key.enter\r\n"], ["\r\n"], ["\r\n"], ["\r\n"], ["\r\n"], ["\r\n"], ["aae_treffer_1\r\n"], ["timeout=10\r\n"], ["\r\n"], ["\r\n"], ["\r\n"], ["${image}\r\n"], ["${timeout}\r\n"], ["\r\n"], ["\r\n"], ["${loc}\r\n"], ["\r\n"], ["\r\n"], ["Runs the given keyword with the given arguments, if ``condition`` is true.\r\n"], ["\r\n"], ["'${image}' in ${lkr_loc_img}\r\n"], ["Change Image Folder\r\n"], ["${imgpath}\\\\${LKR_UC}\r\n"], ["\r\n"], ["\r\n"], ["\r\n"], ["\r\n"], ["Tries to locate given image from the screen for given time.\r\n"], ["\r\n"], ["${image}\r\n"], ["timeout=${timeout}\r\n"], ["\r\n"], ["\r\n"], ["${loc}\r\n"], ["\r\n"], ["Image \"aae_treffer_1\" found at (870, 745)\r\n"], ["${loc} = (870, 745)\r\n"], ["\r\n"], ["\r\n"], ["\r\n"], ["Runs the given keyword with the given arguments, if ``condition`` is true.\r\n"], ["\r\n"], ["'${image}' in ${lkr_loc_img}\r\n"], ["Change Image Folder\r\n"], ["${imgpath}\r\n"], ["\r\n"], ["\r\n"], ["\r\n"], ["${loc} = (870, 745)\r\n"], ["\r\n"], ["\r\n"], ["\r\n"], ["\r\n"], ["${loc}\r\n"], ["\r\n"], ["\r\n"], ["Moves the mouse pointer to an absolute coordinates.\r\n"], ["\r\n"], ["${loc}\r\n"], ["\r\n"], ["\r\n"], ["\r\n"], ["\r\n"], ["Clicks with the specified mouse button.\r\n"], ["\r\n"], ["\r\n"], ["\r\n"], ["\r\n"], ["\r\n"], ["\r\n"], ["\r\n"], ["Type text and keyboard keys.\r\n"], ["\r\n"], ["Key.Tab\r\n"], ["Key.Tab\r\n"], ["Key.Tab\r\n"], ["Key.Tab\r\n"], ["Key.right\r\n"], ["\r\n"], ["\r\n"], ["\r\n"], ["\r\n"], ["\r\n"], ["aae_zeile_markiert\r\n"], ["timeout=10\r\n"], ["\r\n"], ["\r\n"], ["\r\n"], ["${image}\r\n"], ["${timeout}\r\n"], ["\r\n"], ["\r\n"], ["${loc}\r\n"], ["\r\n"], ["\r\n"], ["Runs the given keyword with the given arguments, if ``condition`` is true.\r\n"], ["\r\n"], ["'${image}' in ${lkr_loc_img}\r\n"], ["Change Image Folder\r\n"], ["${imgpath}\\\\${LKR_UC}\r\n"], ["\r\n"], ["\r\n"], ["\r\n"], ["${imgpath}\\\\${LKR_UC}\r\n"], ["\r\n"], ["\r\n"], ["Sets where all reference images are stored.\r\n"], ["\r\n"], ["${path}\r\n"], ["\r\n"], ["\r\n"], ["\r\n"], ["\r\n"], ["\r\n"], ["\r\n"], ["\r\n"], ["\r\n"], ["Tries to locate given image from the screen for given time.\r\n"], ["\r\n"], ["${image}\r\n"], ["timeout=${timeout}\r\n"], ["\r\n"], ["\r\n"], ["${loc}\r\n"], ["\r\n"], ["Image \"aae_zeile_markiert\" found at (720, 787)\r\n"], ["${loc} = (720, 787)\r\n"], ["\r\n"], ["\r\n"], ["\r\n"], ["Runs the given keyword with the given arguments, if ``condition`` is true.\r\n"], ["\r\n"], ["'${image}' in ${lkr_loc_img}\r\n"], ["Change Image Folder\r\n"], ["${imgpath}\r\n"], ["\r\n"], ["\r\n"], ["\r\n"], ["${imgpath}\r\n"], ["\r\n"], ["\r\n"], ["Sets where all reference images are stored.\r\n"], ["\r\n"], ["${path}\r\n"], ["\r\n"], ["\r\n"], ["\r\n"], ["\r\n"], ["\r\n"], ["\r\n"], ["\r\n"], ["${loc} = (720, 787)\r\n"], ["\r\n"], ["\r\n"], ["\r\n"], ["\r\n"], ["${loc}\r\n"], ["\r\n"], ["\r\n"], ["Moves the mouse pointer to an absolute coordinates.\r\n"], ["\r\n"], ["${loc}\r\n"], ["\r\n"], ["\r\n"], ["\r\n"], ["\r\n"], ["Clicks with the specified mouse button.\r\n"], ["\r\n"], ["\r\n"], ["\r\n"], ["\r\n"], ["\r\n"], ["\r\n"], ["\r\n"], ["\r\n"], ["aae_viewer_b\r\n"], ["timeout=10\r\n"], ["\r\n"], ["\r\n"], ["\r\n"], ["${image}\r\n"], ["${timeout}\r\n"], ["\r\n"], ["\r\n"], ["${loc}\r\n"], ["\r\n"], ["\r\n"], ["Runs the given keyword with the given arguments, if ``condition`` is true.\r\n"], ["\r\n"], ["'${image}' in ${lkr_loc_img}\r\n"], ["Change Image Folder\r\n"], ["${imgpath}\\\\${LKR_UC}\r\n"], ["\r\n"], ["\r\n"], ["\r\n"], ["\r\n"], ["Tries to locate given image from the screen for given time.\r\n"], ["\r\n"], ["${image}\r\n"], ["timeout=${timeout}\r\n"], ["\r\n"], ["\r\n"], ["${loc}\r\n"], ["\r\n"], ["Image \"aae_viewer_b\" found at (641, 709)\r\n"], ["${loc} = (641, 709)\r\n"], ["\r\n"], ["\r\n"], ["\r\n"], ["Runs the given keyword with the given arguments, if ``condition`` is true.\r\n"], ["\r\n"], ["'${image}' in ${lkr_loc_img}\r\n"], ["Change Image Folder\r\n"], ["${imgpath}\r\n"], ["\r\n"], ["\r\n"], ["\r\n"], ["${loc} = (641, 709)\r\n"], ["\r\n"], ["\r\n"], ["\r\n"], ["\r\n"], ["${loc}\r\n"], ["\r\n"], ["\r\n"], ["Moves the mouse pointer to an absolute coordinates.\r\n"], ["\r\n"], ["${loc}\r\n"], ["\r\n"], ["\r\n"], ["\r\n"], ["\r\n"], ["Clicks with the specified mouse button.\r\n"], ["\r\n"], ["\r\n"], ["\r\n"], ["\r\n"], ["\r\n"], ["\r\n"], ["\r\n"], ["\r\n"], ["bviewer_opened\r\n"], ["10\r\n"], ["\r\n"], ["\r\n"], ["Runs the given keyword with the given arguments, if ``condition`` is true.\r\n"], ["\r\n"], ["'${image}' in ${lkr_loc_img}\r\n"], ["Change Image Folder\r\n"], ["${imgpath}\\\\${LKR_UC}\r\n"], ["\r\n"], ["\r\n"], ["\r\n"], ["\r\n"], ["Tries to locate given image from the screen for given time.\r\n"], ["\r\n"], ["${image}\r\n"], ["timeout=${timeout}\r\n"], ["\r\n"], ["\r\n"], ["${loc}\r\n"], ["\r\n"], ["Image \"bviewer_opened\" found at (652, 94)\r\n"], ["${loc} = (652, 94)\r\n"], ["\r\n"], ["\r\n"], ["\r\n"], ["Runs the given keyword with the given arguments, if ``condition`` is true.\r\n"], ["\r\n"], ["'${image}' in ${lkr_loc_img}\r\n"], ["Change Image Folder\r\n"], ["${imgpath}\r\n"], ["\r\n"], ["\r\n"], ["\r\n"], ["\r\n"], ["\r\n"], ["\r\n"], ["Pauses the test executed for the given time.\r\n"], ["\r\n"], ["0.5\r\n"], ["\r\n"], ["Slept 500 milliseconds\r\n"], ["\r\n"], ["\r\n"], ["\r\n"], ["\r\n"], ["bviewer_opened\r\n"], ["timeout=10\r\n"], ["\r\n"], ["\r\n"], ["\r\n"], ["${image}\r\n"], ["${timeout}\r\n"], ["\r\n"], ["\r\n"], ["${loc}\r\n"], ["\r\n"], ["\r\n"], ["Runs the given keyword with the given arguments, if ``condition`` is true.\r\n"], ["\r\n"], ["'${image}' in ${lkr_loc_img}\r\n"], ["Change Image Folder\r\n"], ["${imgpath}\\\\${LKR_UC}\r\n"], ["\r\n"], ["\r\n"], ["\r\n"], ["\r\n"], ["Tries to locate given image from the screen for given time.\r\n"], ["\r\n"], ["${image}\r\n"], ["timeout=${timeout}\r\n"], ["\r\n"], ["\r\n"], ["${loc}\r\n"], ["\r\n"], ["Image \"bviewer_opened\" found at (652, 94)\r\n"], ["${loc} = (652, 94)\r\n"], ["\r\n"], ["\r\n"], ["\r\n"], ["Runs the given keyword with the given arguments, if ``condition`` is true.\r\n"], ["\r\n"], ["'${image}' in ${lkr_loc_img}\r\n"], ["Change Image Folder\r\n"], ["${imgpath}\r\n"], ["\r\n"], ["\r\n"], ["\r\n"], ["${loc} = (652, 94)\r\n"], ["\r\n"], ["\r\n"], ["\r\n"], ["\r\n"], ["${loc}\r\n"], ["\r\n"], ["\r\n"], ["Moves the mouse pointer to an absolute coordinates.\r\n"], ["\r\n"], ["${loc}\r\n"], ["\r\n"], ["\r\n"], ["\r\n"], ["\r\n"], ["Clicks with the specified mouse button.\r\n"], ["\r\n"], ["\r\n"], ["\r\n"], ["\r\n"], ["\r\n"], ["\r\n"], ["\r\n"], ["Pauses the test executed for the given time.\r\n"], ["\r\n"], ["0.5\r\n"], ["\r\n"], ["Slept 500 milliseconds\r\n"], ["\r\n"], ["\r\n"], ["\r\n"], ["Press given keyboard keys.\r\n"], ["\r\n"], ["Key.Win\r\n"], ["Key.Up\r\n"], ["\r\n"], ["\r\n"], ["\r\n"], ["\r\n"], ["Returns the given values which can then be assigned to a variables.\r\n"], ["\r\n"], ["ARCHIVETOOL_DOKU_${LKR_UC}_${anz_seiten}\r\n"], ["\r\n"], ["\r\n"], ["${search_image}\r\n"], ["\r\n"], ["${search_image} = ARCHIVETOOL_DOKU_FR_100\r\n"], ["\r\n"], ["\r\n"], ["\r\n"], ["\r\n"], ["bviewer_opened\r\n"], ["timeout=10\r\n"], ["\r\n"], ["\r\n"], ["\r\n"], ["${image}\r\n"], ["${timeout}\r\n"], ["\r\n"], ["\r\n"], ["${loc}\r\n"], ["\r\n"], ["\r\n"], ["Runs the given keyword with the given arguments, if ``condition`` is true.\r\n"], ["\r\n"], ["'${image}' in ${lkr_loc_img}\r\n"], ["Change Image Folder\r\n"], ["${imgpath}\\\\${LKR_UC}\r\n"], ["\r\n"], ["\r\n"], ["\r\n"], ["\r\n"], ["Tries to locate given image from the screen for given time.\r\n"], ["\r\n"], ["${image}\r\n"], ["timeout=${timeout}\r\n"], ["\r\n"], ["\r\n"], ["${loc}\r\n"], ["\r\n"], ["Image \"bviewer_opened\" found at (11, 85)\r\n"], ["${loc} = (11, 85)\r\n"], ["\r\n"], ["\r\n"], ["\r\n"], ["Runs the given keyword with the given arguments, if ``condition`` is true.\r\n"], ["\r\n"], ["'${image}' in ${lkr_loc_img}\r\n"], ["Change Image Folder\r\n"], ["${imgpath}\r\n"], ["\r\n"], ["\r\n"], ["\r\n"], ["${loc} = (11, 85)\r\n"], ["\r\n"], ["\r\n"], ["\r\n"], ["\r\n"], ["${loc}\r\n"], ["\r\n"], ["\r\n"], ["Moves the mouse pointer to an absolute coordinates.\r\n"], ["\r\n"], ["${loc}\r\n"], ["\r\n"], ["\r\n"], ["\r\n"], ["\r\n"], ["Clicks with the specified mouse button.\r\n"], ["\r\n"], ["\r\n"], ["\r\n"], ["\r\n"], ["\r\n"], ["\r\n"], ["\r\n"], ["Tries to locate given image from the screen for given time.\r\n"], ["\r\n"], ["${search_image}\r\n"], ["timeout=90\r\n"], ["\r\n"], ["Image \"ARCHIVETOOL_DOKU_FR_100\" found at (169, 191)\r\n"], ["\r\n"], ["\r\n"], ["\r\n"], ["Press given keyboard keys.\r\n"], ["\r\n"], ["Key.Alt\r\n"], ["Key.F4\r\n"], ["\r\n"], ["\r\n"], ["\r\n"], ["\r\n"], ["\r\n"], ["\r\n"], ["\r\n"], ["aae_suche_clear\r\n"], ["timeout=5\r\n"], ["\r\n"], ["\r\n"], ["\r\n"], ["${image}\r\n"], ["${timeout}\r\n"], ["\r\n"], ["\r\n"], ["${loc}\r\n"], ["\r\n"], ["\r\n"], ["Runs the given keyword with the given arguments, if ``condition`` is true.\r\n"], ["\r\n"], ["'${image}' in ${lkr_loc_img}\r\n"], ["Change Image Folder\r\n"], ["${imgpath}\\\\${LKR_UC}\r\n"], ["\r\n"], ["\r\n"], ["\r\n"], ["\r\n"], ["Tries to locate given image from the screen for given time.\r\n"], ["\r\n"], ["${image}\r\n"], ["timeout=${timeout}\r\n"], ["\r\n"], ["\r\n"], ["${loc}\r\n"], ["\r\n"], ["Image \"aae_suche_clear\" found at (404, 709)\r\n"], ["${loc} = (404, 709)\r\n"], ["\r\n"], ["\r\n"], ["\r\n"], ["Runs the given keyword with the given arguments, if ``condition`` is true.\r\n"], ["\r\n"], ["'${image}' in ${lkr_loc_img}\r\n"], ["Change Image Folder\r\n"], ["${imgpath}\r\n"], ["\r\n"], ["\r\n"], ["\r\n"], ["${loc} = (404, 709)\r\n"], ["\r\n"], ["\r\n"], ["\r\n"], ["\r\n"], ["${loc}\r\n"], ["\r\n"], ["\r\n"], ["Moves the mouse pointer to an absolute coordinates.\r\n"], ["\r\n"], ["${loc}\r\n"], ["\r\n"], ["\r\n"], ["\r\n"], ["\r\n"], ["Clicks with the specified mouse button.\r\n"], ["\r\n"], ["\r\n"], ["\r\n"], ["\r\n"], ["\r\n"], ["\r\n"], ["\r\n"], ["\r\n"], ["aae_dokumentennr_bereit\r\n"], ["timeout=5\r\n"], ["\r\n"], ["\r\n"], ["Runs the given keyword with the given arguments, if ``condition`` is true.\r\n"], ["\r\n"], ["'${image}' in ${lkr_loc_img}\r\n"], ["Change Image Folder\r\n"], ["${imgpath}\\\\${LKR_UC}\r\n"], ["\r\n"], ["\r\n"], ["\r\n"], ["\r\n"], ["Tries to locate given image from the screen for given time.\r\n"], ["\r\n"], ["${image}\r\n"], ["timeout=${timeout}\r\n"], ["\r\n"], ["\r\n"], ["${loc}\r\n"], ["\r\n"], ["Image \"aae_dokumentennr_bereit\" found at (569, 464)\r\n"], ["${loc} = (569, 464)\r\n"], ["\r\n"], ["\r\n"], ["\r\n"], ["Runs the given keyword with the given arguments, if ``condition`` is true.\r\n"], ["\r\n"], ["'${image}' in ${lkr_loc_img}\r\n"], ["Change Image Folder\r\n"], ["${imgpath}\r\n"], ["\r\n"], ["\r\n"], ["\r\n"], ["\r\n"], ["\r\n"], ["\r\n"], ["Evaluates the given expression in Python and returns the result.\r\n"], ["\r\n"], ["${i} + 1\r\n"], ["\r\n"], ["\r\n"], ["${i}\r\n"], ["\r\n"], ["${i} = 2\r\n"], ["\r\n"], ["\r\n"], ["\r\n"], ["\r\n"], ["\r\n"], ["\r\n"], ["\r\n"], ["${lkr_docs}[${i}]\r\n"], ["${anz_seiten}\r\n"], ["\r\n"], ["\r\n"], ["Makes a variable available everywhere within the scope of the current test.\r\n"], ["\r\n"], ["${dokid}\r\n"], ["${lkr_doc}\r\n"], ["\r\n"], ["${dokid} = 16061070\r\n"], ["\r\n"], ["\r\n"], ["\r\n"], ["\r\n"], ["aae_dokumentennr\r\n"], ["5\r\n"], ["100\r\n"], ["${lkr_doc}\r\n"], ["\r\n"], ["\r\n"], ["\r\n"], ["${image}\r\n"], ["${timeout}\r\n"], ["\r\n"], ["\r\n"], ["${loc}\r\n"], ["\r\n"], ["\r\n"], ["Runs the given keyword with the given arguments, if ``condition`` is true.\r\n"], ["\r\n"], ["'${image}' in ${lkr_loc_img}\r\n"], ["Change Image Folder\r\n"], ["${imgpath}\\\\${LKR_UC}\r\n"], ["\r\n"], ["\r\n"], ["\r\n"], ["\r\n"], ["Tries to locate given image from the screen for given time.\r\n"], ["\r\n"], ["${image}\r\n"], ["timeout=${timeout}\r\n"], ["\r\n"], ["\r\n"], ["${loc}\r\n"], ["\r\n"], ["Image \"aae_dokumentennr\" found at (452, 463)\r\n"], ["${loc} = (452, 463)\r\n"], ["\r\n"], ["\r\n"], ["\r\n"], ["Runs the given keyword with the given arguments, if ``condition`` is true.\r\n"], ["\r\n"], ["'${image}' in ${lkr_loc_img}\r\n"], ["Change Image Folder\r\n"], ["${imgpath}\r\n"], ["\r\n"], ["\r\n"], ["\r\n"], ["${loc} = (452, 463)\r\n"], ["\r\n"], ["\r\n"], ["\r\n"], ["Clicks right of given location by given offset.\r\n"], ["\r\n"], ["${loc}\r\n"], ["${offset}\r\n"], ["\r\n"], ["Clicking 1 time(s) at (552, 463) with left mouse button at interval 0.000000\r\n"], ["\r\n"], ["\r\n"], ["\r\n"], ["Type text and keyboard keys.\r\n"], ["\r\n"], ["@{text}\r\n"], ["\r\n"], ["\r\n"], ["\r\n"], ["\r\n"], ["\r\n"], ["\r\n"], ["Type text and keyboard keys.\r\n"], ["\r\n"], ["Key.enter\r\n"], ["\r\n"], ["\r\n"], ["\r\n"], ["\r\n"], ["\r\n"], ["aae_treffer_1\r\n"], ["timeout=10\r\n"], ["\r\n"], ["\r\n"], ["\r\n"], ["${image}\r\n"], ["${timeout}\r\n"], ["\r\n"], ["\r\n"], ["${loc}\r\n"], ["\r\n"], ["\r\n"], ["Runs the given keyword with the given arguments, if ``condition`` is true.\r\n"], ["\r\n"], ["'${image}' in ${lkr_loc_img}\r\n"], ["Change Image Folder\r\n"], ["${imgpath}\\\\${LKR_UC}\r\n"], ["\r\n"], ["\r\n"], ["\r\n"], ["\r\n"], ["Tries to locate given image from the screen for given time.\r\n"], ["\r\n"], ["${image}\r\n"], ["timeout=${timeout}\r\n"], ["\r\n"], ["\r\n"], ["${loc}\r\n"], ["\r\n"], ["Image \"aae_treffer_1\" found at (870, 745)\r\n"], ["${loc} = (870, 745)\r\n"], ["\r\n"], ["\r\n"], ["\r\n"], ["Runs the given keyword with the given arguments, if ``condition`` is true.\r\n"], ["\r\n"], ["'${image}' in ${lkr_loc_img}\r\n"], ["Change Image Folder\r\n"], ["${imgpath}\r\n"], ["\r\n"], ["\r\n"], ["\r\n"], ["${loc} = (870, 745)\r\n"], ["\r\n"], ["\r\n"], ["\r\n"], ["\r\n"], ["${loc}\r\n"], ["\r\n"], ["\r\n"], ["Moves the mouse pointer to an absolute coordinates.\r\n"], ["\r\n"], ["${loc}\r\n"], ["\r\n"], ["\r\n"], ["\r\n"], ["\r\n"], ["Clicks with the specified mouse button.\r\n"], ["\r\n"], ["\r\n"], ["\r\n"], ["\r\n"], ["\r\n"], ["\r\n"], ["\r\n"], ["Type text and keyboard keys.\r\n"], ["\r\n"], ["Key.Tab\r\n"], ["Key.Tab\r\n"], ["Key.Tab\r\n"], ["Key.Tab\r\n"], ["Key.right\r\n"], ["\r\n"], ["\r\n"], ["\r\n"], ["\r\n"], ["\r\n"], ["aae_zeile_markiert\r\n"], ["timeout=10\r\n"], ["\r\n"], ["\r\n"], ["\r\n"], ["${image}\r\n"], ["${timeout}\r\n"], ["\r\n"], ["\r\n"], ["${loc}\r\n"], ["\r\n"], ["\r\n"], ["Runs the given keyword with the given arguments, if ``condition`` is true.\r\n"], ["\r\n"], ["'${image}' in ${lkr_loc_img}\r\n"], ["Change Image Folder\r\n"], ["${imgpath}\\\\${LKR_UC}\r\n"], ["\r\n"], ["\r\n"], ["\r\n"], ["${imgpath}\\\\${LKR_UC}\r\n"], ["\r\n"], ["\r\n"], ["Sets where all reference images are stored.\r\n"], ["\r\n"], ["${path}\r\n"], ["\r\n"], ["\r\n"], ["\r\n"], ["\r\n"], ["\r\n"], ["\r\n"], ["\r\n"], ["\r\n"], ["Tries to locate given image from the screen for given time.\r\n"], ["\r\n"], ["${image}\r\n"], ["timeout=${timeout}\r\n"], ["\r\n"], ["\r\n"], ["${loc}\r\n"], ["\r\n"], ["Image \"aae_zeile_markiert\" found at (720, 787)\r\n"], ["${loc} = (720, 787)\r\n"], ["\r\n"], ["\r\n"], ["\r\n"], ["Runs the given keyword with the given arguments, if ``condition`` is true.\r\n"], ["\r\n"], ["'${image}' in ${lkr_loc_img}\r\n"], ["Change Image Folder\r\n"], ["${imgpath}\r\n"], ["\r\n"], ["\r\n"], ["\r\n"], ["${imgpath}\r\n"], ["\r\n"], ["\r\n"], ["Sets where all reference images are stored.\r\n"], ["\r\n"], ["${path}\r\n"], ["\r\n"], ["\r\n"], ["\r\n"], ["\r\n"], ["\r\n"], ["\r\n"], ["\r\n"], ["${loc} = (720, 787)\r\n"], ["\r\n"], ["\r\n"], ["\r\n"], ["\r\n"], ["${loc}\r\n"], ["\r\n"], ["\r\n"], ["Moves the mouse pointer to an absolute coordinates.\r\n"], ["\r\n"], ["${loc}\r\n"], ["\r\n"], ["\r\n"], ["\r\n"], ["\r\n"], ["Clicks with the specified mouse button.\r\n"], ["\r\n"], ["\r\n"], ["\r\n"], ["\r\n"], ["\r\n"], ["\r\n"], ["\r\n"], ["\r\n"], ["aae_viewer_b\r\n"], ["timeout=10\r\n"], ["\r\n"], ["\r\n"], ["\r\n"], ["${image}\r\n"], ["${timeout}\r\n"], ["\r\n"], ["\r\n"], ["${loc}\r\n"], ["\r\n"], ["\r\n"], ["Runs the given keyword with the given arguments, if ``condition`` is true.\r\n"], ["\r\n"], ["'${image}' in ${lkr_loc_img}\r\n"], ["Change Image Folder\r\n"], ["${imgpath}\\\\${LKR_UC}\r\n"], ["\r\n"], ["\r\n"], ["\r\n"], ["\r\n"], ["Tries to locate given image from the screen for given time.\r\n"], ["\r\n"], ["${image}\r\n"], ["timeout=${timeout}\r\n"], ["\r\n"], ["\r\n"], ["${loc}\r\n"], ["\r\n"], ["Image \"aae_viewer_b\" found at (641, 709)\r\n"], ["${loc} = (641, 709)\r\n"], ["\r\n"], ["\r\n"], ["\r\n"], ["Runs the given keyword with the given arguments, if ``condition`` is true.\r\n"], ["\r\n"], ["'${image}' in ${lkr_loc_img}\r\n"], ["Change Image Folder\r\n"], ["${imgpath}\r\n"], ["\r\n"], ["\r\n"], ["\r\n"], ["${loc} = (641, 709)\r\n"], ["\r\n"], ["\r\n"], ["\r\n"], ["\r\n"], ["${loc}\r\n"], ["\r\n"], ["\r\n"], ["Moves the mouse pointer to an absolute coordinates.\r\n"], ["\r\n"], ["${loc}\r\n"], ["\r\n"], ["\r\n"], ["\r\n"], ["\r\n"], ["Clicks with the specified mouse button.\r\n"], ["\r\n"], ["\r\n"], ["\r\n"], ["\r\n"], ["\r\n"], ["\r\n"], ["\r\n"], ["\r\n"], ["bviewer_opened\r\n"], ["10\r\n"], ["\r\n"], ["\r\n"], ["Runs the given keyword with the given arguments, if ``condition`` is true.\r\n"], ["\r\n"], ["'${image}' in ${lkr_loc_img}\r\n"], ["Change Image Folder\r\n"], ["${imgpath}\\\\${LKR_UC}\r\n"], ["\r\n"], ["\r\n"], ["\r\n"], ["\r\n"], ["Tries to locate given image from the screen for given time.\r\n"], ["\r\n"], ["${image}\r\n"], ["timeout=${timeout}\r\n"], ["\r\n"], ["\r\n"], ["${loc}\r\n"], ["\r\n"], ["Image \"bviewer_opened\" found at (652, 94)\r\n"], ["${loc} = (652, 94)\r\n"], ["\r\n"], ["\r\n"], ["\r\n"], ["Runs the given keyword with the given arguments, if ``condition`` is true.\r\n"], ["\r\n"], ["'${image}' in ${lkr_loc_img}\r\n"], ["Change Image Folder\r\n"], ["${imgpath}\r\n"], ["\r\n"], ["\r\n"], ["\r\n"], ["\r\n"], ["\r\n"], ["\r\n"], ["Pauses the test executed for the given time.\r\n"], ["\r\n"], ["0.5\r\n"], ["\r\n"], ["Slept 500 milliseconds\r\n"], ["\r\n"], ["\r\n"], ["\r\n"], ["\r\n"], ["bviewer_opened\r\n"], ["timeout=10\r\n"], ["\r\n"], ["\r\n"], ["\r\n"], ["${image}\r\n"], ["${timeout}\r\n"], ["\r\n"], ["\r\n"], ["${loc}\r\n"], ["\r\n"], ["\r\n"], ["Runs the given keyword with the given arguments, if ``condition`` is true.\r\n"], ["\r\n"], ["'${image}' in ${lkr_loc_img}\r\n"], ["Change Image Folder\r\n"], ["${imgpath}\\\\${LKR_UC}\r\n"], ["\r\n"], ["\r\n"], ["\r\n"], ["\r\n"], ["Tries to locate given image from the screen for given time.\r\n"], ["\r\n"], ["${image}\r\n"], ["timeout=${timeout}\r\n"], ["\r\n"], ["\r\n"], ["${loc}\r\n"], ["\r\n"], ["Image \"bviewer_opened\" found at (652, 94)\r\n"], ["${loc} = (652, 94)\r\n"], ["\r\n"], ["\r\n"], ["\r\n"], ["Runs the given keyword with the given arguments, if ``condition`` is true.\r\n"], ["\r\n"], ["'${image}' in ${lkr_loc_img}\r\n"], ["Change Image Folder\r\n"], ["${imgpath}\r\n"], ["\r\n"], ["\r\n"], ["\r\n"], ["${loc} = (652, 94)\r\n"], ["\r\n"], ["\r\n"], ["\r\n"], ["\r\n"], ["${loc}\r\n"], ["\r\n"], ["\r\n"], ["Moves the mouse pointer to an absolute coordinates.\r\n"], ["\r\n"], ["${loc}\r\n"], ["\r\n"], ["\r\n"], ["\r\n"], ["\r\n"], ["Clicks with the specified mouse button.\r\n"], ["\r\n"], ["\r\n"], ["\r\n"], ["\r\n"], ["\r\n"], ["\r\n"], ["\r\n"], ["Pauses the test executed for the given time.\r\n"], ["\r\n"], ["0.5\r\n"], ["\r\n"], ["Slept 500 milliseconds\r\n"], ["\r\n"], ["\r\n"], ["\r\n"], ["Press given keyboard keys.\r\n"], ["\r\n"], ["Key.Win\r\n"], ["Key.Up\r\n"], ["\r\n"], ["\r\n"], ["\r\n"], ["\r\n"], ["Returns the given values which can then be assigned to a variables.\r\n"], ["\r\n"], ["ARCHIVETOOL_DOKU_${LKR_UC}_${anz_seiten}\r\n"], ["\r\n"], ["\r\n"], ["${search_image}\r\n"], ["\r\n"], ["${search_image} = ARCHIVETOOL_DOKU_FR_300\r\n"], ["\r\n"], ["\r\n"], ["\r\n"], ["\r\n"], ["bviewer_opened\r\n"], ["timeout=10\r\n"], ["\r\n"], ["\r\n"], ["\r\n"], ["${image}\r\n"], ["${timeout}\r\n"], ["\r\n"], ["\r\n"], ["${loc}\r\n"], ["\r\n"], ["\r\n"], ["Runs the given keyword with the given arguments, if ``condition`` is true.\r\n"], ["\r\n"], ["'${image}' in ${lkr_loc_img}\r\n"], ["Change Image Folder\r\n"], ["${imgpath}\\\\${LKR_UC}\r\n"], ["\r\n"], ["\r\n"], ["\r\n"], ["\r\n"], ["Tries to locate given image from the screen for given time.\r\n"], ["\r\n"], ["${image}\r\n"], ["timeout=${timeout}\r\n"], ["\r\n"], ["\r\n"], ["${loc}\r\n"], ["\r\n"], ["Image \"bviewer_opened\" found at (11, 85)\r\n"], ["${loc} = (11, 85)\r\n"], ["\r\n"], ["\r\n"], ["\r\n"], ["Runs the given keyword with the given arguments, if ``condition`` is true.\r\n"], ["\r\n"], ["'${image}' in ${lkr_loc_img}\r\n"], ["Change Image Folder\r\n"], ["${imgpath}\r\n"], ["\r\n"], ["\r\n"], ["\r\n"], ["${loc} = (11, 85)\r\n"], ["\r\n"], ["\r\n"], ["\r\n"], ["\r\n"], ["${loc}\r\n"], ["\r\n"], ["\r\n"], ["Moves the mouse pointer to an absolute coordinates.\r\n"], ["\r\n"], ["${loc}\r\n"], ["\r\n"], ["\r\n"], ["\r\n"], ["\r\n"], ["Clicks with the specified mouse button.\r\n"], ["\r\n"], ["\r\n"], ["\r\n"], ["\r\n"], ["\r\n"], ["\r\n"], ["\r\n"], ["Tries to locate given image from the screen for given time.\r\n"], ["\r\n"], ["${search_image}\r\n"], ["timeout=90\r\n"], ["\r\n"], ["Image \"ARCHIVETOOL_DOKU_FR_300\" found at (184, 199)\r\n"], ["\r\n"], ["\r\n"], ["\r\n"], ["Press given keyboard keys.\r\n"], ["\r\n"], ["Key.Alt\r\n"], ["Key.F4\r\n"], ["\r\n"], ["\r\n"], ["\r\n"], ["\r\n"], ["\r\n"], ["\r\n"], ["\r\n"], ["aae_suche_clear\r\n"], ["timeout=5\r\n"], ["\r\n"], ["\r\n"], ["\r\n"], ["${image}\r\n"], ["${timeout}\r\n"], ["\r\n"], ["\r\n"], ["${loc}\r\n"], ["\r\n"], ["\r\n"], ["Runs the given keyword with the given arguments, if ``condition`` is true.\r\n"], ["\r\n"], ["'${image}' in ${lkr_loc_img}\r\n"], ["Change Image Folder\r\n"], ["${imgpath}\\\\${LKR_UC}\r\n"], ["\r\n"], ["\r\n"], ["\r\n"], ["\r\n"], ["Tries to locate given image from the screen for given time.\r\n"], ["\r\n"], ["${image}\r\n"], ["timeout=${timeout}\r\n"], ["\r\n"], ["\r\n"], ["${loc}\r\n"], ["\r\n"], ["Image \"aae_suche_clear\" found at (404, 709)\r\n"], ["${loc} = (404, 709)\r\n"], ["\r\n"], ["\r\n"], ["\r\n"], ["Runs the given keyword with the given arguments, if ``condition`` is true.\r\n"], ["\r\n"], ["'${image}' in ${lkr_loc_img}\r\n"], ["Change Image Folder\r\n"], ["${imgpath}\r\n"], ["\r\n"], ["\r\n"], ["\r\n"], ["${loc} = (404, 709)\r\n"], ["\r\n"], ["\r\n"], ["\r\n"], ["\r\n"], ["${loc}\r\n"], ["\r\n"], ["\r\n"], ["Moves the mouse pointer to an absolute coordinates.\r\n"], ["\r\n"], ["${loc}\r\n"], ["\r\n"], ["\r\n"], ["\r\n"], ["\r\n"], ["Clicks with the specified mouse button.\r\n"], ["\r\n"], ["\r\n"], ["\r\n"], ["\r\n"], ["\r\n"], ["\r\n"], ["\r\n"], ["\r\n"], ["aae_dokumentennr_bereit\r\n"], ["timeout=5\r\n"], ["\r\n"], ["\r\n"], ["Runs the given keyword with the given arguments, if ``condition`` is true.\r\n"], ["\r\n"], ["'${image}' in ${lkr_loc_img}\r\n"], ["Change Image Folder\r\n"], ["${imgpath}\\\\${LKR_UC}\r\n"], ["\r\n"], ["\r\n"], ["\r\n"], ["\r\n"], ["Tries to locate given image from the screen for given time.\r\n"], ["\r\n"], ["${image}\r\n"], ["timeout=${timeout}\r\n"], ["\r\n"], ["\r\n"], ["${loc}\r\n"], ["\r\n"], ["Image \"aae_dokumentennr_bereit\" found at (569, 464)\r\n"], ["${loc} = (569, 464)\r\n"], ["\r\n"], ["\r\n"], ["\r\n"], ["Runs the given keyword with the given arguments, if ``condition`` is true.\r\n"], ["\r\n"], ["'${image}' in ${lkr_loc_img}\r\n"], ["Change Image Folder\r\n"], ["${imgpath}\r\n"], ["\r\n"], ["\r\n"], ["\r\n"], ["\r\n"], ["\r\n"], ["\r\n"], ["Evaluates the given expression in Python and returns the result.\r\n"], ["\r\n"], ["${i} + 1\r\n"], ["\r\n"], ["\r\n"], ["${i}\r\n"], ["\r\n"], ["${i} = 3\r\n"], ["\r\n"], ["\r\n"], ["\r\n"], ["\r\n"], ["\r\n"], ["\r\n"], ["\r\n"], ["\r\n"], ["\r\n"], ["\r\n"], ["Runs the given keyword with the given arguments, if ``condition`` is true.\r\n"], ["\r\n"], ["${APPOPEN}==${True}\r\n"], ["Terminate Application\r\n"], ["alias=archivetool\r\n"], ["\r\n"], ["\r\n"], ["Terminates the process launched with `Launch Application` with\r\n"], ["given ``alias``.\r\n"], ["\r\n"], ["alias=archivetool\r\n"], ["\r\n"], ["\r\n"], ["\r\n"], ["\r\n"], ["\r\n"], ["\r\n"], ["Runs the given keyword with the given arguments, if ``condition`` is true.\r\n"], ["\r\n"], ["${APPOPEN}==${True}\r\n"], ["Quit All Viewer Processes\r\n"], ["\r\n"], ["\r\n"], ["\r\n"], ["Runs a process and waits for it to complete.\r\n"], ["\r\n"], ["cmd.exe /c taskkill /IM ArchiveViewAdvancedA.exe\r\n"], ["shell=True\r\n"], ["\r\n"], ["Starting process:\r\n"], ["cmd.exe /c taskkill /IM ArchiveViewAdvancedA.exe\r\n"], ["Waiting for process to complete.\r\n"], ["Process completed.\r\n"], ["\r\n"], ["\r\n"], ["\r\n"], ["Runs a process and waits for it to complete.\r\n"], ["\r\n"], ["cmd.exe /c taskkill /IM ArchiveViewAdvancedB.exe\r\n"], ["shell=True\r\n"], ["\r\n"], ["Starting process:\r\n"], ["cmd.exe /c taskkill /IM ArchiveViewAdvancedB.exe\r\n"], ["Waiting for process to complete.\r\n"], ["Process completed.\r\n"], ["\r\n"], ["\r\n"], ["\r\n"], ["Runs a process and waits for it to complete.\r\n"], ["\r\n"], ["cmd.exe /c taskkill /IM ArchiveViewAdvancedC.exe\r\n"], ["shell=True\r\n"], ["\r\n"], ["Starting process:\r\n"], ["cmd.exe /c taskkill /IM ArchiveViewAdvancedC.exe\r\n"], ["Waiting for process to complete.\r\n"], ["Process completed.\r\n"], ["\r\n"], ["\r\n"], ["\r\n"], ["Runs a process and waits for it to complete.\r\n"], ["\r\n"], ["cmd.exe /c taskkill /IM\r\n"], ["ArchivToolExtAdvanced.exe\r\n"], ["shell=True\r\n"], ["\r\n"], ["Starting process:\r\n"], ["\"cmd.exe /c taskkill /IM\" ArchivToolExtAdvanced.exe\r\n"], ["Waiting for process to complete.\r\n"], ["Process completed.\r\n"], ["\r\n"], ["\r\n"], ["\r\n"], ["Runs a process and waits for it to complete.\r\n"], ["\r\n"], ["cmd.exe /c taskkill /IM\r\n"], ["archtool.exe\r\n"], ["shell=True\r\n"], ["\r\n"], ["Starting process:\r\n"], ["\"cmd.exe /c taskkill /IM\" archtool.exe\r\n"], ["Waiting for process to complete.\r\n"], ["Process completed.\r\n"], ["\r\n"], ["\r\n"], ["\r\n"], ["\r\n"], ["\r\n"], ["\r\n"], ["\r\n"], ["Makes a variable available everywhere within the scope of the current suite.\r\n"], ["\r\n"], ["${APPOPEN}\r\n"], ["${False}\r\n"], ["\r\n"], ["${APPOPEN} = False\r\n"], ["\r\n"], ["\r\n"], ["\r\n"], ["\r\n"], ["\r\n"], ["\r\n"], ["\r\n"], ["\r\n"], ["\r\n"], ["OW\r\n"], ["\r\n"], ["\r\n"], ["Sets where all reference images are stored.\r\n"], ["\r\n"], ["${imgpath}\r\n"], ["\r\n"], ["\r\n"], ["\r\n"], ["\r\n"], ["\r\n"], ["${lkr_uc}\r\n"], ["\r\n"], ["\r\n"], ["Makes a variable available everywhere within the scope of the current test.\r\n"], ["\r\n"], ["${LKR_UC}\r\n"], ["${lkr_uc}\r\n"], ["\r\n"], ["${LKR_UC} = OW\r\n"], ["\r\n"], ["\r\n"], ["\r\n"], ["Converts string to lower case.\r\n"], ["\r\n"], ["${lkr_uc}\r\n"], ["\r\n"], ["\r\n"], ["${lkr_lc}\r\n"], ["\r\n"], ["${lkr_lc} = ow\r\n"], ["\r\n"], ["\r\n"], ["\r\n"], ["Makes a variable available everywhere within the scope of the current test.\r\n"], ["\r\n"], ["${LKR_LC}\r\n"], ["${lkr_lc}\r\n"], ["\r\n"], ["${LKR_LC} = ow\r\n"], ["\r\n"], ["\r\n"], ["\r\n"], ["Makes a variable available everywhere within the scope of the current test.\r\n"], ["\r\n"], ["${lkr_docs}\r\n"], ["${TESTDATA['${LKR_UC}']['docs']}\r\n"], ["\r\n"], ["${lkr_docs} = ['4743187', '4743199', '4743308']\r\n"], ["\r\n"], ["\r\n"], ["\r\n"], ["Makes a variable available everywhere within the scope of the current test.\r\n"], ["\r\n"], ["${lkr_cred}\r\n"], ["${TESTDATA['${LKR_UC}']['credentials']}\r\n"], ["\r\n"], ["${lkr_cred} = ['owrobo', 'crypt:cL5h6dBPgc/5yY+/otK1ubUHl2c6+z0uF97R6xLhmDW9L8XSnCNHhnR/jGTwYwsM34TBpmWg13vb']\r\n"], ["\r\n"], ["\r\n"], ["\r\n"], ["Makes a variable available everywhere within the scope of the current test.\r\n"], ["\r\n"], ["${lkr_loc_img}\r\n"], ["${TESTDATA['${LKR_UC}']['loc_img']}\r\n"], ["\r\n"], ["${lkr_loc_img} = []\r\n"], ["\r\n"], ["\r\n"], ["\r\n"], ["Makes a variable available everywhere within the scope of the current test.\r\n"], ["\r\n"], ["${user}\r\n"], ["${lkr_cred}[0]\r\n"], ["\r\n"], ["${user} = owrobo\r\n"], ["\r\n"], ["\r\n"], ["\r\n"], ["Decrypts cipher text and returns the plain text.\r\n"], ["\r\n"], ["${lkr_cred}[1]\r\n"], ["\r\n"], ["\r\n"], ["${password}\r\n"], ["\r\n"], ["Decrypting text and return value.\r\n"], ["${password} = ***\r\n"], ["\r\n"], ["\r\n"], ["\r\n"], ["Makes a variable available everywhere within the scope of the current test.\r\n"], ["\r\n"], ["${password}\r\n"], ["${password}\r\n"], ["\r\n"], ["${password} = ***\r\n"], ["\r\n"], ["\r\n"], ["\r\n"], ["\r\n"], ["\r\n"], ["\r\n"], ["Runs a process and waits for it to complete.\r\n"], ["\r\n"], ["cmd.exe /c taskkill /IM ArchiveViewAdvancedA.exe\r\n"], ["shell=True\r\n"], ["\r\n"], ["Starting process:\r\n"], ["cmd.exe /c taskkill /IM ArchiveViewAdvancedA.exe\r\n"], ["Waiting for process to complete.\r\n"], ["Process completed.\r\n"], ["\r\n"], ["\r\n"], ["\r\n"], ["Runs a process and waits for it to complete.\r\n"], ["\r\n"], ["cmd.exe /c taskkill /IM ArchiveViewAdvancedB.exe\r\n"], ["shell=True\r\n"], ["\r\n"], ["Starting process:\r\n"], ["cmd.exe /c taskkill /IM ArchiveViewAdvancedB.exe\r\n"], ["Waiting for process to complete.\r\n"], ["Process completed.\r\n"], ["\r\n"], ["\r\n"], ["\r\n"], ["Runs a process and waits for it to complete.\r\n"], ["\r\n"], ["cmd.exe /c taskkill /IM ArchiveViewAdvancedC.exe\r\n"], ["shell=True\r\n"], ["\r\n"], ["Starting process:\r\n"], ["cmd.exe /c taskkill /IM ArchiveViewAdvancedC.exe\r\n"], ["Waiting for process to complete.\r\n"], ["Process completed.\r\n"], ["\r\n"], ["\r\n"], ["\r\n"], ["Runs a process and waits for it to complete.\r\n"], ["\r\n"], ["cmd.exe /c taskkill /IM\r\n"], ["ArchivToolExtAdvanced.exe\r\n"], ["shell=True\r\n"], ["\r\n"], ["Starting process:\r\n"], ["\"cmd.exe /c taskkill /IM\" ArchivToolExtAdvanced.exe\r\n"], ["Waiting for process to complete.\r\n"], ["Process completed.\r\n"], ["\r\n"], ["\r\n"], ["\r\n"], ["Runs a process and waits for it to complete.\r\n"], ["\r\n"], ["cmd.exe /c taskkill /IM\r\n"], ["archtool.exe\r\n"], ["shell=True\r\n"], ["\r\n"], ["Starting process:\r\n"], ["\"cmd.exe /c taskkill /IM\" archtool.exe\r\n"], ["Waiting for process to complete.\r\n"], ["Process completed.\r\n"], ["\r\n"], ["\r\n"], ["\r\n"], ["\r\n"], ["\r\n"], ["\r\n"], ["Runs a process and waits for it to complete.\r\n"], ["\r\n"], ["C:\\\\ProgramData\\\\checkmk\\\\agent\\\\robot\\\\archivetool\\\\ArchivetoolConfig\\\\sva_${LKR_LC} konfiguration.bat\r\n"], ["\r\n"], ["Starting process:\r\n"], ["\"C:\\ProgramData\\checkmk\\agent\\robot\\archivetool\\ArchivetoolConfig\\sva_ow konfiguration.bat\"\r\n"], ["Waiting for process to complete.\r\n"], ["Process completed.\r\n"], ["\r\n"], ["\r\n"], ["\r\n"], ["Launches an application.\r\n"], ["\r\n"], ["\"${APP}\"\r\n"], ["alias=archivetool\r\n"], ["\r\n"], ["\r\n"], ["\r\n"], ["\r\n"], ["Makes a variable available everywhere within the scope of the current suite.\r\n"], ["\r\n"], ["${APPOPEN}\r\n"], ["${True}\r\n"], ["\r\n"], ["${APPOPEN} = True\r\n"], ["\r\n"], ["\r\n"], ["\r\n"], ["\r\n"], ["\r\n"], ["\r\n"], ["\r\n"], ["login_username\r\n"], ["timeout=10\r\n"], ["\r\n"], ["\r\n"], ["${loc}\r\n"], ["\r\n"], ["\r\n"], ["Runs the given keyword with the given arguments, if ``condition`` is true.\r\n"], ["\r\n"], ["'${image}' in ${lkr_loc_img}\r\n"], ["Change Image Folder\r\n"], ["${imgpath}\\\\${LKR_UC}\r\n"], ["\r\n"], ["\r\n"], ["\r\n"], ["\r\n"], ["Tries to locate given image from the screen for given time.\r\n"], ["\r\n"], ["${image}\r\n"], ["timeout=${timeout}\r\n"], ["\r\n"], ["\r\n"], ["${loc}\r\n"], ["\r\n"], ["Image \"login_username\" found at (227, 149)\r\n"], ["${loc} = (227, 149)\r\n"], ["\r\n"], ["\r\n"], ["\r\n"], ["Runs the given keyword with the given arguments, if ``condition`` is true.\r\n"], ["\r\n"], ["'${image}' in ${lkr_loc_img}\r\n"], ["Change Image Folder\r\n"], ["${imgpath}\r\n"], ["\r\n"], ["\r\n"], ["\r\n"], ["${loc} = (227, 149)\r\n"], ["\r\n"], ["\r\n"], ["\r\n"], ["Finds the reference image on screen and clicks it once.\r\n"], ["\r\n"], ["login_username\r\n"], ["\r\n"], ["Image \"C:\\ProgramData\\checkmk\\agent\\robot\\archivetool\\images\\login_username.png\" found at Box(left=182, top=134, width=90, height=30)\r\n"], ["Clicking image \"login_username\" in position (227, 149)\r\n"], ["\r\n"], ["\r\n"], ["\r\n"], ["Pauses the test executed for the given time.\r\n"], ["\r\n"], ["0.2\r\n"], ["\r\n"], ["Slept 200 milliseconds\r\n"], ["\r\n"], ["\r\n"], ["\r\n"], ["\r\n"], ["login_username\r\n"], ["10\r\n"], ["20\r\n"], ["${user}\r\n"], ["\r\n"], ["\r\n"], ["\r\n"], ["${image}\r\n"], ["${timeout}\r\n"], ["\r\n"], ["\r\n"], ["${loc}\r\n"], ["\r\n"], ["\r\n"], ["Runs the given keyword with the given arguments, if ``condition`` is true.\r\n"], ["\r\n"], ["'${image}' in ${lkr_loc_img}\r\n"], ["Change Image Folder\r\n"], ["${imgpath}\\\\${LKR_UC}\r\n"], ["\r\n"], ["\r\n"], ["\r\n"], ["\r\n"], ["Tries to locate given image from the screen for given time.\r\n"], ["\r\n"], ["${image}\r\n"], ["timeout=${timeout}\r\n"], ["\r\n"], ["\r\n"], ["${loc}\r\n"], ["\r\n"], ["Image \"login_username\" found at (227, 149)\r\n"], ["${loc} = (227, 149)\r\n"], ["\r\n"], ["\r\n"], ["\r\n"], ["Runs the given keyword with the given arguments, if ``condition`` is true.\r\n"], ["\r\n"], ["'${image}' in ${lkr_loc_img}\r\n"], ["Change Image Folder\r\n"], ["${imgpath}\r\n"], ["\r\n"], ["\r\n"], ["\r\n"], ["${loc} = (227, 149)\r\n"], ["\r\n"], ["\r\n"], ["\r\n"], ["Clicks right of given location by given offset.\r\n"], ["\r\n"], ["${loc}\r\n"], ["${offset}\r\n"], ["\r\n"], ["Clicking 1 time(s) at (247, 149) with left mouse button at interval 0.000000\r\n"], ["\r\n"], ["\r\n"], ["\r\n"], ["Type text and keyboard keys.\r\n"], ["\r\n"], ["@{text}\r\n"], ["\r\n"], ["\r\n"], ["\r\n"], ["\r\n"], ["\r\n"], ["\r\n"], ["Pauses the test executed for the given time.\r\n"], ["\r\n"], ["0.2\r\n"], ["\r\n"], ["Slept 200 milliseconds\r\n"], ["\r\n"], ["\r\n"], ["\r\n"], ["Type text and keyboard keys.\r\n"], ["\r\n"], ["Key.tab\r\n"], ["\r\n"], ["\r\n"], ["\r\n"], ["\r\n"], ["Pauses the test executed for the given time.\r\n"], ["\r\n"], ["0.2\r\n"], ["\r\n"], ["Slept 200 milliseconds\r\n"], ["\r\n"], ["\r\n"], ["\r\n"], ["Type text and keyboard keys.\r\n"], ["\r\n"], ["${password}\r\n"], ["Key.enter\r\n"], ["Key.enter\r\n"], ["\r\n"], ["\r\n"], ["\r\n"], ["\r\n"], ["\r\n"], ["archiv_vista_warn\r\n"], ["timeout=5\r\n"], ["\r\n"], ["\r\n"], ["\r\n"], ["${image}\r\n"], ["${timeout}\r\n"], ["\r\n"], ["\r\n"], ["${loc}\r\n"], ["\r\n"], ["\r\n"], ["Runs the given keyword with the given arguments, if ``condition`` is true.\r\n"], ["\r\n"], ["'${image}' in ${lkr_loc_img}\r\n"], ["Change Image Folder\r\n"], ["${imgpath}\\\\${LKR_UC}\r\n"], ["\r\n"], ["\r\n"], ["\r\n"], ["\r\n"], ["Tries to locate given image from the screen for given time.\r\n"], ["\r\n"], ["${image}\r\n"], ["timeout=${timeout}\r\n"], ["\r\n"], ["\r\n"], ["${loc}\r\n"], ["\r\n"], ["Image \"archiv_vista_warn\" found at (845, 559)\r\n"], ["${loc} = (845, 559)\r\n"], ["\r\n"], ["\r\n"], ["\r\n"], ["Runs the given keyword with the given arguments, if ``condition`` is true.\r\n"], ["\r\n"], ["'${image}' in ${lkr_loc_img}\r\n"], ["Change Image Folder\r\n"], ["${imgpath}\r\n"], ["\r\n"], ["\r\n"], ["\r\n"], ["${loc} = (845, 559)\r\n"], ["\r\n"], ["\r\n"], ["\r\n"], ["\r\n"], ["${loc}\r\n"], ["\r\n"], ["\r\n"], ["Moves the mouse pointer to an absolute coordinates.\r\n"], ["\r\n"], ["${loc}\r\n"], ["\r\n"], ["\r\n"], ["\r\n"], ["\r\n"], ["Clicks with the specified mouse button.\r\n"], ["\r\n"], ["\r\n"], ["\r\n"], ["\r\n"], ["\r\n"], ["\r\n"], ["\r\n"], ["Type text and keyboard keys.\r\n"], ["\r\n"], ["Key.enter\r\n"], ["\r\n"], ["\r\n"], ["\r\n"], ["\r\n"], ["Tries to locate given image from the screen for given time.\r\n"], ["\r\n"], ["aae_toolbar\r\n"], ["timeout=10\r\n"], ["\r\n"], ["Image \"aae_toolbar\" found at (506, 709)\r\n"], ["\r\n"], ["\r\n"], ["\r\n"], ["\r\n"], ["\r\n"], ["\r\n"], ["Returns ``True`` if reference image was found on screen or\r\n"], ["``False`` otherwise. Never fails.\r\n"], ["\r\n"], ["aae_vorbelegung_checked\r\n"], ["\r\n"], ["\r\n"], ["${vorbelegt_checked}\r\n"], ["\r\n"], ["${vorbelegt_checked} = False\r\n"], ["\r\n"], ["\r\n"], ["\r\n"], ["Runs the given keyword with the given arguments, if ``condition`` is true.\r\n"], ["\r\n"], ["${vorbelegt_checked}==${True}\r\n"], ["Click Image\r\n"], ["aae_vorbelegung_checked\r\n"], ["\r\n"], ["\r\n"], ["\r\n"], ["\r\n"], ["\r\n"], ["\r\n"], ["Returns the given values which can then be assigned to a variables.\r\n"], ["\r\n"], ["0\r\n"], ["\r\n"], ["\r\n"], ["${i}\r\n"], ["\r\n"], ["${i} = 0\r\n"], ["\r\n"], ["\r\n"], ["\r\n"], ["\r\n"], ["\r\n"], ["\r\n"], ["${lkr_docs}[${i}]\r\n"], ["${anz_seiten}\r\n"], ["\r\n"], ["\r\n"], ["Makes a variable available everywhere within the scope of the current test.\r\n"], ["\r\n"], ["${dokid}\r\n"], ["${lkr_doc}\r\n"], ["\r\n"], ["${dokid} = 4743187\r\n"], ["\r\n"], ["\r\n"], ["\r\n"], ["\r\n"], ["aae_dokumentennr\r\n"], ["5\r\n"], ["100\r\n"], ["${lkr_doc}\r\n"], ["\r\n"], ["\r\n"], ["\r\n"], ["${image}\r\n"], ["${timeout}\r\n"], ["\r\n"], ["\r\n"], ["${loc}\r\n"], ["\r\n"], ["\r\n"], ["Runs the given keyword with the given arguments, if ``condition`` is true.\r\n"], ["\r\n"], ["'${image}' in ${lkr_loc_img}\r\n"], ["Change Image Folder\r\n"], ["${imgpath}\\\\${LKR_UC}\r\n"], ["\r\n"], ["\r\n"], ["\r\n"], ["\r\n"], ["Tries to locate given image from the screen for given time.\r\n"], ["\r\n"], ["${image}\r\n"], ["timeout=${timeout}\r\n"], ["\r\n"], ["\r\n"], ["${loc}\r\n"], ["\r\n"], ["Image \"aae_dokumentennr\" found at (452, 463)\r\n"], ["${loc} = (452, 463)\r\n"], ["\r\n"], ["\r\n"], ["\r\n"], ["Runs the given keyword with the given arguments, if ``condition`` is true.\r\n"], ["\r\n"], ["'${image}' in ${lkr_loc_img}\r\n"], ["Change Image Folder\r\n"], ["${imgpath}\r\n"], ["\r\n"], ["\r\n"], ["\r\n"], ["${loc} = (452, 463)\r\n"], ["\r\n"], ["\r\n"], ["\r\n"], ["Clicks right of given location by given offset.\r\n"], ["\r\n"], ["${loc}\r\n"], ["${offset}\r\n"], ["\r\n"], ["Clicking 1 time(s) at (552, 463) with left mouse button at interval 0.000000\r\n"], ["\r\n"], ["\r\n"], ["\r\n"], ["Type text and keyboard keys.\r\n"], ["\r\n"], ["@{text}\r\n"], ["\r\n"], ["\r\n"], ["\r\n"], ["\r\n"], ["\r\n"], ["\r\n"], ["Type text and keyboard keys.\r\n"], ["\r\n"], ["Key.enter\r\n"], ["\r\n"], ["\r\n"], ["\r\n"], ["\r\n"], ["\r\n"], ["aae_treffer_1\r\n"], ["timeout=10\r\n"], ["\r\n"], ["\r\n"], ["\r\n"], ["${image}\r\n"], ["${timeout}\r\n"], ["\r\n"], ["\r\n"], ["${loc}\r\n"], ["\r\n"], ["\r\n"], ["Runs the given keyword with the given arguments, if ``condition`` is true.\r\n"], ["\r\n"], ["'${image}' in ${lkr_loc_img}\r\n"], ["Change Image Folder\r\n"], ["${imgpath}\\\\${LKR_UC}\r\n"], ["\r\n"], ["\r\n"], ["\r\n"], ["\r\n"], ["Tries to locate given image from the screen for given time.\r\n"], ["\r\n"], ["${image}\r\n"], ["timeout=${timeout}\r\n"], ["\r\n"], ["\r\n"], ["${loc}\r\n"], ["\r\n"], ["Image \"aae_treffer_1\" found at (870, 745)\r\n"], ["${loc} = (870, 745)\r\n"], ["\r\n"], ["\r\n"], ["\r\n"], ["Runs the given keyword with the given arguments, if ``condition`` is true.\r\n"], ["\r\n"], ["'${image}' in ${lkr_loc_img}\r\n"], ["Change Image Folder\r\n"], ["${imgpath}\r\n"], ["\r\n"], ["\r\n"], ["\r\n"], ["${loc} = (870, 745)\r\n"], ["\r\n"], ["\r\n"], ["\r\n"], ["\r\n"], ["${loc}\r\n"], ["\r\n"], ["\r\n"], ["Moves the mouse pointer to an absolute coordinates.\r\n"], ["\r\n"], ["${loc}\r\n"], ["\r\n"], ["\r\n"], ["\r\n"], ["\r\n"], ["Clicks with the specified mouse button.\r\n"], ["\r\n"], ["\r\n"], ["\r\n"], ["\r\n"], ["\r\n"], ["\r\n"], ["\r\n"], ["Type text and keyboard keys.\r\n"], ["\r\n"], ["Key.Tab\r\n"], ["Key.Tab\r\n"], ["Key.Tab\r\n"], ["Key.Tab\r\n"], ["Key.right\r\n"], ["\r\n"], ["\r\n"], ["\r\n"], ["\r\n"], ["\r\n"], ["aae_zeile_markiert\r\n"], ["timeout=10\r\n"], ["\r\n"], ["\r\n"], ["\r\n"], ["${image}\r\n"], ["${timeout}\r\n"], ["\r\n"], ["\r\n"], ["${loc}\r\n"], ["\r\n"], ["\r\n"], ["Runs the given keyword with the given arguments, if ``condition`` is true.\r\n"], ["\r\n"], ["'${image}' in ${lkr_loc_img}\r\n"], ["Change Image Folder\r\n"], ["${imgpath}\\\\${LKR_UC}\r\n"], ["\r\n"], ["\r\n"], ["\r\n"], ["\r\n"], ["Tries to locate given image from the screen for given time.\r\n"], ["\r\n"], ["${image}\r\n"], ["timeout=${timeout}\r\n"], ["\r\n"], ["\r\n"], ["${loc}\r\n"], ["\r\n"], ["Image \"aae_zeile_markiert\" found at (423, 786)\r\n"], ["${loc} = (423, 786)\r\n"], ["\r\n"], ["\r\n"], ["\r\n"], ["Runs the given keyword with the given arguments, if ``condition`` is true.\r\n"], ["\r\n"], ["'${image}' in ${lkr_loc_img}\r\n"], ["Change Image Folder\r\n"], ["${imgpath}\r\n"], ["\r\n"], ["\r\n"], ["\r\n"], ["${loc} = (423, 786)\r\n"], ["\r\n"], ["\r\n"], ["\r\n"], ["\r\n"], ["${loc}\r\n"], ["\r\n"], ["\r\n"], ["Moves the mouse pointer to an absolute coordinates.\r\n"], ["\r\n"], ["${loc}\r\n"], ["\r\n"], ["\r\n"], ["\r\n"], ["\r\n"], ["Clicks with the specified mouse button.\r\n"], ["\r\n"], ["\r\n"], ["\r\n"], ["\r\n"], ["\r\n"], ["\r\n"], ["\r\n"], ["\r\n"], ["aae_viewer_b\r\n"], ["timeout=10\r\n"], ["\r\n"], ["\r\n"], ["\r\n"], ["${image}\r\n"], ["${timeout}\r\n"], ["\r\n"], ["\r\n"], ["${loc}\r\n"], ["\r\n"], ["\r\n"], ["Runs the given keyword with the given arguments, if ``condition`` is true.\r\n"], ["\r\n"], ["'${image}' in ${lkr_loc_img}\r\n"], ["Change Image Folder\r\n"], ["${imgpath}\\\\${LKR_UC}\r\n"], ["\r\n"], ["\r\n"], ["\r\n"], ["\r\n"], ["Tries to locate given image from the screen for given time.\r\n"], ["\r\n"], ["${image}\r\n"], ["timeout=${timeout}\r\n"], ["\r\n"], ["\r\n"], ["${loc}\r\n"], ["\r\n"], ["Image \"aae_viewer_b\" found at (641, 709)\r\n"], ["${loc} = (641, 709)\r\n"], ["\r\n"], ["\r\n"], ["\r\n"], ["Runs the given keyword with the given arguments, if ``condition`` is true.\r\n"], ["\r\n"], ["'${image}' in ${lkr_loc_img}\r\n"], ["Change Image Folder\r\n"], ["${imgpath}\r\n"], ["\r\n"], ["\r\n"], ["\r\n"], ["${loc} = (641, 709)\r\n"], ["\r\n"], ["\r\n"], ["\r\n"], ["\r\n"], ["${loc}\r\n"], ["\r\n"], ["\r\n"], ["Moves the mouse pointer to an absolute coordinates.\r\n"], ["\r\n"], ["${loc}\r\n"], ["\r\n"], ["\r\n"], ["\r\n"], ["\r\n"], ["Clicks with the specified mouse button.\r\n"], ["\r\n"], ["\r\n"], ["\r\n"], ["\r\n"], ["\r\n"], ["\r\n"], ["\r\n"], ["\r\n"], ["bviewer_opened\r\n"], ["10\r\n"], ["\r\n"], ["\r\n"], ["Runs the given keyword with the given arguments, if ``condition`` is true.\r\n"], ["\r\n"], ["'${image}' in ${lkr_loc_img}\r\n"], ["Change Image Folder\r\n"], ["${imgpath}\\\\${LKR_UC}\r\n"], ["\r\n"], ["\r\n"], ["\r\n"], ["\r\n"], ["Tries to locate given image from the screen for given time.\r\n"], ["\r\n"], ["${image}\r\n"], ["timeout=${timeout}\r\n"], ["\r\n"], ["\r\n"], ["${loc}\r\n"], ["\r\n"], ["Image \"bviewer_opened\" found at (652, 94)\r\n"], ["${loc} = (652, 94)\r\n"], ["\r\n"], ["\r\n"], ["\r\n"], ["Runs the given keyword with the given arguments, if ``condition`` is true.\r\n"], ["\r\n"], ["'${image}' in ${lkr_loc_img}\r\n"], ["Change Image Folder\r\n"], ["${imgpath}\r\n"], ["\r\n"], ["\r\n"], ["\r\n"], ["\r\n"], ["\r\n"], ["\r\n"], ["Pauses the test executed for the given time.\r\n"], ["\r\n"], ["0.5\r\n"], ["\r\n"], ["Slept 500 milliseconds\r\n"], ["\r\n"], ["\r\n"], ["\r\n"], ["\r\n"], ["bviewer_opened\r\n"], ["timeout=10\r\n"], ["\r\n"], ["\r\n"], ["\r\n"], ["${image}\r\n"], ["${timeout}\r\n"], ["\r\n"], ["\r\n"], ["${loc}\r\n"], ["\r\n"], ["\r\n"], ["Runs the given keyword with the given arguments, if ``condition`` is true.\r\n"], ["\r\n"], ["'${image}' in ${lkr_loc_img}\r\n"], ["Change Image Folder\r\n"], ["${imgpath}\\\\${LKR_UC}\r\n"], ["\r\n"], ["\r\n"], ["\r\n"], ["\r\n"], ["Tries to locate given image from the screen for given time.\r\n"], ["\r\n"], ["${image}\r\n"], ["timeout=${timeout}\r\n"], ["\r\n"], ["\r\n"], ["${loc}\r\n"], ["\r\n"], ["Image \"bviewer_opened\" found at (652, 94)\r\n"], ["${loc} = (652, 94)\r\n"], ["\r\n"], ["\r\n"], ["\r\n"], ["Runs the given keyword with the given arguments, if ``condition`` is true.\r\n"], ["\r\n"], ["'${image}' in ${lkr_loc_img}\r\n"], ["Change Image Folder\r\n"], ["${imgpath}\r\n"], ["\r\n"], ["\r\n"], ["\r\n"], ["${loc} = (652, 94)\r\n"], ["\r\n"], ["\r\n"], ["\r\n"], ["\r\n"], ["${loc}\r\n"], ["\r\n"], ["\r\n"], ["Moves the mouse pointer to an absolute coordinates.\r\n"], ["\r\n"], ["${loc}\r\n"], ["\r\n"], ["\r\n"], ["\r\n"], ["\r\n"], ["Clicks with the specified mouse button.\r\n"], ["\r\n"], ["\r\n"], ["\r\n"], ["\r\n"], ["\r\n"], ["\r\n"], ["\r\n"], ["Pauses the test executed for the given time.\r\n"], ["\r\n"], ["0.5\r\n"], ["\r\n"], ["Slept 500 milliseconds\r\n"], ["\r\n"], ["\r\n"], ["\r\n"], ["Press given keyboard keys.\r\n"], ["\r\n"], ["Key.Win\r\n"], ["Key.Up\r\n"], ["\r\n"], ["\r\n"], ["\r\n"], ["\r\n"], ["Returns the given values which can then be assigned to a variables.\r\n"], ["\r\n"], ["ARCHIVETOOL_DOKU_${LKR_UC}_${anz_seiten}\r\n"], ["\r\n"], ["\r\n"], ["${search_image}\r\n"], ["\r\n"], ["${search_image} = ARCHIVETOOL_DOKU_OW_30\r\n"], ["\r\n"], ["\r\n"], ["\r\n"], ["\r\n"], ["bviewer_opened\r\n"], ["timeout=10\r\n"], ["\r\n"], ["\r\n"], ["\r\n"], ["${image}\r\n"], ["${timeout}\r\n"], ["\r\n"], ["\r\n"], ["${loc}\r\n"], ["\r\n"], ["\r\n"], ["Runs the given keyword with the given arguments, if ``condition`` is true.\r\n"], ["\r\n"], ["'${image}' in ${lkr_loc_img}\r\n"], ["Change Image Folder\r\n"], ["${imgpath}\\\\${LKR_UC}\r\n"], ["\r\n"], ["\r\n"], ["\r\n"], ["\r\n"], ["Tries to locate given image from the screen for given time.\r\n"], ["\r\n"], ["${image}\r\n"], ["timeout=${timeout}\r\n"], ["\r\n"], ["\r\n"], ["${loc}\r\n"], ["\r\n"], ["Image \"bviewer_opened\" found at (11, 85)\r\n"], ["${loc} = (11, 85)\r\n"], ["\r\n"], ["\r\n"], ["\r\n"], ["Runs the given keyword with the given arguments, if ``condition`` is true.\r\n"], ["\r\n"], ["'${image}' in ${lkr_loc_img}\r\n"], ["Change Image Folder\r\n"], ["${imgpath}\r\n"], ["\r\n"], ["\r\n"], ["\r\n"], ["${loc} = (11, 85)\r\n"], ["\r\n"], ["\r\n"], ["\r\n"], ["\r\n"], ["${loc}\r\n"], ["\r\n"], ["\r\n"], ["Moves the mouse pointer to an absolute coordinates.\r\n"], ["\r\n"], ["${loc}\r\n"], ["\r\n"], ["\r\n"], ["\r\n"], ["\r\n"], ["Clicks with the specified mouse button.\r\n"], ["\r\n"], ["\r\n"], ["\r\n"], ["\r\n"], ["\r\n"], ["\r\n"], ["\r\n"], ["Tries to locate given image from the screen for given time.\r\n"], ["\r\n"], ["${search_image}\r\n"], ["timeout=90\r\n"], ["\r\n"], ["Image \"ARCHIVETOOL_DOKU_OW_30\" found at (264, 265)\r\n"], ["\r\n"], ["\r\n"], ["\r\n"], ["Press given keyboard keys.\r\n"], ["\r\n"], ["Key.Alt\r\n"], ["Key.F4\r\n"], ["\r\n"], ["\r\n"], ["\r\n"], ["\r\n"], ["\r\n"], ["\r\n"], ["\r\n"], ["aae_suche_clear\r\n"], ["timeout=5\r\n"], ["\r\n"], ["\r\n"], ["\r\n"], ["${image}\r\n"], ["${timeout}\r\n"], ["\r\n"], ["\r\n"], ["${loc}\r\n"], ["\r\n"], ["\r\n"], ["Runs the given keyword with the given arguments, if ``condition`` is true.\r\n"], ["\r\n"], ["'${image}' in ${lkr_loc_img}\r\n"], ["Change Image Folder\r\n"], ["${imgpath}\\\\${LKR_UC}\r\n"], ["\r\n"], ["\r\n"], ["\r\n"], ["\r\n"], ["Tries to locate given image from the screen for given time.\r\n"], ["\r\n"], ["${image}\r\n"], ["timeout=${timeout}\r\n"], ["\r\n"], ["\r\n"], ["${loc}\r\n"], ["\r\n"], ["Image \"aae_suche_clear\" found at (404, 709)\r\n"], ["${loc} = (404, 709)\r\n"], ["\r\n"], ["\r\n"], ["\r\n"], ["Runs the given keyword with the given arguments, if ``condition`` is true.\r\n"], ["\r\n"], ["'${image}' in ${lkr_loc_img}\r\n"], ["Change Image Folder\r\n"], ["${imgpath}\r\n"], ["\r\n"], ["\r\n"], ["\r\n"], ["${loc} = (404, 709)\r\n"], ["\r\n"], ["\r\n"], ["\r\n"], ["\r\n"], ["${loc}\r\n"], ["\r\n"], ["\r\n"], ["Moves the mouse pointer to an absolute coordinates.\r\n"], ["\r\n"], ["${loc}\r\n"], ["\r\n"], ["\r\n"], ["\r\n"], ["\r\n"], ["Clicks with the specified mouse button.\r\n"], ["\r\n"], ["\r\n"], ["\r\n"], ["\r\n"], ["\r\n"], ["\r\n"], ["\r\n"], ["\r\n"], ["aae_dokumentennr_bereit\r\n"], ["timeout=5\r\n"], ["\r\n"], ["\r\n"], ["Runs the given keyword with the given arguments, if ``condition`` is true.\r\n"], ["\r\n"], ["'${image}' in ${lkr_loc_img}\r\n"], ["Change Image Folder\r\n"], ["${imgpath}\\\\${LKR_UC}\r\n"], ["\r\n"], ["\r\n"], ["\r\n"], ["\r\n"], ["Tries to locate given image from the screen for given time.\r\n"], ["\r\n"], ["${image}\r\n"], ["timeout=${timeout}\r\n"], ["\r\n"], ["\r\n"], ["${loc}\r\n"], ["\r\n"], ["Image \"aae_dokumentennr_bereit\" found at (569, 464)\r\n"], ["${loc} = (569, 464)\r\n"], ["\r\n"], ["\r\n"], ["\r\n"], ["Runs the given keyword with the given arguments, if ``condition`` is true.\r\n"], ["\r\n"], ["'${image}' in ${lkr_loc_img}\r\n"], ["Change Image Folder\r\n"], ["${imgpath}\r\n"], ["\r\n"], ["\r\n"], ["\r\n"], ["\r\n"], ["\r\n"], ["\r\n"], ["Evaluates the given expression in Python and returns the result.\r\n"], ["\r\n"], ["${i} + 1\r\n"], ["\r\n"], ["\r\n"], ["${i}\r\n"], ["\r\n"], ["${i} = 1\r\n"], ["\r\n"], ["\r\n"], ["\r\n"], ["\r\n"], ["\r\n"], ["\r\n"], ["\r\n"], ["${lkr_docs}[${i}]\r\n"], ["${anz_seiten}\r\n"], ["\r\n"], ["\r\n"], ["Makes a variable available everywhere within the scope of the current test.\r\n"], ["\r\n"], ["${dokid}\r\n"], ["${lkr_doc}\r\n"], ["\r\n"], ["${dokid} = 4743199\r\n"], ["\r\n"], ["\r\n"], ["\r\n"], ["\r\n"], ["aae_dokumentennr\r\n"], ["5\r\n"], ["100\r\n"], ["${lkr_doc}\r\n"], ["\r\n"], ["\r\n"], ["\r\n"], ["${image}\r\n"], ["${timeout}\r\n"], ["\r\n"], ["\r\n"], ["${loc}\r\n"], ["\r\n"], ["\r\n"], ["Runs the given keyword with the given arguments, if ``condition`` is true.\r\n"], ["\r\n"], ["'${image}' in ${lkr_loc_img}\r\n"], ["Change Image Folder\r\n"], ["${imgpath}\\\\${LKR_UC}\r\n"], ["\r\n"], ["\r\n"], ["\r\n"], ["\r\n"], ["Tries to locate given image from the screen for given time.\r\n"], ["\r\n"], ["${image}\r\n"], ["timeout=${timeout}\r\n"], ["\r\n"], ["\r\n"], ["${loc}\r\n"], ["\r\n"], ["Image \"aae_dokumentennr\" found at (452, 463)\r\n"], ["${loc} = (452, 463)\r\n"], ["\r\n"], ["\r\n"], ["\r\n"], ["Runs the given keyword with the given arguments, if ``condition`` is true.\r\n"], ["\r\n"], ["'${image}' in ${lkr_loc_img}\r\n"], ["Change Image Folder\r\n"], ["${imgpath}\r\n"], ["\r\n"], ["\r\n"], ["\r\n"], ["${loc} = (452, 463)\r\n"], ["\r\n"], ["\r\n"], ["\r\n"], ["Clicks right of given location by given offset.\r\n"], ["\r\n"], ["${loc}\r\n"], ["${offset}\r\n"], ["\r\n"], ["Clicking 1 time(s) at (552, 463) with left mouse button at interval 0.000000\r\n"], ["\r\n"], ["\r\n"], ["\r\n"], ["Type text and keyboard keys.\r\n"], ["\r\n"], ["@{text}\r\n"], ["\r\n"], ["\r\n"], ["\r\n"], ["\r\n"], ["\r\n"], ["\r\n"], ["Type text and keyboard keys.\r\n"], ["\r\n"], ["Key.enter\r\n"], ["\r\n"], ["\r\n"], ["\r\n"], ["\r\n"], ["\r\n"], ["aae_treffer_1\r\n"], ["timeout=10\r\n"], ["\r\n"], ["\r\n"], ["\r\n"], ["${image}\r\n"], ["${timeout}\r\n"], ["\r\n"], ["\r\n"], ["${loc}\r\n"], ["\r\n"], ["\r\n"], ["Runs the given keyword with the given arguments, if ``condition`` is true.\r\n"], ["\r\n"], ["'${image}' in ${lkr_loc_img}\r\n"], ["Change Image Folder\r\n"], ["${imgpath}\\\\${LKR_UC}\r\n"], ["\r\n"], ["\r\n"], ["\r\n"], ["\r\n"], ["Tries to locate given image from the screen for given time.\r\n"], ["\r\n"], ["${image}\r\n"], ["timeout=${timeout}\r\n"], ["\r\n"], ["\r\n"], ["${loc}\r\n"], ["\r\n"], ["Image \"aae_treffer_1\" found at (870, 745)\r\n"], ["${loc} = (870, 745)\r\n"], ["\r\n"], ["\r\n"], ["\r\n"], ["Runs the given keyword with the given arguments, if ``condition`` is true.\r\n"], ["\r\n"], ["'${image}' in ${lkr_loc_img}\r\n"], ["Change Image Folder\r\n"], ["${imgpath}\r\n"], ["\r\n"], ["\r\n"], ["\r\n"], ["${loc} = (870, 745)\r\n"], ["\r\n"], ["\r\n"], ["\r\n"], ["\r\n"], ["${loc}\r\n"], ["\r\n"], ["\r\n"], ["Moves the mouse pointer to an absolute coordinates.\r\n"], ["\r\n"], ["${loc}\r\n"], ["\r\n"], ["\r\n"], ["\r\n"], ["\r\n"], ["Clicks with the specified mouse button.\r\n"], ["\r\n"], ["\r\n"], ["\r\n"], ["\r\n"], ["\r\n"], ["\r\n"], ["\r\n"], ["Type text and keyboard keys.\r\n"], ["\r\n"], ["Key.Tab\r\n"], ["Key.Tab\r\n"], ["Key.Tab\r\n"], ["Key.Tab\r\n"], ["Key.right\r\n"], ["\r\n"], ["\r\n"], ["\r\n"], ["\r\n"], ["\r\n"], ["aae_zeile_markiert\r\n"], ["timeout=10\r\n"], ["\r\n"], ["\r\n"], ["\r\n"], ["${image}\r\n"], ["${timeout}\r\n"], ["\r\n"], ["\r\n"], ["${loc}\r\n"], ["\r\n"], ["\r\n"], ["Runs the given keyword with the given arguments, if ``condition`` is true.\r\n"], ["\r\n"], ["'${image}' in ${lkr_loc_img}\r\n"], ["Change Image Folder\r\n"], ["${imgpath}\\\\${LKR_UC}\r\n"], ["\r\n"], ["\r\n"], ["\r\n"], ["\r\n"], ["Tries to locate given image from the screen for given time.\r\n"], ["\r\n"], ["${image}\r\n"], ["timeout=${timeout}\r\n"], ["\r\n"], ["\r\n"], ["${loc}\r\n"], ["\r\n"], ["Image \"aae_zeile_markiert\" found at (423, 786)\r\n"], ["${loc} = (423, 786)\r\n"], ["\r\n"], ["\r\n"], ["\r\n"], ["Runs the given keyword with the given arguments, if ``condition`` is true.\r\n"], ["\r\n"], ["'${image}' in ${lkr_loc_img}\r\n"], ["Change Image Folder\r\n"], ["${imgpath}\r\n"], ["\r\n"], ["\r\n"], ["\r\n"], ["${loc} = (423, 786)\r\n"], ["\r\n"], ["\r\n"], ["\r\n"], ["\r\n"], ["${loc}\r\n"], ["\r\n"], ["\r\n"], ["Moves the mouse pointer to an absolute coordinates.\r\n"], ["\r\n"], ["${loc}\r\n"], ["\r\n"], ["\r\n"], ["\r\n"], ["\r\n"], ["Clicks with the specified mouse button.\r\n"], ["\r\n"], ["\r\n"], ["\r\n"], ["\r\n"], ["\r\n"], ["\r\n"], ["\r\n"], ["\r\n"], ["aae_viewer_b\r\n"], ["timeout=10\r\n"], ["\r\n"], ["\r\n"], ["\r\n"], ["${image}\r\n"], ["${timeout}\r\n"], ["\r\n"], ["\r\n"], ["${loc}\r\n"], ["\r\n"], ["\r\n"], ["Runs the given keyword with the given arguments, if ``condition`` is true.\r\n"], ["\r\n"], ["'${image}' in ${lkr_loc_img}\r\n"], ["Change Image Folder\r\n"], ["${imgpath}\\\\${LKR_UC}\r\n"], ["\r\n"], ["\r\n"], ["\r\n"], ["\r\n"], ["Tries to locate given image from the screen for given time.\r\n"], ["\r\n"], ["${image}\r\n"], ["timeout=${timeout}\r\n"], ["\r\n"], ["\r\n"], ["${loc}\r\n"], ["\r\n"], ["Image \"aae_viewer_b\" found at (641, 709)\r\n"], ["${loc} = (641, 709)\r\n"], ["\r\n"], ["\r\n"], ["\r\n"], ["Runs the given keyword with the given arguments, if ``condition`` is true.\r\n"], ["\r\n"], ["'${image}' in ${lkr_loc_img}\r\n"], ["Change Image Folder\r\n"], ["${imgpath}\r\n"], ["\r\n"], ["\r\n"], ["\r\n"], ["${loc} = (641, 709)\r\n"], ["\r\n"], ["\r\n"], ["\r\n"], ["\r\n"], ["${loc}\r\n"], ["\r\n"], ["\r\n"], ["Moves the mouse pointer to an absolute coordinates.\r\n"], ["\r\n"], ["${loc}\r\n"], ["\r\n"], ["\r\n"], ["\r\n"], ["\r\n"], ["Clicks with the specified mouse button.\r\n"], ["\r\n"], ["\r\n"], ["\r\n"], ["\r\n"], ["\r\n"], ["\r\n"], ["\r\n"], ["\r\n"], ["bviewer_opened\r\n"], ["10\r\n"], ["\r\n"], ["\r\n"], ["Runs the given keyword with the given arguments, if ``condition`` is true.\r\n"], ["\r\n"], ["'${image}' in ${lkr_loc_img}\r\n"], ["Change Image Folder\r\n"], ["${imgpath}\\\\${LKR_UC}\r\n"], ["\r\n"], ["\r\n"], ["\r\n"], ["\r\n"], ["Tries to locate given image from the screen for given time.\r\n"], ["\r\n"], ["${image}\r\n"], ["timeout=${timeout}\r\n"], ["\r\n"], ["\r\n"], ["${loc}\r\n"], ["\r\n"], ["Image \"bviewer_opened\" found at (652, 94)\r\n"], ["${loc} = (652, 94)\r\n"], ["\r\n"], ["\r\n"], ["\r\n"], ["Runs the given keyword with the given arguments, if ``condition`` is true.\r\n"], ["\r\n"], ["'${image}' in ${lkr_loc_img}\r\n"], ["Change Image Folder\r\n"], ["${imgpath}\r\n"], ["\r\n"], ["\r\n"], ["\r\n"], ["\r\n"], ["\r\n"], ["\r\n"], ["Pauses the test executed for the given time.\r\n"], ["\r\n"], ["0.5\r\n"], ["\r\n"], ["Slept 500 milliseconds\r\n"], ["\r\n"], ["\r\n"], ["\r\n"], ["\r\n"], ["bviewer_opened\r\n"], ["timeout=10\r\n"], ["\r\n"], ["\r\n"], ["\r\n"], ["${image}\r\n"], ["${timeout}\r\n"], ["\r\n"], ["\r\n"], ["${loc}\r\n"], ["\r\n"], ["\r\n"], ["Runs the given keyword with the given arguments, if ``condition`` is true.\r\n"], ["\r\n"], ["'${image}' in ${lkr_loc_img}\r\n"], ["Change Image Folder\r\n"], ["${imgpath}\\\\${LKR_UC}\r\n"], ["\r\n"], ["\r\n"], ["\r\n"], ["\r\n"], ["Tries to locate given image from the screen for given time.\r\n"], ["\r\n"], ["${image}\r\n"], ["timeout=${timeout}\r\n"], ["\r\n"], ["\r\n"], ["${loc}\r\n"], ["\r\n"], ["Image \"bviewer_opened\" found at (652, 94)\r\n"], ["${loc} = (652, 94)\r\n"], ["\r\n"], ["\r\n"], ["\r\n"], ["Runs the given keyword with the given arguments, if ``condition`` is true.\r\n"], ["\r\n"], ["'${image}' in ${lkr_loc_img}\r\n"], ["Change Image Folder\r\n"], ["${imgpath}\r\n"], ["\r\n"], ["\r\n"], ["\r\n"], ["${loc} = (652, 94)\r\n"], ["\r\n"], ["\r\n"], ["\r\n"], ["\r\n"], ["${loc}\r\n"], ["\r\n"], ["\r\n"], ["Moves the mouse pointer to an absolute coordinates.\r\n"], ["\r\n"], ["${loc}\r\n"], ["\r\n"], ["\r\n"], ["\r\n"], ["\r\n"], ["Clicks with the specified mouse button.\r\n"], ["\r\n"], ["\r\n"], ["\r\n"], ["\r\n"], ["\r\n"], ["\r\n"], ["\r\n"], ["Pauses the test executed for the given time.\r\n"], ["\r\n"], ["0.5\r\n"], ["\r\n"], ["Slept 500 milliseconds\r\n"], ["\r\n"], ["\r\n"], ["\r\n"], ["Press given keyboard keys.\r\n"], ["\r\n"], ["Key.Win\r\n"], ["Key.Up\r\n"], ["\r\n"], ["\r\n"], ["\r\n"], ["\r\n"], ["Returns the given values which can then be assigned to a variables.\r\n"], ["\r\n"], ["ARCHIVETOOL_DOKU_${LKR_UC}_${anz_seiten}\r\n"], ["\r\n"], ["\r\n"], ["${search_image}\r\n"], ["\r\n"], ["${search_image} = ARCHIVETOOL_DOKU_OW_100\r\n"], ["\r\n"], ["\r\n"], ["\r\n"], ["\r\n"], ["bviewer_opened\r\n"], ["timeout=10\r\n"], ["\r\n"], ["\r\n"], ["\r\n"], ["${image}\r\n"], ["${timeout}\r\n"], ["\r\n"], ["\r\n"], ["${loc}\r\n"], ["\r\n"], ["\r\n"], ["Runs the given keyword with the given arguments, if ``condition`` is true.\r\n"], ["\r\n"], ["'${image}' in ${lkr_loc_img}\r\n"], ["Change Image Folder\r\n"], ["${imgpath}\\\\${LKR_UC}\r\n"], ["\r\n"], ["\r\n"], ["\r\n"], ["\r\n"], ["Tries to locate given image from the screen for given time.\r\n"], ["\r\n"], ["${image}\r\n"], ["timeout=${timeout}\r\n"], ["\r\n"], ["\r\n"], ["${loc}\r\n"], ["\r\n"], ["Image \"bviewer_opened\" found at (11, 85)\r\n"], ["${loc} = (11, 85)\r\n"], ["\r\n"], ["\r\n"], ["\r\n"], ["Runs the given keyword with the given arguments, if ``condition`` is true.\r\n"], ["\r\n"], ["'${image}' in ${lkr_loc_img}\r\n"], ["Change Image Folder\r\n"], ["${imgpath}\r\n"], ["\r\n"], ["\r\n"], ["\r\n"], ["${loc} = (11, 85)\r\n"], ["\r\n"], ["\r\n"], ["\r\n"], ["\r\n"], ["${loc}\r\n"], ["\r\n"], ["\r\n"], ["Moves the mouse pointer to an absolute coordinates.\r\n"], ["\r\n"], ["${loc}\r\n"], ["\r\n"], ["\r\n"], ["\r\n"], ["\r\n"], ["Clicks with the specified mouse button.\r\n"], ["\r\n"], ["\r\n"], ["\r\n"], ["\r\n"], ["\r\n"], ["\r\n"], ["\r\n"], ["Tries to locate given image from the screen for given time.\r\n"], ["\r\n"], ["${search_image}\r\n"], ["timeout=90\r\n"], ["\r\n"], ["Image \"ARCHIVETOOL_DOKU_OW_100\" found at (280, 250)\r\n"], ["\r\n"], ["\r\n"], ["\r\n"], ["Press given keyboard keys.\r\n"], ["\r\n"], ["Key.Alt\r\n"], ["Key.F4\r\n"], ["\r\n"], ["\r\n"], ["\r\n"], ["\r\n"], ["\r\n"], ["\r\n"], ["\r\n"], ["aae_suche_clear\r\n"], ["timeout=5\r\n"], ["\r\n"], ["\r\n"], ["\r\n"], ["${image}\r\n"], ["${timeout}\r\n"], ["\r\n"], ["\r\n"], ["${loc}\r\n"], ["\r\n"], ["\r\n"], ["Runs the given keyword with the given arguments, if ``condition`` is true.\r\n"], ["\r\n"], ["'${image}' in ${lkr_loc_img}\r\n"], ["Change Image Folder\r\n"], ["${imgpath}\\\\${LKR_UC}\r\n"], ["\r\n"], ["\r\n"], ["\r\n"], ["\r\n"], ["Tries to locate given image from the screen for given time.\r\n"], ["\r\n"], ["${image}\r\n"], ["timeout=${timeout}\r\n"], ["\r\n"], ["\r\n"], ["${loc}\r\n"], ["\r\n"], ["Image \"aae_suche_clear\" found at (404, 709)\r\n"], ["${loc} = (404, 709)\r\n"], ["\r\n"], ["\r\n"], ["\r\n"], ["Runs the given keyword with the given arguments, if ``condition`` is true.\r\n"], ["\r\n"], ["'${image}' in ${lkr_loc_img}\r\n"], ["Change Image Folder\r\n"], ["${imgpath}\r\n"], ["\r\n"], ["\r\n"], ["\r\n"], ["${loc} = (404, 709)\r\n"], ["\r\n"], ["\r\n"], ["\r\n"], ["\r\n"], ["${loc}\r\n"], ["\r\n"], ["\r\n"], ["Moves the mouse pointer to an absolute coordinates.\r\n"], ["\r\n"], ["${loc}\r\n"], ["\r\n"], ["\r\n"], ["\r\n"], ["\r\n"], ["Clicks with the specified mouse button.\r\n"], ["\r\n"], ["\r\n"], ["\r\n"], ["\r\n"], ["\r\n"], ["\r\n"], ["\r\n"], ["\r\n"], ["aae_dokumentennr_bereit\r\n"], ["timeout=5\r\n"], ["\r\n"], ["\r\n"], ["Runs the given keyword with the given arguments, if ``condition`` is true.\r\n"], ["\r\n"], ["'${image}' in ${lkr_loc_img}\r\n"], ["Change Image Folder\r\n"], ["${imgpath}\\\\${LKR_UC}\r\n"], ["\r\n"], ["\r\n"], ["\r\n"], ["\r\n"], ["Tries to locate given image from the screen for given time.\r\n"], ["\r\n"], ["${image}\r\n"], ["timeout=${timeout}\r\n"], ["\r\n"], ["\r\n"], ["${loc}\r\n"], ["\r\n"], ["Image \"aae_dokumentennr_bereit\" found at (569, 464)\r\n"], ["${loc} = (569, 464)\r\n"], ["\r\n"], ["\r\n"], ["\r\n"], ["Runs the given keyword with the given arguments, if ``condition`` is true.\r\n"], ["\r\n"], ["'${image}' in ${lkr_loc_img}\r\n"], ["Change Image Folder\r\n"], ["${imgpath}\r\n"], ["\r\n"], ["\r\n"], ["\r\n"], ["\r\n"], ["\r\n"], ["\r\n"], ["Evaluates the given expression in Python and returns the result.\r\n"], ["\r\n"], ["${i} + 1\r\n"], ["\r\n"], ["\r\n"], ["${i}\r\n"], ["\r\n"], ["${i} = 2\r\n"], ["\r\n"], ["\r\n"], ["\r\n"], ["\r\n"], ["\r\n"], ["\r\n"], ["\r\n"], ["${lkr_docs}[${i}]\r\n"], ["${anz_seiten}\r\n"], ["\r\n"], ["\r\n"], ["Makes a variable available everywhere within the scope of the current test.\r\n"], ["\r\n"], ["${dokid}\r\n"], ["${lkr_doc}\r\n"], ["\r\n"], ["${dokid} = 4743308\r\n"], ["\r\n"], ["\r\n"], ["\r\n"], ["\r\n"], ["aae_dokumentennr\r\n"], ["5\r\n"], ["100\r\n"], ["${lkr_doc}\r\n"], ["\r\n"], ["\r\n"], ["\r\n"], ["${image}\r\n"], ["${timeout}\r\n"], ["\r\n"], ["\r\n"], ["${loc}\r\n"], ["\r\n"], ["\r\n"], ["Runs the given keyword with the given arguments, if ``condition`` is true.\r\n"], ["\r\n"], ["'${image}' in ${lkr_loc_img}\r\n"], ["Change Image Folder\r\n"], ["${imgpath}\\\\${LKR_UC}\r\n"], ["\r\n"], ["\r\n"], ["\r\n"], ["\r\n"], ["Tries to locate given image from the screen for given time.\r\n"], ["\r\n"], ["${image}\r\n"], ["timeout=${timeout}\r\n"], ["\r\n"], ["\r\n"], ["${loc}\r\n"], ["\r\n"], ["Image \"aae_dokumentennr\" found at (452, 463)\r\n"], ["${loc} = (452, 463)\r\n"], ["\r\n"], ["\r\n"], ["\r\n"], ["Runs the given keyword with the given arguments, if ``condition`` is true.\r\n"], ["\r\n"], ["'${image}' in ${lkr_loc_img}\r\n"], ["Change Image Folder\r\n"], ["${imgpath}\r\n"], ["\r\n"], ["\r\n"], ["\r\n"], ["${loc} = (452, 463)\r\n"], ["\r\n"], ["\r\n"], ["\r\n"], ["Clicks right of given location by given offset.\r\n"], ["\r\n"], ["${loc}\r\n"], ["${offset}\r\n"], ["\r\n"], ["Clicking 1 time(s) at (552, 463) with left mouse button at interval 0.000000\r\n"], ["\r\n"], ["\r\n"], ["\r\n"], ["Type text and keyboard keys.\r\n"], ["\r\n"], ["@{text}\r\n"], ["\r\n"], ["\r\n"], ["\r\n"], ["\r\n"], ["\r\n"], ["\r\n"], ["Type text and keyboard keys.\r\n"], ["\r\n"], ["Key.enter\r\n"], ["\r\n"], ["\r\n"], ["\r\n"], ["\r\n"], ["\r\n"], ["aae_treffer_1\r\n"], ["timeout=10\r\n"], ["\r\n"], ["\r\n"], ["\r\n"], ["${image}\r\n"], ["${timeout}\r\n"], ["\r\n"], ["\r\n"], ["${loc}\r\n"], ["\r\n"], ["\r\n"], ["Runs the given keyword with the given arguments, if ``condition`` is true.\r\n"], ["\r\n"], ["'${image}' in ${lkr_loc_img}\r\n"], ["Change Image Folder\r\n"], ["${imgpath}\\\\${LKR_UC}\r\n"], ["\r\n"], ["\r\n"], ["\r\n"], ["\r\n"], ["Tries to locate given image from the screen for given time.\r\n"], ["\r\n"], ["${image}\r\n"], ["timeout=${timeout}\r\n"], ["\r\n"], ["\r\n"], ["${loc}\r\n"], ["\r\n"], ["Image \"aae_treffer_1\" found at (870, 745)\r\n"], ["${loc} = (870, 745)\r\n"], ["\r\n"], ["\r\n"], ["\r\n"], ["Runs the given keyword with the given arguments, if ``condition`` is true.\r\n"], ["\r\n"], ["'${image}' in ${lkr_loc_img}\r\n"], ["Change Image Folder\r\n"], ["${imgpath}\r\n"], ["\r\n"], ["\r\n"], ["\r\n"], ["${loc} = (870, 745)\r\n"], ["\r\n"], ["\r\n"], ["\r\n"], ["\r\n"], ["${loc}\r\n"], ["\r\n"], ["\r\n"], ["Moves the mouse pointer to an absolute coordinates.\r\n"], ["\r\n"], ["${loc}\r\n"], ["\r\n"], ["\r\n"], ["\r\n"], ["\r\n"], ["Clicks with the specified mouse button.\r\n"], ["\r\n"], ["\r\n"], ["\r\n"], ["\r\n"], ["\r\n"], ["\r\n"], ["\r\n"], ["Type text and keyboard keys.\r\n"], ["\r\n"], ["Key.Tab\r\n"], ["Key.Tab\r\n"], ["Key.Tab\r\n"], ["Key.Tab\r\n"], ["Key.right\r\n"], ["\r\n"], ["\r\n"], ["\r\n"], ["\r\n"], ["\r\n"], ["aae_zeile_markiert\r\n"], ["timeout=10\r\n"], ["\r\n"], ["\r\n"], ["\r\n"], ["${image}\r\n"], ["${timeout}\r\n"], ["\r\n"], ["\r\n"], ["${loc}\r\n"], ["\r\n"], ["\r\n"], ["Runs the given keyword with the given arguments, if ``condition`` is true.\r\n"], ["\r\n"], ["'${image}' in ${lkr_loc_img}\r\n"], ["Change Image Folder\r\n"], ["${imgpath}\\\\${LKR_UC}\r\n"], ["\r\n"], ["\r\n"], ["\r\n"], ["\r\n"], ["Tries to locate given image from the screen for given time.\r\n"], ["\r\n"], ["${image}\r\n"], ["timeout=${timeout}\r\n"], ["\r\n"], ["\r\n"], ["${loc}\r\n"], ["\r\n"], ["Image \"aae_zeile_markiert\" found at (423, 786)\r\n"], ["${loc} = (423, 786)\r\n"], ["\r\n"], ["\r\n"], ["\r\n"], ["Runs the given keyword with the given arguments, if ``condition`` is true.\r\n"], ["\r\n"], ["'${image}' in ${lkr_loc_img}\r\n"], ["Change Image Folder\r\n"], ["${imgpath}\r\n"], ["\r\n"], ["\r\n"], ["\r\n"], ["${loc} = (423, 786)\r\n"], ["\r\n"], ["\r\n"], ["\r\n"], ["\r\n"], ["${loc}\r\n"], ["\r\n"], ["\r\n"], ["Moves the mouse pointer to an absolute coordinates.\r\n"], ["\r\n"], ["${loc}\r\n"], ["\r\n"], ["\r\n"], ["\r\n"], ["\r\n"], ["Clicks with the specified mouse button.\r\n"], ["\r\n"], ["\r\n"], ["\r\n"], ["\r\n"], ["\r\n"], ["\r\n"], ["\r\n"], ["\r\n"], ["aae_viewer_b\r\n"], ["timeout=10\r\n"], ["\r\n"], ["\r\n"], ["\r\n"], ["${image}\r\n"], ["${timeout}\r\n"], ["\r\n"], ["\r\n"], ["${loc}\r\n"], ["\r\n"], ["\r\n"], ["Runs the given keyword with the given arguments, if ``condition`` is true.\r\n"], ["\r\n"], ["'${image}' in ${lkr_loc_img}\r\n"], ["Change Image Folder\r\n"], ["${imgpath}\\\\${LKR_UC}\r\n"], ["\r\n"], ["\r\n"], ["\r\n"], ["\r\n"], ["Tries to locate given image from the screen for given time.\r\n"], ["\r\n"], ["${image}\r\n"], ["timeout=${timeout}\r\n"], ["\r\n"], ["\r\n"], ["${loc}\r\n"], ["\r\n"], ["Image \"aae_viewer_b\" found at (641, 709)\r\n"], ["${loc} = (641, 709)\r\n"], ["\r\n"], ["\r\n"], ["\r\n"], ["Runs the given keyword with the given arguments, if ``condition`` is true.\r\n"], ["\r\n"], ["'${image}' in ${lkr_loc_img}\r\n"], ["Change Image Folder\r\n"], ["${imgpath}\r\n"], ["\r\n"], ["\r\n"], ["\r\n"], ["${loc} = (641, 709)\r\n"], ["\r\n"], ["\r\n"], ["\r\n"], ["\r\n"], ["${loc}\r\n"], ["\r\n"], ["\r\n"], ["Moves the mouse pointer to an absolute coordinates.\r\n"], ["\r\n"], ["${loc}\r\n"], ["\r\n"], ["\r\n"], ["\r\n"], ["\r\n"], ["Clicks with the specified mouse button.\r\n"], ["\r\n"], ["\r\n"], ["\r\n"], ["\r\n"], ["\r\n"], ["\r\n"], ["\r\n"], ["\r\n"], ["bviewer_opened\r\n"], ["10\r\n"], ["\r\n"], ["\r\n"], ["Runs the given keyword with the given arguments, if ``condition`` is true.\r\n"], ["\r\n"], ["'${image}' in ${lkr_loc_img}\r\n"], ["Change Image Folder\r\n"], ["${imgpath}\\\\${LKR_UC}\r\n"], ["\r\n"], ["\r\n"], ["\r\n"], ["\r\n"], ["Tries to locate given image from the screen for given time.\r\n"], ["\r\n"], ["${image}\r\n"], ["timeout=${timeout}\r\n"], ["\r\n"], ["\r\n"], ["${loc}\r\n"], ["\r\n"], ["Image \"bviewer_opened\" found at (652, 94)\r\n"], ["${loc} = (652, 94)\r\n"], ["\r\n"], ["\r\n"], ["\r\n"], ["Runs the given keyword with the given arguments, if ``condition`` is true.\r\n"], ["\r\n"], ["'${image}' in ${lkr_loc_img}\r\n"], ["Change Image Folder\r\n"], ["${imgpath}\r\n"], ["\r\n"], ["\r\n"], ["\r\n"], ["\r\n"], ["\r\n"], ["\r\n"], ["Pauses the test executed for the given time.\r\n"], ["\r\n"], ["0.5\r\n"], ["\r\n"], ["Slept 500 milliseconds\r\n"], ["\r\n"], ["\r\n"], ["\r\n"], ["\r\n"], ["bviewer_opened\r\n"], ["timeout=10\r\n"], ["\r\n"], ["\r\n"], ["\r\n"], ["${image}\r\n"], ["${timeout}\r\n"], ["\r\n"], ["\r\n"], ["${loc}\r\n"], ["\r\n"], ["\r\n"], ["Runs the given keyword with the given arguments, if ``condition`` is true.\r\n"], ["\r\n"], ["'${image}' in ${lkr_loc_img}\r\n"], ["Change Image Folder\r\n"], ["${imgpath}\\\\${LKR_UC}\r\n"], ["\r\n"], ["\r\n"], ["\r\n"], ["\r\n"], ["Tries to locate given image from the screen for given time.\r\n"], ["\r\n"], ["${image}\r\n"], ["timeout=${timeout}\r\n"], ["\r\n"], ["\r\n"], ["${loc}\r\n"], ["\r\n"], ["Image \"bviewer_opened\" found at (652, 94)\r\n"], ["${loc} = (652, 94)\r\n"], ["\r\n"], ["\r\n"], ["\r\n"], ["Runs the given keyword with the given arguments, if ``condition`` is true.\r\n"], ["\r\n"], ["'${image}' in ${lkr_loc_img}\r\n"], ["Change Image Folder\r\n"], ["${imgpath}\r\n"], ["\r\n"], ["\r\n"], ["\r\n"], ["${loc} = (652, 94)\r\n"], ["\r\n"], ["\r\n"], ["\r\n"], ["\r\n"], ["${loc}\r\n"], ["\r\n"], ["\r\n"], ["Moves the mouse pointer to an absolute coordinates.\r\n"], ["\r\n"], ["${loc}\r\n"], ["\r\n"], ["\r\n"], ["\r\n"], ["\r\n"], ["Clicks with the specified mouse button.\r\n"], ["\r\n"], ["\r\n"], ["\r\n"], ["\r\n"], ["\r\n"], ["\r\n"], ["\r\n"], ["Pauses the test executed for the given time.\r\n"], ["\r\n"], ["0.5\r\n"], ["\r\n"], ["Slept 500 milliseconds\r\n"], ["\r\n"], ["\r\n"], ["\r\n"], ["Press given keyboard keys.\r\n"], ["\r\n"], ["Key.Win\r\n"], ["Key.Up\r\n"], ["\r\n"], ["\r\n"], ["\r\n"], ["\r\n"], ["Returns the given values which can then be assigned to a variables.\r\n"], ["\r\n"], ["ARCHIVETOOL_DOKU_${LKR_UC}_${anz_seiten}\r\n"], ["\r\n"], ["\r\n"], ["${search_image}\r\n"], ["\r\n"], ["${search_image} = ARCHIVETOOL_DOKU_OW_300\r\n"], ["\r\n"], ["\r\n"], ["\r\n"], ["\r\n"], ["bviewer_opened\r\n"], ["timeout=10\r\n"], ["\r\n"], ["\r\n"], ["\r\n"], ["${image}\r\n"], ["${timeout}\r\n"], ["\r\n"], ["\r\n"], ["${loc}\r\n"], ["\r\n"], ["\r\n"], ["Runs the given keyword with the given arguments, if ``condition`` is true.\r\n"], ["\r\n"], ["'${image}' in ${lkr_loc_img}\r\n"], ["Change Image Folder\r\n"], ["${imgpath}\\\\${LKR_UC}\r\n"], ["\r\n"], ["\r\n"], ["\r\n"], ["\r\n"], ["Tries to locate given image from the screen for given time.\r\n"], ["\r\n"], ["${image}\r\n"], ["timeout=${timeout}\r\n"], ["\r\n"], ["\r\n"], ["${loc}\r\n"], ["\r\n"], ["Image \"bviewer_opened\" found at (11, 85)\r\n"], ["${loc} = (11, 85)\r\n"], ["\r\n"], ["\r\n"], ["\r\n"], ["Runs the given keyword with the given arguments, if ``condition`` is true.\r\n"], ["\r\n"], ["'${image}' in ${lkr_loc_img}\r\n"], ["Change Image Folder\r\n"], ["${imgpath}\r\n"], ["\r\n"], ["\r\n"], ["\r\n"], ["${loc} = (11, 85)\r\n"], ["\r\n"], ["\r\n"], ["\r\n"], ["\r\n"], ["${loc}\r\n"], ["\r\n"], ["\r\n"], ["Moves the mouse pointer to an absolute coordinates.\r\n"], ["\r\n"], ["${loc}\r\n"], ["\r\n"], ["\r\n"], ["\r\n"], ["\r\n"], ["Clicks with the specified mouse button.\r\n"], ["\r\n"], ["\r\n"], ["\r\n"], ["\r\n"], ["\r\n"], ["\r\n"], ["\r\n"], ["Tries to locate given image from the screen for given time.\r\n"], ["\r\n"], ["${search_image}\r\n"], ["timeout=90\r\n"], ["\r\n"], ["Image \"ARCHIVETOOL_DOKU_OW_300\" found at (267, 226)\r\n"], ["\r\n"], ["\r\n"], ["\r\n"], ["Press given keyboard keys.\r\n"], ["\r\n"], ["Key.Alt\r\n"], ["Key.F4\r\n"], ["\r\n"], ["\r\n"], ["\r\n"], ["\r\n"], ["\r\n"], ["\r\n"], ["\r\n"], ["aae_suche_clear\r\n"], ["timeout=5\r\n"], ["\r\n"], ["\r\n"], ["\r\n"], ["${image}\r\n"], ["${timeout}\r\n"], ["\r\n"], ["\r\n"], ["${loc}\r\n"], ["\r\n"], ["\r\n"], ["Runs the given keyword with the given arguments, if ``condition`` is true.\r\n"], ["\r\n"], ["'${image}' in ${lkr_loc_img}\r\n"], ["Change Image Folder\r\n"], ["${imgpath}\\\\${LKR_UC}\r\n"], ["\r\n"], ["\r\n"], ["\r\n"], ["\r\n"], ["Tries to locate given image from the screen for given time.\r\n"], ["\r\n"], ["${image}\r\n"], ["timeout=${timeout}\r\n"], ["\r\n"], ["\r\n"], ["${loc}\r\n"], ["\r\n"], ["Image \"aae_suche_clear\" found at (404, 709)\r\n"], ["${loc} = (404, 709)\r\n"], ["\r\n"], ["\r\n"], ["\r\n"], ["Runs the given keyword with the given arguments, if ``condition`` is true.\r\n"], ["\r\n"], ["'${image}' in ${lkr_loc_img}\r\n"], ["Change Image Folder\r\n"], ["${imgpath}\r\n"], ["\r\n"], ["\r\n"], ["\r\n"], ["${loc} = (404, 709)\r\n"], ["\r\n"], ["\r\n"], ["\r\n"], ["\r\n"], ["${loc}\r\n"], ["\r\n"], ["\r\n"], ["Moves the mouse pointer to an absolute coordinates.\r\n"], ["\r\n"], ["${loc}\r\n"], ["\r\n"], ["\r\n"], ["\r\n"], ["\r\n"], ["Clicks with the specified mouse button.\r\n"], ["\r\n"], ["\r\n"], ["\r\n"], ["\r\n"], ["\r\n"], ["\r\n"], ["\r\n"], ["\r\n"], ["aae_dokumentennr_bereit\r\n"], ["timeout=5\r\n"], ["\r\n"], ["\r\n"], ["Runs the given keyword with the given arguments, if ``condition`` is true.\r\n"], ["\r\n"], ["'${image}' in ${lkr_loc_img}\r\n"], ["Change Image Folder\r\n"], ["${imgpath}\\\\${LKR_UC}\r\n"], ["\r\n"], ["\r\n"], ["\r\n"], ["\r\n"], ["Tries to locate given image from the screen for given time.\r\n"], ["\r\n"], ["${image}\r\n"], ["timeout=${timeout}\r\n"], ["\r\n"], ["\r\n"], ["${loc}\r\n"], ["\r\n"], ["Image \"aae_dokumentennr_bereit\" found at (569, 464)\r\n"], ["${loc} = (569, 464)\r\n"], ["\r\n"], ["\r\n"], ["\r\n"], ["Runs the given keyword with the given arguments, if ``condition`` is true.\r\n"], ["\r\n"], ["'${image}' in ${lkr_loc_img}\r\n"], ["Change Image Folder\r\n"], ["${imgpath}\r\n"], ["\r\n"], ["\r\n"], ["\r\n"], ["\r\n"], ["\r\n"], ["\r\n"], ["Evaluates the given expression in Python and returns the result.\r\n"], ["\r\n"], ["${i} + 1\r\n"], ["\r\n"], ["\r\n"], ["${i}\r\n"], ["\r\n"], ["${i} = 3\r\n"], ["\r\n"], ["\r\n"], ["\r\n"], ["\r\n"], ["\r\n"], ["\r\n"], ["\r\n"], ["\r\n"], ["\r\n"], ["\r\n"], ["Runs the given keyword with the given arguments, if ``condition`` is true.\r\n"], ["\r\n"], ["${APPOPEN}==${True}\r\n"], ["Terminate Application\r\n"], ["alias=archivetool\r\n"], ["\r\n"], ["\r\n"], ["Terminates the process launched with `Launch Application` with\r\n"], ["given ``alias``.\r\n"], ["\r\n"], ["alias=archivetool\r\n"], ["\r\n"], ["\r\n"], ["\r\n"], ["\r\n"], ["\r\n"], ["\r\n"], ["Runs the given keyword with the given arguments, if ``condition`` is true.\r\n"], ["\r\n"], ["${APPOPEN}==${True}\r\n"], ["Quit All Viewer Processes\r\n"], ["\r\n"], ["\r\n"], ["\r\n"], ["Runs a process and waits for it to complete.\r\n"], ["\r\n"], ["cmd.exe /c taskkill /IM ArchiveViewAdvancedA.exe\r\n"], ["shell=True\r\n"], ["\r\n"], ["Starting process:\r\n"], ["cmd.exe /c taskkill /IM ArchiveViewAdvancedA.exe\r\n"], ["Waiting for process to complete.\r\n"], ["Process completed.\r\n"], ["\r\n"], ["\r\n"], ["\r\n"], ["Runs a process and waits for it to complete.\r\n"], ["\r\n"], ["cmd.exe /c taskkill /IM ArchiveViewAdvancedB.exe\r\n"], ["shell=True\r\n"], ["\r\n"], ["Starting process:\r\n"], ["cmd.exe /c taskkill /IM ArchiveViewAdvancedB.exe\r\n"], ["Waiting for process to complete.\r\n"], ["Process completed.\r\n"], ["\r\n"], ["\r\n"], ["\r\n"], ["Runs a process and waits for it to complete.\r\n"], ["\r\n"], ["cmd.exe /c taskkill /IM ArchiveViewAdvancedC.exe\r\n"], ["shell=True\r\n"], ["\r\n"], ["Starting process:\r\n"], ["cmd.exe /c taskkill /IM ArchiveViewAdvancedC.exe\r\n"], ["Waiting for process to complete.\r\n"], ["Process completed.\r\n"], ["\r\n"], ["\r\n"], ["\r\n"], ["Runs a process and waits for it to complete.\r\n"], ["\r\n"], ["cmd.exe /c taskkill /IM\r\n"], ["ArchivToolExtAdvanced.exe\r\n"], ["shell=True\r\n"], ["\r\n"], ["Starting process:\r\n"], ["\"cmd.exe /c taskkill /IM\" ArchivToolExtAdvanced.exe\r\n"], ["Waiting for process to complete.\r\n"], ["Process completed.\r\n"], ["\r\n"], ["\r\n"], ["\r\n"], ["Runs a process and waits for it to complete.\r\n"], ["\r\n"], ["cmd.exe /c taskkill /IM\r\n"], ["archtool.exe\r\n"], ["shell=True\r\n"], ["\r\n"], ["Starting process:\r\n"], ["\"cmd.exe /c taskkill /IM\" archtool.exe\r\n"], ["Waiting for process to complete.\r\n"], ["Process completed.\r\n"], ["\r\n"], ["\r\n"], ["\r\n"], ["\r\n"], ["\r\n"], ["\r\n"], ["\r\n"], ["Makes a variable available everywhere within the scope of the current suite.\r\n"], ["\r\n"], ["${APPOPEN}\r\n"], ["${False}\r\n"], ["\r\n"], ["${APPOPEN} = False\r\n"], ["\r\n"], ["\r\n"], ["\r\n"], ["\r\n"], ["\r\n"], ["\r\n"], ["\r\n"], ["\r\n"], ["\r\n"], ["SG\r\n"], ["\r\n"], ["\r\n"], ["Sets where all reference images are stored.\r\n"], ["\r\n"], ["${imgpath}\r\n"], ["\r\n"], ["\r\n"], ["\r\n"], ["\r\n"], ["\r\n"], ["${lkr_uc}\r\n"], ["\r\n"], ["\r\n"], ["Makes a variable available everywhere within the scope of the current test.\r\n"], ["\r\n"], ["${LKR_UC}\r\n"], ["${lkr_uc}\r\n"], ["\r\n"], ["${LKR_UC} = SG\r\n"], ["\r\n"], ["\r\n"], ["\r\n"], ["Converts string to lower case.\r\n"], ["\r\n"], ["${lkr_uc}\r\n"], ["\r\n"], ["\r\n"], ["${lkr_lc}\r\n"], ["\r\n"], ["${lkr_lc} = sg\r\n"], ["\r\n"], ["\r\n"], ["\r\n"], ["Makes a variable available everywhere within the scope of the current test.\r\n"], ["\r\n"], ["${LKR_LC}\r\n"], ["${lkr_lc}\r\n"], ["\r\n"], ["${LKR_LC} = sg\r\n"], ["\r\n"], ["\r\n"], ["\r\n"], ["Makes a variable available everywhere within the scope of the current test.\r\n"], ["\r\n"], ["${lkr_docs}\r\n"], ["${TESTDATA['${LKR_UC}']['docs']}\r\n"], ["\r\n"], ["${lkr_docs} = ['42577586', '42577888', '42577943']\r\n"], ["\r\n"], ["\r\n"], ["\r\n"], ["Makes a variable available everywhere within the scope of the current test.\r\n"], ["\r\n"], ["${lkr_cred}\r\n"], ["${TESTDATA['${LKR_UC}']['credentials']}\r\n"], ["\r\n"], ["${lkr_cred} = ['sgabx', 'crypt:cQuuuXSlozF7qXM2Rc2UYD/7JP+0tjiJ8qreN0MwVz1o3WCWZ7yCH9ZQh2AiZ+M6p5p40G7kFesz1fc=']\r\n"], ["\r\n"], ["\r\n"], ["\r\n"], ["Makes a variable available everywhere within the scope of the current test.\r\n"], ["\r\n"], ["${lkr_loc_img}\r\n"], ["${TESTDATA['${LKR_UC}']['loc_img']}\r\n"], ["\r\n"], ["${lkr_loc_img} = []\r\n"], ["\r\n"], ["\r\n"], ["\r\n"], ["Makes a variable available everywhere within the scope of the current test.\r\n"], ["\r\n"], ["${user}\r\n"], ["${lkr_cred}[0]\r\n"], ["\r\n"], ["${user} = sgabx\r\n"], ["\r\n"], ["\r\n"], ["\r\n"], ["Decrypts cipher text and returns the plain text.\r\n"], ["\r\n"], ["${lkr_cred}[1]\r\n"], ["\r\n"], ["\r\n"], ["${password}\r\n"], ["\r\n"], ["Decrypting text and return value.\r\n"], ["${password} = ***\r\n"], ["\r\n"], ["\r\n"], ["\r\n"], ["Makes a variable available everywhere within the scope of the current test.\r\n"], ["\r\n"], ["${password}\r\n"], ["${password}\r\n"], ["\r\n"], ["${password} = ***\r\n"], ["\r\n"], ["\r\n"], ["\r\n"], ["\r\n"], ["\r\n"], ["\r\n"], ["Runs a process and waits for it to complete.\r\n"], ["\r\n"], ["cmd.exe /c taskkill /IM ArchiveViewAdvancedA.exe\r\n"], ["shell=True\r\n"], ["\r\n"], ["Starting process:\r\n"], ["cmd.exe /c taskkill /IM ArchiveViewAdvancedA.exe\r\n"], ["Waiting for process to complete.\r\n"], ["Process completed.\r\n"], ["\r\n"], ["\r\n"], ["\r\n"], ["Runs a process and waits for it to complete.\r\n"], ["\r\n"], ["cmd.exe /c taskkill /IM ArchiveViewAdvancedB.exe\r\n"], ["shell=True\r\n"], ["\r\n"], ["Starting process:\r\n"], ["cmd.exe /c taskkill /IM ArchiveViewAdvancedB.exe\r\n"], ["Waiting for process to complete.\r\n"], ["Process completed.\r\n"], ["\r\n"], ["\r\n"], ["\r\n"], ["Runs a process and waits for it to complete.\r\n"], ["\r\n"], ["cmd.exe /c taskkill /IM ArchiveViewAdvancedC.exe\r\n"], ["shell=True\r\n"], ["\r\n"], ["Starting process:\r\n"], ["cmd.exe /c taskkill /IM ArchiveViewAdvancedC.exe\r\n"], ["Waiting for process to complete.\r\n"], ["Process completed.\r\n"], ["\r\n"], ["\r\n"], ["\r\n"], ["Runs a process and waits for it to complete.\r\n"], ["\r\n"], ["cmd.exe /c taskkill /IM\r\n"], ["ArchivToolExtAdvanced.exe\r\n"], ["shell=True\r\n"], ["\r\n"], ["Starting process:\r\n"], ["\"cmd.exe /c taskkill /IM\" ArchivToolExtAdvanced.exe\r\n"], ["Waiting for process to complete.\r\n"], ["Process completed.\r\n"], ["\r\n"], ["\r\n"], ["\r\n"], ["Runs a process and waits for it to complete.\r\n"], ["\r\n"], ["cmd.exe /c taskkill /IM\r\n"], ["archtool.exe\r\n"], ["shell=True\r\n"], ["\r\n"], ["Starting process:\r\n"], ["\"cmd.exe /c taskkill /IM\" archtool.exe\r\n"], ["Waiting for process to complete.\r\n"], ["Process completed.\r\n"], ["\r\n"], ["\r\n"], ["\r\n"], ["\r\n"], ["\r\n"], ["\r\n"], ["Runs a process and waits for it to complete.\r\n"], ["\r\n"], ["C:\\\\ProgramData\\\\checkmk\\\\agent\\\\robot\\\\archivetool\\\\ArchivetoolConfig\\\\sva_${LKR_LC} konfiguration.bat\r\n"], ["\r\n"], ["Starting process:\r\n"], ["\"C:\\ProgramData\\checkmk\\agent\\robot\\archivetool\\ArchivetoolConfig\\sva_sg konfiguration.bat\"\r\n"], ["Waiting for process to complete.\r\n"], ["Process completed.\r\n"], ["\r\n"], ["\r\n"], ["\r\n"], ["Launches an application.\r\n"], ["\r\n"], ["\"${APP}\"\r\n"], ["alias=archivetool\r\n"], ["\r\n"], ["\r\n"], ["\r\n"], ["\r\n"], ["Makes a variable available everywhere within the scope of the current suite.\r\n"], ["\r\n"], ["${APPOPEN}\r\n"], ["${True}\r\n"], ["\r\n"], ["${APPOPEN} = True\r\n"], ["\r\n"], ["\r\n"], ["\r\n"], ["\r\n"], ["\r\n"], ["\r\n"], ["\r\n"], ["login_username\r\n"], ["timeout=10\r\n"], ["\r\n"], ["\r\n"], ["${loc}\r\n"], ["\r\n"], ["\r\n"], ["Runs the given keyword with the given arguments, if ``condition`` is true.\r\n"], ["\r\n"], ["'${image}' in ${lkr_loc_img}\r\n"], ["Change Image Folder\r\n"], ["${imgpath}\\\\${LKR_UC}\r\n"], ["\r\n"], ["\r\n"], ["\r\n"], ["\r\n"], ["Tries to locate given image from the screen for given time.\r\n"], ["\r\n"], ["${image}\r\n"], ["timeout=${timeout}\r\n"], ["\r\n"], ["\r\n"], ["${loc}\r\n"], ["\r\n"], ["Image \"login_username\" found at (227, 149)\r\n"], ["${loc} = (227, 149)\r\n"], ["\r\n"], ["\r\n"], ["\r\n"], ["Runs the given keyword with the given arguments, if ``condition`` is true.\r\n"], ["\r\n"], ["'${image}' in ${lkr_loc_img}\r\n"], ["Change Image Folder\r\n"], ["${imgpath}\r\n"], ["\r\n"], ["\r\n"], ["\r\n"], ["${loc} = (227, 149)\r\n"], ["\r\n"], ["\r\n"], ["\r\n"], ["Finds the reference image on screen and clicks it once.\r\n"], ["\r\n"], ["login_username\r\n"], ["\r\n"], ["Image \"C:\\ProgramData\\checkmk\\agent\\robot\\archivetool\\images\\login_username.png\" found at Box(left=182, top=134, width=90, height=30)\r\n"], ["Clicking image \"login_username\" in position (227, 149)\r\n"], ["\r\n"], ["\r\n"], ["\r\n"], ["Pauses the test executed for the given time.\r\n"], ["\r\n"], ["0.2\r\n"], ["\r\n"], ["Slept 200 milliseconds\r\n"], ["\r\n"], ["\r\n"], ["\r\n"], ["\r\n"], ["login_username\r\n"], ["10\r\n"], ["20\r\n"], ["${user}\r\n"], ["\r\n"], ["\r\n"], ["\r\n"], ["${image}\r\n"], ["${timeout}\r\n"], ["\r\n"], ["\r\n"], ["${loc}\r\n"], ["\r\n"], ["\r\n"], ["Runs the given keyword with the given arguments, if ``condition`` is true.\r\n"], ["\r\n"], ["'${image}' in ${lkr_loc_img}\r\n"], ["Change Image Folder\r\n"], ["${imgpath}\\\\${LKR_UC}\r\n"], ["\r\n"], ["\r\n"], ["\r\n"], ["\r\n"], ["Tries to locate given image from the screen for given time.\r\n"], ["\r\n"], ["${image}\r\n"], ["timeout=${timeout}\r\n"], ["\r\n"], ["\r\n"], ["${loc}\r\n"], ["\r\n"], ["Image \"login_username\" found at (227, 149)\r\n"], ["${loc} = (227, 149)\r\n"], ["\r\n"], ["\r\n"], ["\r\n"], ["Runs the given keyword with the given arguments, if ``condition`` is true.\r\n"], ["\r\n"], ["'${image}' in ${lkr_loc_img}\r\n"], ["Change Image Folder\r\n"], ["${imgpath}\r\n"], ["\r\n"], ["\r\n"], ["\r\n"], ["${loc} = (227, 149)\r\n"], ["\r\n"], ["\r\n"], ["\r\n"], ["Clicks right of given location by given offset.\r\n"], ["\r\n"], ["${loc}\r\n"], ["${offset}\r\n"], ["\r\n"], ["Clicking 1 time(s) at (247, 149) with left mouse button at interval 0.000000\r\n"], ["\r\n"], ["\r\n"], ["\r\n"], ["Type text and keyboard keys.\r\n"], ["\r\n"], ["@{text}\r\n"], ["\r\n"], ["\r\n"], ["\r\n"], ["\r\n"], ["\r\n"], ["\r\n"], ["Pauses the test executed for the given time.\r\n"], ["\r\n"], ["0.2\r\n"], ["\r\n"], ["Slept 200 milliseconds\r\n"], ["\r\n"], ["\r\n"], ["\r\n"], ["Type text and keyboard keys.\r\n"], ["\r\n"], ["Key.tab\r\n"], ["\r\n"], ["\r\n"], ["\r\n"], ["\r\n"], ["Pauses the test executed for the given time.\r\n"], ["\r\n"], ["0.2\r\n"], ["\r\n"], ["Slept 200 milliseconds\r\n"], ["\r\n"], ["\r\n"], ["\r\n"], ["Type text and keyboard keys.\r\n"], ["\r\n"], ["${password}\r\n"], ["Key.enter\r\n"], ["Key.enter\r\n"], ["\r\n"], ["\r\n"], ["\r\n"], ["\r\n"], ["\r\n"], ["archiv_vista_warn\r\n"], ["timeout=5\r\n"], ["\r\n"], ["\r\n"], ["\r\n"], ["${image}\r\n"], ["${timeout}\r\n"], ["\r\n"], ["\r\n"], ["${loc}\r\n"], ["\r\n"], ["\r\n"], ["Runs the given keyword with the given arguments, if ``condition`` is true.\r\n"], ["\r\n"], ["'${image}' in ${lkr_loc_img}\r\n"], ["Change Image Folder\r\n"], ["${imgpath}\\\\${LKR_UC}\r\n"], ["\r\n"], ["\r\n"], ["\r\n"], ["\r\n"], ["Tries to locate given image from the screen for given time.\r\n"], ["\r\n"], ["${image}\r\n"], ["timeout=${timeout}\r\n"], ["\r\n"], ["\r\n"], ["${loc}\r\n"], ["\r\n"], ["Image \"archiv_vista_warn\" found at (845, 559)\r\n"], ["${loc} = (845, 559)\r\n"], ["\r\n"], ["\r\n"], ["\r\n"], ["Runs the given keyword with the given arguments, if ``condition`` is true.\r\n"], ["\r\n"], ["'${image}' in ${lkr_loc_img}\r\n"], ["Change Image Folder\r\n"], ["${imgpath}\r\n"], ["\r\n"], ["\r\n"], ["\r\n"], ["${loc} = (845, 559)\r\n"], ["\r\n"], ["\r\n"], ["\r\n"], ["\r\n"], ["${loc}\r\n"], ["\r\n"], ["\r\n"], ["Moves the mouse pointer to an absolute coordinates.\r\n"], ["\r\n"], ["${loc}\r\n"], ["\r\n"], ["\r\n"], ["\r\n"], ["\r\n"], ["Clicks with the specified mouse button.\r\n"], ["\r\n"], ["\r\n"], ["\r\n"], ["\r\n"], ["\r\n"], ["\r\n"], ["\r\n"], ["Type text and keyboard keys.\r\n"], ["\r\n"], ["Key.enter\r\n"], ["\r\n"], ["\r\n"], ["\r\n"], ["\r\n"], ["Tries to locate given image from the screen for given time.\r\n"], ["\r\n"], ["aae_toolbar\r\n"], ["timeout=10\r\n"], ["\r\n"], ["Image \"aae_toolbar\" found at (506, 709)\r\n"], ["\r\n"], ["\r\n"], ["\r\n"], ["\r\n"], ["\r\n"], ["\r\n"], ["Returns ``True`` if reference image was found on screen or\r\n"], ["``False`` otherwise. Never fails.\r\n"], ["\r\n"], ["aae_vorbelegung_checked\r\n"], ["\r\n"], ["\r\n"], ["${vorbelegt_checked}\r\n"], ["\r\n"], ["${vorbelegt_checked} = False\r\n"], ["\r\n"], ["\r\n"], ["\r\n"], ["Runs the given keyword with the given arguments, if ``condition`` is true.\r\n"], ["\r\n"], ["${vorbelegt_checked}==${True}\r\n"], ["Click Image\r\n"], ["aae_vorbelegung_checked\r\n"], ["\r\n"], ["\r\n"], ["\r\n"], ["\r\n"], ["\r\n"], ["\r\n"], ["Returns the given values which can then be assigned to a variables.\r\n"], ["\r\n"], ["0\r\n"], ["\r\n"], ["\r\n"], ["${i}\r\n"], ["\r\n"], ["${i} = 0\r\n"], ["\r\n"], ["\r\n"], ["\r\n"], ["\r\n"], ["\r\n"], ["\r\n"], ["${lkr_docs}[${i}]\r\n"], ["${anz_seiten}\r\n"], ["\r\n"], ["\r\n"], ["Makes a variable available everywhere within the scope of the current test.\r\n"], ["\r\n"], ["${dokid}\r\n"], ["${lkr_doc}\r\n"], ["\r\n"], ["${dokid} = 42577586\r\n"], ["\r\n"], ["\r\n"], ["\r\n"], ["\r\n"], ["aae_dokumentennr\r\n"], ["5\r\n"], ["100\r\n"], ["${lkr_doc}\r\n"], ["\r\n"], ["\r\n"], ["\r\n"], ["${image}\r\n"], ["${timeout}\r\n"], ["\r\n"], ["\r\n"], ["${loc}\r\n"], ["\r\n"], ["\r\n"], ["Runs the given keyword with the given arguments, if ``condition`` is true.\r\n"], ["\r\n"], ["'${image}' in ${lkr_loc_img}\r\n"], ["Change Image Folder\r\n"], ["${imgpath}\\\\${LKR_UC}\r\n"], ["\r\n"], ["\r\n"], ["\r\n"], ["\r\n"], ["Tries to locate given image from the screen for given time.\r\n"], ["\r\n"], ["${image}\r\n"], ["timeout=${timeout}\r\n"], ["\r\n"], ["\r\n"], ["${loc}\r\n"], ["\r\n"], ["Image \"aae_dokumentennr\" found at (452, 463)\r\n"], ["${loc} = (452, 463)\r\n"], ["\r\n"], ["\r\n"], ["\r\n"], ["Runs the given keyword with the given arguments, if ``condition`` is true.\r\n"], ["\r\n"], ["'${image}' in ${lkr_loc_img}\r\n"], ["Change Image Folder\r\n"], ["${imgpath}\r\n"], ["\r\n"], ["\r\n"], ["\r\n"], ["${loc} = (452, 463)\r\n"], ["\r\n"], ["\r\n"], ["\r\n"], ["Clicks right of given location by given offset.\r\n"], ["\r\n"], ["${loc}\r\n"], ["${offset}\r\n"], ["\r\n"], ["Clicking 1 time(s) at (552, 463) with left mouse button at interval 0.000000\r\n"], ["\r\n"], ["\r\n"], ["\r\n"], ["Type text and keyboard keys.\r\n"], ["\r\n"], ["@{text}\r\n"], ["\r\n"], ["\r\n"], ["\r\n"], ["\r\n"], ["\r\n"], ["\r\n"], ["Type text and keyboard keys.\r\n"], ["\r\n"], ["Key.enter\r\n"], ["\r\n"], ["\r\n"], ["\r\n"], ["\r\n"], ["\r\n"], ["aae_treffer_1\r\n"], ["timeout=10\r\n"], ["\r\n"], ["\r\n"], ["\r\n"], ["${image}\r\n"], ["${timeout}\r\n"], ["\r\n"], ["\r\n"], ["${loc}\r\n"], ["\r\n"], ["\r\n"], ["Runs the given keyword with the given arguments, if ``condition`` is true.\r\n"], ["\r\n"], ["'${image}' in ${lkr_loc_img}\r\n"], ["Change Image Folder\r\n"], ["${imgpath}\\\\${LKR_UC}\r\n"], ["\r\n"], ["\r\n"], ["\r\n"], ["\r\n"], ["Tries to locate given image from the screen for given time.\r\n"], ["\r\n"], ["${image}\r\n"], ["timeout=${timeout}\r\n"], ["\r\n"], ["\r\n"], ["${loc}\r\n"], ["\r\n"], ["Image \"aae_treffer_1\" found at (870, 745)\r\n"], ["${loc} = (870, 745)\r\n"], ["\r\n"], ["\r\n"], ["\r\n"], ["Runs the given keyword with the given arguments, if ``condition`` is true.\r\n"], ["\r\n"], ["'${image}' in ${lkr_loc_img}\r\n"], ["Change Image Folder\r\n"], ["${imgpath}\r\n"], ["\r\n"], ["\r\n"], ["\r\n"], ["${loc} = (870, 745)\r\n"], ["\r\n"], ["\r\n"], ["\r\n"], ["\r\n"], ["${loc}\r\n"], ["\r\n"], ["\r\n"], ["Moves the mouse pointer to an absolute coordinates.\r\n"], ["\r\n"], ["${loc}\r\n"], ["\r\n"], ["\r\n"], ["\r\n"], ["\r\n"], ["Clicks with the specified mouse button.\r\n"], ["\r\n"], ["\r\n"], ["\r\n"], ["\r\n"], ["\r\n"], ["\r\n"], ["\r\n"], ["Type text and keyboard keys.\r\n"], ["\r\n"], ["Key.Tab\r\n"], ["Key.Tab\r\n"], ["Key.Tab\r\n"], ["Key.Tab\r\n"], ["Key.right\r\n"], ["\r\n"], ["\r\n"], ["\r\n"], ["\r\n"], ["\r\n"], ["aae_zeile_markiert\r\n"], ["timeout=10\r\n"], ["\r\n"], ["\r\n"], ["\r\n"], ["${image}\r\n"], ["${timeout}\r\n"], ["\r\n"], ["\r\n"], ["${loc}\r\n"], ["\r\n"], ["\r\n"], ["Runs the given keyword with the given arguments, if ``condition`` is true.\r\n"], ["\r\n"], ["'${image}' in ${lkr_loc_img}\r\n"], ["Change Image Folder\r\n"], ["${imgpath}\\\\${LKR_UC}\r\n"], ["\r\n"], ["\r\n"], ["\r\n"], ["\r\n"], ["Tries to locate given image from the screen for given time.\r\n"], ["\r\n"], ["${image}\r\n"], ["timeout=${timeout}\r\n"], ["\r\n"], ["\r\n"], ["${loc}\r\n"], ["\r\n"], ["Image \"aae_zeile_markiert\" found at (423, 786)\r\n"], ["${loc} = (423, 786)\r\n"], ["\r\n"], ["\r\n"], ["\r\n"], ["Runs the given keyword with the given arguments, if ``condition`` is true.\r\n"], ["\r\n"], ["'${image}' in ${lkr_loc_img}\r\n"], ["Change Image Folder\r\n"], ["${imgpath}\r\n"], ["\r\n"], ["\r\n"], ["\r\n"], ["${loc} = (423, 786)\r\n"], ["\r\n"], ["\r\n"], ["\r\n"], ["\r\n"], ["${loc}\r\n"], ["\r\n"], ["\r\n"], ["Moves the mouse pointer to an absolute coordinates.\r\n"], ["\r\n"], ["${loc}\r\n"], ["\r\n"], ["\r\n"], ["\r\n"], ["\r\n"], ["Clicks with the specified mouse button.\r\n"], ["\r\n"], ["\r\n"], ["\r\n"], ["\r\n"], ["\r\n"], ["\r\n"], ["\r\n"], ["\r\n"], ["aae_viewer_b\r\n"], ["timeout=10\r\n"], ["\r\n"], ["\r\n"], ["\r\n"], ["${image}\r\n"], ["${timeout}\r\n"], ["\r\n"], ["\r\n"], ["${loc}\r\n"], ["\r\n"], ["\r\n"], ["Runs the given keyword with the given arguments, if ``condition`` is true.\r\n"], ["\r\n"], ["'${image}' in ${lkr_loc_img}\r\n"], ["Change Image Folder\r\n"], ["${imgpath}\\\\${LKR_UC}\r\n"], ["\r\n"], ["\r\n"], ["\r\n"], ["\r\n"], ["Tries to locate given image from the screen for given time.\r\n"], ["\r\n"], ["${image}\r\n"], ["timeout=${timeout}\r\n"], ["\r\n"], ["\r\n"], ["${loc}\r\n"], ["\r\n"], ["Image \"aae_viewer_b\" found at (641, 709)\r\n"], ["${loc} = (641, 709)\r\n"], ["\r\n"], ["\r\n"], ["\r\n"], ["Runs the given keyword with the given arguments, if ``condition`` is true.\r\n"], ["\r\n"], ["'${image}' in ${lkr_loc_img}\r\n"], ["Change Image Folder\r\n"], ["${imgpath}\r\n"], ["\r\n"], ["\r\n"], ["\r\n"], ["${loc} = (641, 709)\r\n"], ["\r\n"], ["\r\n"], ["\r\n"], ["\r\n"], ["${loc}\r\n"], ["\r\n"], ["\r\n"], ["Moves the mouse pointer to an absolute coordinates.\r\n"], ["\r\n"], ["${loc}\r\n"], ["\r\n"], ["\r\n"], ["\r\n"], ["\r\n"], ["Clicks with the specified mouse button.\r\n"], ["\r\n"], ["\r\n"], ["\r\n"], ["\r\n"], ["\r\n"], ["\r\n"], ["\r\n"], ["\r\n"], ["bviewer_opened\r\n"], ["10\r\n"], ["\r\n"], ["\r\n"], ["Runs the given keyword with the given arguments, if ``condition`` is true.\r\n"], ["\r\n"], ["'${image}' in ${lkr_loc_img}\r\n"], ["Change Image Folder\r\n"], ["${imgpath}\\\\${LKR_UC}\r\n"], ["\r\n"], ["\r\n"], ["\r\n"], ["\r\n"], ["Tries to locate given image from the screen for given time.\r\n"], ["\r\n"], ["${image}\r\n"], ["timeout=${timeout}\r\n"], ["\r\n"], ["\r\n"], ["${loc}\r\n"], ["\r\n"], ["Image \"bviewer_opened\" found at (652, 94)\r\n"], ["${loc} = (652, 94)\r\n"], ["\r\n"], ["\r\n"], ["\r\n"], ["Runs the given keyword with the given arguments, if ``condition`` is true.\r\n"], ["\r\n"], ["'${image}' in ${lkr_loc_img}\r\n"], ["Change Image Folder\r\n"], ["${imgpath}\r\n"], ["\r\n"], ["\r\n"], ["\r\n"], ["\r\n"], ["\r\n"], ["\r\n"], ["Pauses the test executed for the given time.\r\n"], ["\r\n"], ["0.5\r\n"], ["\r\n"], ["Slept 500 milliseconds\r\n"], ["\r\n"], ["\r\n"], ["\r\n"], ["\r\n"], ["bviewer_opened\r\n"], ["timeout=10\r\n"], ["\r\n"], ["\r\n"], ["\r\n"], ["${image}\r\n"], ["${timeout}\r\n"], ["\r\n"], ["\r\n"], ["${loc}\r\n"], ["\r\n"], ["\r\n"], ["Runs the given keyword with the given arguments, if ``condition`` is true.\r\n"], ["\r\n"], ["'${image}' in ${lkr_loc_img}\r\n"], ["Change Image Folder\r\n"], ["${imgpath}\\\\${LKR_UC}\r\n"], ["\r\n"], ["\r\n"], ["\r\n"], ["\r\n"], ["Tries to locate given image from the screen for given time.\r\n"], ["\r\n"], ["${image}\r\n"], ["timeout=${timeout}\r\n"], ["\r\n"], ["\r\n"], ["${loc}\r\n"], ["\r\n"], ["Image \"bviewer_opened\" found at (652, 94)\r\n"], ["${loc} = (652, 94)\r\n"], ["\r\n"], ["\r\n"], ["\r\n"], ["Runs the given keyword with the given arguments, if ``condition`` is true.\r\n"], ["\r\n"], ["'${image}' in ${lkr_loc_img}\r\n"], ["Change Image Folder\r\n"], ["${imgpath}\r\n"], ["\r\n"], ["\r\n"], ["\r\n"], ["${loc} = (652, 94)\r\n"], ["\r\n"], ["\r\n"], ["\r\n"], ["\r\n"], ["${loc}\r\n"], ["\r\n"], ["\r\n"], ["Moves the mouse pointer to an absolute coordinates.\r\n"], ["\r\n"], ["${loc}\r\n"], ["\r\n"], ["\r\n"], ["\r\n"], ["\r\n"], ["Clicks with the specified mouse button.\r\n"], ["\r\n"], ["\r\n"], ["\r\n"], ["\r\n"], ["\r\n"], ["\r\n"], ["\r\n"], ["Pauses the test executed for the given time.\r\n"], ["\r\n"], ["0.5\r\n"], ["\r\n"], ["Slept 500 milliseconds\r\n"], ["\r\n"], ["\r\n"], ["\r\n"], ["Press given keyboard keys.\r\n"], ["\r\n"], ["Key.Win\r\n"], ["Key.Up\r\n"], ["\r\n"], ["\r\n"], ["\r\n"], ["\r\n"], ["Returns the given values which can then be assigned to a variables.\r\n"], ["\r\n"], ["ARCHIVETOOL_DOKU_${LKR_UC}_${anz_seiten}\r\n"], ["\r\n"], ["\r\n"], ["${search_image}\r\n"], ["\r\n"], ["${search_image} = ARCHIVETOOL_DOKU_SG_30\r\n"], ["\r\n"], ["\r\n"], ["\r\n"], ["\r\n"], ["bviewer_opened\r\n"], ["timeout=10\r\n"], ["\r\n"], ["\r\n"], ["\r\n"], ["${image}\r\n"], ["${timeout}\r\n"], ["\r\n"], ["\r\n"], ["${loc}\r\n"], ["\r\n"], ["\r\n"], ["Runs the given keyword with the given arguments, if ``condition`` is true.\r\n"], ["\r\n"], ["'${image}' in ${lkr_loc_img}\r\n"], ["Change Image Folder\r\n"], ["${imgpath}\\\\${LKR_UC}\r\n"], ["\r\n"], ["\r\n"], ["\r\n"], ["\r\n"], ["Tries to locate given image from the screen for given time.\r\n"], ["\r\n"], ["${image}\r\n"], ["timeout=${timeout}\r\n"], ["\r\n"], ["\r\n"], ["${loc}\r\n"], ["\r\n"], ["Image \"bviewer_opened\" found at (11, 85)\r\n"], ["${loc} = (11, 85)\r\n"], ["\r\n"], ["\r\n"], ["\r\n"], ["Runs the given keyword with the given arguments, if ``condition`` is true.\r\n"], ["\r\n"], ["'${image}' in ${lkr_loc_img}\r\n"], ["Change Image Folder\r\n"], ["${imgpath}\r\n"], ["\r\n"], ["\r\n"], ["\r\n"], ["${loc} = (11, 85)\r\n"], ["\r\n"], ["\r\n"], ["\r\n"], ["\r\n"], ["${loc}\r\n"], ["\r\n"], ["\r\n"], ["Moves the mouse pointer to an absolute coordinates.\r\n"], ["\r\n"], ["${loc}\r\n"], ["\r\n"], ["\r\n"], ["\r\n"], ["\r\n"], ["Clicks with the specified mouse button.\r\n"], ["\r\n"], ["\r\n"], ["\r\n"], ["\r\n"], ["\r\n"], ["\r\n"], ["\r\n"], ["Tries to locate given image from the screen for given time.\r\n"], ["\r\n"], ["${search_image}\r\n"], ["timeout=90\r\n"], ["\r\n"], ["Image \"ARCHIVETOOL_DOKU_SG_30\" found at (215, 284)\r\n"], ["\r\n"], ["\r\n"], ["\r\n"], ["Press given keyboard keys.\r\n"], ["\r\n"], ["Key.Alt\r\n"], ["Key.F4\r\n"], ["\r\n"], ["\r\n"], ["\r\n"], ["\r\n"], ["\r\n"], ["\r\n"], ["\r\n"], ["aae_suche_clear\r\n"], ["timeout=5\r\n"], ["\r\n"], ["\r\n"], ["\r\n"], ["${image}\r\n"], ["${timeout}\r\n"], ["\r\n"], ["\r\n"], ["${loc}\r\n"], ["\r\n"], ["\r\n"], ["Runs the given keyword with the given arguments, if ``condition`` is true.\r\n"], ["\r\n"], ["'${image}' in ${lkr_loc_img}\r\n"], ["Change Image Folder\r\n"], ["${imgpath}\\\\${LKR_UC}\r\n"], ["\r\n"], ["\r\n"], ["\r\n"], ["\r\n"], ["Tries to locate given image from the screen for given time.\r\n"], ["\r\n"], ["${image}\r\n"], ["timeout=${timeout}\r\n"], ["\r\n"], ["\r\n"], ["${loc}\r\n"], ["\r\n"], ["Image \"aae_suche_clear\" found at (404, 709)\r\n"], ["${loc} = (404, 709)\r\n"], ["\r\n"], ["\r\n"], ["\r\n"], ["Runs the given keyword with the given arguments, if ``condition`` is true.\r\n"], ["\r\n"], ["'${image}' in ${lkr_loc_img}\r\n"], ["Change Image Folder\r\n"], ["${imgpath}\r\n"], ["\r\n"], ["\r\n"], ["\r\n"], ["${loc} = (404, 709)\r\n"], ["\r\n"], ["\r\n"], ["\r\n"], ["\r\n"], ["${loc}\r\n"], ["\r\n"], ["\r\n"], ["Moves the mouse pointer to an absolute coordinates.\r\n"], ["\r\n"], ["${loc}\r\n"], ["\r\n"], ["\r\n"], ["\r\n"], ["\r\n"], ["Clicks with the specified mouse button.\r\n"], ["\r\n"], ["\r\n"], ["\r\n"], ["\r\n"], ["\r\n"], ["\r\n"], ["\r\n"], ["\r\n"], ["aae_dokumentennr_bereit\r\n"], ["timeout=5\r\n"], ["\r\n"], ["\r\n"], ["Runs the given keyword with the given arguments, if ``condition`` is true.\r\n"], ["\r\n"], ["'${image}' in ${lkr_loc_img}\r\n"], ["Change Image Folder\r\n"], ["${imgpath}\\\\${LKR_UC}\r\n"], ["\r\n"], ["\r\n"], ["\r\n"], ["\r\n"], ["Tries to locate given image from the screen for given time.\r\n"], ["\r\n"], ["${image}\r\n"], ["timeout=${timeout}\r\n"], ["\r\n"], ["\r\n"], ["${loc}\r\n"], ["\r\n"], ["Image \"aae_dokumentennr_bereit\" found at (569, 464)\r\n"], ["${loc} = (569, 464)\r\n"], ["\r\n"], ["\r\n"], ["\r\n"], ["Runs the given keyword with the given arguments, if ``condition`` is true.\r\n"], ["\r\n"], ["'${image}' in ${lkr_loc_img}\r\n"], ["Change Image Folder\r\n"], ["${imgpath}\r\n"], ["\r\n"], ["\r\n"], ["\r\n"], ["\r\n"], ["\r\n"], ["\r\n"], ["Evaluates the given expression in Python and returns the result.\r\n"], ["\r\n"], ["${i} + 1\r\n"], ["\r\n"], ["\r\n"], ["${i}\r\n"], ["\r\n"], ["${i} = 1\r\n"], ["\r\n"], ["\r\n"], ["\r\n"], ["\r\n"], ["\r\n"], ["\r\n"], ["\r\n"], ["${lkr_docs}[${i}]\r\n"], ["${anz_seiten}\r\n"], ["\r\n"], ["\r\n"], ["Makes a variable available everywhere within the scope of the current test.\r\n"], ["\r\n"], ["${dokid}\r\n"], ["${lkr_doc}\r\n"], ["\r\n"], ["${dokid} = 42577888\r\n"], ["\r\n"], ["\r\n"], ["\r\n"], ["\r\n"], ["aae_dokumentennr\r\n"], ["5\r\n"], ["100\r\n"], ["${lkr_doc}\r\n"], ["\r\n"], ["\r\n"], ["\r\n"], ["${image}\r\n"], ["${timeout}\r\n"], ["\r\n"], ["\r\n"], ["${loc}\r\n"], ["\r\n"], ["\r\n"], ["Runs the given keyword with the given arguments, if ``condition`` is true.\r\n"], ["\r\n"], ["'${image}' in ${lkr_loc_img}\r\n"], ["Change Image Folder\r\n"], ["${imgpath}\\\\${LKR_UC}\r\n"], ["\r\n"], ["\r\n"], ["\r\n"], ["\r\n"], ["Tries to locate given image from the screen for given time.\r\n"], ["\r\n"], ["${image}\r\n"], ["timeout=${timeout}\r\n"], ["\r\n"], ["\r\n"], ["${loc}\r\n"], ["\r\n"], ["Image \"aae_dokumentennr\" found at (452, 463)\r\n"], ["${loc} = (452, 463)\r\n"], ["\r\n"], ["\r\n"], ["\r\n"], ["Runs the given keyword with the given arguments, if ``condition`` is true.\r\n"], ["\r\n"], ["'${image}' in ${lkr_loc_img}\r\n"], ["Change Image Folder\r\n"], ["${imgpath}\r\n"], ["\r\n"], ["\r\n"], ["\r\n"], ["${loc} = (452, 463)\r\n"], ["\r\n"], ["\r\n"], ["\r\n"], ["Clicks right of given location by given offset.\r\n"], ["\r\n"], ["${loc}\r\n"], ["${offset}\r\n"], ["\r\n"], ["Clicking 1 time(s) at (552, 463) with left mouse button at interval 0.000000\r\n"], ["\r\n"], ["\r\n"], ["\r\n"], ["Type text and keyboard keys.\r\n"], ["\r\n"], ["@{text}\r\n"], ["\r\n"], ["\r\n"], ["\r\n"], ["\r\n"], ["\r\n"], ["\r\n"], ["Type text and keyboard keys.\r\n"], ["\r\n"], ["Key.enter\r\n"], ["\r\n"], ["\r\n"], ["\r\n"], ["\r\n"], ["\r\n"], ["aae_treffer_1\r\n"], ["timeout=10\r\n"], ["\r\n"], ["\r\n"], ["\r\n"], ["${image}\r\n"], ["${timeout}\r\n"], ["\r\n"], ["\r\n"], ["${loc}\r\n"], ["\r\n"], ["\r\n"], ["Runs the given keyword with the given arguments, if ``condition`` is true.\r\n"], ["\r\n"], ["'${image}' in ${lkr_loc_img}\r\n"], ["Change Image Folder\r\n"], ["${imgpath}\\\\${LKR_UC}\r\n"], ["\r\n"], ["\r\n"], ["\r\n"], ["\r\n"], ["Tries to locate given image from the screen for given time.\r\n"], ["\r\n"], ["${image}\r\n"], ["timeout=${timeout}\r\n"], ["\r\n"], ["\r\n"], ["${loc}\r\n"], ["\r\n"], ["Image \"aae_treffer_1\" found at (870, 745)\r\n"], ["${loc} = (870, 745)\r\n"], ["\r\n"], ["\r\n"], ["\r\n"], ["Runs the given keyword with the given arguments, if ``condition`` is true.\r\n"], ["\r\n"], ["'${image}' in ${lkr_loc_img}\r\n"], ["Change Image Folder\r\n"], ["${imgpath}\r\n"], ["\r\n"], ["\r\n"], ["\r\n"], ["${loc} = (870, 745)\r\n"], ["\r\n"], ["\r\n"], ["\r\n"], ["\r\n"], ["${loc}\r\n"], ["\r\n"], ["\r\n"], ["Moves the mouse pointer to an absolute coordinates.\r\n"], ["\r\n"], ["${loc}\r\n"], ["\r\n"], ["\r\n"], ["\r\n"], ["\r\n"], ["Clicks with the specified mouse button.\r\n"], ["\r\n"], ["\r\n"], ["\r\n"], ["\r\n"], ["\r\n"], ["\r\n"], ["\r\n"], ["Type text and keyboard keys.\r\n"], ["\r\n"], ["Key.Tab\r\n"], ["Key.Tab\r\n"], ["Key.Tab\r\n"], ["Key.Tab\r\n"], ["Key.right\r\n"], ["\r\n"], ["\r\n"], ["\r\n"], ["\r\n"], ["\r\n"], ["aae_zeile_markiert\r\n"], ["timeout=10\r\n"], ["\r\n"], ["\r\n"], ["\r\n"], ["${image}\r\n"], ["${timeout}\r\n"], ["\r\n"], ["\r\n"], ["${loc}\r\n"], ["\r\n"], ["\r\n"], ["Runs the given keyword with the given arguments, if ``condition`` is true.\r\n"], ["\r\n"], ["'${image}' in ${lkr_loc_img}\r\n"], ["Change Image Folder\r\n"], ["${imgpath}\\\\${LKR_UC}\r\n"], ["\r\n"], ["\r\n"], ["\r\n"], ["\r\n"], ["Tries to locate given image from the screen for given time.\r\n"], ["\r\n"], ["${image}\r\n"], ["timeout=${timeout}\r\n"], ["\r\n"], ["\r\n"], ["${loc}\r\n"], ["\r\n"], ["Image \"aae_zeile_markiert\" found at (423, 786)\r\n"], ["${loc} = (423, 786)\r\n"], ["\r\n"], ["\r\n"], ["\r\n"], ["Runs the given keyword with the given arguments, if ``condition`` is true.\r\n"], ["\r\n"], ["'${image}' in ${lkr_loc_img}\r\n"], ["Change Image Folder\r\n"], ["${imgpath}\r\n"], ["\r\n"], ["\r\n"], ["\r\n"], ["${loc} = (423, 786)\r\n"], ["\r\n"], ["\r\n"], ["\r\n"], ["\r\n"], ["${loc}\r\n"], ["\r\n"], ["\r\n"], ["Moves the mouse pointer to an absolute coordinates.\r\n"], ["\r\n"], ["${loc}\r\n"], ["\r\n"], ["\r\n"], ["\r\n"], ["\r\n"], ["Clicks with the specified mouse button.\r\n"], ["\r\n"], ["\r\n"], ["\r\n"], ["\r\n"], ["\r\n"], ["\r\n"], ["\r\n"], ["\r\n"], ["aae_viewer_b\r\n"], ["timeout=10\r\n"], ["\r\n"], ["\r\n"], ["\r\n"], ["${image}\r\n"], ["${timeout}\r\n"], ["\r\n"], ["\r\n"], ["${loc}\r\n"], ["\r\n"], ["\r\n"], ["Runs the given keyword with the given arguments, if ``condition`` is true.\r\n"], ["\r\n"], ["'${image}' in ${lkr_loc_img}\r\n"], ["Change Image Folder\r\n"], ["${imgpath}\\\\${LKR_UC}\r\n"], ["\r\n"], ["\r\n"], ["\r\n"], ["\r\n"], ["Tries to locate given image from the screen for given time.\r\n"], ["\r\n"], ["${image}\r\n"], ["timeout=${timeout}\r\n"], ["\r\n"], ["\r\n"], ["${loc}\r\n"], ["\r\n"], ["Image \"aae_viewer_b\" found at (641, 709)\r\n"], ["${loc} = (641, 709)\r\n"], ["\r\n"], ["\r\n"], ["\r\n"], ["Runs the given keyword with the given arguments, if ``condition`` is true.\r\n"], ["\r\n"], ["'${image}' in ${lkr_loc_img}\r\n"], ["Change Image Folder\r\n"], ["${imgpath}\r\n"], ["\r\n"], ["\r\n"], ["\r\n"], ["${loc} = (641, 709)\r\n"], ["\r\n"], ["\r\n"], ["\r\n"], ["\r\n"], ["${loc}\r\n"], ["\r\n"], ["\r\n"], ["Moves the mouse pointer to an absolute coordinates.\r\n"], ["\r\n"], ["${loc}\r\n"], ["\r\n"], ["\r\n"], ["\r\n"], ["\r\n"], ["Clicks with the specified mouse button.\r\n"], ["\r\n"], ["\r\n"], ["\r\n"], ["\r\n"], ["\r\n"], ["\r\n"], ["\r\n"], ["\r\n"], ["bviewer_opened\r\n"], ["10\r\n"], ["\r\n"], ["\r\n"], ["Runs the given keyword with the given arguments, if ``condition`` is true.\r\n"], ["\r\n"], ["'${image}' in ${lkr_loc_img}\r\n"], ["Change Image Folder\r\n"], ["${imgpath}\\\\${LKR_UC}\r\n"], ["\r\n"], ["\r\n"], ["\r\n"], ["\r\n"], ["Tries to locate given image from the screen for given time.\r\n"], ["\r\n"], ["${image}\r\n"], ["timeout=${timeout}\r\n"], ["\r\n"], ["\r\n"], ["${loc}\r\n"], ["\r\n"], ["Image \"bviewer_opened\" found at (652, 94)\r\n"], ["${loc} = (652, 94)\r\n"], ["\r\n"], ["\r\n"], ["\r\n"], ["Runs the given keyword with the given arguments, if ``condition`` is true.\r\n"], ["\r\n"], ["'${image}' in ${lkr_loc_img}\r\n"], ["Change Image Folder\r\n"], ["${imgpath}\r\n"], ["\r\n"], ["\r\n"], ["\r\n"], ["\r\n"], ["\r\n"], ["\r\n"], ["Pauses the test executed for the given time.\r\n"], ["\r\n"], ["0.5\r\n"], ["\r\n"], ["Slept 500 milliseconds\r\n"], ["\r\n"], ["\r\n"], ["\r\n"], ["\r\n"], ["bviewer_opened\r\n"], ["timeout=10\r\n"], ["\r\n"], ["\r\n"], ["\r\n"], ["${image}\r\n"], ["${timeout}\r\n"], ["\r\n"], ["\r\n"], ["${loc}\r\n"], ["\r\n"], ["\r\n"], ["Runs the given keyword with the given arguments, if ``condition`` is true.\r\n"], ["\r\n"], ["'${image}' in ${lkr_loc_img}\r\n"], ["Change Image Folder\r\n"], ["${imgpath}\\\\${LKR_UC}\r\n"], ["\r\n"], ["\r\n"], ["\r\n"], ["\r\n"], ["Tries to locate given image from the screen for given time.\r\n"], ["\r\n"], ["${image}\r\n"], ["timeout=${timeout}\r\n"], ["\r\n"], ["\r\n"], ["${loc}\r\n"], ["\r\n"], ["Image \"bviewer_opened\" found at (652, 94)\r\n"], ["${loc} = (652, 94)\r\n"], ["\r\n"], ["\r\n"], ["\r\n"], ["Runs the given keyword with the given arguments, if ``condition`` is true.\r\n"], ["\r\n"], ["'${image}' in ${lkr_loc_img}\r\n"], ["Change Image Folder\r\n"], ["${imgpath}\r\n"], ["\r\n"], ["\r\n"], ["\r\n"], ["${loc} = (652, 94)\r\n"], ["\r\n"], ["\r\n"], ["\r\n"], ["\r\n"], ["${loc}\r\n"], ["\r\n"], ["\r\n"], ["Moves the mouse pointer to an absolute coordinates.\r\n"], ["\r\n"], ["${loc}\r\n"], ["\r\n"], ["\r\n"], ["\r\n"], ["\r\n"], ["Clicks with the specified mouse button.\r\n"], ["\r\n"], ["\r\n"], ["\r\n"], ["\r\n"], ["\r\n"], ["\r\n"], ["\r\n"], ["Pauses the test executed for the given time.\r\n"], ["\r\n"], ["0.5\r\n"], ["\r\n"], ["Slept 500 milliseconds\r\n"], ["\r\n"], ["\r\n"], ["\r\n"], ["Press given keyboard keys.\r\n"], ["\r\n"], ["Key.Win\r\n"], ["Key.Up\r\n"], ["\r\n"], ["\r\n"], ["\r\n"], ["\r\n"], ["Returns the given values which can then be assigned to a variables.\r\n"], ["\r\n"], ["ARCHIVETOOL_DOKU_${LKR_UC}_${anz_seiten}\r\n"], ["\r\n"], ["\r\n"], ["${search_image}\r\n"], ["\r\n"], ["${search_image} = ARCHIVETOOL_DOKU_SG_100\r\n"], ["\r\n"], ["\r\n"], ["\r\n"], ["\r\n"], ["bviewer_opened\r\n"], ["timeout=10\r\n"], ["\r\n"], ["\r\n"], ["\r\n"], ["${image}\r\n"], ["${timeout}\r\n"], ["\r\n"], ["\r\n"], ["${loc}\r\n"], ["\r\n"], ["\r\n"], ["Runs the given keyword with the given arguments, if ``condition`` is true.\r\n"], ["\r\n"], ["'${image}' in ${lkr_loc_img}\r\n"], ["Change Image Folder\r\n"], ["${imgpath}\\\\${LKR_UC}\r\n"], ["\r\n"], ["\r\n"], ["\r\n"], ["\r\n"], ["Tries to locate given image from the screen for given time.\r\n"], ["\r\n"], ["${image}\r\n"], ["timeout=${timeout}\r\n"], ["\r\n"], ["\r\n"], ["${loc}\r\n"], ["\r\n"], ["Image \"bviewer_opened\" found at (11, 85)\r\n"], ["${loc} = (11, 85)\r\n"], ["\r\n"], ["\r\n"], ["\r\n"], ["Runs the given keyword with the given arguments, if ``condition`` is true.\r\n"], ["\r\n"], ["'${image}' in ${lkr_loc_img}\r\n"], ["Change Image Folder\r\n"], ["${imgpath}\r\n"], ["\r\n"], ["\r\n"], ["\r\n"], ["${loc} = (11, 85)\r\n"], ["\r\n"], ["\r\n"], ["\r\n"], ["\r\n"], ["${loc}\r\n"], ["\r\n"], ["\r\n"], ["Moves the mouse pointer to an absolute coordinates.\r\n"], ["\r\n"], ["${loc}\r\n"], ["\r\n"], ["\r\n"], ["\r\n"], ["\r\n"], ["Clicks with the specified mouse button.\r\n"], ["\r\n"], ["\r\n"], ["\r\n"], ["\r\n"], ["\r\n"], ["\r\n"], ["\r\n"], ["Tries to locate given image from the screen for given time.\r\n"], ["\r\n"], ["${search_image}\r\n"], ["timeout=90\r\n"], ["\r\n"], ["Image \"ARCHIVETOOL_DOKU_SG_100\" found at (174, 204)\r\n"], ["\r\n"], ["\r\n"], ["\r\n"], ["Press given keyboard keys.\r\n"], ["\r\n"], ["Key.Alt\r\n"], ["Key.F4\r\n"], ["\r\n"], ["\r\n"], ["\r\n"], ["\r\n"], ["\r\n"], ["\r\n"], ["\r\n"], ["aae_suche_clear\r\n"], ["timeout=5\r\n"], ["\r\n"], ["\r\n"], ["\r\n"], ["${image}\r\n"], ["${timeout}\r\n"], ["\r\n"], ["\r\n"], ["${loc}\r\n"], ["\r\n"], ["\r\n"], ["Runs the given keyword with the given arguments, if ``condition`` is true.\r\n"], ["\r\n"], ["'${image}' in ${lkr_loc_img}\r\n"], ["Change Image Folder\r\n"], ["${imgpath}\\\\${LKR_UC}\r\n"], ["\r\n"], ["\r\n"], ["\r\n"], ["\r\n"], ["Tries to locate given image from the screen for given time.\r\n"], ["\r\n"], ["${image}\r\n"], ["timeout=${timeout}\r\n"], ["\r\n"], ["\r\n"], ["${loc}\r\n"], ["\r\n"], ["Image \"aae_suche_clear\" found at (404, 709)\r\n"], ["${loc} = (404, 709)\r\n"], ["\r\n"], ["\r\n"], ["\r\n"], ["Runs the given keyword with the given arguments, if ``condition`` is true.\r\n"], ["\r\n"], ["'${image}' in ${lkr_loc_img}\r\n"], ["Change Image Folder\r\n"], ["${imgpath}\r\n"], ["\r\n"], ["\r\n"], ["\r\n"], ["${loc} = (404, 709)\r\n"], ["\r\n"], ["\r\n"], ["\r\n"], ["\r\n"], ["${loc}\r\n"], ["\r\n"], ["\r\n"], ["Moves the mouse pointer to an absolute coordinates.\r\n"], ["\r\n"], ["${loc}\r\n"], ["\r\n"], ["\r\n"], ["\r\n"], ["\r\n"], ["Clicks with the specified mouse button.\r\n"], ["\r\n"], ["\r\n"], ["\r\n"], ["\r\n"], ["\r\n"], ["\r\n"], ["\r\n"], ["\r\n"], ["aae_dokumentennr_bereit\r\n"], ["timeout=5\r\n"], ["\r\n"], ["\r\n"], ["Runs the given keyword with the given arguments, if ``condition`` is true.\r\n"], ["\r\n"], ["'${image}' in ${lkr_loc_img}\r\n"], ["Change Image Folder\r\n"], ["${imgpath}\\\\${LKR_UC}\r\n"], ["\r\n"], ["\r\n"], ["\r\n"], ["\r\n"], ["Tries to locate given image from the screen for given time.\r\n"], ["\r\n"], ["${image}\r\n"], ["timeout=${timeout}\r\n"], ["\r\n"], ["\r\n"], ["${loc}\r\n"], ["\r\n"], ["Image \"aae_dokumentennr_bereit\" found at (569, 464)\r\n"], ["${loc} = (569, 464)\r\n"], ["\r\n"], ["\r\n"], ["\r\n"], ["Runs the given keyword with the given arguments, if ``condition`` is true.\r\n"], ["\r\n"], ["'${image}' in ${lkr_loc_img}\r\n"], ["Change Image Folder\r\n"], ["${imgpath}\r\n"], ["\r\n"], ["\r\n"], ["\r\n"], ["\r\n"], ["\r\n"], ["\r\n"], ["Evaluates the given expression in Python and returns the result.\r\n"], ["\r\n"], ["${i} + 1\r\n"], ["\r\n"], ["\r\n"], ["${i}\r\n"], ["\r\n"], ["${i} = 2\r\n"], ["\r\n"], ["\r\n"], ["\r\n"], ["\r\n"], ["\r\n"], ["\r\n"], ["\r\n"], ["${lkr_docs}[${i}]\r\n"], ["${anz_seiten}\r\n"], ["\r\n"], ["\r\n"], ["Makes a variable available everywhere within the scope of the current test.\r\n"], ["\r\n"], ["${dokid}\r\n"], ["${lkr_doc}\r\n"], ["\r\n"], ["${dokid} = 42577943\r\n"], ["\r\n"], ["\r\n"], ["\r\n"], ["\r\n"], ["aae_dokumentennr\r\n"], ["5\r\n"], ["100\r\n"], ["${lkr_doc}\r\n"], ["\r\n"], ["\r\n"], ["\r\n"], ["${image}\r\n"], ["${timeout}\r\n"], ["\r\n"], ["\r\n"], ["${loc}\r\n"], ["\r\n"], ["\r\n"], ["Runs the given keyword with the given arguments, if ``condition`` is true.\r\n"], ["\r\n"], ["'${image}' in ${lkr_loc_img}\r\n"], ["Change Image Folder\r\n"], ["${imgpath}\\\\${LKR_UC}\r\n"], ["\r\n"], ["\r\n"], ["\r\n"], ["\r\n"], ["Tries to locate given image from the screen for given time.\r\n"], ["\r\n"], ["${image}\r\n"], ["timeout=${timeout}\r\n"], ["\r\n"], ["\r\n"], ["${loc}\r\n"], ["\r\n"], ["Image \"aae_dokumentennr\" found at (452, 463)\r\n"], ["${loc} = (452, 463)\r\n"], ["\r\n"], ["\r\n"], ["\r\n"], ["Runs the given keyword with the given arguments, if ``condition`` is true.\r\n"], ["\r\n"], ["'${image}' in ${lkr_loc_img}\r\n"], ["Change Image Folder\r\n"], ["${imgpath}\r\n"], ["\r\n"], ["\r\n"], ["\r\n"], ["${loc} = (452, 463)\r\n"], ["\r\n"], ["\r\n"], ["\r\n"], ["Clicks right of given location by given offset.\r\n"], ["\r\n"], ["${loc}\r\n"], ["${offset}\r\n"], ["\r\n"], ["Clicking 1 time(s) at (552, 463) with left mouse button at interval 0.000000\r\n"], ["\r\n"], ["\r\n"], ["\r\n"], ["Type text and keyboard keys.\r\n"], ["\r\n"], ["@{text}\r\n"], ["\r\n"], ["\r\n"], ["\r\n"], ["\r\n"], ["\r\n"], ["\r\n"], ["Type text and keyboard keys.\r\n"], ["\r\n"], ["Key.enter\r\n"], ["\r\n"], ["\r\n"], ["\r\n"], ["\r\n"], ["\r\n"], ["aae_treffer_1\r\n"], ["timeout=10\r\n"], ["\r\n"], ["\r\n"], ["\r\n"], ["${image}\r\n"], ["${timeout}\r\n"], ["\r\n"], ["\r\n"], ["${loc}\r\n"], ["\r\n"], ["\r\n"], ["Runs the given keyword with the given arguments, if ``condition`` is true.\r\n"], ["\r\n"], ["'${image}' in ${lkr_loc_img}\r\n"], ["Change Image Folder\r\n"], ["${imgpath}\\\\${LKR_UC}\r\n"], ["\r\n"], ["\r\n"], ["\r\n"], ["\r\n"], ["Tries to locate given image from the screen for given time.\r\n"], ["\r\n"], ["${image}\r\n"], ["timeout=${timeout}\r\n"], ["\r\n"], ["\r\n"], ["${loc}\r\n"], ["\r\n"], ["Image \"aae_treffer_1\" found at (870, 745)\r\n"], ["${loc} = (870, 745)\r\n"], ["\r\n"], ["\r\n"], ["\r\n"], ["Runs the given keyword with the given arguments, if ``condition`` is true.\r\n"], ["\r\n"], ["'${image}' in ${lkr_loc_img}\r\n"], ["Change Image Folder\r\n"], ["${imgpath}\r\n"], ["\r\n"], ["\r\n"], ["\r\n"], ["${loc} = (870, 745)\r\n"], ["\r\n"], ["\r\n"], ["\r\n"], ["\r\n"], ["${loc}\r\n"], ["\r\n"], ["\r\n"], ["Moves the mouse pointer to an absolute coordinates.\r\n"], ["\r\n"], ["${loc}\r\n"], ["\r\n"], ["\r\n"], ["\r\n"], ["\r\n"], ["Clicks with the specified mouse button.\r\n"], ["\r\n"], ["\r\n"], ["\r\n"], ["\r\n"], ["\r\n"], ["\r\n"], ["\r\n"], ["Type text and keyboard keys.\r\n"], ["\r\n"], ["Key.Tab\r\n"], ["Key.Tab\r\n"], ["Key.Tab\r\n"], ["Key.Tab\r\n"], ["Key.right\r\n"], ["\r\n"], ["\r\n"], ["\r\n"], ["\r\n"], ["\r\n"], ["aae_zeile_markiert\r\n"], ["timeout=10\r\n"], ["\r\n"], ["\r\n"], ["\r\n"], ["${image}\r\n"], ["${timeout}\r\n"], ["\r\n"], ["\r\n"], ["${loc}\r\n"], ["\r\n"], ["\r\n"], ["Runs the given keyword with the given arguments, if ``condition`` is true.\r\n"], ["\r\n"], ["'${image}' in ${lkr_loc_img}\r\n"], ["Change Image Folder\r\n"], ["${imgpath}\\\\${LKR_UC}\r\n"], ["\r\n"], ["\r\n"], ["\r\n"], ["\r\n"], ["Tries to locate given image from the screen for given time.\r\n"], ["\r\n"], ["${image}\r\n"], ["timeout=${timeout}\r\n"], ["\r\n"], ["\r\n"], ["${loc}\r\n"], ["\r\n"], ["Image \"aae_zeile_markiert\" found at (423, 786)\r\n"], ["${loc} = (423, 786)\r\n"], ["\r\n"], ["\r\n"], ["\r\n"], ["Runs the given keyword with the given arguments, if ``condition`` is true.\r\n"], ["\r\n"], ["'${image}' in ${lkr_loc_img}\r\n"], ["Change Image Folder\r\n"], ["${imgpath}\r\n"], ["\r\n"], ["\r\n"], ["\r\n"], ["${loc} = (423, 786)\r\n"], ["\r\n"], ["\r\n"], ["\r\n"], ["\r\n"], ["${loc}\r\n"], ["\r\n"], ["\r\n"], ["Moves the mouse pointer to an absolute coordinates.\r\n"], ["\r\n"], ["${loc}\r\n"], ["\r\n"], ["\r\n"], ["\r\n"], ["\r\n"], ["Clicks with the specified mouse button.\r\n"], ["\r\n"], ["\r\n"], ["\r\n"], ["\r\n"], ["\r\n"], ["\r\n"], ["\r\n"], ["\r\n"], ["aae_viewer_b\r\n"], ["timeout=10\r\n"], ["\r\n"], ["\r\n"], ["\r\n"], ["${image}\r\n"], ["${timeout}\r\n"], ["\r\n"], ["\r\n"], ["${loc}\r\n"], ["\r\n"], ["\r\n"], ["Runs the given keyword with the given arguments, if ``condition`` is true.\r\n"], ["\r\n"], ["'${image}' in ${lkr_loc_img}\r\n"], ["Change Image Folder\r\n"], ["${imgpath}\\\\${LKR_UC}\r\n"], ["\r\n"], ["\r\n"], ["\r\n"], ["\r\n"], ["Tries to locate given image from the screen for given time.\r\n"], ["\r\n"], ["${image}\r\n"], ["timeout=${timeout}\r\n"], ["\r\n"], ["\r\n"], ["${loc}\r\n"], ["\r\n"], ["Image \"aae_viewer_b\" found at (641, 709)\r\n"], ["${loc} = (641, 709)\r\n"], ["\r\n"], ["\r\n"], ["\r\n"], ["Runs the given keyword with the given arguments, if ``condition`` is true.\r\n"], ["\r\n"], ["'${image}' in ${lkr_loc_img}\r\n"], ["Change Image Folder\r\n"], ["${imgpath}\r\n"], ["\r\n"], ["\r\n"], ["\r\n"], ["${loc} = (641, 709)\r\n"], ["\r\n"], ["\r\n"], ["\r\n"], ["\r\n"], ["${loc}\r\n"], ["\r\n"], ["\r\n"], ["Moves the mouse pointer to an absolute coordinates.\r\n"], ["\r\n"], ["${loc}\r\n"], ["\r\n"], ["\r\n"], ["\r\n"], ["\r\n"], ["Clicks with the specified mouse button.\r\n"], ["\r\n"], ["\r\n"], ["\r\n"], ["\r\n"], ["\r\n"], ["\r\n"], ["\r\n"], ["\r\n"], ["bviewer_opened\r\n"], ["10\r\n"], ["\r\n"], ["\r\n"], ["Runs the given keyword with the given arguments, if ``condition`` is true.\r\n"], ["\r\n"], ["'${image}' in ${lkr_loc_img}\r\n"], ["Change Image Folder\r\n"], ["${imgpath}\\\\${LKR_UC}\r\n"], ["\r\n"], ["\r\n"], ["\r\n"], ["\r\n"], ["Tries to locate given image from the screen for given time.\r\n"], ["\r\n"], ["${image}\r\n"], ["timeout=${timeout}\r\n"], ["\r\n"], ["\r\n"], ["${loc}\r\n"], ["\r\n"], ["Image \"bviewer_opened\" found at (652, 94)\r\n"], ["${loc} = (652, 94)\r\n"], ["\r\n"], ["\r\n"], ["\r\n"], ["Runs the given keyword with the given arguments, if ``condition`` is true.\r\n"], ["\r\n"], ["'${image}' in ${lkr_loc_img}\r\n"], ["Change Image Folder\r\n"], ["${imgpath}\r\n"], ["\r\n"], ["\r\n"], ["\r\n"], ["\r\n"], ["\r\n"], ["\r\n"], ["Pauses the test executed for the given time.\r\n"], ["\r\n"], ["0.5\r\n"], ["\r\n"], ["Slept 500 milliseconds\r\n"], ["\r\n"], ["\r\n"], ["\r\n"], ["\r\n"], ["bviewer_opened\r\n"], ["timeout=10\r\n"], ["\r\n"], ["\r\n"], ["\r\n"], ["${image}\r\n"], ["${timeout}\r\n"], ["\r\n"], ["\r\n"], ["${loc}\r\n"], ["\r\n"], ["\r\n"], ["Runs the given keyword with the given arguments, if ``condition`` is true.\r\n"], ["\r\n"], ["'${image}' in ${lkr_loc_img}\r\n"], ["Change Image Folder\r\n"], ["${imgpath}\\\\${LKR_UC}\r\n"], ["\r\n"], ["\r\n"], ["\r\n"], ["\r\n"], ["Tries to locate given image from the screen for given time.\r\n"], ["\r\n"], ["${image}\r\n"], ["timeout=${timeout}\r\n"], ["\r\n"], ["\r\n"], ["${loc}\r\n"], ["\r\n"], ["Image \"bviewer_opened\" found at (652, 94)\r\n"], ["${loc} = (652, 94)\r\n"], ["\r\n"], ["\r\n"], ["\r\n"], ["Runs the given keyword with the given arguments, if ``condition`` is true.\r\n"], ["\r\n"], ["'${image}' in ${lkr_loc_img}\r\n"], ["Change Image Folder\r\n"], ["${imgpath}\r\n"], ["\r\n"], ["\r\n"], ["\r\n"], ["${loc} = (652, 94)\r\n"], ["\r\n"], ["\r\n"], ["\r\n"], ["\r\n"], ["${loc}\r\n"], ["\r\n"], ["\r\n"], ["Moves the mouse pointer to an absolute coordinates.\r\n"], ["\r\n"], ["${loc}\r\n"], ["\r\n"], ["\r\n"], ["\r\n"], ["\r\n"], ["Clicks with the specified mouse button.\r\n"], ["\r\n"], ["\r\n"], ["\r\n"], ["\r\n"], ["\r\n"], ["\r\n"], ["\r\n"], ["Pauses the test executed for the given time.\r\n"], ["\r\n"], ["0.5\r\n"], ["\r\n"], ["Slept 500 milliseconds\r\n"], ["\r\n"], ["\r\n"], ["\r\n"], ["Press given keyboard keys.\r\n"], ["\r\n"], ["Key.Win\r\n"], ["Key.Up\r\n"], ["\r\n"], ["\r\n"], ["\r\n"], ["\r\n"], ["Returns the given values which can then be assigned to a variables.\r\n"], ["\r\n"], ["ARCHIVETOOL_DOKU_${LKR_UC}_${anz_seiten}\r\n"], ["\r\n"], ["\r\n"], ["${search_image}\r\n"], ["\r\n"], ["${search_image} = ARCHIVETOOL_DOKU_SG_300\r\n"], ["\r\n"], ["\r\n"], ["\r\n"], ["\r\n"], ["bviewer_opened\r\n"], ["timeout=10\r\n"], ["\r\n"], ["\r\n"], ["\r\n"], ["${image}\r\n"], ["${timeout}\r\n"], ["\r\n"], ["\r\n"], ["${loc}\r\n"], ["\r\n"], ["\r\n"], ["Runs the given keyword with the given arguments, if ``condition`` is true.\r\n"], ["\r\n"], ["'${image}' in ${lkr_loc_img}\r\n"], ["Change Image Folder\r\n"], ["${imgpath}\\\\${LKR_UC}\r\n"], ["\r\n"], ["\r\n"], ["\r\n"], ["\r\n"], ["Tries to locate given image from the screen for given time.\r\n"], ["\r\n"], ["${image}\r\n"], ["timeout=${timeout}\r\n"], ["\r\n"], ["\r\n"], ["${loc}\r\n"], ["\r\n"], ["Image \"bviewer_opened\" found at (11, 85)\r\n"], ["${loc} = (11, 85)\r\n"], ["\r\n"], ["\r\n"], ["\r\n"], ["Runs the given keyword with the given arguments, if ``condition`` is true.\r\n"], ["\r\n"], ["'${image}' in ${lkr_loc_img}\r\n"], ["Change Image Folder\r\n"], ["${imgpath}\r\n"], ["\r\n"], ["\r\n"], ["\r\n"], ["${loc} = (11, 85)\r\n"], ["\r\n"], ["\r\n"], ["\r\n"], ["\r\n"], ["${loc}\r\n"], ["\r\n"], ["\r\n"], ["Moves the mouse pointer to an absolute coordinates.\r\n"], ["\r\n"], ["${loc}\r\n"], ["\r\n"], ["\r\n"], ["\r\n"], ["\r\n"], ["Clicks with the specified mouse button.\r\n"], ["\r\n"], ["\r\n"], ["\r\n"], ["\r\n"], ["\r\n"], ["\r\n"], ["\r\n"], ["Tries to locate given image from the screen for given time.\r\n"], ["\r\n"], ["${search_image}\r\n"], ["timeout=90\r\n"], ["\r\n"], ["Image \"ARCHIVETOOL_DOKU_SG_300\" found at (177, 208)\r\n"], ["\r\n"], ["\r\n"], ["\r\n"], ["Press given keyboard keys.\r\n"], ["\r\n"], ["Key.Alt\r\n"], ["Key.F4\r\n"], ["\r\n"], ["\r\n"], ["\r\n"], ["\r\n"], ["\r\n"], ["\r\n"], ["\r\n"], ["aae_suche_clear\r\n"], ["timeout=5\r\n"], ["\r\n"], ["\r\n"], ["\r\n"], ["${image}\r\n"], ["${timeout}\r\n"], ["\r\n"], ["\r\n"], ["${loc}\r\n"], ["\r\n"], ["\r\n"], ["Runs the given keyword with the given arguments, if ``condition`` is true.\r\n"], ["\r\n"], ["'${image}' in ${lkr_loc_img}\r\n"], ["Change Image Folder\r\n"], ["${imgpath}\\\\${LKR_UC}\r\n"], ["\r\n"], ["\r\n"], ["\r\n"], ["\r\n"], ["Tries to locate given image from the screen for given time.\r\n"], ["\r\n"], ["${image}\r\n"], ["timeout=${timeout}\r\n"], ["\r\n"], ["\r\n"], ["${loc}\r\n"], ["\r\n"], ["Image \"aae_suche_clear\" found at (404, 709)\r\n"], ["${loc} = (404, 709)\r\n"], ["\r\n"], ["\r\n"], ["\r\n"], ["Runs the given keyword with the given arguments, if ``condition`` is true.\r\n"], ["\r\n"], ["'${image}' in ${lkr_loc_img}\r\n"], ["Change Image Folder\r\n"], ["${imgpath}\r\n"], ["\r\n"], ["\r\n"], ["\r\n"], ["${loc} = (404, 709)\r\n"], ["\r\n"], ["\r\n"], ["\r\n"], ["\r\n"], ["${loc}\r\n"], ["\r\n"], ["\r\n"], ["Moves the mouse pointer to an absolute coordinates.\r\n"], ["\r\n"], ["${loc}\r\n"], ["\r\n"], ["\r\n"], ["\r\n"], ["\r\n"], ["Clicks with the specified mouse button.\r\n"], ["\r\n"], ["\r\n"], ["\r\n"], ["\r\n"], ["\r\n"], ["\r\n"], ["\r\n"], ["\r\n"], ["aae_dokumentennr_bereit\r\n"], ["timeout=5\r\n"], ["\r\n"], ["\r\n"], ["Runs the given keyword with the given arguments, if ``condition`` is true.\r\n"], ["\r\n"], ["'${image}' in ${lkr_loc_img}\r\n"], ["Change Image Folder\r\n"], ["${imgpath}\\\\${LKR_UC}\r\n"], ["\r\n"], ["\r\n"], ["\r\n"], ["\r\n"], ["Tries to locate given image from the screen for given time.\r\n"], ["\r\n"], ["${image}\r\n"], ["timeout=${timeout}\r\n"], ["\r\n"], ["\r\n"], ["${loc}\r\n"], ["\r\n"], ["Image \"aae_dokumentennr_bereit\" found at (569, 464)\r\n"], ["${loc} = (569, 464)\r\n"], ["\r\n"], ["\r\n"], ["\r\n"], ["Runs the given keyword with the given arguments, if ``condition`` is true.\r\n"], ["\r\n"], ["'${image}' in ${lkr_loc_img}\r\n"], ["Change Image Folder\r\n"], ["${imgpath}\r\n"], ["\r\n"], ["\r\n"], ["\r\n"], ["\r\n"], ["\r\n"], ["\r\n"], ["Evaluates the given expression in Python and returns the result.\r\n"], ["\r\n"], ["${i} + 1\r\n"], ["\r\n"], ["\r\n"], ["${i}\r\n"], ["\r\n"], ["${i} = 3\r\n"], ["\r\n"], ["\r\n"], ["\r\n"], ["\r\n"], ["\r\n"], ["\r\n"], ["\r\n"], ["\r\n"], ["\r\n"], ["\r\n"], ["Runs the given keyword with the given arguments, if ``condition`` is true.\r\n"], ["\r\n"], ["${APPOPEN}==${True}\r\n"], ["Terminate Application\r\n"], ["alias=archivetool\r\n"], ["\r\n"], ["\r\n"], ["Terminates the process launched with `Launch Application` with\r\n"], ["given ``alias``.\r\n"], ["\r\n"], ["alias=archivetool\r\n"], ["\r\n"], ["\r\n"], ["\r\n"], ["\r\n"], ["\r\n"], ["\r\n"], ["Runs the given keyword with the given arguments, if ``condition`` is true.\r\n"], ["\r\n"], ["${APPOPEN}==${True}\r\n"], ["Quit All Viewer Processes\r\n"], ["\r\n"], ["\r\n"], ["\r\n"], ["Runs a process and waits for it to complete.\r\n"], ["\r\n"], ["cmd.exe /c taskkill /IM ArchiveViewAdvancedA.exe\r\n"], ["shell=True\r\n"], ["\r\n"], ["Starting process:\r\n"], ["cmd.exe /c taskkill /IM ArchiveViewAdvancedA.exe\r\n"], ["Waiting for process to complete.\r\n"], ["Process completed.\r\n"], ["\r\n"], ["\r\n"], ["\r\n"], ["Runs a process and waits for it to complete.\r\n"], ["\r\n"], ["cmd.exe /c taskkill /IM ArchiveViewAdvancedB.exe\r\n"], ["shell=True\r\n"], ["\r\n"], ["Starting process:\r\n"], ["cmd.exe /c taskkill /IM ArchiveViewAdvancedB.exe\r\n"], ["Waiting for process to complete.\r\n"], ["Process completed.\r\n"], ["\r\n"], ["\r\n"], ["\r\n"], ["Runs a process and waits for it to complete.\r\n"], ["\r\n"], ["cmd.exe /c taskkill /IM ArchiveViewAdvancedC.exe\r\n"], ["shell=True\r\n"], ["\r\n"], ["Starting process:\r\n"], ["cmd.exe /c taskkill /IM ArchiveViewAdvancedC.exe\r\n"], ["Waiting for process to complete.\r\n"], ["Process completed.\r\n"], ["\r\n"], ["\r\n"], ["\r\n"], ["Runs a process and waits for it to complete.\r\n"], ["\r\n"], ["cmd.exe /c taskkill /IM\r\n"], ["ArchivToolExtAdvanced.exe\r\n"], ["shell=True\r\n"], ["\r\n"], ["Starting process:\r\n"], ["\"cmd.exe /c taskkill /IM\" ArchivToolExtAdvanced.exe\r\n"], ["Waiting for process to complete.\r\n"], ["Process completed.\r\n"], ["\r\n"], ["\r\n"], ["\r\n"], ["Runs a process and waits for it to complete.\r\n"], ["\r\n"], ["cmd.exe /c taskkill /IM\r\n"], ["archtool.exe\r\n"], ["shell=True\r\n"], ["\r\n"], ["Starting process:\r\n"], ["\"cmd.exe /c taskkill /IM\" archtool.exe\r\n"], ["Waiting for process to complete.\r\n"], ["Process completed.\r\n"], ["\r\n"], ["\r\n"], ["\r\n"], ["\r\n"], ["\r\n"], ["\r\n"], ["\r\n"], ["Makes a variable available everywhere within the scope of the current suite.\r\n"], ["\r\n"], ["${APPOPEN}\r\n"], ["${False}\r\n"], ["\r\n"], ["${APPOPEN} = False\r\n"], ["\r\n"], ["\r\n"], ["\r\n"], ["\r\n"], ["\r\n"], ["\r\n"], ["\r\n"], ["\r\n"], ["\r\n"], ["SH\r\n"], ["\r\n"], ["\r\n"], ["Sets where all reference images are stored.\r\n"], ["\r\n"], ["${imgpath}\r\n"], ["\r\n"], ["\r\n"], ["\r\n"], ["\r\n"], ["\r\n"], ["${lkr_uc}\r\n"], ["\r\n"], ["\r\n"], ["Makes a variable available everywhere within the scope of the current test.\r\n"], ["\r\n"], ["${LKR_UC}\r\n"], ["${lkr_uc}\r\n"], ["\r\n"], ["${LKR_UC} = SH\r\n"], ["\r\n"], ["\r\n"], ["\r\n"], ["Converts string to lower case.\r\n"], ["\r\n"], ["${lkr_uc}\r\n"], ["\r\n"], ["\r\n"], ["${lkr_lc}\r\n"], ["\r\n"], ["${lkr_lc} = sh\r\n"], ["\r\n"], ["\r\n"], ["\r\n"], ["Makes a variable available everywhere within the scope of the current test.\r\n"], ["\r\n"], ["${LKR_LC}\r\n"], ["${lkr_lc}\r\n"], ["\r\n"], ["${LKR_LC} = sh\r\n"], ["\r\n"], ["\r\n"], ["\r\n"], ["Makes a variable available everywhere within the scope of the current test.\r\n"], ["\r\n"], ["${lkr_docs}\r\n"], ["${TESTDATA['${LKR_UC}']['docs']}\r\n"], ["\r\n"], ["${lkr_docs} = ['6177394', '6177689', '6178142']\r\n"], ["\r\n"], ["\r\n"], ["\r\n"], ["Makes a variable available everywhere within the scope of the current test.\r\n"], ["\r\n"], ["${lkr_cred}\r\n"], ["${TESTDATA['${LKR_UC}']['credentials']}\r\n"], ["\r\n"], ["${lkr_cred} = ['sh0998', 'crypt:Q0kAp77eyC6JV2HSqixE8PnrOAfBLWk0OUbjF2OB02xFddE+u05Rmieq96LefKWugLXMFtMiHac=']\r\n"], ["\r\n"], ["\r\n"], ["\r\n"], ["Makes a variable available everywhere within the scope of the current test.\r\n"], ["\r\n"], ["${lkr_loc_img}\r\n"], ["${TESTDATA['${LKR_UC}']['loc_img']}\r\n"], ["\r\n"], ["${lkr_loc_img} = []\r\n"], ["\r\n"], ["\r\n"], ["\r\n"], ["Makes a variable available everywhere within the scope of the current test.\r\n"], ["\r\n"], ["${user}\r\n"], ["${lkr_cred}[0]\r\n"], ["\r\n"], ["${user} = sh0998\r\n"], ["\r\n"], ["\r\n"], ["\r\n"], ["Decrypts cipher text and returns the plain text.\r\n"], ["\r\n"], ["${lkr_cred}[1]\r\n"], ["\r\n"], ["\r\n"], ["${password}\r\n"], ["\r\n"], ["Decrypting text and return value.\r\n"], ["${password} = ***\r\n"], ["\r\n"], ["\r\n"], ["\r\n"], ["Makes a variable available everywhere within the scope of the current test.\r\n"], ["\r\n"], ["${password}\r\n"], ["${password}\r\n"], ["\r\n"], ["${password} = ***\r\n"], ["\r\n"], ["\r\n"], ["\r\n"], ["\r\n"], ["\r\n"], ["\r\n"], ["Runs a process and waits for it to complete.\r\n"], ["\r\n"], ["cmd.exe /c taskkill /IM ArchiveViewAdvancedA.exe\r\n"], ["shell=True\r\n"], ["\r\n"], ["Starting process:\r\n"], ["cmd.exe /c taskkill /IM ArchiveViewAdvancedA.exe\r\n"], ["Waiting for process to complete.\r\n"], ["Process completed.\r\n"], ["\r\n"], ["\r\n"], ["\r\n"], ["Runs a process and waits for it to complete.\r\n"], ["\r\n"], ["cmd.exe /c taskkill /IM ArchiveViewAdvancedB.exe\r\n"], ["shell=True\r\n"], ["\r\n"], ["Starting process:\r\n"], ["cmd.exe /c taskkill /IM ArchiveViewAdvancedB.exe\r\n"], ["Waiting for process to complete.\r\n"], ["Process completed.\r\n"], ["\r\n"], ["\r\n"], ["\r\n"], ["Runs a process and waits for it to complete.\r\n"], ["\r\n"], ["cmd.exe /c taskkill /IM ArchiveViewAdvancedC.exe\r\n"], ["shell=True\r\n"], ["\r\n"], ["Starting process:\r\n"], ["cmd.exe /c taskkill /IM ArchiveViewAdvancedC.exe\r\n"], ["Waiting for process to complete.\r\n"], ["Process completed.\r\n"], ["\r\n"], ["\r\n"], ["\r\n"], ["Runs a process and waits for it to complete.\r\n"], ["\r\n"], ["cmd.exe /c taskkill /IM\r\n"], ["ArchivToolExtAdvanced.exe\r\n"], ["shell=True\r\n"], ["\r\n"], ["Starting process:\r\n"], ["\"cmd.exe /c taskkill /IM\" ArchivToolExtAdvanced.exe\r\n"], ["Waiting for process to complete.\r\n"], ["Process completed.\r\n"], ["\r\n"], ["\r\n"], ["\r\n"], ["Runs a process and waits for it to complete.\r\n"], ["\r\n"], ["cmd.exe /c taskkill /IM\r\n"], ["archtool.exe\r\n"], ["shell=True\r\n"], ["\r\n"], ["Starting process:\r\n"], ["\"cmd.exe /c taskkill /IM\" archtool.exe\r\n"], ["Waiting for process to complete.\r\n"], ["Process completed.\r\n"], ["\r\n"], ["\r\n"], ["\r\n"], ["\r\n"], ["\r\n"], ["\r\n"], ["Runs a process and waits for it to complete.\r\n"], ["\r\n"], ["C:\\\\ProgramData\\\\checkmk\\\\agent\\\\robot\\\\archivetool\\\\ArchivetoolConfig\\\\sva_${LKR_LC} konfiguration.bat\r\n"], ["\r\n"], ["Starting process:\r\n"], ["\"C:\\ProgramData\\checkmk\\agent\\robot\\archivetool\\ArchivetoolConfig\\sva_sh konfiguration.bat\"\r\n"], ["Waiting for process to complete.\r\n"], ["Process completed.\r\n"], ["\r\n"], ["\r\n"], ["\r\n"], ["Launches an application.\r\n"], ["\r\n"], ["\"${APP}\"\r\n"], ["alias=archivetool\r\n"], ["\r\n"], ["\r\n"], ["\r\n"], ["\r\n"], ["Makes a variable available everywhere within the scope of the current suite.\r\n"], ["\r\n"], ["${APPOPEN}\r\n"], ["${True}\r\n"], ["\r\n"], ["${APPOPEN} = True\r\n"], ["\r\n"], ["\r\n"], ["\r\n"], ["\r\n"], ["\r\n"], ["\r\n"], ["\r\n"], ["login_username\r\n"], ["timeout=10\r\n"], ["\r\n"], ["\r\n"], ["${loc}\r\n"], ["\r\n"], ["\r\n"], ["Runs the given keyword with the given arguments, if ``condition`` is true.\r\n"], ["\r\n"], ["'${image}' in ${lkr_loc_img}\r\n"], ["Change Image Folder\r\n"], ["${imgpath}\\\\${LKR_UC}\r\n"], ["\r\n"], ["\r\n"], ["\r\n"], ["\r\n"], ["Tries to locate given image from the screen for given time.\r\n"], ["\r\n"], ["${image}\r\n"], ["timeout=${timeout}\r\n"], ["\r\n"], ["\r\n"], ["${loc}\r\n"], ["\r\n"], ["Image \"login_username\" found at (227, 149)\r\n"], ["${loc} = (227, 149)\r\n"], ["\r\n"], ["\r\n"], ["\r\n"], ["Runs the given keyword with the given arguments, if ``condition`` is true.\r\n"], ["\r\n"], ["'${image}' in ${lkr_loc_img}\r\n"], ["Change Image Folder\r\n"], ["${imgpath}\r\n"], ["\r\n"], ["\r\n"], ["\r\n"], ["${loc} = (227, 149)\r\n"], ["\r\n"], ["\r\n"], ["\r\n"], ["Finds the reference image on screen and clicks it once.\r\n"], ["\r\n"], ["login_username\r\n"], ["\r\n"], ["Image \"C:\\ProgramData\\checkmk\\agent\\robot\\archivetool\\images\\login_username.png\" found at Box(left=182, top=134, width=90, height=30)\r\n"], ["Clicking image \"login_username\" in position (227, 149)\r\n"], ["\r\n"], ["\r\n"], ["\r\n"], ["Pauses the test executed for the given time.\r\n"], ["\r\n"], ["0.2\r\n"], ["\r\n"], ["Slept 200 milliseconds\r\n"], ["\r\n"], ["\r\n"], ["\r\n"], ["\r\n"], ["login_username\r\n"], ["10\r\n"], ["20\r\n"], ["${user}\r\n"], ["\r\n"], ["\r\n"], ["\r\n"], ["${image}\r\n"], ["${timeout}\r\n"], ["\r\n"], ["\r\n"], ["${loc}\r\n"], ["\r\n"], ["\r\n"], ["Runs the given keyword with the given arguments, if ``condition`` is true.\r\n"], ["\r\n"], ["'${image}' in ${lkr_loc_img}\r\n"], ["Change Image Folder\r\n"], ["${imgpath}\\\\${LKR_UC}\r\n"], ["\r\n"], ["\r\n"], ["\r\n"], ["\r\n"], ["Tries to locate given image from the screen for given time.\r\n"], ["\r\n"], ["${image}\r\n"], ["timeout=${timeout}\r\n"], ["\r\n"], ["\r\n"], ["${loc}\r\n"], ["\r\n"], ["Image \"login_username\" found at (227, 149)\r\n"], ["${loc} = (227, 149)\r\n"], ["\r\n"], ["\r\n"], ["\r\n"], ["Runs the given keyword with the given arguments, if ``condition`` is true.\r\n"], ["\r\n"], ["'${image}' in ${lkr_loc_img}\r\n"], ["Change Image Folder\r\n"], ["${imgpath}\r\n"], ["\r\n"], ["\r\n"], ["\r\n"], ["${loc} = (227, 149)\r\n"], ["\r\n"], ["\r\n"], ["\r\n"], ["Clicks right of given location by given offset.\r\n"], ["\r\n"], ["${loc}\r\n"], ["${offset}\r\n"], ["\r\n"], ["Clicking 1 time(s) at (247, 149) with left mouse button at interval 0.000000\r\n"], ["\r\n"], ["\r\n"], ["\r\n"], ["Type text and keyboard keys.\r\n"], ["\r\n"], ["@{text}\r\n"], ["\r\n"], ["\r\n"], ["\r\n"], ["\r\n"], ["\r\n"], ["\r\n"], ["Pauses the test executed for the given time.\r\n"], ["\r\n"], ["0.2\r\n"], ["\r\n"], ["Slept 200 milliseconds\r\n"], ["\r\n"], ["\r\n"], ["\r\n"], ["Type text and keyboard keys.\r\n"], ["\r\n"], ["Key.tab\r\n"], ["\r\n"], ["\r\n"], ["\r\n"], ["\r\n"], ["Pauses the test executed for the given time.\r\n"], ["\r\n"], ["0.2\r\n"], ["\r\n"], ["Slept 200 milliseconds\r\n"], ["\r\n"], ["\r\n"], ["\r\n"], ["Type text and keyboard keys.\r\n"], ["\r\n"], ["${password}\r\n"], ["Key.enter\r\n"], ["Key.enter\r\n"], ["\r\n"], ["\r\n"], ["\r\n"], ["\r\n"], ["\r\n"], ["archiv_vista_warn\r\n"], ["timeout=5\r\n"], ["\r\n"], ["\r\n"], ["\r\n"], ["${image}\r\n"], ["${timeout}\r\n"], ["\r\n"], ["\r\n"], ["${loc}\r\n"], ["\r\n"], ["\r\n"], ["Runs the given keyword with the given arguments, if ``condition`` is true.\r\n"], ["\r\n"], ["'${image}' in ${lkr_loc_img}\r\n"], ["Change Image Folder\r\n"], ["${imgpath}\\\\${LKR_UC}\r\n"], ["\r\n"], ["\r\n"], ["\r\n"], ["\r\n"], ["Tries to locate given image from the screen for given time.\r\n"], ["\r\n"], ["${image}\r\n"], ["timeout=${timeout}\r\n"], ["\r\n"], ["\r\n"], ["${loc}\r\n"], ["\r\n"], ["Image \"archiv_vista_warn\" found at (845, 559)\r\n"], ["${loc} = (845, 559)\r\n"], ["\r\n"], ["\r\n"], ["\r\n"], ["Runs the given keyword with the given arguments, if ``condition`` is true.\r\n"], ["\r\n"], ["'${image}' in ${lkr_loc_img}\r\n"], ["Change Image Folder\r\n"], ["${imgpath}\r\n"], ["\r\n"], ["\r\n"], ["\r\n"], ["${loc} = (845, 559)\r\n"], ["\r\n"], ["\r\n"], ["\r\n"], ["\r\n"], ["${loc}\r\n"], ["\r\n"], ["\r\n"], ["Moves the mouse pointer to an absolute coordinates.\r\n"], ["\r\n"], ["${loc}\r\n"], ["\r\n"], ["\r\n"], ["\r\n"], ["\r\n"], ["Clicks with the specified mouse button.\r\n"], ["\r\n"], ["\r\n"], ["\r\n"], ["\r\n"], ["\r\n"], ["\r\n"], ["\r\n"], ["Type text and keyboard keys.\r\n"], ["\r\n"], ["Key.enter\r\n"], ["\r\n"], ["\r\n"], ["\r\n"], ["\r\n"], ["Tries to locate given image from the screen for given time.\r\n"], ["\r\n"], ["aae_toolbar\r\n"], ["timeout=10\r\n"], ["\r\n"], ["Image \"aae_toolbar\" found at (506, 709)\r\n"], ["\r\n"], ["\r\n"], ["\r\n"], ["\r\n"], ["\r\n"], ["\r\n"], ["Returns ``True`` if reference image was found on screen or\r\n"], ["``False`` otherwise. Never fails.\r\n"], ["\r\n"], ["aae_vorbelegung_checked\r\n"], ["\r\n"], ["\r\n"], ["${vorbelegt_checked}\r\n"], ["\r\n"], ["${vorbelegt_checked} = False\r\n"], ["\r\n"], ["\r\n"], ["\r\n"], ["Runs the given keyword with the given arguments, if ``condition`` is true.\r\n"], ["\r\n"], ["${vorbelegt_checked}==${True}\r\n"], ["Click Image\r\n"], ["aae_vorbelegung_checked\r\n"], ["\r\n"], ["\r\n"], ["\r\n"], ["\r\n"], ["\r\n"], ["\r\n"], ["Returns the given values which can then be assigned to a variables.\r\n"], ["\r\n"], ["0\r\n"], ["\r\n"], ["\r\n"], ["${i}\r\n"], ["\r\n"], ["${i} = 0\r\n"], ["\r\n"], ["\r\n"], ["\r\n"], ["\r\n"], ["\r\n"], ["\r\n"], ["${lkr_docs}[${i}]\r\n"], ["${anz_seiten}\r\n"], ["\r\n"], ["\r\n"], ["Makes a variable available everywhere within the scope of the current test.\r\n"], ["\r\n"], ["${dokid}\r\n"], ["${lkr_doc}\r\n"], ["\r\n"], ["${dokid} = 6177394\r\n"], ["\r\n"], ["\r\n"], ["\r\n"], ["\r\n"], ["aae_dokumentennr\r\n"], ["5\r\n"], ["100\r\n"], ["${lkr_doc}\r\n"], ["\r\n"], ["\r\n"], ["\r\n"], ["${image}\r\n"], ["${timeout}\r\n"], ["\r\n"], ["\r\n"], ["${loc}\r\n"], ["\r\n"], ["\r\n"], ["Runs the given keyword with the given arguments, if ``condition`` is true.\r\n"], ["\r\n"], ["'${image}' in ${lkr_loc_img}\r\n"], ["Change Image Folder\r\n"], ["${imgpath}\\\\${LKR_UC}\r\n"], ["\r\n"], ["\r\n"], ["\r\n"], ["\r\n"], ["Tries to locate given image from the screen for given time.\r\n"], ["\r\n"], ["${image}\r\n"], ["timeout=${timeout}\r\n"], ["\r\n"], ["\r\n"], ["${loc}\r\n"], ["\r\n"], ["Image \"aae_dokumentennr\" found at (452, 463)\r\n"], ["${loc} = (452, 463)\r\n"], ["\r\n"], ["\r\n"], ["\r\n"], ["Runs the given keyword with the given arguments, if ``condition`` is true.\r\n"], ["\r\n"], ["'${image}' in ${lkr_loc_img}\r\n"], ["Change Image Folder\r\n"], ["${imgpath}\r\n"], ["\r\n"], ["\r\n"], ["\r\n"], ["${loc} = (452, 463)\r\n"], ["\r\n"], ["\r\n"], ["\r\n"], ["Clicks right of given location by given offset.\r\n"], ["\r\n"], ["${loc}\r\n"], ["${offset}\r\n"], ["\r\n"], ["Clicking 1 time(s) at (552, 463) with left mouse button at interval 0.000000\r\n"], ["\r\n"], ["\r\n"], ["\r\n"], ["Type text and keyboard keys.\r\n"], ["\r\n"], ["@{text}\r\n"], ["\r\n"], ["\r\n"], ["\r\n"], ["\r\n"], ["\r\n"], ["\r\n"], ["Type text and keyboard keys.\r\n"], ["\r\n"], ["Key.enter\r\n"], ["\r\n"], ["\r\n"], ["\r\n"], ["\r\n"], ["\r\n"], ["aae_treffer_1\r\n"], ["timeout=10\r\n"], ["\r\n"], ["\r\n"], ["\r\n"], ["${image}\r\n"], ["${timeout}\r\n"], ["\r\n"], ["\r\n"], ["${loc}\r\n"], ["\r\n"], ["\r\n"], ["Runs the given keyword with the given arguments, if ``condition`` is true.\r\n"], ["\r\n"], ["'${image}' in ${lkr_loc_img}\r\n"], ["Change Image Folder\r\n"], ["${imgpath}\\\\${LKR_UC}\r\n"], ["\r\n"], ["\r\n"], ["\r\n"], ["\r\n"], ["Tries to locate given image from the screen for given time.\r\n"], ["\r\n"], ["${image}\r\n"], ["timeout=${timeout}\r\n"], ["\r\n"], ["\r\n"], ["${loc}\r\n"], ["\r\n"], ["Image \"aae_treffer_1\" found at (870, 745)\r\n"], ["${loc} = (870, 745)\r\n"], ["\r\n"], ["\r\n"], ["\r\n"], ["Runs the given keyword with the given arguments, if ``condition`` is true.\r\n"], ["\r\n"], ["'${image}' in ${lkr_loc_img}\r\n"], ["Change Image Folder\r\n"], ["${imgpath}\r\n"], ["\r\n"], ["\r\n"], ["\r\n"], ["${loc} = (870, 745)\r\n"], ["\r\n"], ["\r\n"], ["\r\n"], ["\r\n"], ["${loc}\r\n"], ["\r\n"], ["\r\n"], ["Moves the mouse pointer to an absolute coordinates.\r\n"], ["\r\n"], ["${loc}\r\n"], ["\r\n"], ["\r\n"], ["\r\n"], ["\r\n"], ["Clicks with the specified mouse button.\r\n"], ["\r\n"], ["\r\n"], ["\r\n"], ["\r\n"], ["\r\n"], ["\r\n"], ["\r\n"], ["Type text and keyboard keys.\r\n"], ["\r\n"], ["Key.Tab\r\n"], ["Key.Tab\r\n"], ["Key.Tab\r\n"], ["Key.Tab\r\n"], ["Key.right\r\n"], ["\r\n"], ["\r\n"], ["\r\n"], ["\r\n"], ["\r\n"], ["aae_zeile_markiert\r\n"], ["timeout=10\r\n"], ["\r\n"], ["\r\n"], ["\r\n"], ["${image}\r\n"], ["${timeout}\r\n"], ["\r\n"], ["\r\n"], ["${loc}\r\n"], ["\r\n"], ["\r\n"], ["Runs the given keyword with the given arguments, if ``condition`` is true.\r\n"], ["\r\n"], ["'${image}' in ${lkr_loc_img}\r\n"], ["Change Image Folder\r\n"], ["${imgpath}\\\\${LKR_UC}\r\n"], ["\r\n"], ["\r\n"], ["\r\n"], ["\r\n"], ["Tries to locate given image from the screen for given time.\r\n"], ["\r\n"], ["${image}\r\n"], ["timeout=${timeout}\r\n"], ["\r\n"], ["\r\n"], ["${loc}\r\n"], ["\r\n"], ["Image \"aae_zeile_markiert\" found at (423, 786)\r\n"], ["${loc} = (423, 786)\r\n"], ["\r\n"], ["\r\n"], ["\r\n"], ["Runs the given keyword with the given arguments, if ``condition`` is true.\r\n"], ["\r\n"], ["'${image}' in ${lkr_loc_img}\r\n"], ["Change Image Folder\r\n"], ["${imgpath}\r\n"], ["\r\n"], ["\r\n"], ["\r\n"], ["${loc} = (423, 786)\r\n"], ["\r\n"], ["\r\n"], ["\r\n"], ["\r\n"], ["${loc}\r\n"], ["\r\n"], ["\r\n"], ["Moves the mouse pointer to an absolute coordinates.\r\n"], ["\r\n"], ["${loc}\r\n"], ["\r\n"], ["\r\n"], ["\r\n"], ["\r\n"], ["Clicks with the specified mouse button.\r\n"], ["\r\n"], ["\r\n"], ["\r\n"], ["\r\n"], ["\r\n"], ["\r\n"], ["\r\n"], ["\r\n"], ["aae_viewer_b\r\n"], ["timeout=10\r\n"], ["\r\n"], ["\r\n"], ["\r\n"], ["${image}\r\n"], ["${timeout}\r\n"], ["\r\n"], ["\r\n"], ["${loc}\r\n"], ["\r\n"], ["\r\n"], ["Runs the given keyword with the given arguments, if ``condition`` is true.\r\n"], ["\r\n"], ["'${image}' in ${lkr_loc_img}\r\n"], ["Change Image Folder\r\n"], ["${imgpath}\\\\${LKR_UC}\r\n"], ["\r\n"], ["\r\n"], ["\r\n"], ["\r\n"], ["Tries to locate given image from the screen for given time.\r\n"], ["\r\n"], ["${image}\r\n"], ["timeout=${timeout}\r\n"], ["\r\n"], ["\r\n"], ["${loc}\r\n"], ["\r\n"], ["Image \"aae_viewer_b\" found at (641, 709)\r\n"], ["${loc} = (641, 709)\r\n"], ["\r\n"], ["\r\n"], ["\r\n"], ["Runs the given keyword with the given arguments, if ``condition`` is true.\r\n"], ["\r\n"], ["'${image}' in ${lkr_loc_img}\r\n"], ["Change Image Folder\r\n"], ["${imgpath}\r\n"], ["\r\n"], ["\r\n"], ["\r\n"], ["${loc} = (641, 709)\r\n"], ["\r\n"], ["\r\n"], ["\r\n"], ["\r\n"], ["${loc}\r\n"], ["\r\n"], ["\r\n"], ["Moves the mouse pointer to an absolute coordinates.\r\n"], ["\r\n"], ["${loc}\r\n"], ["\r\n"], ["\r\n"], ["\r\n"], ["\r\n"], ["Clicks with the specified mouse button.\r\n"], ["\r\n"], ["\r\n"], ["\r\n"], ["\r\n"], ["\r\n"], ["\r\n"], ["\r\n"], ["\r\n"], ["bviewer_opened\r\n"], ["10\r\n"], ["\r\n"], ["\r\n"], ["Runs the given keyword with the given arguments, if ``condition`` is true.\r\n"], ["\r\n"], ["'${image}' in ${lkr_loc_img}\r\n"], ["Change Image Folder\r\n"], ["${imgpath}\\\\${LKR_UC}\r\n"], ["\r\n"], ["\r\n"], ["\r\n"], ["\r\n"], ["Tries to locate given image from the screen for given time.\r\n"], ["\r\n"], ["${image}\r\n"], ["timeout=${timeout}\r\n"], ["\r\n"], ["\r\n"], ["${loc}\r\n"], ["\r\n"], ["Image \"bviewer_opened\" found at (652, 94)\r\n"], ["${loc} = (652, 94)\r\n"], ["\r\n"], ["\r\n"], ["\r\n"], ["Runs the given keyword with the given arguments, if ``condition`` is true.\r\n"], ["\r\n"], ["'${image}' in ${lkr_loc_img}\r\n"], ["Change Image Folder\r\n"], ["${imgpath}\r\n"], ["\r\n"], ["\r\n"], ["\r\n"], ["\r\n"], ["\r\n"], ["\r\n"], ["Pauses the test executed for the given time.\r\n"], ["\r\n"], ["0.5\r\n"], ["\r\n"], ["Slept 500 milliseconds\r\n"], ["\r\n"], ["\r\n"], ["\r\n"], ["\r\n"], ["bviewer_opened\r\n"], ["timeout=10\r\n"], ["\r\n"], ["\r\n"], ["\r\n"], ["${image}\r\n"], ["${timeout}\r\n"], ["\r\n"], ["\r\n"], ["${loc}\r\n"], ["\r\n"], ["\r\n"], ["Runs the given keyword with the given arguments, if ``condition`` is true.\r\n"], ["\r\n"], ["'${image}' in ${lkr_loc_img}\r\n"], ["Change Image Folder\r\n"], ["${imgpath}\\\\${LKR_UC}\r\n"], ["\r\n"], ["\r\n"], ["\r\n"], ["\r\n"], ["Tries to locate given image from the screen for given time.\r\n"], ["\r\n"], ["${image}\r\n"], ["timeout=${timeout}\r\n"], ["\r\n"], ["\r\n"], ["${loc}\r\n"], ["\r\n"], ["Image \"bviewer_opened\" found at (652, 94)\r\n"], ["${loc} = (652, 94)\r\n"], ["\r\n"], ["\r\n"], ["\r\n"], ["Runs the given keyword with the given arguments, if ``condition`` is true.\r\n"], ["\r\n"], ["'${image}' in ${lkr_loc_img}\r\n"], ["Change Image Folder\r\n"], ["${imgpath}\r\n"], ["\r\n"], ["\r\n"], ["\r\n"], ["${loc} = (652, 94)\r\n"], ["\r\n"], ["\r\n"], ["\r\n"], ["\r\n"], ["${loc}\r\n"], ["\r\n"], ["\r\n"], ["Moves the mouse pointer to an absolute coordinates.\r\n"], ["\r\n"], ["${loc}\r\n"], ["\r\n"], ["\r\n"], ["\r\n"], ["\r\n"], ["Clicks with the specified mouse button.\r\n"], ["\r\n"], ["\r\n"], ["\r\n"], ["\r\n"], ["\r\n"], ["\r\n"], ["\r\n"], ["Pauses the test executed for the given time.\r\n"], ["\r\n"], ["0.5\r\n"], ["\r\n"], ["Slept 500 milliseconds\r\n"], ["\r\n"], ["\r\n"], ["\r\n"], ["Press given keyboard keys.\r\n"], ["\r\n"], ["Key.Win\r\n"], ["Key.Up\r\n"], ["\r\n"], ["\r\n"], ["\r\n"], ["\r\n"], ["Returns the given values which can then be assigned to a variables.\r\n"], ["\r\n"], ["ARCHIVETOOL_DOKU_${LKR_UC}_${anz_seiten}\r\n"], ["\r\n"], ["\r\n"], ["${search_image}\r\n"], ["\r\n"], ["${search_image} = ARCHIVETOOL_DOKU_SH_30\r\n"], ["\r\n"], ["\r\n"], ["\r\n"], ["\r\n"], ["bviewer_opened\r\n"], ["timeout=10\r\n"], ["\r\n"], ["\r\n"], ["\r\n"], ["${image}\r\n"], ["${timeout}\r\n"], ["\r\n"], ["\r\n"], ["${loc}\r\n"], ["\r\n"], ["\r\n"], ["Runs the given keyword with the given arguments, if ``condition`` is true.\r\n"], ["\r\n"], ["'${image}' in ${lkr_loc_img}\r\n"], ["Change Image Folder\r\n"], ["${imgpath}\\\\${LKR_UC}\r\n"], ["\r\n"], ["\r\n"], ["\r\n"], ["\r\n"], ["Tries to locate given image from the screen for given time.\r\n"], ["\r\n"], ["${image}\r\n"], ["timeout=${timeout}\r\n"], ["\r\n"], ["\r\n"], ["${loc}\r\n"], ["\r\n"], ["Image \"bviewer_opened\" found at (11, 85)\r\n"], ["${loc} = (11, 85)\r\n"], ["\r\n"], ["\r\n"], ["\r\n"], ["Runs the given keyword with the given arguments, if ``condition`` is true.\r\n"], ["\r\n"], ["'${image}' in ${lkr_loc_img}\r\n"], ["Change Image Folder\r\n"], ["${imgpath}\r\n"], ["\r\n"], ["\r\n"], ["\r\n"], ["${loc} = (11, 85)\r\n"], ["\r\n"], ["\r\n"], ["\r\n"], ["\r\n"], ["${loc}\r\n"], ["\r\n"], ["\r\n"], ["Moves the mouse pointer to an absolute coordinates.\r\n"], ["\r\n"], ["${loc}\r\n"], ["\r\n"], ["\r\n"], ["\r\n"], ["\r\n"], ["Clicks with the specified mouse button.\r\n"], ["\r\n"], ["\r\n"], ["\r\n"], ["\r\n"], ["\r\n"], ["\r\n"], ["\r\n"], ["Tries to locate given image from the screen for given time.\r\n"], ["\r\n"], ["${search_image}\r\n"], ["timeout=90\r\n"], ["\r\n"], ["Image \"ARCHIVETOOL_DOKU_SH_30\" found at (200, 212)\r\n"], ["\r\n"], ["\r\n"], ["\r\n"], ["Press given keyboard keys.\r\n"], ["\r\n"], ["Key.Alt\r\n"], ["Key.F4\r\n"], ["\r\n"], ["\r\n"], ["\r\n"], ["\r\n"], ["\r\n"], ["\r\n"], ["\r\n"], ["aae_suche_clear\r\n"], ["timeout=5\r\n"], ["\r\n"], ["\r\n"], ["\r\n"], ["${image}\r\n"], ["${timeout}\r\n"], ["\r\n"], ["\r\n"], ["${loc}\r\n"], ["\r\n"], ["\r\n"], ["Runs the given keyword with the given arguments, if ``condition`` is true.\r\n"], ["\r\n"], ["'${image}' in ${lkr_loc_img}\r\n"], ["Change Image Folder\r\n"], ["${imgpath}\\\\${LKR_UC}\r\n"], ["\r\n"], ["\r\n"], ["\r\n"], ["\r\n"], ["Tries to locate given image from the screen for given time.\r\n"], ["\r\n"], ["${image}\r\n"], ["timeout=${timeout}\r\n"], ["\r\n"], ["\r\n"], ["${loc}\r\n"], ["\r\n"], ["Image \"aae_suche_clear\" found at (404, 709)\r\n"], ["${loc} = (404, 709)\r\n"], ["\r\n"], ["\r\n"], ["\r\n"], ["Runs the given keyword with the given arguments, if ``condition`` is true.\r\n"], ["\r\n"], ["'${image}' in ${lkr_loc_img}\r\n"], ["Change Image Folder\r\n"], ["${imgpath}\r\n"], ["\r\n"], ["\r\n"], ["\r\n"], ["${loc} = (404, 709)\r\n"], ["\r\n"], ["\r\n"], ["\r\n"], ["\r\n"], ["${loc}\r\n"], ["\r\n"], ["\r\n"], ["Moves the mouse pointer to an absolute coordinates.\r\n"], ["\r\n"], ["${loc}\r\n"], ["\r\n"], ["\r\n"], ["\r\n"], ["\r\n"], ["Clicks with the specified mouse button.\r\n"], ["\r\n"], ["\r\n"], ["\r\n"], ["\r\n"], ["\r\n"], ["\r\n"], ["\r\n"], ["\r\n"], ["aae_dokumentennr_bereit\r\n"], ["timeout=5\r\n"], ["\r\n"], ["\r\n"], ["Runs the given keyword with the given arguments, if ``condition`` is true.\r\n"], ["\r\n"], ["'${image}' in ${lkr_loc_img}\r\n"], ["Change Image Folder\r\n"], ["${imgpath}\\\\${LKR_UC}\r\n"], ["\r\n"], ["\r\n"], ["\r\n"], ["\r\n"], ["Tries to locate given image from the screen for given time.\r\n"], ["\r\n"], ["${image}\r\n"], ["timeout=${timeout}\r\n"], ["\r\n"], ["\r\n"], ["${loc}\r\n"], ["\r\n"], ["Image \"aae_dokumentennr_bereit\" found at (569, 464)\r\n"], ["${loc} = (569, 464)\r\n"], ["\r\n"], ["\r\n"], ["\r\n"], ["Runs the given keyword with the given arguments, if ``condition`` is true.\r\n"], ["\r\n"], ["'${image}' in ${lkr_loc_img}\r\n"], ["Change Image Folder\r\n"], ["${imgpath}\r\n"], ["\r\n"], ["\r\n"], ["\r\n"], ["\r\n"], ["\r\n"], ["\r\n"], ["Evaluates the given expression in Python and returns the result.\r\n"], ["\r\n"], ["${i} + 1\r\n"], ["\r\n"], ["\r\n"], ["${i}\r\n"], ["\r\n"], ["${i} = 1\r\n"], ["\r\n"], ["\r\n"], ["\r\n"], ["\r\n"], ["\r\n"], ["\r\n"], ["\r\n"], ["${lkr_docs}[${i}]\r\n"], ["${anz_seiten}\r\n"], ["\r\n"], ["\r\n"], ["Makes a variable available everywhere within the scope of the current test.\r\n"], ["\r\n"], ["${dokid}\r\n"], ["${lkr_doc}\r\n"], ["\r\n"], ["${dokid} = 6177689\r\n"], ["\r\n"], ["\r\n"], ["\r\n"], ["\r\n"], ["aae_dokumentennr\r\n"], ["5\r\n"], ["100\r\n"], ["${lkr_doc}\r\n"], ["\r\n"], ["\r\n"], ["\r\n"], ["${image}\r\n"], ["${timeout}\r\n"], ["\r\n"], ["\r\n"], ["${loc}\r\n"], ["\r\n"], ["\r\n"], ["Runs the given keyword with the given arguments, if ``condition`` is true.\r\n"], ["\r\n"], ["'${image}' in ${lkr_loc_img}\r\n"], ["Change Image Folder\r\n"], ["${imgpath}\\\\${LKR_UC}\r\n"], ["\r\n"], ["\r\n"], ["\r\n"], ["\r\n"], ["Tries to locate given image from the screen for given time.\r\n"], ["\r\n"], ["${image}\r\n"], ["timeout=${timeout}\r\n"], ["\r\n"], ["\r\n"], ["${loc}\r\n"], ["\r\n"], ["Image \"aae_dokumentennr\" found at (452, 463)\r\n"], ["${loc} = (452, 463)\r\n"], ["\r\n"], ["\r\n"], ["\r\n"], ["Runs the given keyword with the given arguments, if ``condition`` is true.\r\n"], ["\r\n"], ["'${image}' in ${lkr_loc_img}\r\n"], ["Change Image Folder\r\n"], ["${imgpath}\r\n"], ["\r\n"], ["\r\n"], ["\r\n"], ["${loc} = (452, 463)\r\n"], ["\r\n"], ["\r\n"], ["\r\n"], ["Clicks right of given location by given offset.\r\n"], ["\r\n"], ["${loc}\r\n"], ["${offset}\r\n"], ["\r\n"], ["Clicking 1 time(s) at (552, 463) with left mouse button at interval 0.000000\r\n"], ["\r\n"], ["\r\n"], ["\r\n"], ["Type text and keyboard keys.\r\n"], ["\r\n"], ["@{text}\r\n"], ["\r\n"], ["\r\n"], ["\r\n"], ["\r\n"], ["\r\n"], ["\r\n"], ["Type text and keyboard keys.\r\n"], ["\r\n"], ["Key.enter\r\n"], ["\r\n"], ["\r\n"], ["\r\n"], ["\r\n"], ["\r\n"], ["aae_treffer_1\r\n"], ["timeout=10\r\n"], ["\r\n"], ["\r\n"], ["\r\n"], ["${image}\r\n"], ["${timeout}\r\n"], ["\r\n"], ["\r\n"], ["${loc}\r\n"], ["\r\n"], ["\r\n"], ["Runs the given keyword with the given arguments, if ``condition`` is true.\r\n"], ["\r\n"], ["'${image}' in ${lkr_loc_img}\r\n"], ["Change Image Folder\r\n"], ["${imgpath}\\\\${LKR_UC}\r\n"], ["\r\n"], ["\r\n"], ["\r\n"], ["\r\n"], ["Tries to locate given image from the screen for given time.\r\n"], ["\r\n"], ["${image}\r\n"], ["timeout=${timeout}\r\n"], ["\r\n"], ["\r\n"], ["${loc}\r\n"], ["\r\n"], ["Image \"aae_treffer_1\" found at (870, 745)\r\n"], ["${loc} = (870, 745)\r\n"], ["\r\n"], ["\r\n"], ["\r\n"], ["Runs the given keyword with the given arguments, if ``condition`` is true.\r\n"], ["\r\n"], ["'${image}' in ${lkr_loc_img}\r\n"], ["Change Image Folder\r\n"], ["${imgpath}\r\n"], ["\r\n"], ["\r\n"], ["\r\n"], ["${loc} = (870, 745)\r\n"], ["\r\n"], ["\r\n"], ["\r\n"], ["\r\n"], ["${loc}\r\n"], ["\r\n"], ["\r\n"], ["Moves the mouse pointer to an absolute coordinates.\r\n"], ["\r\n"], ["${loc}\r\n"], ["\r\n"], ["\r\n"], ["\r\n"], ["\r\n"], ["Clicks with the specified mouse button.\r\n"], ["\r\n"], ["\r\n"], ["\r\n"], ["\r\n"], ["\r\n"], ["\r\n"], ["\r\n"], ["Type text and keyboard keys.\r\n"], ["\r\n"], ["Key.Tab\r\n"], ["Key.Tab\r\n"], ["Key.Tab\r\n"], ["Key.Tab\r\n"], ["Key.right\r\n"], ["\r\n"], ["\r\n"], ["\r\n"], ["\r\n"], ["\r\n"], ["aae_zeile_markiert\r\n"], ["timeout=10\r\n"], ["\r\n"], ["\r\n"], ["\r\n"], ["${image}\r\n"], ["${timeout}\r\n"], ["\r\n"], ["\r\n"], ["${loc}\r\n"], ["\r\n"], ["\r\n"], ["Runs the given keyword with the given arguments, if ``condition`` is true.\r\n"], ["\r\n"], ["'${image}' in ${lkr_loc_img}\r\n"], ["Change Image Folder\r\n"], ["${imgpath}\\\\${LKR_UC}\r\n"], ["\r\n"], ["\r\n"], ["\r\n"], ["\r\n"], ["Tries to locate given image from the screen for given time.\r\n"], ["\r\n"], ["${image}\r\n"], ["timeout=${timeout}\r\n"], ["\r\n"], ["\r\n"], ["${loc}\r\n"], ["\r\n"], ["Image \"aae_zeile_markiert\" found at (423, 786)\r\n"], ["${loc} = (423, 786)\r\n"], ["\r\n"], ["\r\n"], ["\r\n"], ["Runs the given keyword with the given arguments, if ``condition`` is true.\r\n"], ["\r\n"], ["'${image}' in ${lkr_loc_img}\r\n"], ["Change Image Folder\r\n"], ["${imgpath}\r\n"], ["\r\n"], ["\r\n"], ["\r\n"], ["${loc} = (423, 786)\r\n"], ["\r\n"], ["\r\n"], ["\r\n"], ["\r\n"], ["${loc}\r\n"], ["\r\n"], ["\r\n"], ["Moves the mouse pointer to an absolute coordinates.\r\n"], ["\r\n"], ["${loc}\r\n"], ["\r\n"], ["\r\n"], ["\r\n"], ["\r\n"], ["Clicks with the specified mouse button.\r\n"], ["\r\n"], ["\r\n"], ["\r\n"], ["\r\n"], ["\r\n"], ["\r\n"], ["\r\n"], ["\r\n"], ["aae_viewer_b\r\n"], ["timeout=10\r\n"], ["\r\n"], ["\r\n"], ["\r\n"], ["${image}\r\n"], ["${timeout}\r\n"], ["\r\n"], ["\r\n"], ["${loc}\r\n"], ["\r\n"], ["\r\n"], ["Runs the given keyword with the given arguments, if ``condition`` is true.\r\n"], ["\r\n"], ["'${image}' in ${lkr_loc_img}\r\n"], ["Change Image Folder\r\n"], ["${imgpath}\\\\${LKR_UC}\r\n"], ["\r\n"], ["\r\n"], ["\r\n"], ["\r\n"], ["Tries to locate given image from the screen for given time.\r\n"], ["\r\n"], ["${image}\r\n"], ["timeout=${timeout}\r\n"], ["\r\n"], ["\r\n"], ["${loc}\r\n"], ["\r\n"], ["Image \"aae_viewer_b\" found at (641, 709)\r\n"], ["${loc} = (641, 709)\r\n"], ["\r\n"], ["\r\n"], ["\r\n"], ["Runs the given keyword with the given arguments, if ``condition`` is true.\r\n"], ["\r\n"], ["'${image}' in ${lkr_loc_img}\r\n"], ["Change Image Folder\r\n"], ["${imgpath}\r\n"], ["\r\n"], ["\r\n"], ["\r\n"], ["${loc} = (641, 709)\r\n"], ["\r\n"], ["\r\n"], ["\r\n"], ["\r\n"], ["${loc}\r\n"], ["\r\n"], ["\r\n"], ["Moves the mouse pointer to an absolute coordinates.\r\n"], ["\r\n"], ["${loc}\r\n"], ["\r\n"], ["\r\n"], ["\r\n"], ["\r\n"], ["Clicks with the specified mouse button.\r\n"], ["\r\n"], ["\r\n"], ["\r\n"], ["\r\n"], ["\r\n"], ["\r\n"], ["\r\n"], ["\r\n"], ["bviewer_opened\r\n"], ["10\r\n"], ["\r\n"], ["\r\n"], ["Runs the given keyword with the given arguments, if ``condition`` is true.\r\n"], ["\r\n"], ["'${image}' in ${lkr_loc_img}\r\n"], ["Change Image Folder\r\n"], ["${imgpath}\\\\${LKR_UC}\r\n"], ["\r\n"], ["\r\n"], ["\r\n"], ["\r\n"], ["Tries to locate given image from the screen for given time.\r\n"], ["\r\n"], ["${image}\r\n"], ["timeout=${timeout}\r\n"], ["\r\n"], ["\r\n"], ["${loc}\r\n"], ["\r\n"], ["Image \"bviewer_opened\" found at (652, 94)\r\n"], ["${loc} = (652, 94)\r\n"], ["\r\n"], ["\r\n"], ["\r\n"], ["Runs the given keyword with the given arguments, if ``condition`` is true.\r\n"], ["\r\n"], ["'${image}' in ${lkr_loc_img}\r\n"], ["Change Image Folder\r\n"], ["${imgpath}\r\n"], ["\r\n"], ["\r\n"], ["\r\n"], ["\r\n"], ["\r\n"], ["\r\n"], ["Pauses the test executed for the given time.\r\n"], ["\r\n"], ["0.5\r\n"], ["\r\n"], ["Slept 500 milliseconds\r\n"], ["\r\n"], ["\r\n"], ["\r\n"], ["\r\n"], ["bviewer_opened\r\n"], ["timeout=10\r\n"], ["\r\n"], ["\r\n"], ["\r\n"], ["${image}\r\n"], ["${timeout}\r\n"], ["\r\n"], ["\r\n"], ["${loc}\r\n"], ["\r\n"], ["\r\n"], ["Runs the given keyword with the given arguments, if ``condition`` is true.\r\n"], ["\r\n"], ["'${image}' in ${lkr_loc_img}\r\n"], ["Change Image Folder\r\n"], ["${imgpath}\\\\${LKR_UC}\r\n"], ["\r\n"], ["\r\n"], ["\r\n"], ["\r\n"], ["Tries to locate given image from the screen for given time.\r\n"], ["\r\n"], ["${image}\r\n"], ["timeout=${timeout}\r\n"], ["\r\n"], ["\r\n"], ["${loc}\r\n"], ["\r\n"], ["Image \"bviewer_opened\" found at (652, 94)\r\n"], ["${loc} = (652, 94)\r\n"], ["\r\n"], ["\r\n"], ["\r\n"], ["Runs the given keyword with the given arguments, if ``condition`` is true.\r\n"], ["\r\n"], ["'${image}' in ${lkr_loc_img}\r\n"], ["Change Image Folder\r\n"], ["${imgpath}\r\n"], ["\r\n"], ["\r\n"], ["\r\n"], ["${loc} = (652, 94)\r\n"], ["\r\n"], ["\r\n"], ["\r\n"], ["\r\n"], ["${loc}\r\n"], ["\r\n"], ["\r\n"], ["Moves the mouse pointer to an absolute coordinates.\r\n"], ["\r\n"], ["${loc}\r\n"], ["\r\n"], ["\r\n"], ["\r\n"], ["\r\n"], ["Clicks with the specified mouse button.\r\n"], ["\r\n"], ["\r\n"], ["\r\n"], ["\r\n"], ["\r\n"], ["\r\n"], ["\r\n"], ["Pauses the test executed for the given time.\r\n"], ["\r\n"], ["0.5\r\n"], ["\r\n"], ["Slept 500 milliseconds\r\n"], ["\r\n"], ["\r\n"], ["\r\n"], ["Press given keyboard keys.\r\n"], ["\r\n"], ["Key.Win\r\n"], ["Key.Up\r\n"], ["\r\n"], ["\r\n"], ["\r\n"], ["\r\n"], ["Returns the given values which can then be assigned to a variables.\r\n"], ["\r\n"], ["ARCHIVETOOL_DOKU_${LKR_UC}_${anz_seiten}\r\n"], ["\r\n"], ["\r\n"], ["${search_image}\r\n"], ["\r\n"], ["${search_image} = ARCHIVETOOL_DOKU_SH_100\r\n"], ["\r\n"], ["\r\n"], ["\r\n"], ["\r\n"], ["bviewer_opened\r\n"], ["timeout=10\r\n"], ["\r\n"], ["\r\n"], ["\r\n"], ["${image}\r\n"], ["${timeout}\r\n"], ["\r\n"], ["\r\n"], ["${loc}\r\n"], ["\r\n"], ["\r\n"], ["Runs the given keyword with the given arguments, if ``condition`` is true.\r\n"], ["\r\n"], ["'${image}' in ${lkr_loc_img}\r\n"], ["Change Image Folder\r\n"], ["${imgpath}\\\\${LKR_UC}\r\n"], ["\r\n"], ["\r\n"], ["\r\n"], ["\r\n"], ["Tries to locate given image from the screen for given time.\r\n"], ["\r\n"], ["${image}\r\n"], ["timeout=${timeout}\r\n"], ["\r\n"], ["\r\n"], ["${loc}\r\n"], ["\r\n"], ["Image \"bviewer_opened\" found at (11, 85)\r\n"], ["${loc} = (11, 85)\r\n"], ["\r\n"], ["\r\n"], ["\r\n"], ["Runs the given keyword with the given arguments, if ``condition`` is true.\r\n"], ["\r\n"], ["'${image}' in ${lkr_loc_img}\r\n"], ["Change Image Folder\r\n"], ["${imgpath}\r\n"], ["\r\n"], ["\r\n"], ["\r\n"], ["${loc} = (11, 85)\r\n"], ["\r\n"], ["\r\n"], ["\r\n"], ["\r\n"], ["${loc}\r\n"], ["\r\n"], ["\r\n"], ["Moves the mouse pointer to an absolute coordinates.\r\n"], ["\r\n"], ["${loc}\r\n"], ["\r\n"], ["\r\n"], ["\r\n"], ["\r\n"], ["Clicks with the specified mouse button.\r\n"], ["\r\n"], ["\r\n"], ["\r\n"], ["\r\n"], ["\r\n"], ["\r\n"], ["\r\n"], ["Tries to locate given image from the screen for given time.\r\n"], ["\r\n"], ["${search_image}\r\n"], ["timeout=90\r\n"], ["\r\n"], ["Image \"ARCHIVETOOL_DOKU_SH_100\" found at (199, 219)\r\n"], ["\r\n"], ["\r\n"], ["\r\n"], ["Press given keyboard keys.\r\n"], ["\r\n"], ["Key.Alt\r\n"], ["Key.F4\r\n"], ["\r\n"], ["\r\n"], ["\r\n"], ["\r\n"], ["\r\n"], ["\r\n"], ["\r\n"], ["aae_suche_clear\r\n"], ["timeout=5\r\n"], ["\r\n"], ["\r\n"], ["\r\n"], ["${image}\r\n"], ["${timeout}\r\n"], ["\r\n"], ["\r\n"], ["${loc}\r\n"], ["\r\n"], ["\r\n"], ["Runs the given keyword with the given arguments, if ``condition`` is true.\r\n"], ["\r\n"], ["'${image}' in ${lkr_loc_img}\r\n"], ["Change Image Folder\r\n"], ["${imgpath}\\\\${LKR_UC}\r\n"], ["\r\n"], ["\r\n"], ["\r\n"], ["\r\n"], ["Tries to locate given image from the screen for given time.\r\n"], ["\r\n"], ["${image}\r\n"], ["timeout=${timeout}\r\n"], ["\r\n"], ["\r\n"], ["${loc}\r\n"], ["\r\n"], ["Image \"aae_suche_clear\" found at (404, 709)\r\n"], ["${loc} = (404, 709)\r\n"], ["\r\n"], ["\r\n"], ["\r\n"], ["Runs the given keyword with the given arguments, if ``condition`` is true.\r\n"], ["\r\n"], ["'${image}' in ${lkr_loc_img}\r\n"], ["Change Image Folder\r\n"], ["${imgpath}\r\n"], ["\r\n"], ["\r\n"], ["\r\n"], ["${loc} = (404, 709)\r\n"], ["\r\n"], ["\r\n"], ["\r\n"], ["\r\n"], ["${loc}\r\n"], ["\r\n"], ["\r\n"], ["Moves the mouse pointer to an absolute coordinates.\r\n"], ["\r\n"], ["${loc}\r\n"], ["\r\n"], ["\r\n"], ["\r\n"], ["\r\n"], ["Clicks with the specified mouse button.\r\n"], ["\r\n"], ["\r\n"], ["\r\n"], ["\r\n"], ["\r\n"], ["\r\n"], ["\r\n"], ["\r\n"], ["aae_dokumentennr_bereit\r\n"], ["timeout=5\r\n"], ["\r\n"], ["\r\n"], ["Runs the given keyword with the given arguments, if ``condition`` is true.\r\n"], ["\r\n"], ["'${image}' in ${lkr_loc_img}\r\n"], ["Change Image Folder\r\n"], ["${imgpath}\\\\${LKR_UC}\r\n"], ["\r\n"], ["\r\n"], ["\r\n"], ["\r\n"], ["Tries to locate given image from the screen for given time.\r\n"], ["\r\n"], ["${image}\r\n"], ["timeout=${timeout}\r\n"], ["\r\n"], ["\r\n"], ["${loc}\r\n"], ["\r\n"], ["Image \"aae_dokumentennr_bereit\" found at (569, 464)\r\n"], ["${loc} = (569, 464)\r\n"], ["\r\n"], ["\r\n"], ["\r\n"], ["Runs the given keyword with the given arguments, if ``condition`` is true.\r\n"], ["\r\n"], ["'${image}' in ${lkr_loc_img}\r\n"], ["Change Image Folder\r\n"], ["${imgpath}\r\n"], ["\r\n"], ["\r\n"], ["\r\n"], ["\r\n"], ["\r\n"], ["\r\n"], ["Evaluates the given expression in Python and returns the result.\r\n"], ["\r\n"], ["${i} + 1\r\n"], ["\r\n"], ["\r\n"], ["${i}\r\n"], ["\r\n"], ["${i} = 2\r\n"], ["\r\n"], ["\r\n"], ["\r\n"], ["\r\n"], ["\r\n"], ["\r\n"], ["\r\n"], ["${lkr_docs}[${i}]\r\n"], ["${anz_seiten}\r\n"], ["\r\n"], ["\r\n"], ["Makes a variable available everywhere within the scope of the current test.\r\n"], ["\r\n"], ["${dokid}\r\n"], ["${lkr_doc}\r\n"], ["\r\n"], ["${dokid} = 6178142\r\n"], ["\r\n"], ["\r\n"], ["\r\n"], ["\r\n"], ["aae_dokumentennr\r\n"], ["5\r\n"], ["100\r\n"], ["${lkr_doc}\r\n"], ["\r\n"], ["\r\n"], ["\r\n"], ["${image}\r\n"], ["${timeout}\r\n"], ["\r\n"], ["\r\n"], ["${loc}\r\n"], ["\r\n"], ["\r\n"], ["Runs the given keyword with the given arguments, if ``condition`` is true.\r\n"], ["\r\n"], ["'${image}' in ${lkr_loc_img}\r\n"], ["Change Image Folder\r\n"], ["${imgpath}\\\\${LKR_UC}\r\n"], ["\r\n"], ["\r\n"], ["\r\n"], ["\r\n"], ["Tries to locate given image from the screen for given time.\r\n"], ["\r\n"], ["${image}\r\n"], ["timeout=${timeout}\r\n"], ["\r\n"], ["\r\n"], ["${loc}\r\n"], ["\r\n"], ["Image \"aae_dokumentennr\" found at (452, 463)\r\n"], ["${loc} = (452, 463)\r\n"], ["\r\n"], ["\r\n"], ["\r\n"], ["Runs the given keyword with the given arguments, if ``condition`` is true.\r\n"], ["\r\n"], ["'${image}' in ${lkr_loc_img}\r\n"], ["Change Image Folder\r\n"], ["${imgpath}\r\n"], ["\r\n"], ["\r\n"], ["\r\n"], ["${loc} = (452, 463)\r\n"], ["\r\n"], ["\r\n"], ["\r\n"], ["Clicks right of given location by given offset.\r\n"], ["\r\n"], ["${loc}\r\n"], ["${offset}\r\n"], ["\r\n"], ["Clicking 1 time(s) at (552, 463) with left mouse button at interval 0.000000\r\n"], ["\r\n"], ["\r\n"], ["\r\n"], ["Type text and keyboard keys.\r\n"], ["\r\n"], ["@{text}\r\n"], ["\r\n"], ["\r\n"], ["\r\n"], ["\r\n"], ["\r\n"], ["\r\n"], ["Type text and keyboard keys.\r\n"], ["\r\n"], ["Key.enter\r\n"], ["\r\n"], ["\r\n"], ["\r\n"], ["\r\n"], ["\r\n"], ["aae_treffer_1\r\n"], ["timeout=10\r\n"], ["\r\n"], ["\r\n"], ["\r\n"], ["${image}\r\n"], ["${timeout}\r\n"], ["\r\n"], ["\r\n"], ["${loc}\r\n"], ["\r\n"], ["\r\n"], ["Runs the given keyword with the given arguments, if ``condition`` is true.\r\n"], ["\r\n"], ["'${image}' in ${lkr_loc_img}\r\n"], ["Change Image Folder\r\n"], ["${imgpath}\\\\${LKR_UC}\r\n"], ["\r\n"], ["\r\n"], ["\r\n"], ["\r\n"], ["Tries to locate given image from the screen for given time.\r\n"], ["\r\n"], ["${image}\r\n"], ["timeout=${timeout}\r\n"], ["\r\n"], ["\r\n"], ["${loc}\r\n"], ["\r\n"], ["Image \"aae_treffer_1\" found at (870, 745)\r\n"], ["${loc} = (870, 745)\r\n"], ["\r\n"], ["\r\n"], ["\r\n"], ["Runs the given keyword with the given arguments, if ``condition`` is true.\r\n"], ["\r\n"], ["'${image}' in ${lkr_loc_img}\r\n"], ["Change Image Folder\r\n"], ["${imgpath}\r\n"], ["\r\n"], ["\r\n"], ["\r\n"], ["${loc} = (870, 745)\r\n"], ["\r\n"], ["\r\n"], ["\r\n"], ["\r\n"], ["${loc}\r\n"], ["\r\n"], ["\r\n"], ["Moves the mouse pointer to an absolute coordinates.\r\n"], ["\r\n"], ["${loc}\r\n"], ["\r\n"], ["\r\n"], ["\r\n"], ["\r\n"], ["Clicks with the specified mouse button.\r\n"], ["\r\n"], ["\r\n"], ["\r\n"], ["\r\n"], ["\r\n"], ["\r\n"], ["\r\n"], ["Type text and keyboard keys.\r\n"], ["\r\n"], ["Key.Tab\r\n"], ["Key.Tab\r\n"], ["Key.Tab\r\n"], ["Key.Tab\r\n"], ["Key.right\r\n"], ["\r\n"], ["\r\n"], ["\r\n"], ["\r\n"], ["\r\n"], ["aae_zeile_markiert\r\n"], ["timeout=10\r\n"], ["\r\n"], ["\r\n"], ["\r\n"], ["${image}\r\n"], ["${timeout}\r\n"], ["\r\n"], ["\r\n"], ["${loc}\r\n"], ["\r\n"], ["\r\n"], ["Runs the given keyword with the given arguments, if ``condition`` is true.\r\n"], ["\r\n"], ["'${image}' in ${lkr_loc_img}\r\n"], ["Change Image Folder\r\n"], ["${imgpath}\\\\${LKR_UC}\r\n"], ["\r\n"], ["\r\n"], ["\r\n"], ["\r\n"], ["Tries to locate given image from the screen for given time.\r\n"], ["\r\n"], ["${image}\r\n"], ["timeout=${timeout}\r\n"], ["\r\n"], ["\r\n"], ["${loc}\r\n"], ["\r\n"], ["Image \"aae_zeile_markiert\" found at (423, 786)\r\n"], ["${loc} = (423, 786)\r\n"], ["\r\n"], ["\r\n"], ["\r\n"], ["Runs the given keyword with the given arguments, if ``condition`` is true.\r\n"], ["\r\n"], ["'${image}' in ${lkr_loc_img}\r\n"], ["Change Image Folder\r\n"], ["${imgpath}\r\n"], ["\r\n"], ["\r\n"], ["\r\n"], ["${loc} = (423, 786)\r\n"], ["\r\n"], ["\r\n"], ["\r\n"], ["\r\n"], ["${loc}\r\n"], ["\r\n"], ["\r\n"], ["Moves the mouse pointer to an absolute coordinates.\r\n"], ["\r\n"], ["${loc}\r\n"], ["\r\n"], ["\r\n"], ["\r\n"], ["\r\n"], ["Clicks with the specified mouse button.\r\n"], ["\r\n"], ["\r\n"], ["\r\n"], ["\r\n"], ["\r\n"], ["\r\n"], ["\r\n"], ["\r\n"], ["aae_viewer_b\r\n"], ["timeout=10\r\n"], ["\r\n"], ["\r\n"], ["\r\n"], ["${image}\r\n"], ["${timeout}\r\n"], ["\r\n"], ["\r\n"], ["${loc}\r\n"], ["\r\n"], ["\r\n"], ["Runs the given keyword with the given arguments, if ``condition`` is true.\r\n"], ["\r\n"], ["'${image}' in ${lkr_loc_img}\r\n"], ["Change Image Folder\r\n"], ["${imgpath}\\\\${LKR_UC}\r\n"], ["\r\n"], ["\r\n"], ["\r\n"], ["\r\n"], ["Tries to locate given image from the screen for given time.\r\n"], ["\r\n"], ["${image}\r\n"], ["timeout=${timeout}\r\n"], ["\r\n"], ["\r\n"], ["${loc}\r\n"], ["\r\n"], ["Image \"aae_viewer_b\" found at (641, 709)\r\n"], ["${loc} = (641, 709)\r\n"], ["\r\n"], ["\r\n"], ["\r\n"], ["Runs the given keyword with the given arguments, if ``condition`` is true.\r\n"], ["\r\n"], ["'${image}' in ${lkr_loc_img}\r\n"], ["Change Image Folder\r\n"], ["${imgpath}\r\n"], ["\r\n"], ["\r\n"], ["\r\n"], ["${loc} = (641, 709)\r\n"], ["\r\n"], ["\r\n"], ["\r\n"], ["\r\n"], ["${loc}\r\n"], ["\r\n"], ["\r\n"], ["Moves the mouse pointer to an absolute coordinates.\r\n"], ["\r\n"], ["${loc}\r\n"], ["\r\n"], ["\r\n"], ["\r\n"], ["\r\n"], ["Clicks with the specified mouse button.\r\n"], ["\r\n"], ["\r\n"], ["\r\n"], ["\r\n"], ["\r\n"], ["\r\n"], ["\r\n"], ["\r\n"], ["bviewer_opened\r\n"], ["10\r\n"], ["\r\n"], ["\r\n"], ["Runs the given keyword with the given arguments, if ``condition`` is true.\r\n"], ["\r\n"], ["'${image}' in ${lkr_loc_img}\r\n"], ["Change Image Folder\r\n"], ["${imgpath}\\\\${LKR_UC}\r\n"], ["\r\n"], ["\r\n"], ["\r\n"], ["\r\n"], ["Tries to locate given image from the screen for given time.\r\n"], ["\r\n"], ["${image}\r\n"], ["timeout=${timeout}\r\n"], ["\r\n"], ["\r\n"], ["${loc}\r\n"], ["\r\n"], ["Image \"bviewer_opened\" found at (652, 94)\r\n"], ["${loc} = (652, 94)\r\n"], ["\r\n"], ["\r\n"], ["\r\n"], ["Runs the given keyword with the given arguments, if ``condition`` is true.\r\n"], ["\r\n"], ["'${image}' in ${lkr_loc_img}\r\n"], ["Change Image Folder\r\n"], ["${imgpath}\r\n"], ["\r\n"], ["\r\n"], ["\r\n"], ["\r\n"], ["\r\n"], ["\r\n"], ["Pauses the test executed for the given time.\r\n"], ["\r\n"], ["0.5\r\n"], ["\r\n"], ["Slept 500 milliseconds\r\n"], ["\r\n"], ["\r\n"], ["\r\n"], ["\r\n"], ["bviewer_opened\r\n"], ["timeout=10\r\n"], ["\r\n"], ["\r\n"], ["\r\n"], ["${image}\r\n"], ["${timeout}\r\n"], ["\r\n"], ["\r\n"], ["${loc}\r\n"], ["\r\n"], ["\r\n"], ["Runs the given keyword with the given arguments, if ``condition`` is true.\r\n"], ["\r\n"], ["'${image}' in ${lkr_loc_img}\r\n"], ["Change Image Folder\r\n"], ["${imgpath}\\\\${LKR_UC}\r\n"], ["\r\n"], ["\r\n"], ["\r\n"], ["\r\n"], ["Tries to locate given image from the screen for given time.\r\n"], ["\r\n"], ["${image}\r\n"], ["timeout=${timeout}\r\n"], ["\r\n"], ["\r\n"], ["${loc}\r\n"], ["\r\n"], ["Image \"bviewer_opened\" found at (652, 94)\r\n"], ["${loc} = (652, 94)\r\n"], ["\r\n"], ["\r\n"], ["\r\n"], ["Runs the given keyword with the given arguments, if ``condition`` is true.\r\n"], ["\r\n"], ["'${image}' in ${lkr_loc_img}\r\n"], ["Change Image Folder\r\n"], ["${imgpath}\r\n"], ["\r\n"], ["\r\n"], ["\r\n"], ["${loc} = (652, 94)\r\n"], ["\r\n"], ["\r\n"], ["\r\n"], ["\r\n"], ["${loc}\r\n"], ["\r\n"], ["\r\n"], ["Moves the mouse pointer to an absolute coordinates.\r\n"], ["\r\n"], ["${loc}\r\n"], ["\r\n"], ["\r\n"], ["\r\n"], ["\r\n"], ["Clicks with the specified mouse button.\r\n"], ["\r\n"], ["\r\n"], ["\r\n"], ["\r\n"], ["\r\n"], ["\r\n"], ["\r\n"], ["Pauses the test executed for the given time.\r\n"], ["\r\n"], ["0.5\r\n"], ["\r\n"], ["Slept 500 milliseconds\r\n"], ["\r\n"], ["\r\n"], ["\r\n"], ["Press given keyboard keys.\r\n"], ["\r\n"], ["Key.Win\r\n"], ["Key.Up\r\n"], ["\r\n"], ["\r\n"], ["\r\n"], ["\r\n"], ["Returns the given values which can then be assigned to a variables.\r\n"], ["\r\n"], ["ARCHIVETOOL_DOKU_${LKR_UC}_${anz_seiten}\r\n"], ["\r\n"], ["\r\n"], ["${search_image}\r\n"], ["\r\n"], ["${search_image} = ARCHIVETOOL_DOKU_SH_300\r\n"], ["\r\n"], ["\r\n"], ["\r\n"], ["\r\n"], ["bviewer_opened\r\n"], ["timeout=10\r\n"], ["\r\n"], ["\r\n"], ["\r\n"], ["${image}\r\n"], ["${timeout}\r\n"], ["\r\n"], ["\r\n"], ["${loc}\r\n"], ["\r\n"], ["\r\n"], ["Runs the given keyword with the given arguments, if ``condition`` is true.\r\n"], ["\r\n"], ["'${image}' in ${lkr_loc_img}\r\n"], ["Change Image Folder\r\n"], ["${imgpath}\\\\${LKR_UC}\r\n"], ["\r\n"], ["\r\n"], ["\r\n"], ["\r\n"], ["Tries to locate given image from the screen for given time.\r\n"], ["\r\n"], ["${image}\r\n"], ["timeout=${timeout}\r\n"], ["\r\n"], ["\r\n"], ["${loc}\r\n"], ["\r\n"], ["Image \"bviewer_opened\" found at (11, 85)\r\n"], ["${loc} = (11, 85)\r\n"], ["\r\n"], ["\r\n"], ["\r\n"], ["Runs the given keyword with the given arguments, if ``condition`` is true.\r\n"], ["\r\n"], ["'${image}' in ${lkr_loc_img}\r\n"], ["Change Image Folder\r\n"], ["${imgpath}\r\n"], ["\r\n"], ["\r\n"], ["\r\n"], ["${loc} = (11, 85)\r\n"], ["\r\n"], ["\r\n"], ["\r\n"], ["\r\n"], ["${loc}\r\n"], ["\r\n"], ["\r\n"], ["Moves the mouse pointer to an absolute coordinates.\r\n"], ["\r\n"], ["${loc}\r\n"], ["\r\n"], ["\r\n"], ["\r\n"], ["\r\n"], ["Clicks with the specified mouse button.\r\n"], ["\r\n"], ["\r\n"], ["\r\n"], ["\r\n"], ["\r\n"], ["\r\n"], ["\r\n"], ["Tries to locate given image from the screen for given time.\r\n"], ["\r\n"], ["${search_image}\r\n"], ["timeout=90\r\n"], ["\r\n"], ["Image \"ARCHIVETOOL_DOKU_SH_300\" found at (220, 208)\r\n"], ["\r\n"], ["\r\n"], ["\r\n"], ["Press given keyboard keys.\r\n"], ["\r\n"], ["Key.Alt\r\n"], ["Key.F4\r\n"], ["\r\n"], ["\r\n"], ["\r\n"], ["\r\n"], ["\r\n"], ["\r\n"], ["\r\n"], ["aae_suche_clear\r\n"], ["timeout=5\r\n"], ["\r\n"], ["\r\n"], ["\r\n"], ["${image}\r\n"], ["${timeout}\r\n"], ["\r\n"], ["\r\n"], ["${loc}\r\n"], ["\r\n"], ["\r\n"], ["Runs the given keyword with the given arguments, if ``condition`` is true.\r\n"], ["\r\n"], ["'${image}' in ${lkr_loc_img}\r\n"], ["Change Image Folder\r\n"], ["${imgpath}\\\\${LKR_UC}\r\n"], ["\r\n"], ["\r\n"], ["\r\n"], ["\r\n"], ["Tries to locate given image from the screen for given time.\r\n"], ["\r\n"], ["${image}\r\n"], ["timeout=${timeout}\r\n"], ["\r\n"], ["\r\n"], ["${loc}\r\n"], ["\r\n"], ["Image \"aae_suche_clear\" found at (404, 709)\r\n"], ["${loc} = (404, 709)\r\n"], ["\r\n"], ["\r\n"], ["\r\n"], ["Runs the given keyword with the given arguments, if ``condition`` is true.\r\n"], ["\r\n"], ["'${image}' in ${lkr_loc_img}\r\n"], ["Change Image Folder\r\n"], ["${imgpath}\r\n"], ["\r\n"], ["\r\n"], ["\r\n"], ["${loc} = (404, 709)\r\n"], ["\r\n"], ["\r\n"], ["\r\n"], ["\r\n"], ["${loc}\r\n"], ["\r\n"], ["\r\n"], ["Moves the mouse pointer to an absolute coordinates.\r\n"], ["\r\n"], ["${loc}\r\n"], ["\r\n"], ["\r\n"], ["\r\n"], ["\r\n"], ["Clicks with the specified mouse button.\r\n"], ["\r\n"], ["\r\n"], ["\r\n"], ["\r\n"], ["\r\n"], ["\r\n"], ["\r\n"], ["\r\n"], ["aae_dokumentennr_bereit\r\n"], ["timeout=5\r\n"], ["\r\n"], ["\r\n"], ["Runs the given keyword with the given arguments, if ``condition`` is true.\r\n"], ["\r\n"], ["'${image}' in ${lkr_loc_img}\r\n"], ["Change Image Folder\r\n"], ["${imgpath}\\\\${LKR_UC}\r\n"], ["\r\n"], ["\r\n"], ["\r\n"], ["\r\n"], ["Tries to locate given image from the screen for given time.\r\n"], ["\r\n"], ["${image}\r\n"], ["timeout=${timeout}\r\n"], ["\r\n"], ["\r\n"], ["${loc}\r\n"], ["\r\n"], ["Image \"aae_dokumentennr_bereit\" found at (569, 464)\r\n"], ["${loc} = (569, 464)\r\n"], ["\r\n"], ["\r\n"], ["\r\n"], ["Runs the given keyword with the given arguments, if ``condition`` is true.\r\n"], ["\r\n"], ["'${image}' in ${lkr_loc_img}\r\n"], ["Change Image Folder\r\n"], ["${imgpath}\r\n"], ["\r\n"], ["\r\n"], ["\r\n"], ["\r\n"], ["\r\n"], ["\r\n"], ["Evaluates the given expression in Python and returns the result.\r\n"], ["\r\n"], ["${i} + 1\r\n"], ["\r\n"], ["\r\n"], ["${i}\r\n"], ["\r\n"], ["${i} = 3\r\n"], ["\r\n"], ["\r\n"], ["\r\n"], ["\r\n"], ["\r\n"], ["\r\n"], ["\r\n"], ["\r\n"], ["\r\n"], ["\r\n"], ["Runs the given keyword with the given arguments, if ``condition`` is true.\r\n"], ["\r\n"], ["${APPOPEN}==${True}\r\n"], ["Terminate Application\r\n"], ["alias=archivetool\r\n"], ["\r\n"], ["\r\n"], ["Terminates the process launched with `Launch Application` with\r\n"], ["given ``alias``.\r\n"], ["\r\n"], ["alias=archivetool\r\n"], ["\r\n"], ["\r\n"], ["\r\n"], ["\r\n"], ["\r\n"], ["\r\n"], ["Runs the given keyword with the given arguments, if ``condition`` is true.\r\n"], ["\r\n"], ["${APPOPEN}==${True}\r\n"], ["Quit All Viewer Processes\r\n"], ["\r\n"], ["\r\n"], ["\r\n"], ["Runs a process and waits for it to complete.\r\n"], ["\r\n"], ["cmd.exe /c taskkill /IM ArchiveViewAdvancedA.exe\r\n"], ["shell=True\r\n"], ["\r\n"], ["Starting process:\r\n"], ["cmd.exe /c taskkill /IM ArchiveViewAdvancedA.exe\r\n"], ["Waiting for process to complete.\r\n"], ["Process completed.\r\n"], ["\r\n"], ["\r\n"], ["\r\n"], ["Runs a process and waits for it to complete.\r\n"], ["\r\n"], ["cmd.exe /c taskkill /IM ArchiveViewAdvancedB.exe\r\n"], ["shell=True\r\n"], ["\r\n"], ["Starting process:\r\n"], ["cmd.exe /c taskkill /IM ArchiveViewAdvancedB.exe\r\n"], ["Waiting for process to complete.\r\n"], ["Process completed.\r\n"], ["\r\n"], ["\r\n"], ["\r\n"], ["Runs a process and waits for it to complete.\r\n"], ["\r\n"], ["cmd.exe /c taskkill /IM ArchiveViewAdvancedC.exe\r\n"], ["shell=True\r\n"], ["\r\n"], ["Starting process:\r\n"], ["cmd.exe /c taskkill /IM ArchiveViewAdvancedC.exe\r\n"], ["Waiting for process to complete.\r\n"], ["Process completed.\r\n"], ["\r\n"], ["\r\n"], ["\r\n"], ["Runs a process and waits for it to complete.\r\n"], ["\r\n"], ["cmd.exe /c taskkill /IM\r\n"], ["ArchivToolExtAdvanced.exe\r\n"], ["shell=True\r\n"], ["\r\n"], ["Starting process:\r\n"], ["\"cmd.exe /c taskkill /IM\" ArchivToolExtAdvanced.exe\r\n"], ["Waiting for process to complete.\r\n"], ["Process completed.\r\n"], ["\r\n"], ["\r\n"], ["\r\n"], ["Runs a process and waits for it to complete.\r\n"], ["\r\n"], ["cmd.exe /c taskkill /IM\r\n"], ["archtool.exe\r\n"], ["shell=True\r\n"], ["\r\n"], ["Starting process:\r\n"], ["\"cmd.exe /c taskkill /IM\" archtool.exe\r\n"], ["Waiting for process to complete.\r\n"], ["Process completed.\r\n"], ["\r\n"], ["\r\n"], ["\r\n"], ["\r\n"], ["\r\n"], ["\r\n"], ["\r\n"], ["Makes a variable available everywhere within the scope of the current suite.\r\n"], ["\r\n"], ["${APPOPEN}\r\n"], ["${False}\r\n"], ["\r\n"], ["${APPOPEN} = False\r\n"], ["\r\n"], ["\r\n"], ["\r\n"], ["\r\n"], ["\r\n"], ["\r\n"], ["\r\n"], ["\r\n"], ["\r\n"], ["UR\r\n"], ["\r\n"], ["\r\n"], ["Sets where all reference images are stored.\r\n"], ["\r\n"], ["${imgpath}\r\n"], ["\r\n"], ["\r\n"], ["\r\n"], ["\r\n"], ["\r\n"], ["${lkr_uc}\r\n"], ["\r\n"], ["\r\n"], ["Makes a variable available everywhere within the scope of the current test.\r\n"], ["\r\n"], ["${LKR_UC}\r\n"], ["${lkr_uc}\r\n"], ["\r\n"], ["${LKR_UC} = UR\r\n"], ["\r\n"], ["\r\n"], ["\r\n"], ["Converts string to lower case.\r\n"], ["\r\n"], ["${lkr_uc}\r\n"], ["\r\n"], ["\r\n"], ["${lkr_lc}\r\n"], ["\r\n"], ["${lkr_lc} = ur\r\n"], ["\r\n"], ["\r\n"], ["\r\n"], ["Makes a variable available everywhere within the scope of the current test.\r\n"], ["\r\n"], ["${LKR_LC}\r\n"], ["${lkr_lc}\r\n"], ["\r\n"], ["${LKR_LC} = ur\r\n"], ["\r\n"], ["\r\n"], ["\r\n"], ["Makes a variable available everywhere within the scope of the current test.\r\n"], ["\r\n"], ["${lkr_docs}\r\n"], ["${TESTDATA['${LKR_UC}']['docs']}\r\n"], ["\r\n"], ["${lkr_docs} = ['1827996', '1828026', '1828126']\r\n"], ["\r\n"], ["\r\n"], ["\r\n"], ["Makes a variable available everywhere within the scope of the current test.\r\n"], ["\r\n"], ["${lkr_cred}\r\n"], ["${TESTDATA['${LKR_UC}']['credentials']}\r\n"], ["\r\n"], ["${lkr_cred} = ['urmf', 'crypt:4BvQw6JTldye6IBNhu19Ip8AwAefUKB3/P3KGvHQMn2VPelDakiMdaIEbr0ZDkhN9bngrISddkU=']\r\n"], ["\r\n"], ["\r\n"], ["\r\n"], ["Makes a variable available everywhere within the scope of the current test.\r\n"], ["\r\n"], ["${lkr_loc_img}\r\n"], ["${TESTDATA['${LKR_UC}']['loc_img']}\r\n"], ["\r\n"], ["${lkr_loc_img} = []\r\n"], ["\r\n"], ["\r\n"], ["\r\n"], ["Makes a variable available everywhere within the scope of the current test.\r\n"], ["\r\n"], ["${user}\r\n"], ["${lkr_cred}[0]\r\n"], ["\r\n"], ["${user} = urmf\r\n"], ["\r\n"], ["\r\n"], ["\r\n"], ["Decrypts cipher text and returns the plain text.\r\n"], ["\r\n"], ["${lkr_cred}[1]\r\n"], ["\r\n"], ["\r\n"], ["${password}\r\n"], ["\r\n"], ["Decrypting text and return value.\r\n"], ["${password} = ***\r\n"], ["\r\n"], ["\r\n"], ["\r\n"], ["Makes a variable available everywhere within the scope of the current test.\r\n"], ["\r\n"], ["${password}\r\n"], ["${password}\r\n"], ["\r\n"], ["${password} = ***\r\n"], ["\r\n"], ["\r\n"], ["\r\n"], ["\r\n"], ["\r\n"], ["\r\n"], ["Runs a process and waits for it to complete.\r\n"], ["\r\n"], ["cmd.exe /c taskkill /IM ArchiveViewAdvancedA.exe\r\n"], ["shell=True\r\n"], ["\r\n"], ["Starting process:\r\n"], ["cmd.exe /c taskkill /IM ArchiveViewAdvancedA.exe\r\n"], ["Waiting for process to complete.\r\n"], ["Process completed.\r\n"], ["\r\n"], ["\r\n"], ["\r\n"], ["Runs a process and waits for it to complete.\r\n"], ["\r\n"], ["cmd.exe /c taskkill /IM ArchiveViewAdvancedB.exe\r\n"], ["shell=True\r\n"], ["\r\n"], ["Starting process:\r\n"], ["cmd.exe /c taskkill /IM ArchiveViewAdvancedB.exe\r\n"], ["Waiting for process to complete.\r\n"], ["Process completed.\r\n"], ["\r\n"], ["\r\n"], ["\r\n"], ["Runs a process and waits for it to complete.\r\n"], ["\r\n"], ["cmd.exe /c taskkill /IM ArchiveViewAdvancedC.exe\r\n"], ["shell=True\r\n"], ["\r\n"], ["Starting process:\r\n"], ["cmd.exe /c taskkill /IM ArchiveViewAdvancedC.exe\r\n"], ["Waiting for process to complete.\r\n"], ["Process completed.\r\n"], ["\r\n"], ["\r\n"], ["\r\n"], ["Runs a process and waits for it to complete.\r\n"], ["\r\n"], ["cmd.exe /c taskkill /IM\r\n"], ["ArchivToolExtAdvanced.exe\r\n"], ["shell=True\r\n"], ["\r\n"], ["Starting process:\r\n"], ["\"cmd.exe /c taskkill /IM\" ArchivToolExtAdvanced.exe\r\n"], ["Waiting for process to complete.\r\n"], ["Process completed.\r\n"], ["\r\n"], ["\r\n"], ["\r\n"], ["Runs a process and waits for it to complete.\r\n"], ["\r\n"], ["cmd.exe /c taskkill /IM\r\n"], ["archtool.exe\r\n"], ["shell=True\r\n"], ["\r\n"], ["Starting process:\r\n"], ["\"cmd.exe /c taskkill /IM\" archtool.exe\r\n"], ["Waiting for process to complete.\r\n"], ["Process completed.\r\n"], ["\r\n"], ["\r\n"], ["\r\n"], ["\r\n"], ["\r\n"], ["\r\n"], ["Runs a process and waits for it to complete.\r\n"], ["\r\n"], ["C:\\\\ProgramData\\\\checkmk\\\\agent\\\\robot\\\\archivetool\\\\ArchivetoolConfig\\\\sva_${LKR_LC} konfiguration.bat\r\n"], ["\r\n"], ["Starting process:\r\n"], ["\"C:\\ProgramData\\checkmk\\agent\\robot\\archivetool\\ArchivetoolConfig\\sva_ur konfiguration.bat\"\r\n"], ["Waiting for process to complete.\r\n"], ["Process completed.\r\n"], ["\r\n"], ["\r\n"], ["\r\n"], ["Launches an application.\r\n"], ["\r\n"], ["\"${APP}\"\r\n"], ["alias=archivetool\r\n"], ["\r\n"], ["\r\n"], ["\r\n"], ["\r\n"], ["Makes a variable available everywhere within the scope of the current suite.\r\n"], ["\r\n"], ["${APPOPEN}\r\n"], ["${True}\r\n"], ["\r\n"], ["${APPOPEN} = True\r\n"], ["\r\n"], ["\r\n"], ["\r\n"], ["\r\n"], ["\r\n"], ["\r\n"], ["\r\n"], ["login_username\r\n"], ["timeout=10\r\n"], ["\r\n"], ["\r\n"], ["${loc}\r\n"], ["\r\n"], ["\r\n"], ["Runs the given keyword with the given arguments, if ``condition`` is true.\r\n"], ["\r\n"], ["'${image}' in ${lkr_loc_img}\r\n"], ["Change Image Folder\r\n"], ["${imgpath}\\\\${LKR_UC}\r\n"], ["\r\n"], ["\r\n"], ["\r\n"], ["\r\n"], ["Tries to locate given image from the screen for given time.\r\n"], ["\r\n"], ["${image}\r\n"], ["timeout=${timeout}\r\n"], ["\r\n"], ["\r\n"], ["${loc}\r\n"], ["\r\n"], ["Image \"login_username\" found at (227, 149)\r\n"], ["${loc} = (227, 149)\r\n"], ["\r\n"], ["\r\n"], ["\r\n"], ["Runs the given keyword with the given arguments, if ``condition`` is true.\r\n"], ["\r\n"], ["'${image}' in ${lkr_loc_img}\r\n"], ["Change Image Folder\r\n"], ["${imgpath}\r\n"], ["\r\n"], ["\r\n"], ["\r\n"], ["${loc} = (227, 149)\r\n"], ["\r\n"], ["\r\n"], ["\r\n"], ["Finds the reference image on screen and clicks it once.\r\n"], ["\r\n"], ["login_username\r\n"], ["\r\n"], ["Image \"C:\\ProgramData\\checkmk\\agent\\robot\\archivetool\\images\\login_username.png\" found at Box(left=182, top=134, width=90, height=30)\r\n"], ["Clicking image \"login_username\" in position (227, 149)\r\n"], ["\r\n"], ["\r\n"], ["\r\n"], ["Pauses the test executed for the given time.\r\n"], ["\r\n"], ["0.2\r\n"], ["\r\n"], ["Slept 200 milliseconds\r\n"], ["\r\n"], ["\r\n"], ["\r\n"], ["\r\n"], ["login_username\r\n"], ["10\r\n"], ["20\r\n"], ["${user}\r\n"], ["\r\n"], ["\r\n"], ["\r\n"], ["${image}\r\n"], ["${timeout}\r\n"], ["\r\n"], ["\r\n"], ["${loc}\r\n"], ["\r\n"], ["\r\n"], ["Runs the given keyword with the given arguments, if ``condition`` is true.\r\n"], ["\r\n"], ["'${image}' in ${lkr_loc_img}\r\n"], ["Change Image Folder\r\n"], ["${imgpath}\\\\${LKR_UC}\r\n"], ["\r\n"], ["\r\n"], ["\r\n"], ["\r\n"], ["Tries to locate given image from the screen for given time.\r\n"], ["\r\n"], ["${image}\r\n"], ["timeout=${timeout}\r\n"], ["\r\n"], ["\r\n"], ["${loc}\r\n"], ["\r\n"], ["Image \"login_username\" found at (227, 149)\r\n"], ["${loc} = (227, 149)\r\n"], ["\r\n"], ["\r\n"], ["\r\n"], ["Runs the given keyword with the given arguments, if ``condition`` is true.\r\n"], ["\r\n"], ["'${image}' in ${lkr_loc_img}\r\n"], ["Change Image Folder\r\n"], ["${imgpath}\r\n"], ["\r\n"], ["\r\n"], ["\r\n"], ["${loc} = (227, 149)\r\n"], ["\r\n"], ["\r\n"], ["\r\n"], ["Clicks right of given location by given offset.\r\n"], ["\r\n"], ["${loc}\r\n"], ["${offset}\r\n"], ["\r\n"], ["Clicking 1 time(s) at (247, 149) with left mouse button at interval 0.000000\r\n"], ["\r\n"], ["\r\n"], ["\r\n"], ["Type text and keyboard keys.\r\n"], ["\r\n"], ["@{text}\r\n"], ["\r\n"], ["\r\n"], ["\r\n"], ["\r\n"], ["\r\n"], ["\r\n"], ["Pauses the test executed for the given time.\r\n"], ["\r\n"], ["0.2\r\n"], ["\r\n"], ["Slept 200 milliseconds\r\n"], ["\r\n"], ["\r\n"], ["\r\n"], ["Type text and keyboard keys.\r\n"], ["\r\n"], ["Key.tab\r\n"], ["\r\n"], ["\r\n"], ["\r\n"], ["\r\n"], ["Pauses the test executed for the given time.\r\n"], ["\r\n"], ["0.2\r\n"], ["\r\n"], ["Slept 200 milliseconds\r\n"], ["\r\n"], ["\r\n"], ["\r\n"], ["Type text and keyboard keys.\r\n"], ["\r\n"], ["${password}\r\n"], ["Key.enter\r\n"], ["Key.enter\r\n"], ["\r\n"], ["\r\n"], ["\r\n"], ["\r\n"], ["\r\n"], ["archiv_vista_warn\r\n"], ["timeout=5\r\n"], ["\r\n"], ["\r\n"], ["\r\n"], ["${image}\r\n"], ["${timeout}\r\n"], ["\r\n"], ["\r\n"], ["${loc}\r\n"], ["\r\n"], ["\r\n"], ["Runs the given keyword with the given arguments, if ``condition`` is true.\r\n"], ["\r\n"], ["'${image}' in ${lkr_loc_img}\r\n"], ["Change Image Folder\r\n"], ["${imgpath}\\\\${LKR_UC}\r\n"], ["\r\n"], ["\r\n"], ["\r\n"], ["\r\n"], ["Tries to locate given image from the screen for given time.\r\n"], ["\r\n"], ["${image}\r\n"], ["timeout=${timeout}\r\n"], ["\r\n"], ["\r\n"], ["${loc}\r\n"], ["\r\n"], ["Image \"archiv_vista_warn\" found at (845, 559)\r\n"], ["${loc} = (845, 559)\r\n"], ["\r\n"], ["\r\n"], ["\r\n"], ["Runs the given keyword with the given arguments, if ``condition`` is true.\r\n"], ["\r\n"], ["'${image}' in ${lkr_loc_img}\r\n"], ["Change Image Folder\r\n"], ["${imgpath}\r\n"], ["\r\n"], ["\r\n"], ["\r\n"], ["${loc} = (845, 559)\r\n"], ["\r\n"], ["\r\n"], ["\r\n"], ["\r\n"], ["${loc}\r\n"], ["\r\n"], ["\r\n"], ["Moves the mouse pointer to an absolute coordinates.\r\n"], ["\r\n"], ["${loc}\r\n"], ["\r\n"], ["\r\n"], ["\r\n"], ["\r\n"], ["Clicks with the specified mouse button.\r\n"], ["\r\n"], ["\r\n"], ["\r\n"], ["\r\n"], ["\r\n"], ["\r\n"], ["\r\n"], ["Type text and keyboard keys.\r\n"], ["\r\n"], ["Key.enter\r\n"], ["\r\n"], ["\r\n"], ["\r\n"], ["\r\n"], ["Tries to locate given image from the screen for given time.\r\n"], ["\r\n"], ["aae_toolbar\r\n"], ["timeout=10\r\n"], ["\r\n"], ["Image \"aae_toolbar\" found at (506, 709)\r\n"], ["\r\n"], ["\r\n"], ["\r\n"], ["\r\n"], ["\r\n"], ["\r\n"], ["Returns ``True`` if reference image was found on screen or\r\n"], ["``False`` otherwise. Never fails.\r\n"], ["\r\n"], ["aae_vorbelegung_checked\r\n"], ["\r\n"], ["\r\n"], ["${vorbelegt_checked}\r\n"], ["\r\n"], ["${vorbelegt_checked} = False\r\n"], ["\r\n"], ["\r\n"], ["\r\n"], ["Runs the given keyword with the given arguments, if ``condition`` is true.\r\n"], ["\r\n"], ["${vorbelegt_checked}==${True}\r\n"], ["Click Image\r\n"], ["aae_vorbelegung_checked\r\n"], ["\r\n"], ["\r\n"], ["\r\n"], ["\r\n"], ["\r\n"], ["\r\n"], ["Returns the given values which can then be assigned to a variables.\r\n"], ["\r\n"], ["0\r\n"], ["\r\n"], ["\r\n"], ["${i}\r\n"], ["\r\n"], ["${i} = 0\r\n"], ["\r\n"], ["\r\n"], ["\r\n"], ["\r\n"], ["\r\n"], ["\r\n"], ["${lkr_docs}[${i}]\r\n"], ["${anz_seiten}\r\n"], ["\r\n"], ["\r\n"], ["Makes a variable available everywhere within the scope of the current test.\r\n"], ["\r\n"], ["${dokid}\r\n"], ["${lkr_doc}\r\n"], ["\r\n"], ["${dokid} = 1827996\r\n"], ["\r\n"], ["\r\n"], ["\r\n"], ["\r\n"], ["aae_dokumentennr\r\n"], ["5\r\n"], ["100\r\n"], ["${lkr_doc}\r\n"], ["\r\n"], ["\r\n"], ["\r\n"], ["${image}\r\n"], ["${timeout}\r\n"], ["\r\n"], ["\r\n"], ["${loc}\r\n"], ["\r\n"], ["\r\n"], ["Runs the given keyword with the given arguments, if ``condition`` is true.\r\n"], ["\r\n"], ["'${image}' in ${lkr_loc_img}\r\n"], ["Change Image Folder\r\n"], ["${imgpath}\\\\${LKR_UC}\r\n"], ["\r\n"], ["\r\n"], ["\r\n"], ["\r\n"], ["Tries to locate given image from the screen for given time.\r\n"], ["\r\n"], ["${image}\r\n"], ["timeout=${timeout}\r\n"], ["\r\n"], ["\r\n"], ["${loc}\r\n"], ["\r\n"], ["Image \"aae_dokumentennr\" found at (452, 463)\r\n"], ["${loc} = (452, 463)\r\n"], ["\r\n"], ["\r\n"], ["\r\n"], ["Runs the given keyword with the given arguments, if ``condition`` is true.\r\n"], ["\r\n"], ["'${image}' in ${lkr_loc_img}\r\n"], ["Change Image Folder\r\n"], ["${imgpath}\r\n"], ["\r\n"], ["\r\n"], ["\r\n"], ["${loc} = (452, 463)\r\n"], ["\r\n"], ["\r\n"], ["\r\n"], ["Clicks right of given location by given offset.\r\n"], ["\r\n"], ["${loc}\r\n"], ["${offset}\r\n"], ["\r\n"], ["Clicking 1 time(s) at (552, 463) with left mouse button at interval 0.000000\r\n"], ["\r\n"], ["\r\n"], ["\r\n"], ["Type text and keyboard keys.\r\n"], ["\r\n"], ["@{text}\r\n"], ["\r\n"], ["\r\n"], ["\r\n"], ["\r\n"], ["\r\n"], ["\r\n"], ["Type text and keyboard keys.\r\n"], ["\r\n"], ["Key.enter\r\n"], ["\r\n"], ["\r\n"], ["\r\n"], ["\r\n"], ["\r\n"], ["aae_treffer_1\r\n"], ["timeout=10\r\n"], ["\r\n"], ["\r\n"], ["\r\n"], ["${image}\r\n"], ["${timeout}\r\n"], ["\r\n"], ["\r\n"], ["${loc}\r\n"], ["\r\n"], ["\r\n"], ["Runs the given keyword with the given arguments, if ``condition`` is true.\r\n"], ["\r\n"], ["'${image}' in ${lkr_loc_img}\r\n"], ["Change Image Folder\r\n"], ["${imgpath}\\\\${LKR_UC}\r\n"], ["\r\n"], ["\r\n"], ["\r\n"], ["\r\n"], ["Tries to locate given image from the screen for given time.\r\n"], ["\r\n"], ["${image}\r\n"], ["timeout=${timeout}\r\n"], ["\r\n"], ["\r\n"], ["${loc}\r\n"], ["\r\n"], ["Image \"aae_treffer_1\" found at (870, 745)\r\n"], ["${loc} = (870, 745)\r\n"], ["\r\n"], ["\r\n"], ["\r\n"], ["Runs the given keyword with the given arguments, if ``condition`` is true.\r\n"], ["\r\n"], ["'${image}' in ${lkr_loc_img}\r\n"], ["Change Image Folder\r\n"], ["${imgpath}\r\n"], ["\r\n"], ["\r\n"], ["\r\n"], ["${loc} = (870, 745)\r\n"], ["\r\n"], ["\r\n"], ["\r\n"], ["\r\n"], ["${loc}\r\n"], ["\r\n"], ["\r\n"], ["Moves the mouse pointer to an absolute coordinates.\r\n"], ["\r\n"], ["${loc}\r\n"], ["\r\n"], ["\r\n"], ["\r\n"], ["\r\n"], ["Clicks with the specified mouse button.\r\n"], ["\r\n"], ["\r\n"], ["\r\n"], ["\r\n"], ["\r\n"], ["\r\n"], ["\r\n"], ["Type text and keyboard keys.\r\n"], ["\r\n"], ["Key.Tab\r\n"], ["Key.Tab\r\n"], ["Key.Tab\r\n"], ["Key.Tab\r\n"], ["Key.right\r\n"], ["\r\n"], ["\r\n"], ["\r\n"], ["\r\n"], ["\r\n"], ["aae_zeile_markiert\r\n"], ["timeout=10\r\n"], ["\r\n"], ["\r\n"], ["\r\n"], ["${image}\r\n"], ["${timeout}\r\n"], ["\r\n"], ["\r\n"], ["${loc}\r\n"], ["\r\n"], ["\r\n"], ["Runs the given keyword with the given arguments, if ``condition`` is true.\r\n"], ["\r\n"], ["'${image}' in ${lkr_loc_img}\r\n"], ["Change Image Folder\r\n"], ["${imgpath}\\\\${LKR_UC}\r\n"], ["\r\n"], ["\r\n"], ["\r\n"], ["\r\n"], ["Tries to locate given image from the screen for given time.\r\n"], ["\r\n"], ["${image}\r\n"], ["timeout=${timeout}\r\n"], ["\r\n"], ["\r\n"], ["${loc}\r\n"], ["\r\n"], ["Image \"aae_zeile_markiert\" found at (423, 786)\r\n"], ["${loc} = (423, 786)\r\n"], ["\r\n"], ["\r\n"], ["\r\n"], ["Runs the given keyword with the given arguments, if ``condition`` is true.\r\n"], ["\r\n"], ["'${image}' in ${lkr_loc_img}\r\n"], ["Change Image Folder\r\n"], ["${imgpath}\r\n"], ["\r\n"], ["\r\n"], ["\r\n"], ["${loc} = (423, 786)\r\n"], ["\r\n"], ["\r\n"], ["\r\n"], ["\r\n"], ["${loc}\r\n"], ["\r\n"], ["\r\n"], ["Moves the mouse pointer to an absolute coordinates.\r\n"], ["\r\n"], ["${loc}\r\n"], ["\r\n"], ["\r\n"], ["\r\n"], ["\r\n"], ["Clicks with the specified mouse button.\r\n"], ["\r\n"], ["\r\n"], ["\r\n"], ["\r\n"], ["\r\n"], ["\r\n"], ["\r\n"], ["\r\n"], ["aae_viewer_b\r\n"], ["timeout=10\r\n"], ["\r\n"], ["\r\n"], ["\r\n"], ["${image}\r\n"], ["${timeout}\r\n"], ["\r\n"], ["\r\n"], ["${loc}\r\n"], ["\r\n"], ["\r\n"], ["Runs the given keyword with the given arguments, if ``condition`` is true.\r\n"], ["\r\n"], ["'${image}' in ${lkr_loc_img}\r\n"], ["Change Image Folder\r\n"], ["${imgpath}\\\\${LKR_UC}\r\n"], ["\r\n"], ["\r\n"], ["\r\n"], ["\r\n"], ["Tries to locate given image from the screen for given time.\r\n"], ["\r\n"], ["${image}\r\n"], ["timeout=${timeout}\r\n"], ["\r\n"], ["\r\n"], ["${loc}\r\n"], ["\r\n"], ["Image \"aae_viewer_b\" found at (641, 709)\r\n"], ["${loc} = (641, 709)\r\n"], ["\r\n"], ["\r\n"], ["\r\n"], ["Runs the given keyword with the given arguments, if ``condition`` is true.\r\n"], ["\r\n"], ["'${image}' in ${lkr_loc_img}\r\n"], ["Change Image Folder\r\n"], ["${imgpath}\r\n"], ["\r\n"], ["\r\n"], ["\r\n"], ["${loc} = (641, 709)\r\n"], ["\r\n"], ["\r\n"], ["\r\n"], ["\r\n"], ["${loc}\r\n"], ["\r\n"], ["\r\n"], ["Moves the mouse pointer to an absolute coordinates.\r\n"], ["\r\n"], ["${loc}\r\n"], ["\r\n"], ["\r\n"], ["\r\n"], ["\r\n"], ["Clicks with the specified mouse button.\r\n"], ["\r\n"], ["\r\n"], ["\r\n"], ["\r\n"], ["\r\n"], ["\r\n"], ["\r\n"], ["\r\n"], ["bviewer_opened\r\n"], ["10\r\n"], ["\r\n"], ["\r\n"], ["Runs the given keyword with the given arguments, if ``condition`` is true.\r\n"], ["\r\n"], ["'${image}' in ${lkr_loc_img}\r\n"], ["Change Image Folder\r\n"], ["${imgpath}\\\\${LKR_UC}\r\n"], ["\r\n"], ["\r\n"], ["\r\n"], ["\r\n"], ["Tries to locate given image from the screen for given time.\r\n"], ["\r\n"], ["${image}\r\n"], ["timeout=${timeout}\r\n"], ["\r\n"], ["\r\n"], ["${loc}\r\n"], ["\r\n"], ["Image \"bviewer_opened\" found at (652, 94)\r\n"], ["${loc} = (652, 94)\r\n"], ["\r\n"], ["\r\n"], ["\r\n"], ["Runs the given keyword with the given arguments, if ``condition`` is true.\r\n"], ["\r\n"], ["'${image}' in ${lkr_loc_img}\r\n"], ["Change Image Folder\r\n"], ["${imgpath}\r\n"], ["\r\n"], ["\r\n"], ["\r\n"], ["\r\n"], ["\r\n"], ["\r\n"], ["Pauses the test executed for the given time.\r\n"], ["\r\n"], ["0.5\r\n"], ["\r\n"], ["Slept 500 milliseconds\r\n"], ["\r\n"], ["\r\n"], ["\r\n"], ["\r\n"], ["bviewer_opened\r\n"], ["timeout=10\r\n"], ["\r\n"], ["\r\n"], ["\r\n"], ["${image}\r\n"], ["${timeout}\r\n"], ["\r\n"], ["\r\n"], ["${loc}\r\n"], ["\r\n"], ["\r\n"], ["Runs the given keyword with the given arguments, if ``condition`` is true.\r\n"], ["\r\n"], ["'${image}' in ${lkr_loc_img}\r\n"], ["Change Image Folder\r\n"], ["${imgpath}\\\\${LKR_UC}\r\n"], ["\r\n"], ["\r\n"], ["\r\n"], ["\r\n"], ["Tries to locate given image from the screen for given time.\r\n"], ["\r\n"], ["${image}\r\n"], ["timeout=${timeout}\r\n"], ["\r\n"], ["\r\n"], ["${loc}\r\n"], ["\r\n"], ["Image \"bviewer_opened\" found at (652, 94)\r\n"], ["${loc} = (652, 94)\r\n"], ["\r\n"], ["\r\n"], ["\r\n"], ["Runs the given keyword with the given arguments, if ``condition`` is true.\r\n"], ["\r\n"], ["'${image}' in ${lkr_loc_img}\r\n"], ["Change Image Folder\r\n"], ["${imgpath}\r\n"], ["\r\n"], ["\r\n"], ["\r\n"], ["${loc} = (652, 94)\r\n"], ["\r\n"], ["\r\n"], ["\r\n"], ["\r\n"], ["${loc}\r\n"], ["\r\n"], ["\r\n"], ["Moves the mouse pointer to an absolute coordinates.\r\n"], ["\r\n"], ["${loc}\r\n"], ["\r\n"], ["\r\n"], ["\r\n"], ["\r\n"], ["Clicks with the specified mouse button.\r\n"], ["\r\n"], ["\r\n"], ["\r\n"], ["\r\n"], ["\r\n"], ["\r\n"], ["\r\n"], ["Pauses the test executed for the given time.\r\n"], ["\r\n"], ["0.5\r\n"], ["\r\n"], ["Slept 500 milliseconds\r\n"], ["\r\n"], ["\r\n"], ["\r\n"], ["Press given keyboard keys.\r\n"], ["\r\n"], ["Key.Win\r\n"], ["Key.Up\r\n"], ["\r\n"], ["\r\n"], ["\r\n"], ["\r\n"], ["Returns the given values which can then be assigned to a variables.\r\n"], ["\r\n"], ["ARCHIVETOOL_DOKU_${LKR_UC}_${anz_seiten}\r\n"], ["\r\n"], ["\r\n"], ["${search_image}\r\n"], ["\r\n"], ["${search_image} = ARCHIVETOOL_DOKU_UR_30\r\n"], ["\r\n"], ["\r\n"], ["\r\n"], ["\r\n"], ["bviewer_opened\r\n"], ["timeout=10\r\n"], ["\r\n"], ["\r\n"], ["\r\n"], ["${image}\r\n"], ["${timeout}\r\n"], ["\r\n"], ["\r\n"], ["${loc}\r\n"], ["\r\n"], ["\r\n"], ["Runs the given keyword with the given arguments, if ``condition`` is true.\r\n"], ["\r\n"], ["'${image}' in ${lkr_loc_img}\r\n"], ["Change Image Folder\r\n"], ["${imgpath}\\\\${LKR_UC}\r\n"], ["\r\n"], ["\r\n"], ["\r\n"], ["\r\n"], ["Tries to locate given image from the screen for given time.\r\n"], ["\r\n"], ["${image}\r\n"], ["timeout=${timeout}\r\n"], ["\r\n"], ["\r\n"], ["${loc}\r\n"], ["\r\n"], ["Image \"bviewer_opened\" found at (11, 85)\r\n"], ["${loc} = (11, 85)\r\n"], ["\r\n"], ["\r\n"], ["\r\n"], ["Runs the given keyword with the given arguments, if ``condition`` is true.\r\n"], ["\r\n"], ["'${image}' in ${lkr_loc_img}\r\n"], ["Change Image Folder\r\n"], ["${imgpath}\r\n"], ["\r\n"], ["\r\n"], ["\r\n"], ["${loc} = (11, 85)\r\n"], ["\r\n"], ["\r\n"], ["\r\n"], ["\r\n"], ["${loc}\r\n"], ["\r\n"], ["\r\n"], ["Moves the mouse pointer to an absolute coordinates.\r\n"], ["\r\n"], ["${loc}\r\n"], ["\r\n"], ["\r\n"], ["\r\n"], ["\r\n"], ["Clicks with the specified mouse button.\r\n"], ["\r\n"], ["\r\n"], ["\r\n"], ["\r\n"], ["\r\n"], ["\r\n"], ["\r\n"], ["Tries to locate given image from the screen for given time.\r\n"], ["\r\n"], ["${search_image}\r\n"], ["timeout=90\r\n"], ["\r\n"], ["Image \"ARCHIVETOOL_DOKU_UR_30\" found at (404, 283)\r\n"], ["\r\n"], ["\r\n"], ["\r\n"], ["Press given keyboard keys.\r\n"], ["\r\n"], ["Key.Alt\r\n"], ["Key.F4\r\n"], ["\r\n"], ["\r\n"], ["\r\n"], ["\r\n"], ["\r\n"], ["\r\n"], ["\r\n"], ["aae_suche_clear\r\n"], ["timeout=5\r\n"], ["\r\n"], ["\r\n"], ["\r\n"], ["${image}\r\n"], ["${timeout}\r\n"], ["\r\n"], ["\r\n"], ["${loc}\r\n"], ["\r\n"], ["\r\n"], ["Runs the given keyword with the given arguments, if ``condition`` is true.\r\n"], ["\r\n"], ["'${image}' in ${lkr_loc_img}\r\n"], ["Change Image Folder\r\n"], ["${imgpath}\\\\${LKR_UC}\r\n"], ["\r\n"], ["\r\n"], ["\r\n"], ["\r\n"], ["Tries to locate given image from the screen for given time.\r\n"], ["\r\n"], ["${image}\r\n"], ["timeout=${timeout}\r\n"], ["\r\n"], ["\r\n"], ["${loc}\r\n"], ["\r\n"], ["Image \"aae_suche_clear\" found at (404, 709)\r\n"], ["${loc} = (404, 709)\r\n"], ["\r\n"], ["\r\n"], ["\r\n"], ["Runs the given keyword with the given arguments, if ``condition`` is true.\r\n"], ["\r\n"], ["'${image}' in ${lkr_loc_img}\r\n"], ["Change Image Folder\r\n"], ["${imgpath}\r\n"], ["\r\n"], ["\r\n"], ["\r\n"], ["${loc} = (404, 709)\r\n"], ["\r\n"], ["\r\n"], ["\r\n"], ["\r\n"], ["${loc}\r\n"], ["\r\n"], ["\r\n"], ["Moves the mouse pointer to an absolute coordinates.\r\n"], ["\r\n"], ["${loc}\r\n"], ["\r\n"], ["\r\n"], ["\r\n"], ["\r\n"], ["Clicks with the specified mouse button.\r\n"], ["\r\n"], ["\r\n"], ["\r\n"], ["\r\n"], ["\r\n"], ["\r\n"], ["\r\n"], ["\r\n"], ["aae_dokumentennr_bereit\r\n"], ["timeout=5\r\n"], ["\r\n"], ["\r\n"], ["Runs the given keyword with the given arguments, if ``condition`` is true.\r\n"], ["\r\n"], ["'${image}' in ${lkr_loc_img}\r\n"], ["Change Image Folder\r\n"], ["${imgpath}\\\\${LKR_UC}\r\n"], ["\r\n"], ["\r\n"], ["\r\n"], ["\r\n"], ["Tries to locate given image from the screen for given time.\r\n"], ["\r\n"], ["${image}\r\n"], ["timeout=${timeout}\r\n"], ["\r\n"], ["\r\n"], ["${loc}\r\n"], ["\r\n"], ["Image \"aae_dokumentennr_bereit\" found at (569, 464)\r\n"], ["${loc} = (569, 464)\r\n"], ["\r\n"], ["\r\n"], ["\r\n"], ["Runs the given keyword with the given arguments, if ``condition`` is true.\r\n"], ["\r\n"], ["'${image}' in ${lkr_loc_img}\r\n"], ["Change Image Folder\r\n"], ["${imgpath}\r\n"], ["\r\n"], ["\r\n"], ["\r\n"], ["\r\n"], ["\r\n"], ["\r\n"], ["Evaluates the given expression in Python and returns the result.\r\n"], ["\r\n"], ["${i} + 1\r\n"], ["\r\n"], ["\r\n"], ["${i}\r\n"], ["\r\n"], ["${i} = 1\r\n"], ["\r\n"], ["\r\n"], ["\r\n"], ["\r\n"], ["\r\n"], ["\r\n"], ["\r\n"], ["${lkr_docs}[${i}]\r\n"], ["${anz_seiten}\r\n"], ["\r\n"], ["\r\n"], ["Makes a variable available everywhere within the scope of the current test.\r\n"], ["\r\n"], ["${dokid}\r\n"], ["${lkr_doc}\r\n"], ["\r\n"], ["${dokid} = 1828026\r\n"], ["\r\n"], ["\r\n"], ["\r\n"], ["\r\n"], ["aae_dokumentennr\r\n"], ["5\r\n"], ["100\r\n"], ["${lkr_doc}\r\n"], ["\r\n"], ["\r\n"], ["\r\n"], ["${image}\r\n"], ["${timeout}\r\n"], ["\r\n"], ["\r\n"], ["${loc}\r\n"], ["\r\n"], ["\r\n"], ["Runs the given keyword with the given arguments, if ``condition`` is true.\r\n"], ["\r\n"], ["'${image}' in ${lkr_loc_img}\r\n"], ["Change Image Folder\r\n"], ["${imgpath}\\\\${LKR_UC}\r\n"], ["\r\n"], ["\r\n"], ["\r\n"], ["\r\n"], ["Tries to locate given image from the screen for given time.\r\n"], ["\r\n"], ["${image}\r\n"], ["timeout=${timeout}\r\n"], ["\r\n"], ["\r\n"], ["${loc}\r\n"], ["\r\n"], ["Image \"aae_dokumentennr\" found at (452, 463)\r\n"], ["${loc} = (452, 463)\r\n"], ["\r\n"], ["\r\n"], ["\r\n"], ["Runs the given keyword with the given arguments, if ``condition`` is true.\r\n"], ["\r\n"], ["'${image}' in ${lkr_loc_img}\r\n"], ["Change Image Folder\r\n"], ["${imgpath}\r\n"], ["\r\n"], ["\r\n"], ["\r\n"], ["${loc} = (452, 463)\r\n"], ["\r\n"], ["\r\n"], ["\r\n"], ["Clicks right of given location by given offset.\r\n"], ["\r\n"], ["${loc}\r\n"], ["${offset}\r\n"], ["\r\n"], ["Clicking 1 time(s) at (552, 463) with left mouse button at interval 0.000000\r\n"], ["\r\n"], ["\r\n"], ["\r\n"], ["Type text and keyboard keys.\r\n"], ["\r\n"], ["@{text}\r\n"], ["\r\n"], ["\r\n"], ["\r\n"], ["\r\n"], ["\r\n"], ["\r\n"], ["Type text and keyboard keys.\r\n"], ["\r\n"], ["Key.enter\r\n"], ["\r\n"], ["\r\n"], ["\r\n"], ["\r\n"], ["\r\n"], ["aae_treffer_1\r\n"], ["timeout=10\r\n"], ["\r\n"], ["\r\n"], ["\r\n"], ["${image}\r\n"], ["${timeout}\r\n"], ["\r\n"], ["\r\n"], ["${loc}\r\n"], ["\r\n"], ["\r\n"], ["Runs the given keyword with the given arguments, if ``condition`` is true.\r\n"], ["\r\n"], ["'${image}' in ${lkr_loc_img}\r\n"], ["Change Image Folder\r\n"], ["${imgpath}\\\\${LKR_UC}\r\n"], ["\r\n"], ["\r\n"], ["\r\n"], ["\r\n"], ["Tries to locate given image from the screen for given time.\r\n"], ["\r\n"], ["${image}\r\n"], ["timeout=${timeout}\r\n"], ["\r\n"], ["\r\n"], ["${loc}\r\n"], ["\r\n"], ["Image \"aae_treffer_1\" found at (870, 745)\r\n"], ["${loc} = (870, 745)\r\n"], ["\r\n"], ["\r\n"], ["\r\n"], ["Runs the given keyword with the given arguments, if ``condition`` is true.\r\n"], ["\r\n"], ["'${image}' in ${lkr_loc_img}\r\n"], ["Change Image Folder\r\n"], ["${imgpath}\r\n"], ["\r\n"], ["\r\n"], ["\r\n"], ["${loc} = (870, 745)\r\n"], ["\r\n"], ["\r\n"], ["\r\n"], ["\r\n"], ["${loc}\r\n"], ["\r\n"], ["\r\n"], ["Moves the mouse pointer to an absolute coordinates.\r\n"], ["\r\n"], ["${loc}\r\n"], ["\r\n"], ["\r\n"], ["\r\n"], ["\r\n"], ["Clicks with the specified mouse button.\r\n"], ["\r\n"], ["\r\n"], ["\r\n"], ["\r\n"], ["\r\n"], ["\r\n"], ["\r\n"], ["Type text and keyboard keys.\r\n"], ["\r\n"], ["Key.Tab\r\n"], ["Key.Tab\r\n"], ["Key.Tab\r\n"], ["Key.Tab\r\n"], ["Key.right\r\n"], ["\r\n"], ["\r\n"], ["\r\n"], ["\r\n"], ["\r\n"], ["aae_zeile_markiert\r\n"], ["timeout=10\r\n"], ["\r\n"], ["\r\n"], ["\r\n"], ["${image}\r\n"], ["${timeout}\r\n"], ["\r\n"], ["\r\n"], ["${loc}\r\n"], ["\r\n"], ["\r\n"], ["Runs the given keyword with the given arguments, if ``condition`` is true.\r\n"], ["\r\n"], ["'${image}' in ${lkr_loc_img}\r\n"], ["Change Image Folder\r\n"], ["${imgpath}\\\\${LKR_UC}\r\n"], ["\r\n"], ["\r\n"], ["\r\n"], ["\r\n"], ["Tries to locate given image from the screen for given time.\r\n"], ["\r\n"], ["${image}\r\n"], ["timeout=${timeout}\r\n"], ["\r\n"], ["\r\n"], ["${loc}\r\n"], ["\r\n"], ["Image \"aae_zeile_markiert\" found at (423, 786)\r\n"], ["${loc} = (423, 786)\r\n"], ["\r\n"], ["\r\n"], ["\r\n"], ["Runs the given keyword with the given arguments, if ``condition`` is true.\r\n"], ["\r\n"], ["'${image}' in ${lkr_loc_img}\r\n"], ["Change Image Folder\r\n"], ["${imgpath}\r\n"], ["\r\n"], ["\r\n"], ["\r\n"], ["${loc} = (423, 786)\r\n"], ["\r\n"], ["\r\n"], ["\r\n"], ["\r\n"], ["${loc}\r\n"], ["\r\n"], ["\r\n"], ["Moves the mouse pointer to an absolute coordinates.\r\n"], ["\r\n"], ["${loc}\r\n"], ["\r\n"], ["\r\n"], ["\r\n"], ["\r\n"], ["Clicks with the specified mouse button.\r\n"], ["\r\n"], ["\r\n"], ["\r\n"], ["\r\n"], ["\r\n"], ["\r\n"], ["\r\n"], ["\r\n"], ["aae_viewer_b\r\n"], ["timeout=10\r\n"], ["\r\n"], ["\r\n"], ["\r\n"], ["${image}\r\n"], ["${timeout}\r\n"], ["\r\n"], ["\r\n"], ["${loc}\r\n"], ["\r\n"], ["\r\n"], ["Runs the given keyword with the given arguments, if ``condition`` is true.\r\n"], ["\r\n"], ["'${image}' in ${lkr_loc_img}\r\n"], ["Change Image Folder\r\n"], ["${imgpath}\\\\${LKR_UC}\r\n"], ["\r\n"], ["\r\n"], ["\r\n"], ["\r\n"], ["Tries to locate given image from the screen for given time.\r\n"], ["\r\n"], ["${image}\r\n"], ["timeout=${timeout}\r\n"], ["\r\n"], ["\r\n"], ["${loc}\r\n"], ["\r\n"], ["Image \"aae_viewer_b\" found at (641, 709)\r\n"], ["${loc} = (641, 709)\r\n"], ["\r\n"], ["\r\n"], ["\r\n"], ["Runs the given keyword with the given arguments, if ``condition`` is true.\r\n"], ["\r\n"], ["'${image}' in ${lkr_loc_img}\r\n"], ["Change Image Folder\r\n"], ["${imgpath}\r\n"], ["\r\n"], ["\r\n"], ["\r\n"], ["${loc} = (641, 709)\r\n"], ["\r\n"], ["\r\n"], ["\r\n"], ["\r\n"], ["${loc}\r\n"], ["\r\n"], ["\r\n"], ["Moves the mouse pointer to an absolute coordinates.\r\n"], ["\r\n"], ["${loc}\r\n"], ["\r\n"], ["\r\n"], ["\r\n"], ["\r\n"], ["Clicks with the specified mouse button.\r\n"], ["\r\n"], ["\r\n"], ["\r\n"], ["\r\n"], ["\r\n"], ["\r\n"], ["\r\n"], ["\r\n"], ["bviewer_opened\r\n"], ["10\r\n"], ["\r\n"], ["\r\n"], ["Runs the given keyword with the given arguments, if ``condition`` is true.\r\n"], ["\r\n"], ["'${image}' in ${lkr_loc_img}\r\n"], ["Change Image Folder\r\n"], ["${imgpath}\\\\${LKR_UC}\r\n"], ["\r\n"], ["\r\n"], ["\r\n"], ["\r\n"], ["Tries to locate given image from the screen for given time.\r\n"], ["\r\n"], ["${image}\r\n"], ["timeout=${timeout}\r\n"], ["\r\n"], ["\r\n"], ["${loc}\r\n"], ["\r\n"], ["Image \"bviewer_opened\" found at (652, 94)\r\n"], ["${loc} = (652, 94)\r\n"], ["\r\n"], ["\r\n"], ["\r\n"], ["Runs the given keyword with the given arguments, if ``condition`` is true.\r\n"], ["\r\n"], ["'${image}' in ${lkr_loc_img}\r\n"], ["Change Image Folder\r\n"], ["${imgpath}\r\n"], ["\r\n"], ["\r\n"], ["\r\n"], ["\r\n"], ["\r\n"], ["\r\n"], ["Pauses the test executed for the given time.\r\n"], ["\r\n"], ["0.5\r\n"], ["\r\n"], ["Slept 500 milliseconds\r\n"], ["\r\n"], ["\r\n"], ["\r\n"], ["\r\n"], ["bviewer_opened\r\n"], ["timeout=10\r\n"], ["\r\n"], ["\r\n"], ["\r\n"], ["${image}\r\n"], ["${timeout}\r\n"], ["\r\n"], ["\r\n"], ["${loc}\r\n"], ["\r\n"], ["\r\n"], ["Runs the given keyword with the given arguments, if ``condition`` is true.\r\n"], ["\r\n"], ["'${image}' in ${lkr_loc_img}\r\n"], ["Change Image Folder\r\n"], ["${imgpath}\\\\${LKR_UC}\r\n"], ["\r\n"], ["\r\n"], ["\r\n"], ["\r\n"], ["Tries to locate given image from the screen for given time.\r\n"], ["\r\n"], ["${image}\r\n"], ["timeout=${timeout}\r\n"], ["\r\n"], ["\r\n"], ["${loc}\r\n"], ["\r\n"], ["Image \"bviewer_opened\" found at (652, 94)\r\n"], ["${loc} = (652, 94)\r\n"], ["\r\n"], ["\r\n"], ["\r\n"], ["Runs the given keyword with the given arguments, if ``condition`` is true.\r\n"], ["\r\n"], ["'${image}' in ${lkr_loc_img}\r\n"], ["Change Image Folder\r\n"], ["${imgpath}\r\n"], ["\r\n"], ["\r\n"], ["\r\n"], ["${loc} = (652, 94)\r\n"], ["\r\n"], ["\r\n"], ["\r\n"], ["\r\n"], ["${loc}\r\n"], ["\r\n"], ["\r\n"], ["Moves the mouse pointer to an absolute coordinates.\r\n"], ["\r\n"], ["${loc}\r\n"], ["\r\n"], ["\r\n"], ["\r\n"], ["\r\n"], ["Clicks with the specified mouse button.\r\n"], ["\r\n"], ["\r\n"], ["\r\n"], ["\r\n"], ["\r\n"], ["\r\n"], ["\r\n"], ["Pauses the test executed for the given time.\r\n"], ["\r\n"], ["0.5\r\n"], ["\r\n"], ["Slept 500 milliseconds\r\n"], ["\r\n"], ["\r\n"], ["\r\n"], ["Press given keyboard keys.\r\n"], ["\r\n"], ["Key.Win\r\n"], ["Key.Up\r\n"], ["\r\n"], ["\r\n"], ["\r\n"], ["\r\n"], ["Returns the given values which can then be assigned to a variables.\r\n"], ["\r\n"], ["ARCHIVETOOL_DOKU_${LKR_UC}_${anz_seiten}\r\n"], ["\r\n"], ["\r\n"], ["${search_image}\r\n"], ["\r\n"], ["${search_image} = ARCHIVETOOL_DOKU_UR_100\r\n"], ["\r\n"], ["\r\n"], ["\r\n"], ["\r\n"], ["bviewer_opened\r\n"], ["timeout=10\r\n"], ["\r\n"], ["\r\n"], ["\r\n"], ["${image}\r\n"], ["${timeout}\r\n"], ["\r\n"], ["\r\n"], ["${loc}\r\n"], ["\r\n"], ["\r\n"], ["Runs the given keyword with the given arguments, if ``condition`` is true.\r\n"], ["\r\n"], ["'${image}' in ${lkr_loc_img}\r\n"], ["Change Image Folder\r\n"], ["${imgpath}\\\\${LKR_UC}\r\n"], ["\r\n"], ["\r\n"], ["\r\n"], ["\r\n"], ["Tries to locate given image from the screen for given time.\r\n"], ["\r\n"], ["${image}\r\n"], ["timeout=${timeout}\r\n"], ["\r\n"], ["\r\n"], ["${loc}\r\n"], ["\r\n"], ["Image \"bviewer_opened\" found at (11, 85)\r\n"], ["${loc} = (11, 85)\r\n"], ["\r\n"], ["\r\n"], ["\r\n"], ["Runs the given keyword with the given arguments, if ``condition`` is true.\r\n"], ["\r\n"], ["'${image}' in ${lkr_loc_img}\r\n"], ["Change Image Folder\r\n"], ["${imgpath}\r\n"], ["\r\n"], ["\r\n"], ["\r\n"], ["${loc} = (11, 85)\r\n"], ["\r\n"], ["\r\n"], ["\r\n"], ["\r\n"], ["${loc}\r\n"], ["\r\n"], ["\r\n"], ["Moves the mouse pointer to an absolute coordinates.\r\n"], ["\r\n"], ["${loc}\r\n"], ["\r\n"], ["\r\n"], ["\r\n"], ["\r\n"], ["Clicks with the specified mouse button.\r\n"], ["\r\n"], ["\r\n"], ["\r\n"], ["\r\n"], ["\r\n"], ["\r\n"], ["\r\n"], ["Tries to locate given image from the screen for given time.\r\n"], ["\r\n"], ["${search_image}\r\n"], ["timeout=90\r\n"], ["\r\n"], ["Image \"ARCHIVETOOL_DOKU_UR_100\" found at (321, 292)\r\n"], ["\r\n"], ["\r\n"], ["\r\n"], ["Press given keyboard keys.\r\n"], ["\r\n"], ["Key.Alt\r\n"], ["Key.F4\r\n"], ["\r\n"], ["\r\n"], ["\r\n"], ["\r\n"], ["\r\n"], ["\r\n"], ["\r\n"], ["aae_suche_clear\r\n"], ["timeout=5\r\n"], ["\r\n"], ["\r\n"], ["\r\n"], ["${image}\r\n"], ["${timeout}\r\n"], ["\r\n"], ["\r\n"], ["${loc}\r\n"], ["\r\n"], ["\r\n"], ["Runs the given keyword with the given arguments, if ``condition`` is true.\r\n"], ["\r\n"], ["'${image}' in ${lkr_loc_img}\r\n"], ["Change Image Folder\r\n"], ["${imgpath}\\\\${LKR_UC}\r\n"], ["\r\n"], ["\r\n"], ["\r\n"], ["\r\n"], ["Tries to locate given image from the screen for given time.\r\n"], ["\r\n"], ["${image}\r\n"], ["timeout=${timeout}\r\n"], ["\r\n"], ["\r\n"], ["${loc}\r\n"], ["\r\n"], ["Image \"aae_suche_clear\" found at (404, 709)\r\n"], ["${loc} = (404, 709)\r\n"], ["\r\n"], ["\r\n"], ["\r\n"], ["Runs the given keyword with the given arguments, if ``condition`` is true.\r\n"], ["\r\n"], ["'${image}' in ${lkr_loc_img}\r\n"], ["Change Image Folder\r\n"], ["${imgpath}\r\n"], ["\r\n"], ["\r\n"], ["\r\n"], ["${loc} = (404, 709)\r\n"], ["\r\n"], ["\r\n"], ["\r\n"], ["\r\n"], ["${loc}\r\n"], ["\r\n"], ["\r\n"], ["Moves the mouse pointer to an absolute coordinates.\r\n"], ["\r\n"], ["${loc}\r\n"], ["\r\n"], ["\r\n"], ["\r\n"], ["\r\n"], ["Clicks with the specified mouse button.\r\n"], ["\r\n"], ["\r\n"], ["\r\n"], ["\r\n"], ["\r\n"], ["\r\n"], ["\r\n"], ["\r\n"], ["aae_dokumentennr_bereit\r\n"], ["timeout=5\r\n"], ["\r\n"], ["\r\n"], ["Runs the given keyword with the given arguments, if ``condition`` is true.\r\n"], ["\r\n"], ["'${image}' in ${lkr_loc_img}\r\n"], ["Change Image Folder\r\n"], ["${imgpath}\\\\${LKR_UC}\r\n"], ["\r\n"], ["\r\n"], ["\r\n"], ["\r\n"], ["Tries to locate given image from the screen for given time.\r\n"], ["\r\n"], ["${image}\r\n"], ["timeout=${timeout}\r\n"], ["\r\n"], ["\r\n"], ["${loc}\r\n"], ["\r\n"], ["Image \"aae_dokumentennr_bereit\" found at (569, 464)\r\n"], ["${loc} = (569, 464)\r\n"], ["\r\n"], ["\r\n"], ["\r\n"], ["Runs the given keyword with the given arguments, if ``condition`` is true.\r\n"], ["\r\n"], ["'${image}' in ${lkr_loc_img}\r\n"], ["Change Image Folder\r\n"], ["${imgpath}\r\n"], ["\r\n"], ["\r\n"], ["\r\n"], ["\r\n"], ["\r\n"], ["\r\n"], ["Evaluates the given expression in Python and returns the result.\r\n"], ["\r\n"], ["${i} + 1\r\n"], ["\r\n"], ["\r\n"], ["${i}\r\n"], ["\r\n"], ["${i} = 2\r\n"], ["\r\n"], ["\r\n"], ["\r\n"], ["\r\n"], ["\r\n"], ["\r\n"], ["\r\n"], ["${lkr_docs}[${i}]\r\n"], ["${anz_seiten}\r\n"], ["\r\n"], ["\r\n"], ["Makes a variable available everywhere within the scope of the current test.\r\n"], ["\r\n"], ["${dokid}\r\n"], ["${lkr_doc}\r\n"], ["\r\n"], ["${dokid} = 1828126\r\n"], ["\r\n"], ["\r\n"], ["\r\n"], ["\r\n"], ["aae_dokumentennr\r\n"], ["5\r\n"], ["100\r\n"], ["${lkr_doc}\r\n"], ["\r\n"], ["\r\n"], ["\r\n"], ["${image}\r\n"], ["${timeout}\r\n"], ["\r\n"], ["\r\n"], ["${loc}\r\n"], ["\r\n"], ["\r\n"], ["Runs the given keyword with the given arguments, if ``condition`` is true.\r\n"], ["\r\n"], ["'${image}' in ${lkr_loc_img}\r\n"], ["Change Image Folder\r\n"], ["${imgpath}\\\\${LKR_UC}\r\n"], ["\r\n"], ["\r\n"], ["\r\n"], ["\r\n"], ["Tries to locate given image from the screen for given time.\r\n"], ["\r\n"], ["${image}\r\n"], ["timeout=${timeout}\r\n"], ["\r\n"], ["\r\n"], ["${loc}\r\n"], ["\r\n"], ["Image \"aae_dokumentennr\" found at (452, 463)\r\n"], ["${loc} = (452, 463)\r\n"], ["\r\n"], ["\r\n"], ["\r\n"], ["Runs the given keyword with the given arguments, if ``condition`` is true.\r\n"], ["\r\n"], ["'${image}' in ${lkr_loc_img}\r\n"], ["Change Image Folder\r\n"], ["${imgpath}\r\n"], ["\r\n"], ["\r\n"], ["\r\n"], ["${loc} = (452, 463)\r\n"], ["\r\n"], ["\r\n"], ["\r\n"], ["Clicks right of given location by given offset.\r\n"], ["\r\n"], ["${loc}\r\n"], ["${offset}\r\n"], ["\r\n"], ["Clicking 1 time(s) at (552, 463) with left mouse button at interval 0.000000\r\n"], ["\r\n"], ["\r\n"], ["\r\n"], ["Type text and keyboard keys.\r\n"], ["\r\n"], ["@{text}\r\n"], ["\r\n"], ["\r\n"], ["\r\n"], ["\r\n"], ["\r\n"], ["\r\n"], ["Type text and keyboard keys.\r\n"], ["\r\n"], ["Key.enter\r\n"], ["\r\n"], ["\r\n"], ["\r\n"], ["\r\n"], ["\r\n"], ["aae_treffer_1\r\n"], ["timeout=10\r\n"], ["\r\n"], ["\r\n"], ["\r\n"], ["${image}\r\n"], ["${timeout}\r\n"], ["\r\n"], ["\r\n"], ["${loc}\r\n"], ["\r\n"], ["\r\n"], ["Runs the given keyword with the given arguments, if ``condition`` is true.\r\n"], ["\r\n"], ["'${image}' in ${lkr_loc_img}\r\n"], ["Change Image Folder\r\n"], ["${imgpath}\\\\${LKR_UC}\r\n"], ["\r\n"], ["\r\n"], ["\r\n"], ["\r\n"], ["Tries to locate given image from the screen for given time.\r\n"], ["\r\n"], ["${image}\r\n"], ["timeout=${timeout}\r\n"], ["\r\n"], ["\r\n"], ["${loc}\r\n"], ["\r\n"], ["Image \"aae_treffer_1\" found at (870, 745)\r\n"], ["${loc} = (870, 745)\r\n"], ["\r\n"], ["\r\n"], ["\r\n"], ["Runs the given keyword with the given arguments, if ``condition`` is true.\r\n"], ["\r\n"], ["'${image}' in ${lkr_loc_img}\r\n"], ["Change Image Folder\r\n"], ["${imgpath}\r\n"], ["\r\n"], ["\r\n"], ["\r\n"], ["${loc} = (870, 745)\r\n"], ["\r\n"], ["\r\n"], ["\r\n"], ["\r\n"], ["${loc}\r\n"], ["\r\n"], ["\r\n"], ["Moves the mouse pointer to an absolute coordinates.\r\n"], ["\r\n"], ["${loc}\r\n"], ["\r\n"], ["\r\n"], ["\r\n"], ["\r\n"], ["Clicks with the specified mouse button.\r\n"], ["\r\n"], ["\r\n"], ["\r\n"], ["\r\n"], ["\r\n"], ["\r\n"], ["\r\n"], ["Type text and keyboard keys.\r\n"], ["\r\n"], ["Key.Tab\r\n"], ["Key.Tab\r\n"], ["Key.Tab\r\n"], ["Key.Tab\r\n"], ["Key.right\r\n"], ["\r\n"], ["\r\n"], ["\r\n"], ["\r\n"], ["\r\n"], ["aae_zeile_markiert\r\n"], ["timeout=10\r\n"], ["\r\n"], ["\r\n"], ["\r\n"], ["${image}\r\n"], ["${timeout}\r\n"], ["\r\n"], ["\r\n"], ["${loc}\r\n"], ["\r\n"], ["\r\n"], ["Runs the given keyword with the given arguments, if ``condition`` is true.\r\n"], ["\r\n"], ["'${image}' in ${lkr_loc_img}\r\n"], ["Change Image Folder\r\n"], ["${imgpath}\\\\${LKR_UC}\r\n"], ["\r\n"], ["\r\n"], ["\r\n"], ["\r\n"], ["Tries to locate given image from the screen for given time.\r\n"], ["\r\n"], ["${image}\r\n"], ["timeout=${timeout}\r\n"], ["\r\n"], ["\r\n"], ["${loc}\r\n"], ["\r\n"], ["Image \"aae_zeile_markiert\" found at (423, 786)\r\n"], ["${loc} = (423, 786)\r\n"], ["\r\n"], ["\r\n"], ["\r\n"], ["Runs the given keyword with the given arguments, if ``condition`` is true.\r\n"], ["\r\n"], ["'${image}' in ${lkr_loc_img}\r\n"], ["Change Image Folder\r\n"], ["${imgpath}\r\n"], ["\r\n"], ["\r\n"], ["\r\n"], ["${loc} = (423, 786)\r\n"], ["\r\n"], ["\r\n"], ["\r\n"], ["\r\n"], ["${loc}\r\n"], ["\r\n"], ["\r\n"], ["Moves the mouse pointer to an absolute coordinates.\r\n"], ["\r\n"], ["${loc}\r\n"], ["\r\n"], ["\r\n"], ["\r\n"], ["\r\n"], ["Clicks with the specified mouse button.\r\n"], ["\r\n"], ["\r\n"], ["\r\n"], ["\r\n"], ["\r\n"], ["\r\n"], ["\r\n"], ["\r\n"], ["aae_viewer_b\r\n"], ["timeout=10\r\n"], ["\r\n"], ["\r\n"], ["\r\n"], ["${image}\r\n"], ["${timeout}\r\n"], ["\r\n"], ["\r\n"], ["${loc}\r\n"], ["\r\n"], ["\r\n"], ["Runs the given keyword with the given arguments, if ``condition`` is true.\r\n"], ["\r\n"], ["'${image}' in ${lkr_loc_img}\r\n"], ["Change Image Folder\r\n"], ["${imgpath}\\\\${LKR_UC}\r\n"], ["\r\n"], ["\r\n"], ["\r\n"], ["\r\n"], ["Tries to locate given image from the screen for given time.\r\n"], ["\r\n"], ["${image}\r\n"], ["timeout=${timeout}\r\n"], ["\r\n"], ["\r\n"], ["${loc}\r\n"], ["\r\n"], ["Image \"aae_viewer_b\" found at (641, 709)\r\n"], ["${loc} = (641, 709)\r\n"], ["\r\n"], ["\r\n"], ["\r\n"], ["Runs the given keyword with the given arguments, if ``condition`` is true.\r\n"], ["\r\n"], ["'${image}' in ${lkr_loc_img}\r\n"], ["Change Image Folder\r\n"], ["${imgpath}\r\n"], ["\r\n"], ["\r\n"], ["\r\n"], ["${loc} = (641, 709)\r\n"], ["\r\n"], ["\r\n"], ["\r\n"], ["\r\n"], ["${loc}\r\n"], ["\r\n"], ["\r\n"], ["Moves the mouse pointer to an absolute coordinates.\r\n"], ["\r\n"], ["${loc}\r\n"], ["\r\n"], ["\r\n"], ["\r\n"], ["\r\n"], ["Clicks with the specified mouse button.\r\n"], ["\r\n"], ["\r\n"], ["\r\n"], ["\r\n"], ["\r\n"], ["\r\n"], ["\r\n"], ["\r\n"], ["bviewer_opened\r\n"], ["10\r\n"], ["\r\n"], ["\r\n"], ["Runs the given keyword with the given arguments, if ``condition`` is true.\r\n"], ["\r\n"], ["'${image}' in ${lkr_loc_img}\r\n"], ["Change Image Folder\r\n"], ["${imgpath}\\\\${LKR_UC}\r\n"], ["\r\n"], ["\r\n"], ["\r\n"], ["\r\n"], ["Tries to locate given image from the screen for given time.\r\n"], ["\r\n"], ["${image}\r\n"], ["timeout=${timeout}\r\n"], ["\r\n"], ["\r\n"], ["${loc}\r\n"], ["\r\n"], ["Image \"bviewer_opened\" found at (652, 94)\r\n"], ["${loc} = (652, 94)\r\n"], ["\r\n"], ["\r\n"], ["\r\n"], ["Runs the given keyword with the given arguments, if ``condition`` is true.\r\n"], ["\r\n"], ["'${image}' in ${lkr_loc_img}\r\n"], ["Change Image Folder\r\n"], ["${imgpath}\r\n"], ["\r\n"], ["\r\n"], ["\r\n"], ["\r\n"], ["\r\n"], ["\r\n"], ["Pauses the test executed for the given time.\r\n"], ["\r\n"], ["0.5\r\n"], ["\r\n"], ["Slept 500 milliseconds\r\n"], ["\r\n"], ["\r\n"], ["\r\n"], ["\r\n"], ["bviewer_opened\r\n"], ["timeout=10\r\n"], ["\r\n"], ["\r\n"], ["\r\n"], ["${image}\r\n"], ["${timeout}\r\n"], ["\r\n"], ["\r\n"], ["${loc}\r\n"], ["\r\n"], ["\r\n"], ["Runs the given keyword with the given arguments, if ``condition`` is true.\r\n"], ["\r\n"], ["'${image}' in ${lkr_loc_img}\r\n"], ["Change Image Folder\r\n"], ["${imgpath}\\\\${LKR_UC}\r\n"], ["\r\n"], ["\r\n"], ["\r\n"], ["\r\n"], ["Tries to locate given image from the screen for given time.\r\n"], ["\r\n"], ["${image}\r\n"], ["timeout=${timeout}\r\n"], ["\r\n"], ["\r\n"], ["${loc}\r\n"], ["\r\n"], ["Image \"bviewer_opened\" found at (652, 94)\r\n"], ["${loc} = (652, 94)\r\n"], ["\r\n"], ["\r\n"], ["\r\n"], ["Runs the given keyword with the given arguments, if ``condition`` is true.\r\n"], ["\r\n"], ["'${image}' in ${lkr_loc_img}\r\n"], ["Change Image Folder\r\n"], ["${imgpath}\r\n"], ["\r\n"], ["\r\n"], ["\r\n"], ["${loc} = (652, 94)\r\n"], ["\r\n"], ["\r\n"], ["\r\n"], ["\r\n"], ["${loc}\r\n"], ["\r\n"], ["\r\n"], ["Moves the mouse pointer to an absolute coordinates.\r\n"], ["\r\n"], ["${loc}\r\n"], ["\r\n"], ["\r\n"], ["\r\n"], ["\r\n"], ["Clicks with the specified mouse button.\r\n"], ["\r\n"], ["\r\n"], ["\r\n"], ["\r\n"], ["\r\n"], ["\r\n"], ["\r\n"], ["Pauses the test executed for the given time.\r\n"], ["\r\n"], ["0.5\r\n"], ["\r\n"], ["Slept 500 milliseconds\r\n"], ["\r\n"], ["\r\n"], ["\r\n"], ["Press given keyboard keys.\r\n"], ["\r\n"], ["Key.Win\r\n"], ["Key.Up\r\n"], ["\r\n"], ["\r\n"], ["\r\n"], ["\r\n"], ["Returns the given values which can then be assigned to a variables.\r\n"], ["\r\n"], ["ARCHIVETOOL_DOKU_${LKR_UC}_${anz_seiten}\r\n"], ["\r\n"], ["\r\n"], ["${search_image}\r\n"], ["\r\n"], ["${search_image} = ARCHIVETOOL_DOKU_UR_300\r\n"], ["\r\n"], ["\r\n"], ["\r\n"], ["\r\n"], ["bviewer_opened\r\n"], ["timeout=10\r\n"], ["\r\n"], ["\r\n"], ["\r\n"], ["${image}\r\n"], ["${timeout}\r\n"], ["\r\n"], ["\r\n"], ["${loc}\r\n"], ["\r\n"], ["\r\n"], ["Runs the given keyword with the given arguments, if ``condition`` is true.\r\n"], ["\r\n"], ["'${image}' in ${lkr_loc_img}\r\n"], ["Change Image Folder\r\n"], ["${imgpath}\\\\${LKR_UC}\r\n"], ["\r\n"], ["\r\n"], ["\r\n"], ["\r\n"], ["Tries to locate given image from the screen for given time.\r\n"], ["\r\n"], ["${image}\r\n"], ["timeout=${timeout}\r\n"], ["\r\n"], ["\r\n"], ["${loc}\r\n"], ["\r\n"], ["Image \"bviewer_opened\" found at (11, 85)\r\n"], ["${loc} = (11, 85)\r\n"], ["\r\n"], ["\r\n"], ["\r\n"], ["Runs the given keyword with the given arguments, if ``condition`` is true.\r\n"], ["\r\n"], ["'${image}' in ${lkr_loc_img}\r\n"], ["Change Image Folder\r\n"], ["${imgpath}\r\n"], ["\r\n"], ["\r\n"], ["\r\n"], ["${loc} = (11, 85)\r\n"], ["\r\n"], ["\r\n"], ["\r\n"], ["\r\n"], ["${loc}\r\n"], ["\r\n"], ["\r\n"], ["Moves the mouse pointer to an absolute coordinates.\r\n"], ["\r\n"], ["${loc}\r\n"], ["\r\n"], ["\r\n"], ["\r\n"], ["\r\n"], ["Clicks with the specified mouse button.\r\n"], ["\r\n"], ["\r\n"], ["\r\n"], ["\r\n"], ["\r\n"], ["\r\n"], ["\r\n"], ["Tries to locate given image from the screen for given time.\r\n"], ["\r\n"], ["${search_image}\r\n"], ["timeout=90\r\n"], ["\r\n"], ["Image \"ARCHIVETOOL_DOKU_UR_300\" found at (315, 265)\r\n"], ["\r\n"], ["\r\n"], ["\r\n"], ["Press given keyboard keys.\r\n"], ["\r\n"], ["Key.Alt\r\n"], ["Key.F4\r\n"], ["\r\n"], ["\r\n"], ["\r\n"], ["\r\n"], ["\r\n"], ["\r\n"], ["\r\n"], ["aae_suche_clear\r\n"], ["timeout=5\r\n"], ["\r\n"], ["\r\n"], ["\r\n"], ["${image}\r\n"], ["${timeout}\r\n"], ["\r\n"], ["\r\n"], ["${loc}\r\n"], ["\r\n"], ["\r\n"], ["Runs the given keyword with the given arguments, if ``condition`` is true.\r\n"], ["\r\n"], ["'${image}' in ${lkr_loc_img}\r\n"], ["Change Image Folder\r\n"], ["${imgpath}\\\\${LKR_UC}\r\n"], ["\r\n"], ["\r\n"], ["\r\n"], ["\r\n"], ["Tries to locate given image from the screen for given time.\r\n"], ["\r\n"], ["${image}\r\n"], ["timeout=${timeout}\r\n"], ["\r\n"], ["\r\n"], ["${loc}\r\n"], ["\r\n"], ["Image \"aae_suche_clear\" found at (404, 709)\r\n"], ["${loc} = (404, 709)\r\n"], ["\r\n"], ["\r\n"], ["\r\n"], ["Runs the given keyword with the given arguments, if ``condition`` is true.\r\n"], ["\r\n"], ["'${image}' in ${lkr_loc_img}\r\n"], ["Change Image Folder\r\n"], ["${imgpath}\r\n"], ["\r\n"], ["\r\n"], ["\r\n"], ["${loc} = (404, 709)\r\n"], ["\r\n"], ["\r\n"], ["\r\n"], ["\r\n"], ["${loc}\r\n"], ["\r\n"], ["\r\n"], ["Moves the mouse pointer to an absolute coordinates.\r\n"], ["\r\n"], ["${loc}\r\n"], ["\r\n"], ["\r\n"], ["\r\n"], ["\r\n"], ["Clicks with the specified mouse button.\r\n"], ["\r\n"], ["\r\n"], ["\r\n"], ["\r\n"], ["\r\n"], ["\r\n"], ["\r\n"], ["\r\n"], ["aae_dokumentennr_bereit\r\n"], ["timeout=5\r\n"], ["\r\n"], ["\r\n"], ["Runs the given keyword with the given arguments, if ``condition`` is true.\r\n"], ["\r\n"], ["'${image}' in ${lkr_loc_img}\r\n"], ["Change Image Folder\r\n"], ["${imgpath}\\\\${LKR_UC}\r\n"], ["\r\n"], ["\r\n"], ["\r\n"], ["\r\n"], ["Tries to locate given image from the screen for given time.\r\n"], ["\r\n"], ["${image}\r\n"], ["timeout=${timeout}\r\n"], ["\r\n"], ["\r\n"], ["${loc}\r\n"], ["\r\n"], ["Image \"aae_dokumentennr_bereit\" found at (569, 464)\r\n"], ["${loc} = (569, 464)\r\n"], ["\r\n"], ["\r\n"], ["\r\n"], ["Runs the given keyword with the given arguments, if ``condition`` is true.\r\n"], ["\r\n"], ["'${image}' in ${lkr_loc_img}\r\n"], ["Change Image Folder\r\n"], ["${imgpath}\r\n"], ["\r\n"], ["\r\n"], ["\r\n"], ["\r\n"], ["\r\n"], ["\r\n"], ["Evaluates the given expression in Python and returns the result.\r\n"], ["\r\n"], ["${i} + 1\r\n"], ["\r\n"], ["\r\n"], ["${i}\r\n"], ["\r\n"], ["${i} = 3\r\n"], ["\r\n"], ["\r\n"], ["\r\n"], ["\r\n"], ["\r\n"], ["\r\n"], ["\r\n"], ["\r\n"], ["\r\n"], ["\r\n"], ["Runs the given keyword with the given arguments, if ``condition`` is true.\r\n"], ["\r\n"], ["${APPOPEN}==${True}\r\n"], ["Terminate Application\r\n"], ["alias=archivetool\r\n"], ["\r\n"], ["\r\n"], ["Terminates the process launched with `Launch Application` with\r\n"], ["given ``alias``.\r\n"], ["\r\n"], ["alias=archivetool\r\n"], ["\r\n"], ["\r\n"], ["\r\n"], ["\r\n"], ["\r\n"], ["\r\n"], ["Runs the given keyword with the given arguments, if ``condition`` is true.\r\n"], ["\r\n"], ["${APPOPEN}==${True}\r\n"], ["Quit All Viewer Processes\r\n"], ["\r\n"], ["\r\n"], ["\r\n"], ["Runs a process and waits for it to complete.\r\n"], ["\r\n"], ["cmd.exe /c taskkill /IM ArchiveViewAdvancedA.exe\r\n"], ["shell=True\r\n"], ["\r\n"], ["Starting process:\r\n"], ["cmd.exe /c taskkill /IM ArchiveViewAdvancedA.exe\r\n"], ["Waiting for process to complete.\r\n"], ["Process completed.\r\n"], ["\r\n"], ["\r\n"], ["\r\n"], ["Runs a process and waits for it to complete.\r\n"], ["\r\n"], ["cmd.exe /c taskkill /IM ArchiveViewAdvancedB.exe\r\n"], ["shell=True\r\n"], ["\r\n"], ["Starting process:\r\n"], ["cmd.exe /c taskkill /IM ArchiveViewAdvancedB.exe\r\n"], ["Waiting for process to complete.\r\n"], ["Process completed.\r\n"], ["\r\n"], ["\r\n"], ["\r\n"], ["Runs a process and waits for it to complete.\r\n"], ["\r\n"], ["cmd.exe /c taskkill /IM ArchiveViewAdvancedC.exe\r\n"], ["shell=True\r\n"], ["\r\n"], ["Starting process:\r\n"], ["cmd.exe /c taskkill /IM ArchiveViewAdvancedC.exe\r\n"], ["Waiting for process to complete.\r\n"], ["Process completed.\r\n"], ["\r\n"], ["\r\n"], ["\r\n"], ["Runs a process and waits for it to complete.\r\n"], ["\r\n"], ["cmd.exe /c taskkill /IM\r\n"], ["ArchivToolExtAdvanced.exe\r\n"], ["shell=True\r\n"], ["\r\n"], ["Starting process:\r\n"], ["\"cmd.exe /c taskkill /IM\" ArchivToolExtAdvanced.exe\r\n"], ["Waiting for process to complete.\r\n"], ["Process completed.\r\n"], ["\r\n"], ["\r\n"], ["\r\n"], ["Runs a process and waits for it to complete.\r\n"], ["\r\n"], ["cmd.exe /c taskkill /IM\r\n"], ["archtool.exe\r\n"], ["shell=True\r\n"], ["\r\n"], ["Starting process:\r\n"], ["\"cmd.exe /c taskkill /IM\" archtool.exe\r\n"], ["Waiting for process to complete.\r\n"], ["Process completed.\r\n"], ["\r\n"], ["\r\n"], ["\r\n"], ["\r\n"], ["\r\n"], ["\r\n"], ["\r\n"], ["Makes a variable available everywhere within the scope of the current suite.\r\n"], ["\r\n"], ["${APPOPEN}\r\n"], ["${False}\r\n"], ["\r\n"], ["${APPOPEN} = False\r\n"], ["\r\n"], ["\r\n"], ["\r\n"], ["\r\n"], ["\r\n"], ["\r\n"], ["\r\n"], ["\r\n"], ["\r\n"], ["ZH\r\n"], ["\r\n"], ["\r\n"], ["Sets where all reference images are stored.\r\n"], ["\r\n"], ["${imgpath}\r\n"], ["\r\n"], ["\r\n"], ["\r\n"], ["\r\n"], ["\r\n"], ["${lkr_uc}\r\n"], ["\r\n"], ["\r\n"], ["Makes a variable available everywhere within the scope of the current test.\r\n"], ["\r\n"], ["${LKR_UC}\r\n"], ["${lkr_uc}\r\n"], ["\r\n"], ["${LKR_UC} = ZH\r\n"], ["\r\n"], ["\r\n"], ["\r\n"], ["Converts string to lower case.\r\n"], ["\r\n"], ["${lkr_uc}\r\n"], ["\r\n"], ["\r\n"], ["${lkr_lc}\r\n"], ["\r\n"], ["${lkr_lc} = zh\r\n"], ["\r\n"], ["\r\n"], ["\r\n"], ["Makes a variable available everywhere within the scope of the current test.\r\n"], ["\r\n"], ["${LKR_LC}\r\n"], ["${lkr_lc}\r\n"], ["\r\n"], ["${LKR_LC} = zh\r\n"], ["\r\n"], ["\r\n"], ["\r\n"], ["Makes a variable available everywhere within the scope of the current test.\r\n"], ["\r\n"], ["${lkr_docs}\r\n"], ["${TESTDATA['${LKR_UC}']['docs']}\r\n"], ["\r\n"], ["${lkr_docs} = ['106614160', '106614249', '106614594']\r\n"], ["\r\n"], ["\r\n"], ["\r\n"], ["Makes a variable available everywhere within the scope of the current test.\r\n"], ["\r\n"], ["${lkr_cred}\r\n"], ["${TESTDATA['${LKR_UC}']['credentials']}\r\n"], ["\r\n"], ["${lkr_cred} = ['ZH9995', 'crypt:246ElyxZk+Mi9rNaiUCLhcCofWF+ibiRu06AjHfSLQCxWW+oQnqUVFPF04GMnwKegeRVeh/gsGU=']\r\n"], ["\r\n"], ["\r\n"], ["\r\n"], ["Makes a variable available everywhere within the scope of the current test.\r\n"], ["\r\n"], ["${lkr_loc_img}\r\n"], ["${TESTDATA['${LKR_UC}']['loc_img']}\r\n"], ["\r\n"], ["${lkr_loc_img} = []\r\n"], ["\r\n"], ["\r\n"], ["\r\n"], ["Makes a variable available everywhere within the scope of the current test.\r\n"], ["\r\n"], ["${user}\r\n"], ["${lkr_cred}[0]\r\n"], ["\r\n"], ["${user} = ZH9995\r\n"], ["\r\n"], ["\r\n"], ["\r\n"], ["Decrypts cipher text and returns the plain text.\r\n"], ["\r\n"], ["${lkr_cred}[1]\r\n"], ["\r\n"], ["\r\n"], ["${password}\r\n"], ["\r\n"], ["Decrypting text and return value.\r\n"], ["${password} = ***\r\n"], ["\r\n"], ["\r\n"], ["\r\n"], ["Makes a variable available everywhere within the scope of the current test.\r\n"], ["\r\n"], ["${password}\r\n"], ["${password}\r\n"], ["\r\n"], ["${password} = ***\r\n"], ["\r\n"], ["\r\n"], ["\r\n"], ["\r\n"], ["\r\n"], ["\r\n"], ["Runs a process and waits for it to complete.\r\n"], ["\r\n"], ["cmd.exe /c taskkill /IM ArchiveViewAdvancedA.exe\r\n"], ["shell=True\r\n"], ["\r\n"], ["Starting process:\r\n"], ["cmd.exe /c taskkill /IM ArchiveViewAdvancedA.exe\r\n"], ["Waiting for process to complete.\r\n"], ["Process completed.\r\n"], ["\r\n"], ["\r\n"], ["\r\n"], ["Runs a process and waits for it to complete.\r\n"], ["\r\n"], ["cmd.exe /c taskkill /IM ArchiveViewAdvancedB.exe\r\n"], ["shell=True\r\n"], ["\r\n"], ["Starting process:\r\n"], ["cmd.exe /c taskkill /IM ArchiveViewAdvancedB.exe\r\n"], ["Waiting for process to complete.\r\n"], ["Process completed.\r\n"], ["\r\n"], ["\r\n"], ["\r\n"], ["Runs a process and waits for it to complete.\r\n"], ["\r\n"], ["cmd.exe /c taskkill /IM ArchiveViewAdvancedC.exe\r\n"], ["shell=True\r\n"], ["\r\n"], ["Starting process:\r\n"], ["cmd.exe /c taskkill /IM ArchiveViewAdvancedC.exe\r\n"], ["Waiting for process to complete.\r\n"], ["Process completed.\r\n"], ["\r\n"], ["\r\n"], ["\r\n"], ["Runs a process and waits for it to complete.\r\n"], ["\r\n"], ["cmd.exe /c taskkill /IM\r\n"], ["ArchivToolExtAdvanced.exe\r\n"], ["shell=True\r\n"], ["\r\n"], ["Starting process:\r\n"], ["\"cmd.exe /c taskkill /IM\" ArchivToolExtAdvanced.exe\r\n"], ["Waiting for process to complete.\r\n"], ["Process completed.\r\n"], ["\r\n"], ["\r\n"], ["\r\n"], ["Runs a process and waits for it to complete.\r\n"], ["\r\n"], ["cmd.exe /c taskkill /IM\r\n"], ["archtool.exe\r\n"], ["shell=True\r\n"], ["\r\n"], ["Starting process:\r\n"], ["\"cmd.exe /c taskkill /IM\" archtool.exe\r\n"], ["Waiting for process to complete.\r\n"], ["Process completed.\r\n"], ["\r\n"], ["\r\n"], ["\r\n"], ["\r\n"], ["\r\n"], ["\r\n"], ["Runs a process and waits for it to complete.\r\n"], ["\r\n"], ["C:\\\\ProgramData\\\\checkmk\\\\agent\\\\robot\\\\archivetool\\\\ArchivetoolConfig\\\\sva_${LKR_LC} konfiguration.bat\r\n"], ["\r\n"], ["Starting process:\r\n"], ["\"C:\\ProgramData\\checkmk\\agent\\robot\\archivetool\\ArchivetoolConfig\\sva_zh konfiguration.bat\"\r\n"], ["Waiting for process to complete.\r\n"], ["Process completed.\r\n"], ["\r\n"], ["\r\n"], ["\r\n"], ["Launches an application.\r\n"], ["\r\n"], ["\"${APP}\"\r\n"], ["alias=archivetool\r\n"], ["\r\n"], ["\r\n"], ["\r\n"], ["\r\n"], ["Makes a variable available everywhere within the scope of the current suite.\r\n"], ["\r\n"], ["${APPOPEN}\r\n"], ["${True}\r\n"], ["\r\n"], ["${APPOPEN} = True\r\n"], ["\r\n"], ["\r\n"], ["\r\n"], ["\r\n"], ["\r\n"], ["\r\n"], ["\r\n"], ["login_username\r\n"], ["timeout=10\r\n"], ["\r\n"], ["\r\n"], ["${loc}\r\n"], ["\r\n"], ["\r\n"], ["Runs the given keyword with the given arguments, if ``condition`` is true.\r\n"], ["\r\n"], ["'${image}' in ${lkr_loc_img}\r\n"], ["Change Image Folder\r\n"], ["${imgpath}\\\\${LKR_UC}\r\n"], ["\r\n"], ["\r\n"], ["\r\n"], ["\r\n"], ["Tries to locate given image from the screen for given time.\r\n"], ["\r\n"], ["${image}\r\n"], ["timeout=${timeout}\r\n"], ["\r\n"], ["\r\n"], ["${loc}\r\n"], ["\r\n"], ["Image \"login_username\" found at (227, 149)\r\n"], ["${loc} = (227, 149)\r\n"], ["\r\n"], ["\r\n"], ["\r\n"], ["Runs the given keyword with the given arguments, if ``condition`` is true.\r\n"], ["\r\n"], ["'${image}' in ${lkr_loc_img}\r\n"], ["Change Image Folder\r\n"], ["${imgpath}\r\n"], ["\r\n"], ["\r\n"], ["\r\n"], ["${loc} = (227, 149)\r\n"], ["\r\n"], ["\r\n"], ["\r\n"], ["Finds the reference image on screen and clicks it once.\r\n"], ["\r\n"], ["login_username\r\n"], ["\r\n"], ["Image \"C:\\ProgramData\\checkmk\\agent\\robot\\archivetool\\images\\login_username.png\" found at Box(left=182, top=134, width=90, height=30)\r\n"], ["Clicking image \"login_username\" in position (227, 149)\r\n"], ["\r\n"], ["\r\n"], ["\r\n"], ["Pauses the test executed for the given time.\r\n"], ["\r\n"], ["0.2\r\n"], ["\r\n"], ["Slept 200 milliseconds\r\n"], ["\r\n"], ["\r\n"], ["\r\n"], ["\r\n"], ["login_username\r\n"], ["10\r\n"], ["20\r\n"], ["${user}\r\n"], ["\r\n"], ["\r\n"], ["\r\n"], ["${image}\r\n"], ["${timeout}\r\n"], ["\r\n"], ["\r\n"], ["${loc}\r\n"], ["\r\n"], ["\r\n"], ["Runs the given keyword with the given arguments, if ``condition`` is true.\r\n"], ["\r\n"], ["'${image}' in ${lkr_loc_img}\r\n"], ["Change Image Folder\r\n"], ["${imgpath}\\\\${LKR_UC}\r\n"], ["\r\n"], ["\r\n"], ["\r\n"], ["\r\n"], ["Tries to locate given image from the screen for given time.\r\n"], ["\r\n"], ["${image}\r\n"], ["timeout=${timeout}\r\n"], ["\r\n"], ["\r\n"], ["${loc}\r\n"], ["\r\n"], ["Image \"login_username\" found at (227, 149)\r\n"], ["${loc} = (227, 149)\r\n"], ["\r\n"], ["\r\n"], ["\r\n"], ["Runs the given keyword with the given arguments, if ``condition`` is true.\r\n"], ["\r\n"], ["'${image}' in ${lkr_loc_img}\r\n"], ["Change Image Folder\r\n"], ["${imgpath}\r\n"], ["\r\n"], ["\r\n"], ["\r\n"], ["${loc} = (227, 149)\r\n"], ["\r\n"], ["\r\n"], ["\r\n"], ["Clicks right of given location by given offset.\r\n"], ["\r\n"], ["${loc}\r\n"], ["${offset}\r\n"], ["\r\n"], ["Clicking 1 time(s) at (247, 149) with left mouse button at interval 0.000000\r\n"], ["\r\n"], ["\r\n"], ["\r\n"], ["Type text and keyboard keys.\r\n"], ["\r\n"], ["@{text}\r\n"], ["\r\n"], ["\r\n"], ["\r\n"], ["\r\n"], ["\r\n"], ["\r\n"], ["Pauses the test executed for the given time.\r\n"], ["\r\n"], ["0.2\r\n"], ["\r\n"], ["Slept 200 milliseconds\r\n"], ["\r\n"], ["\r\n"], ["\r\n"], ["Type text and keyboard keys.\r\n"], ["\r\n"], ["Key.tab\r\n"], ["\r\n"], ["\r\n"], ["\r\n"], ["\r\n"], ["Pauses the test executed for the given time.\r\n"], ["\r\n"], ["0.2\r\n"], ["\r\n"], ["Slept 200 milliseconds\r\n"], ["\r\n"], ["\r\n"], ["\r\n"], ["Type text and keyboard keys.\r\n"], ["\r\n"], ["${password}\r\n"], ["Key.enter\r\n"], ["Key.enter\r\n"], ["\r\n"], ["\r\n"], ["\r\n"], ["\r\n"], ["\r\n"], ["archiv_vista_warn\r\n"], ["timeout=5\r\n"], ["\r\n"], ["\r\n"], ["\r\n"], ["${image}\r\n"], ["${timeout}\r\n"], ["\r\n"], ["\r\n"], ["${loc}\r\n"], ["\r\n"], ["\r\n"], ["Runs the given keyword with the given arguments, if ``condition`` is true.\r\n"], ["\r\n"], ["'${image}' in ${lkr_loc_img}\r\n"], ["Change Image Folder\r\n"], ["${imgpath}\\\\${LKR_UC}\r\n"], ["\r\n"], ["\r\n"], ["\r\n"], ["\r\n"], ["Tries to locate given image from the screen for given time.\r\n"], ["\r\n"], ["${image}\r\n"], ["timeout=${timeout}\r\n"], ["\r\n"], ["\r\n"], ["${loc}\r\n"], ["\r\n"], ["Image \"archiv_vista_warn\" found at (845, 559)\r\n"], ["${loc} = (845, 559)\r\n"], ["\r\n"], ["\r\n"], ["\r\n"], ["Runs the given keyword with the given arguments, if ``condition`` is true.\r\n"], ["\r\n"], ["'${image}' in ${lkr_loc_img}\r\n"], ["Change Image Folder\r\n"], ["${imgpath}\r\n"], ["\r\n"], ["\r\n"], ["\r\n"], ["${loc} = (845, 559)\r\n"], ["\r\n"], ["\r\n"], ["\r\n"], ["\r\n"], ["${loc}\r\n"], ["\r\n"], ["\r\n"], ["Moves the mouse pointer to an absolute coordinates.\r\n"], ["\r\n"], ["${loc}\r\n"], ["\r\n"], ["\r\n"], ["\r\n"], ["\r\n"], ["Clicks with the specified mouse button.\r\n"], ["\r\n"], ["\r\n"], ["\r\n"], ["\r\n"], ["\r\n"], ["\r\n"], ["\r\n"], ["Type text and keyboard keys.\r\n"], ["\r\n"], ["Key.enter\r\n"], ["\r\n"], ["\r\n"], ["\r\n"], ["\r\n"], ["Tries to locate given image from the screen for given time.\r\n"], ["\r\n"], ["aae_toolbar\r\n"], ["timeout=10\r\n"], ["\r\n"], ["Image \"aae_toolbar\" found at (506, 709)\r\n"], ["\r\n"], ["\r\n"], ["\r\n"], ["\r\n"], ["\r\n"], ["\r\n"], ["Returns ``True`` if reference image was found on screen or\r\n"], ["``False`` otherwise. Never fails.\r\n"], ["\r\n"], ["aae_vorbelegung_checked\r\n"], ["\r\n"], ["\r\n"], ["${vorbelegt_checked}\r\n"], ["\r\n"], ["${vorbelegt_checked} = False\r\n"], ["\r\n"], ["\r\n"], ["\r\n"], ["Runs the given keyword with the given arguments, if ``condition`` is true.\r\n"], ["\r\n"], ["${vorbelegt_checked}==${True}\r\n"], ["Click Image\r\n"], ["aae_vorbelegung_checked\r\n"], ["\r\n"], ["\r\n"], ["\r\n"], ["\r\n"], ["\r\n"], ["\r\n"], ["Returns the given values which can then be assigned to a variables.\r\n"], ["\r\n"], ["0\r\n"], ["\r\n"], ["\r\n"], ["${i}\r\n"], ["\r\n"], ["${i} = 0\r\n"], ["\r\n"], ["\r\n"], ["\r\n"], ["\r\n"], ["\r\n"], ["\r\n"], ["${lkr_docs}[${i}]\r\n"], ["${anz_seiten}\r\n"], ["\r\n"], ["\r\n"], ["Makes a variable available everywhere within the scope of the current test.\r\n"], ["\r\n"], ["${dokid}\r\n"], ["${lkr_doc}\r\n"], ["\r\n"], ["${dokid} = 106614160\r\n"], ["\r\n"], ["\r\n"], ["\r\n"], ["\r\n"], ["aae_dokumentennr\r\n"], ["5\r\n"], ["100\r\n"], ["${lkr_doc}\r\n"], ["\r\n"], ["\r\n"], ["\r\n"], ["${image}\r\n"], ["${timeout}\r\n"], ["\r\n"], ["\r\n"], ["${loc}\r\n"], ["\r\n"], ["\r\n"], ["Runs the given keyword with the given arguments, if ``condition`` is true.\r\n"], ["\r\n"], ["'${image}' in ${lkr_loc_img}\r\n"], ["Change Image Folder\r\n"], ["${imgpath}\\\\${LKR_UC}\r\n"], ["\r\n"], ["\r\n"], ["\r\n"], ["\r\n"], ["Tries to locate given image from the screen for given time.\r\n"], ["\r\n"], ["${image}\r\n"], ["timeout=${timeout}\r\n"], ["\r\n"], ["\r\n"], ["${loc}\r\n"], ["\r\n"], ["Image \"aae_dokumentennr\" found at (452, 463)\r\n"], ["${loc} = (452, 463)\r\n"], ["\r\n"], ["\r\n"], ["\r\n"], ["Runs the given keyword with the given arguments, if ``condition`` is true.\r\n"], ["\r\n"], ["'${image}' in ${lkr_loc_img}\r\n"], ["Change Image Folder\r\n"], ["${imgpath}\r\n"], ["\r\n"], ["\r\n"], ["\r\n"], ["${loc} = (452, 463)\r\n"], ["\r\n"], ["\r\n"], ["\r\n"], ["Clicks right of given location by given offset.\r\n"], ["\r\n"], ["${loc}\r\n"], ["${offset}\r\n"], ["\r\n"], ["Clicking 1 time(s) at (552, 463) with left mouse button at interval 0.000000\r\n"], ["\r\n"], ["\r\n"], ["\r\n"], ["Type text and keyboard keys.\r\n"], ["\r\n"], ["@{text}\r\n"], ["\r\n"], ["\r\n"], ["\r\n"], ["\r\n"], ["\r\n"], ["\r\n"], ["Type text and keyboard keys.\r\n"], ["\r\n"], ["Key.enter\r\n"], ["\r\n"], ["\r\n"], ["\r\n"], ["\r\n"], ["\r\n"], ["aae_treffer_1\r\n"], ["timeout=10\r\n"], ["\r\n"], ["\r\n"], ["\r\n"], ["${image}\r\n"], ["${timeout}\r\n"], ["\r\n"], ["\r\n"], ["${loc}\r\n"], ["\r\n"], ["\r\n"], ["Runs the given keyword with the given arguments, if ``condition`` is true.\r\n"], ["\r\n"], ["'${image}' in ${lkr_loc_img}\r\n"], ["Change Image Folder\r\n"], ["${imgpath}\\\\${LKR_UC}\r\n"], ["\r\n"], ["\r\n"], ["\r\n"], ["\r\n"], ["Tries to locate given image from the screen for given time.\r\n"], ["\r\n"], ["${image}\r\n"], ["timeout=${timeout}\r\n"], ["\r\n"], ["\r\n"], ["${loc}\r\n"], ["\r\n"], ["Image \"aae_treffer_1\" found at (870, 745)\r\n"], ["${loc} = (870, 745)\r\n"], ["\r\n"], ["\r\n"], ["\r\n"], ["Runs the given keyword with the given arguments, if ``condition`` is true.\r\n"], ["\r\n"], ["'${image}' in ${lkr_loc_img}\r\n"], ["Change Image Folder\r\n"], ["${imgpath}\r\n"], ["\r\n"], ["\r\n"], ["\r\n"], ["${loc} = (870, 745)\r\n"], ["\r\n"], ["\r\n"], ["\r\n"], ["\r\n"], ["${loc}\r\n"], ["\r\n"], ["\r\n"], ["Moves the mouse pointer to an absolute coordinates.\r\n"], ["\r\n"], ["${loc}\r\n"], ["\r\n"], ["\r\n"], ["\r\n"], ["\r\n"], ["Clicks with the specified mouse button.\r\n"], ["\r\n"], ["\r\n"], ["\r\n"], ["\r\n"], ["\r\n"], ["\r\n"], ["\r\n"], ["Type text and keyboard keys.\r\n"], ["\r\n"], ["Key.Tab\r\n"], ["Key.Tab\r\n"], ["Key.Tab\r\n"], ["Key.Tab\r\n"], ["Key.right\r\n"], ["\r\n"], ["\r\n"], ["\r\n"], ["\r\n"], ["\r\n"], ["aae_zeile_markiert\r\n"], ["timeout=10\r\n"], ["\r\n"], ["\r\n"], ["\r\n"], ["${image}\r\n"], ["${timeout}\r\n"], ["\r\n"], ["\r\n"], ["${loc}\r\n"], ["\r\n"], ["\r\n"], ["Runs the given keyword with the given arguments, if ``condition`` is true.\r\n"], ["\r\n"], ["'${image}' in ${lkr_loc_img}\r\n"], ["Change Image Folder\r\n"], ["${imgpath}\\\\${LKR_UC}\r\n"], ["\r\n"], ["\r\n"], ["\r\n"], ["\r\n"], ["Tries to locate given image from the screen for given time.\r\n"], ["\r\n"], ["${image}\r\n"], ["timeout=${timeout}\r\n"], ["\r\n"], ["\r\n"], ["${loc}\r\n"], ["\r\n"], ["Image \"aae_zeile_markiert\" found at (423, 786)\r\n"], ["${loc} = (423, 786)\r\n"], ["\r\n"], ["\r\n"], ["\r\n"], ["Runs the given keyword with the given arguments, if ``condition`` is true.\r\n"], ["\r\n"], ["'${image}' in ${lkr_loc_img}\r\n"], ["Change Image Folder\r\n"], ["${imgpath}\r\n"], ["\r\n"], ["\r\n"], ["\r\n"], ["${loc} = (423, 786)\r\n"], ["\r\n"], ["\r\n"], ["\r\n"], ["\r\n"], ["${loc}\r\n"], ["\r\n"], ["\r\n"], ["Moves the mouse pointer to an absolute coordinates.\r\n"], ["\r\n"], ["${loc}\r\n"], ["\r\n"], ["\r\n"], ["\r\n"], ["\r\n"], ["Clicks with the specified mouse button.\r\n"], ["\r\n"], ["\r\n"], ["\r\n"], ["\r\n"], ["\r\n"], ["\r\n"], ["\r\n"], ["\r\n"], ["aae_viewer_b\r\n"], ["timeout=10\r\n"], ["\r\n"], ["\r\n"], ["\r\n"], ["${image}\r\n"], ["${timeout}\r\n"], ["\r\n"], ["\r\n"], ["${loc}\r\n"], ["\r\n"], ["\r\n"], ["Runs the given keyword with the given arguments, if ``condition`` is true.\r\n"], ["\r\n"], ["'${image}' in ${lkr_loc_img}\r\n"], ["Change Image Folder\r\n"], ["${imgpath}\\\\${LKR_UC}\r\n"], ["\r\n"], ["\r\n"], ["\r\n"], ["\r\n"], ["Tries to locate given image from the screen for given time.\r\n"], ["\r\n"], ["${image}\r\n"], ["timeout=${timeout}\r\n"], ["\r\n"], ["\r\n"], ["${loc}\r\n"], ["\r\n"], ["Image \"aae_viewer_b\" found at (641, 709)\r\n"], ["${loc} = (641, 709)\r\n"], ["\r\n"], ["\r\n"], ["\r\n"], ["Runs the given keyword with the given arguments, if ``condition`` is true.\r\n"], ["\r\n"], ["'${image}' in ${lkr_loc_img}\r\n"], ["Change Image Folder\r\n"], ["${imgpath}\r\n"], ["\r\n"], ["\r\n"], ["\r\n"], ["${loc} = (641, 709)\r\n"], ["\r\n"], ["\r\n"], ["\r\n"], ["\r\n"], ["${loc}\r\n"], ["\r\n"], ["\r\n"], ["Moves the mouse pointer to an absolute coordinates.\r\n"], ["\r\n"], ["${loc}\r\n"], ["\r\n"], ["\r\n"], ["\r\n"], ["\r\n"], ["Clicks with the specified mouse button.\r\n"], ["\r\n"], ["\r\n"], ["\r\n"], ["\r\n"], ["\r\n"], ["\r\n"], ["\r\n"], ["\r\n"], ["bviewer_opened\r\n"], ["10\r\n"], ["\r\n"], ["\r\n"], ["Runs the given keyword with the given arguments, if ``condition`` is true.\r\n"], ["\r\n"], ["'${image}' in ${lkr_loc_img}\r\n"], ["Change Image Folder\r\n"], ["${imgpath}\\\\${LKR_UC}\r\n"], ["\r\n"], ["\r\n"], ["\r\n"], ["\r\n"], ["Tries to locate given image from the screen for given time.\r\n"], ["\r\n"], ["${image}\r\n"], ["timeout=${timeout}\r\n"], ["\r\n"], ["\r\n"], ["${loc}\r\n"], ["\r\n"], ["Image \"bviewer_opened\" found at (652, 94)\r\n"], ["${loc} = (652, 94)\r\n"], ["\r\n"], ["\r\n"], ["\r\n"], ["Runs the given keyword with the given arguments, if ``condition`` is true.\r\n"], ["\r\n"], ["'${image}' in ${lkr_loc_img}\r\n"], ["Change Image Folder\r\n"], ["${imgpath}\r\n"], ["\r\n"], ["\r\n"], ["\r\n"], ["\r\n"], ["\r\n"], ["\r\n"], ["Pauses the test executed for the given time.\r\n"], ["\r\n"], ["0.5\r\n"], ["\r\n"], ["Slept 500 milliseconds\r\n"], ["\r\n"], ["\r\n"], ["\r\n"], ["\r\n"], ["bviewer_opened\r\n"], ["timeout=10\r\n"], ["\r\n"], ["\r\n"], ["\r\n"], ["${image}\r\n"], ["${timeout}\r\n"], ["\r\n"], ["\r\n"], ["${loc}\r\n"], ["\r\n"], ["\r\n"], ["Runs the given keyword with the given arguments, if ``condition`` is true.\r\n"], ["\r\n"], ["'${image}' in ${lkr_loc_img}\r\n"], ["Change Image Folder\r\n"], ["${imgpath}\\\\${LKR_UC}\r\n"], ["\r\n"], ["\r\n"], ["\r\n"], ["\r\n"], ["Tries to locate given image from the screen for given time.\r\n"], ["\r\n"], ["${image}\r\n"], ["timeout=${timeout}\r\n"], ["\r\n"], ["\r\n"], ["${loc}\r\n"], ["\r\n"], ["Image \"bviewer_opened\" found at (652, 94)\r\n"], ["${loc} = (652, 94)\r\n"], ["\r\n"], ["\r\n"], ["\r\n"], ["Runs the given keyword with the given arguments, if ``condition`` is true.\r\n"], ["\r\n"], ["'${image}' in ${lkr_loc_img}\r\n"], ["Change Image Folder\r\n"], ["${imgpath}\r\n"], ["\r\n"], ["\r\n"], ["\r\n"], ["${loc} = (652, 94)\r\n"], ["\r\n"], ["\r\n"], ["\r\n"], ["\r\n"], ["${loc}\r\n"], ["\r\n"], ["\r\n"], ["Moves the mouse pointer to an absolute coordinates.\r\n"], ["\r\n"], ["${loc}\r\n"], ["\r\n"], ["\r\n"], ["\r\n"], ["\r\n"], ["Clicks with the specified mouse button.\r\n"], ["\r\n"], ["\r\n"], ["\r\n"], ["\r\n"], ["\r\n"], ["\r\n"], ["\r\n"], ["Pauses the test executed for the given time.\r\n"], ["\r\n"], ["0.5\r\n"], ["\r\n"], ["Slept 500 milliseconds\r\n"], ["\r\n"], ["\r\n"], ["\r\n"], ["Press given keyboard keys.\r\n"], ["\r\n"], ["Key.Win\r\n"], ["Key.Up\r\n"], ["\r\n"], ["\r\n"], ["\r\n"], ["\r\n"], ["Returns the given values which can then be assigned to a variables.\r\n"], ["\r\n"], ["ARCHIVETOOL_DOKU_${LKR_UC}_${anz_seiten}\r\n"], ["\r\n"], ["\r\n"], ["${search_image}\r\n"], ["\r\n"], ["${search_image} = ARCHIVETOOL_DOKU_ZH_30\r\n"], ["\r\n"], ["\r\n"], ["\r\n"], ["\r\n"], ["bviewer_opened\r\n"], ["timeout=10\r\n"], ["\r\n"], ["\r\n"], ["\r\n"], ["${image}\r\n"], ["${timeout}\r\n"], ["\r\n"], ["\r\n"], ["${loc}\r\n"], ["\r\n"], ["\r\n"], ["Runs the given keyword with the given arguments, if ``condition`` is true.\r\n"], ["\r\n"], ["'${image}' in ${lkr_loc_img}\r\n"], ["Change Image Folder\r\n"], ["${imgpath}\\\\${LKR_UC}\r\n"], ["\r\n"], ["\r\n"], ["\r\n"], ["\r\n"], ["Tries to locate given image from the screen for given time.\r\n"], ["\r\n"], ["${image}\r\n"], ["timeout=${timeout}\r\n"], ["\r\n"], ["\r\n"], ["${loc}\r\n"], ["\r\n"], ["Image \"bviewer_opened\" found at (11, 85)\r\n"], ["${loc} = (11, 85)\r\n"], ["\r\n"], ["\r\n"], ["\r\n"], ["Runs the given keyword with the given arguments, if ``condition`` is true.\r\n"], ["\r\n"], ["'${image}' in ${lkr_loc_img}\r\n"], ["Change Image Folder\r\n"], ["${imgpath}\r\n"], ["\r\n"], ["\r\n"], ["\r\n"], ["${loc} = (11, 85)\r\n"], ["\r\n"], ["\r\n"], ["\r\n"], ["\r\n"], ["${loc}\r\n"], ["\r\n"], ["\r\n"], ["Moves the mouse pointer to an absolute coordinates.\r\n"], ["\r\n"], ["${loc}\r\n"], ["\r\n"], ["\r\n"], ["\r\n"], ["\r\n"], ["Clicks with the specified mouse button.\r\n"], ["\r\n"], ["\r\n"], ["\r\n"], ["\r\n"], ["\r\n"], ["\r\n"], ["\r\n"], ["Tries to locate given image from the screen for given time.\r\n"], ["\r\n"], ["${search_image}\r\n"], ["timeout=90\r\n"], ["\r\n"], ["Image \"ARCHIVETOOL_DOKU_ZH_30\" found at (254, 605)\r\n"], ["\r\n"], ["\r\n"], ["\r\n"], ["Press given keyboard keys.\r\n"], ["\r\n"], ["Key.Alt\r\n"], ["Key.F4\r\n"], ["\r\n"], ["\r\n"], ["\r\n"], ["\r\n"], ["\r\n"], ["\r\n"], ["\r\n"], ["aae_suche_clear\r\n"], ["timeout=5\r\n"], ["\r\n"], ["\r\n"], ["\r\n"], ["${image}\r\n"], ["${timeout}\r\n"], ["\r\n"], ["\r\n"], ["${loc}\r\n"], ["\r\n"], ["\r\n"], ["Runs the given keyword with the given arguments, if ``condition`` is true.\r\n"], ["\r\n"], ["'${image}' in ${lkr_loc_img}\r\n"], ["Change Image Folder\r\n"], ["${imgpath}\\\\${LKR_UC}\r\n"], ["\r\n"], ["\r\n"], ["\r\n"], ["\r\n"], ["Tries to locate given image from the screen for given time.\r\n"], ["\r\n"], ["${image}\r\n"], ["timeout=${timeout}\r\n"], ["\r\n"], ["\r\n"], ["${loc}\r\n"], ["\r\n"], ["Image \"aae_suche_clear\" found at (404, 709)\r\n"], ["${loc} = (404, 709)\r\n"], ["\r\n"], ["\r\n"], ["\r\n"], ["Runs the given keyword with the given arguments, if ``condition`` is true.\r\n"], ["\r\n"], ["'${image}' in ${lkr_loc_img}\r\n"], ["Change Image Folder\r\n"], ["${imgpath}\r\n"], ["\r\n"], ["\r\n"], ["\r\n"], ["${loc} = (404, 709)\r\n"], ["\r\n"], ["\r\n"], ["\r\n"], ["\r\n"], ["${loc}\r\n"], ["\r\n"], ["\r\n"], ["Moves the mouse pointer to an absolute coordinates.\r\n"], ["\r\n"], ["${loc}\r\n"], ["\r\n"], ["\r\n"], ["\r\n"], ["\r\n"], ["Clicks with the specified mouse button.\r\n"], ["\r\n"], ["\r\n"], ["\r\n"], ["\r\n"], ["\r\n"], ["\r\n"], ["\r\n"], ["\r\n"], ["aae_dokumentennr_bereit\r\n"], ["timeout=5\r\n"], ["\r\n"], ["\r\n"], ["Runs the given keyword with the given arguments, if ``condition`` is true.\r\n"], ["\r\n"], ["'${image}' in ${lkr_loc_img}\r\n"], ["Change Image Folder\r\n"], ["${imgpath}\\\\${LKR_UC}\r\n"], ["\r\n"], ["\r\n"], ["\r\n"], ["\r\n"], ["Tries to locate given image from the screen for given time.\r\n"], ["\r\n"], ["${image}\r\n"], ["timeout=${timeout}\r\n"], ["\r\n"], ["\r\n"], ["${loc}\r\n"], ["\r\n"], ["Image \"aae_dokumentennr_bereit\" found at (569, 464)\r\n"], ["${loc} = (569, 464)\r\n"], ["\r\n"], ["\r\n"], ["\r\n"], ["Runs the given keyword with the given arguments, if ``condition`` is true.\r\n"], ["\r\n"], ["'${image}' in ${lkr_loc_img}\r\n"], ["Change Image Folder\r\n"], ["${imgpath}\r\n"], ["\r\n"], ["\r\n"], ["\r\n"], ["\r\n"], ["\r\n"], ["\r\n"], ["Evaluates the given expression in Python and returns the result.\r\n"], ["\r\n"], ["${i} + 1\r\n"], ["\r\n"], ["\r\n"], ["${i}\r\n"], ["\r\n"], ["${i} = 1\r\n"], ["\r\n"], ["\r\n"], ["\r\n"], ["\r\n"], ["\r\n"], ["\r\n"], ["\r\n"], ["${lkr_docs}[${i}]\r\n"], ["${anz_seiten}\r\n"], ["\r\n"], ["\r\n"], ["Makes a variable available everywhere within the scope of the current test.\r\n"], ["\r\n"], ["${dokid}\r\n"], ["${lkr_doc}\r\n"], ["\r\n"], ["${dokid} = 106614249\r\n"], ["\r\n"], ["\r\n"], ["\r\n"], ["\r\n"], ["aae_dokumentennr\r\n"], ["5\r\n"], ["100\r\n"], ["${lkr_doc}\r\n"], ["\r\n"], ["\r\n"], ["\r\n"], ["${image}\r\n"], ["${timeout}\r\n"], ["\r\n"], ["\r\n"], ["${loc}\r\n"], ["\r\n"], ["\r\n"], ["Runs the given keyword with the given arguments, if ``condition`` is true.\r\n"], ["\r\n"], ["'${image}' in ${lkr_loc_img}\r\n"], ["Change Image Folder\r\n"], ["${imgpath}\\\\${LKR_UC}\r\n"], ["\r\n"], ["\r\n"], ["\r\n"], ["\r\n"], ["Tries to locate given image from the screen for given time.\r\n"], ["\r\n"], ["${image}\r\n"], ["timeout=${timeout}\r\n"], ["\r\n"], ["\r\n"], ["${loc}\r\n"], ["\r\n"], ["Image \"aae_dokumentennr\" found at (452, 463)\r\n"], ["${loc} = (452, 463)\r\n"], ["\r\n"], ["\r\n"], ["\r\n"], ["Runs the given keyword with the given arguments, if ``condition`` is true.\r\n"], ["\r\n"], ["'${image}' in ${lkr_loc_img}\r\n"], ["Change Image Folder\r\n"], ["${imgpath}\r\n"], ["\r\n"], ["\r\n"], ["\r\n"], ["${loc} = (452, 463)\r\n"], ["\r\n"], ["\r\n"], ["\r\n"], ["Clicks right of given location by given offset.\r\n"], ["\r\n"], ["${loc}\r\n"], ["${offset}\r\n"], ["\r\n"], ["Clicking 1 time(s) at (552, 463) with left mouse button at interval 0.000000\r\n"], ["\r\n"], ["\r\n"], ["\r\n"], ["Type text and keyboard keys.\r\n"], ["\r\n"], ["@{text}\r\n"], ["\r\n"], ["\r\n"], ["\r\n"], ["\r\n"], ["\r\n"], ["\r\n"], ["Type text and keyboard keys.\r\n"], ["\r\n"], ["Key.enter\r\n"], ["\r\n"], ["\r\n"], ["\r\n"], ["\r\n"], ["\r\n"], ["aae_treffer_1\r\n"], ["timeout=10\r\n"], ["\r\n"], ["\r\n"], ["\r\n"], ["${image}\r\n"], ["${timeout}\r\n"], ["\r\n"], ["\r\n"], ["${loc}\r\n"], ["\r\n"], ["\r\n"], ["Runs the given keyword with the given arguments, if ``condition`` is true.\r\n"], ["\r\n"], ["'${image}' in ${lkr_loc_img}\r\n"], ["Change Image Folder\r\n"], ["${imgpath}\\\\${LKR_UC}\r\n"], ["\r\n"], ["\r\n"], ["\r\n"], ["\r\n"], ["Tries to locate given image from the screen for given time.\r\n"], ["\r\n"], ["${image}\r\n"], ["timeout=${timeout}\r\n"], ["\r\n"], ["\r\n"], ["${loc}\r\n"], ["\r\n"], ["Image \"aae_treffer_1\" found at (870, 745)\r\n"], ["${loc} = (870, 745)\r\n"], ["\r\n"], ["\r\n"], ["\r\n"], ["Runs the given keyword with the given arguments, if ``condition`` is true.\r\n"], ["\r\n"], ["'${image}' in ${lkr_loc_img}\r\n"], ["Change Image Folder\r\n"], ["${imgpath}\r\n"], ["\r\n"], ["\r\n"], ["\r\n"], ["${loc} = (870, 745)\r\n"], ["\r\n"], ["\r\n"], ["\r\n"], ["\r\n"], ["${loc}\r\n"], ["\r\n"], ["\r\n"], ["Moves the mouse pointer to an absolute coordinates.\r\n"], ["\r\n"], ["${loc}\r\n"], ["\r\n"], ["\r\n"], ["\r\n"], ["\r\n"], ["Clicks with the specified mouse button.\r\n"], ["\r\n"], ["\r\n"], ["\r\n"], ["\r\n"], ["\r\n"], ["\r\n"], ["\r\n"], ["Type text and keyboard keys.\r\n"], ["\r\n"], ["Key.Tab\r\n"], ["Key.Tab\r\n"], ["Key.Tab\r\n"], ["Key.Tab\r\n"], ["Key.right\r\n"], ["\r\n"], ["\r\n"], ["\r\n"], ["\r\n"], ["\r\n"], ["aae_zeile_markiert\r\n"], ["timeout=10\r\n"], ["\r\n"], ["\r\n"], ["\r\n"], ["${image}\r\n"], ["${timeout}\r\n"], ["\r\n"], ["\r\n"], ["${loc}\r\n"], ["\r\n"], ["\r\n"], ["Runs the given keyword with the given arguments, if ``condition`` is true.\r\n"], ["\r\n"], ["'${image}' in ${lkr_loc_img}\r\n"], ["Change Image Folder\r\n"], ["${imgpath}\\\\${LKR_UC}\r\n"], ["\r\n"], ["\r\n"], ["\r\n"], ["\r\n"], ["Tries to locate given image from the screen for given time.\r\n"], ["\r\n"], ["${image}\r\n"], ["timeout=${timeout}\r\n"], ["\r\n"], ["\r\n"], ["${loc}\r\n"], ["\r\n"], ["Image \"aae_zeile_markiert\" found at (423, 786)\r\n"], ["${loc} = (423, 786)\r\n"], ["\r\n"], ["\r\n"], ["\r\n"], ["Runs the given keyword with the given arguments, if ``condition`` is true.\r\n"], ["\r\n"], ["'${image}' in ${lkr_loc_img}\r\n"], ["Change Image Folder\r\n"], ["${imgpath}\r\n"], ["\r\n"], ["\r\n"], ["\r\n"], ["${loc} = (423, 786)\r\n"], ["\r\n"], ["\r\n"], ["\r\n"], ["\r\n"], ["${loc}\r\n"], ["\r\n"], ["\r\n"], ["Moves the mouse pointer to an absolute coordinates.\r\n"], ["\r\n"], ["${loc}\r\n"], ["\r\n"], ["\r\n"], ["\r\n"], ["\r\n"], ["Clicks with the specified mouse button.\r\n"], ["\r\n"], ["\r\n"], ["\r\n"], ["\r\n"], ["\r\n"], ["\r\n"], ["\r\n"], ["\r\n"], ["aae_viewer_b\r\n"], ["timeout=10\r\n"], ["\r\n"], ["\r\n"], ["\r\n"], ["${image}\r\n"], ["${timeout}\r\n"], ["\r\n"], ["\r\n"], ["${loc}\r\n"], ["\r\n"], ["\r\n"], ["Runs the given keyword with the given arguments, if ``condition`` is true.\r\n"], ["\r\n"], ["'${image}' in ${lkr_loc_img}\r\n"], ["Change Image Folder\r\n"], ["${imgpath}\\\\${LKR_UC}\r\n"], ["\r\n"], ["\r\n"], ["\r\n"], ["\r\n"], ["Tries to locate given image from the screen for given time.\r\n"], ["\r\n"], ["${image}\r\n"], ["timeout=${timeout}\r\n"], ["\r\n"], ["\r\n"], ["${loc}\r\n"], ["\r\n"], ["Image \"aae_viewer_b\" found at (641, 709)\r\n"], ["${loc} = (641, 709)\r\n"], ["\r\n"], ["\r\n"], ["\r\n"], ["Runs the given keyword with the given arguments, if ``condition`` is true.\r\n"], ["\r\n"], ["'${image}' in ${lkr_loc_img}\r\n"], ["Change Image Folder\r\n"], ["${imgpath}\r\n"], ["\r\n"], ["\r\n"], ["\r\n"], ["${loc} = (641, 709)\r\n"], ["\r\n"], ["\r\n"], ["\r\n"], ["\r\n"], ["${loc}\r\n"], ["\r\n"], ["\r\n"], ["Moves the mouse pointer to an absolute coordinates.\r\n"], ["\r\n"], ["${loc}\r\n"], ["\r\n"], ["\r\n"], ["\r\n"], ["\r\n"], ["Clicks with the specified mouse button.\r\n"], ["\r\n"], ["\r\n"], ["\r\n"], ["\r\n"], ["\r\n"], ["\r\n"], ["\r\n"], ["\r\n"], ["bviewer_opened\r\n"], ["10\r\n"], ["\r\n"], ["\r\n"], ["Runs the given keyword with the given arguments, if ``condition`` is true.\r\n"], ["\r\n"], ["'${image}' in ${lkr_loc_img}\r\n"], ["Change Image Folder\r\n"], ["${imgpath}\\\\${LKR_UC}\r\n"], ["\r\n"], ["\r\n"], ["\r\n"], ["\r\n"], ["Tries to locate given image from the screen for given time.\r\n"], ["\r\n"], ["${image}\r\n"], ["timeout=${timeout}\r\n"], ["\r\n"], ["\r\n"], ["${loc}\r\n"], ["\r\n"], ["Image \"bviewer_opened\" found at (652, 94)\r\n"], ["${loc} = (652, 94)\r\n"], ["\r\n"], ["\r\n"], ["\r\n"], ["Runs the given keyword with the given arguments, if ``condition`` is true.\r\n"], ["\r\n"], ["'${image}' in ${lkr_loc_img}\r\n"], ["Change Image Folder\r\n"], ["${imgpath}\r\n"], ["\r\n"], ["\r\n"], ["\r\n"], ["\r\n"], ["\r\n"], ["\r\n"], ["Pauses the test executed for the given time.\r\n"], ["\r\n"], ["0.5\r\n"], ["\r\n"], ["Slept 500 milliseconds\r\n"], ["\r\n"], ["\r\n"], ["\r\n"], ["\r\n"], ["bviewer_opened\r\n"], ["timeout=10\r\n"], ["\r\n"], ["\r\n"], ["\r\n"], ["${image}\r\n"], ["${timeout}\r\n"], ["\r\n"], ["\r\n"], ["${loc}\r\n"], ["\r\n"], ["\r\n"], ["Runs the given keyword with the given arguments, if ``condition`` is true.\r\n"], ["\r\n"], ["'${image}' in ${lkr_loc_img}\r\n"], ["Change Image Folder\r\n"], ["${imgpath}\\\\${LKR_UC}\r\n"], ["\r\n"], ["\r\n"], ["\r\n"], ["\r\n"], ["Tries to locate given image from the screen for given time.\r\n"], ["\r\n"], ["${image}\r\n"], ["timeout=${timeout}\r\n"], ["\r\n"], ["\r\n"], ["${loc}\r\n"], ["\r\n"], ["Image \"bviewer_opened\" found at (652, 94)\r\n"], ["${loc} = (652, 94)\r\n"], ["\r\n"], ["\r\n"], ["\r\n"], ["Runs the given keyword with the given arguments, if ``condition`` is true.\r\n"], ["\r\n"], ["'${image}' in ${lkr_loc_img}\r\n"], ["Change Image Folder\r\n"], ["${imgpath}\r\n"], ["\r\n"], ["\r\n"], ["\r\n"], ["${loc} = (652, 94)\r\n"], ["\r\n"], ["\r\n"], ["\r\n"], ["\r\n"], ["${loc}\r\n"], ["\r\n"], ["\r\n"], ["Moves the mouse pointer to an absolute coordinates.\r\n"], ["\r\n"], ["${loc}\r\n"], ["\r\n"], ["\r\n"], ["\r\n"], ["\r\n"], ["Clicks with the specified mouse button.\r\n"], ["\r\n"], ["\r\n"], ["\r\n"], ["\r\n"], ["\r\n"], ["\r\n"], ["\r\n"], ["Pauses the test executed for the given time.\r\n"], ["\r\n"], ["0.5\r\n"], ["\r\n"], ["Slept 500 milliseconds\r\n"], ["\r\n"], ["\r\n"], ["\r\n"], ["Press given keyboard keys.\r\n"], ["\r\n"], ["Key.Win\r\n"], ["Key.Up\r\n"], ["\r\n"], ["\r\n"], ["\r\n"], ["\r\n"], ["Returns the given values which can then be assigned to a variables.\r\n"], ["\r\n"], ["ARCHIVETOOL_DOKU_${LKR_UC}_${anz_seiten}\r\n"], ["\r\n"], ["\r\n"], ["${search_image}\r\n"], ["\r\n"], ["${search_image} = ARCHIVETOOL_DOKU_ZH_100\r\n"], ["\r\n"], ["\r\n"], ["\r\n"], ["\r\n"], ["bviewer_opened\r\n"], ["timeout=10\r\n"], ["\r\n"], ["\r\n"], ["\r\n"], ["${image}\r\n"], ["${timeout}\r\n"], ["\r\n"], ["\r\n"], ["${loc}\r\n"], ["\r\n"], ["\r\n"], ["Runs the given keyword with the given arguments, if ``condition`` is true.\r\n"], ["\r\n"], ["'${image}' in ${lkr_loc_img}\r\n"], ["Change Image Folder\r\n"], ["${imgpath}\\\\${LKR_UC}\r\n"], ["\r\n"], ["\r\n"], ["\r\n"], ["\r\n"], ["Tries to locate given image from the screen for given time.\r\n"], ["\r\n"], ["${image}\r\n"], ["timeout=${timeout}\r\n"], ["\r\n"], ["\r\n"], ["${loc}\r\n"], ["\r\n"], ["Image \"bviewer_opened\" found at (11, 85)\r\n"], ["${loc} = (11, 85)\r\n"], ["\r\n"], ["\r\n"], ["\r\n"], ["Runs the given keyword with the given arguments, if ``condition`` is true.\r\n"], ["\r\n"], ["'${image}' in ${lkr_loc_img}\r\n"], ["Change Image Folder\r\n"], ["${imgpath}\r\n"], ["\r\n"], ["\r\n"], ["\r\n"], ["${loc} = (11, 85)\r\n"], ["\r\n"], ["\r\n"], ["\r\n"], ["\r\n"], ["${loc}\r\n"], ["\r\n"], ["\r\n"], ["Moves the mouse pointer to an absolute coordinates.\r\n"], ["\r\n"], ["${loc}\r\n"], ["\r\n"], ["\r\n"], ["\r\n"], ["\r\n"], ["Clicks with the specified mouse button.\r\n"], ["\r\n"], ["\r\n"], ["\r\n"], ["\r\n"], ["\r\n"], ["\r\n"], ["\r\n"], ["Tries to locate given image from the screen for given time.\r\n"], ["\r\n"], ["${search_image}\r\n"], ["timeout=90\r\n"], ["\r\n"], ["Image \"ARCHIVETOOL_DOKU_ZH_100\" found at (250, 593)\r\n"], ["\r\n"], ["\r\n"], ["\r\n"], ["Press given keyboard keys.\r\n"], ["\r\n"], ["Key.Alt\r\n"], ["Key.F4\r\n"], ["\r\n"], ["\r\n"], ["\r\n"], ["\r\n"], ["\r\n"], ["\r\n"], ["\r\n"], ["aae_suche_clear\r\n"], ["timeout=5\r\n"], ["\r\n"], ["\r\n"], ["\r\n"], ["${image}\r\n"], ["${timeout}\r\n"], ["\r\n"], ["\r\n"], ["${loc}\r\n"], ["\r\n"], ["\r\n"], ["Runs the given keyword with the given arguments, if ``condition`` is true.\r\n"], ["\r\n"], ["'${image}' in ${lkr_loc_img}\r\n"], ["Change Image Folder\r\n"], ["${imgpath}\\\\${LKR_UC}\r\n"], ["\r\n"], ["\r\n"], ["\r\n"], ["\r\n"], ["Tries to locate given image from the screen for given time.\r\n"], ["\r\n"], ["${image}\r\n"], ["timeout=${timeout}\r\n"], ["\r\n"], ["\r\n"], ["${loc}\r\n"], ["\r\n"], ["Image \"aae_suche_clear\" found at (404, 709)\r\n"], ["${loc} = (404, 709)\r\n"], ["\r\n"], ["\r\n"], ["\r\n"], ["Runs the given keyword with the given arguments, if ``condition`` is true.\r\n"], ["\r\n"], ["'${image}' in ${lkr_loc_img}\r\n"], ["Change Image Folder\r\n"], ["${imgpath}\r\n"], ["\r\n"], ["\r\n"], ["\r\n"], ["${loc} = (404, 709)\r\n"], ["\r\n"], ["\r\n"], ["\r\n"], ["\r\n"], ["${loc}\r\n"], ["\r\n"], ["\r\n"], ["Moves the mouse pointer to an absolute coordinates.\r\n"], ["\r\n"], ["${loc}\r\n"], ["\r\n"], ["\r\n"], ["\r\n"], ["\r\n"], ["Clicks with the specified mouse button.\r\n"], ["\r\n"], ["\r\n"], ["\r\n"], ["\r\n"], ["\r\n"], ["\r\n"], ["\r\n"], ["\r\n"], ["aae_dokumentennr_bereit\r\n"], ["timeout=5\r\n"], ["\r\n"], ["\r\n"], ["Runs the given keyword with the given arguments, if ``condition`` is true.\r\n"], ["\r\n"], ["'${image}' in ${lkr_loc_img}\r\n"], ["Change Image Folder\r\n"], ["${imgpath}\\\\${LKR_UC}\r\n"], ["\r\n"], ["\r\n"], ["\r\n"], ["\r\n"], ["Tries to locate given image from the screen for given time.\r\n"], ["\r\n"], ["${image}\r\n"], ["timeout=${timeout}\r\n"], ["\r\n"], ["\r\n"], ["${loc}\r\n"], ["\r\n"], ["Image \"aae_dokumentennr_bereit\" found at (569, 464)\r\n"], ["${loc} = (569, 464)\r\n"], ["\r\n"], ["\r\n"], ["\r\n"], ["Runs the given keyword with the given arguments, if ``condition`` is true.\r\n"], ["\r\n"], ["'${image}' in ${lkr_loc_img}\r\n"], ["Change Image Folder\r\n"], ["${imgpath}\r\n"], ["\r\n"], ["\r\n"], ["\r\n"], ["\r\n"], ["\r\n"], ["\r\n"], ["Evaluates the given expression in Python and returns the result.\r\n"], ["\r\n"], ["${i} + 1\r\n"], ["\r\n"], ["\r\n"], ["${i}\r\n"], ["\r\n"], ["${i} = 2\r\n"], ["\r\n"], ["\r\n"], ["\r\n"], ["\r\n"], ["\r\n"], ["\r\n"], ["\r\n"], ["${lkr_docs}[${i}]\r\n"], ["${anz_seiten}\r\n"], ["\r\n"], ["\r\n"], ["Makes a variable available everywhere within the scope of the current test.\r\n"], ["\r\n"], ["${dokid}\r\n"], ["${lkr_doc}\r\n"], ["\r\n"], ["${dokid} = 106614594\r\n"], ["\r\n"], ["\r\n"], ["\r\n"], ["\r\n"], ["aae_dokumentennr\r\n"], ["5\r\n"], ["100\r\n"], ["${lkr_doc}\r\n"], ["\r\n"], ["\r\n"], ["\r\n"], ["${image}\r\n"], ["${timeout}\r\n"], ["\r\n"], ["\r\n"], ["${loc}\r\n"], ["\r\n"], ["\r\n"], ["Runs the given keyword with the given arguments, if ``condition`` is true.\r\n"], ["\r\n"], ["'${image}' in ${lkr_loc_img}\r\n"], ["Change Image Folder\r\n"], ["${imgpath}\\\\${LKR_UC}\r\n"], ["\r\n"], ["\r\n"], ["\r\n"], ["\r\n"], ["Tries to locate given image from the screen for given time.\r\n"], ["\r\n"], ["${image}\r\n"], ["timeout=${timeout}\r\n"], ["\r\n"], ["\r\n"], ["${loc}\r\n"], ["\r\n"], ["Image \"aae_dokumentennr\" found at (452, 463)\r\n"], ["${loc} = (452, 463)\r\n"], ["\r\n"], ["\r\n"], ["\r\n"], ["Runs the given keyword with the given arguments, if ``condition`` is true.\r\n"], ["\r\n"], ["'${image}' in ${lkr_loc_img}\r\n"], ["Change Image Folder\r\n"], ["${imgpath}\r\n"], ["\r\n"], ["\r\n"], ["\r\n"], ["${loc} = (452, 463)\r\n"], ["\r\n"], ["\r\n"], ["\r\n"], ["Clicks right of given location by given offset.\r\n"], ["\r\n"], ["${loc}\r\n"], ["${offset}\r\n"], ["\r\n"], ["Clicking 1 time(s) at (552, 463) with left mouse button at interval 0.000000\r\n"], ["\r\n"], ["\r\n"], ["\r\n"], ["Type text and keyboard keys.\r\n"], ["\r\n"], ["@{text}\r\n"], ["\r\n"], ["\r\n"], ["\r\n"], ["\r\n"], ["\r\n"], ["\r\n"], ["Type text and keyboard keys.\r\n"], ["\r\n"], ["Key.enter\r\n"], ["\r\n"], ["\r\n"], ["\r\n"], ["\r\n"], ["\r\n"], ["aae_treffer_1\r\n"], ["timeout=10\r\n"], ["\r\n"], ["\r\n"], ["\r\n"], ["${image}\r\n"], ["${timeout}\r\n"], ["\r\n"], ["\r\n"], ["${loc}\r\n"], ["\r\n"], ["\r\n"], ["Runs the given keyword with the given arguments, if ``condition`` is true.\r\n"], ["\r\n"], ["'${image}' in ${lkr_loc_img}\r\n"], ["Change Image Folder\r\n"], ["${imgpath}\\\\${LKR_UC}\r\n"], ["\r\n"], ["\r\n"], ["\r\n"], ["\r\n"], ["Tries to locate given image from the screen for given time.\r\n"], ["\r\n"], ["${image}\r\n"], ["timeout=${timeout}\r\n"], ["\r\n"], ["\r\n"], ["${loc}\r\n"], ["\r\n"], ["Image \"aae_treffer_1\" found at (870, 745)\r\n"], ["${loc} = (870, 745)\r\n"], ["\r\n"], ["\r\n"], ["\r\n"], ["Runs the given keyword with the given arguments, if ``condition`` is true.\r\n"], ["\r\n"], ["'${image}' in ${lkr_loc_img}\r\n"], ["Change Image Folder\r\n"], ["${imgpath}\r\n"], ["\r\n"], ["\r\n"], ["\r\n"], ["${loc} = (870, 745)\r\n"], ["\r\n"], ["\r\n"], ["\r\n"], ["\r\n"], ["${loc}\r\n"], ["\r\n"], ["\r\n"], ["Moves the mouse pointer to an absolute coordinates.\r\n"], ["\r\n"], ["${loc}\r\n"], ["\r\n"], ["\r\n"], ["\r\n"], ["\r\n"], ["Clicks with the specified mouse button.\r\n"], ["\r\n"], ["\r\n"], ["\r\n"], ["\r\n"], ["\r\n"], ["\r\n"], ["\r\n"], ["Type text and keyboard keys.\r\n"], ["\r\n"], ["Key.Tab\r\n"], ["Key.Tab\r\n"], ["Key.Tab\r\n"], ["Key.Tab\r\n"], ["Key.right\r\n"], ["\r\n"], ["\r\n"], ["\r\n"], ["\r\n"], ["\r\n"], ["aae_zeile_markiert\r\n"], ["timeout=10\r\n"], ["\r\n"], ["\r\n"], ["\r\n"], ["${image}\r\n"], ["${timeout}\r\n"], ["\r\n"], ["\r\n"], ["${loc}\r\n"], ["\r\n"], ["\r\n"], ["Runs the given keyword with the given arguments, if ``condition`` is true.\r\n"], ["\r\n"], ["'${image}' in ${lkr_loc_img}\r\n"], ["Change Image Folder\r\n"], ["${imgpath}\\\\${LKR_UC}\r\n"], ["\r\n"], ["\r\n"], ["\r\n"], ["\r\n"], ["Tries to locate given image from the screen for given time.\r\n"], ["\r\n"], ["${image}\r\n"], ["timeout=${timeout}\r\n"], ["\r\n"], ["\r\n"], ["${loc}\r\n"], ["\r\n"], ["Image \"aae_zeile_markiert\" found at (423, 786)\r\n"], ["${loc} = (423, 786)\r\n"], ["\r\n"], ["\r\n"], ["\r\n"], ["Runs the given keyword with the given arguments, if ``condition`` is true.\r\n"], ["\r\n"], ["'${image}' in ${lkr_loc_img}\r\n"], ["Change Image Folder\r\n"], ["${imgpath}\r\n"], ["\r\n"], ["\r\n"], ["\r\n"], ["${loc} = (423, 786)\r\n"], ["\r\n"], ["\r\n"], ["\r\n"], ["\r\n"], ["${loc}\r\n"], ["\r\n"], ["\r\n"], ["Moves the mouse pointer to an absolute coordinates.\r\n"], ["\r\n"], ["${loc}\r\n"], ["\r\n"], ["\r\n"], ["\r\n"], ["\r\n"], ["Clicks with the specified mouse button.\r\n"], ["\r\n"], ["\r\n"], ["\r\n"], ["\r\n"], ["\r\n"], ["\r\n"], ["\r\n"], ["\r\n"], ["aae_viewer_b\r\n"], ["timeout=10\r\n"], ["\r\n"], ["\r\n"], ["\r\n"], ["${image}\r\n"], ["${timeout}\r\n"], ["\r\n"], ["\r\n"], ["${loc}\r\n"], ["\r\n"], ["\r\n"], ["Runs the given keyword with the given arguments, if ``condition`` is true.\r\n"], ["\r\n"], ["'${image}' in ${lkr_loc_img}\r\n"], ["Change Image Folder\r\n"], ["${imgpath}\\\\${LKR_UC}\r\n"], ["\r\n"], ["\r\n"], ["\r\n"], ["\r\n"], ["Tries to locate given image from the screen for given time.\r\n"], ["\r\n"], ["${image}\r\n"], ["timeout=${timeout}\r\n"], ["\r\n"], ["\r\n"], ["${loc}\r\n"], ["\r\n"], ["Image \"aae_viewer_b\" found at (641, 709)\r\n"], ["${loc} = (641, 709)\r\n"], ["\r\n"], ["\r\n"], ["\r\n"], ["Runs the given keyword with the given arguments, if ``condition`` is true.\r\n"], ["\r\n"], ["'${image}' in ${lkr_loc_img}\r\n"], ["Change Image Folder\r\n"], ["${imgpath}\r\n"], ["\r\n"], ["\r\n"], ["\r\n"], ["${loc} = (641, 709)\r\n"], ["\r\n"], ["\r\n"], ["\r\n"], ["\r\n"], ["${loc}\r\n"], ["\r\n"], ["\r\n"], ["Moves the mouse pointer to an absolute coordinates.\r\n"], ["\r\n"], ["${loc}\r\n"], ["\r\n"], ["\r\n"], ["\r\n"], ["\r\n"], ["Clicks with the specified mouse button.\r\n"], ["\r\n"], ["\r\n"], ["\r\n"], ["\r\n"], ["\r\n"], ["\r\n"], ["\r\n"], ["\r\n"], ["bviewer_opened\r\n"], ["10\r\n"], ["\r\n"], ["\r\n"], ["Runs the given keyword with the given arguments, if ``condition`` is true.\r\n"], ["\r\n"], ["'${image}' in ${lkr_loc_img}\r\n"], ["Change Image Folder\r\n"], ["${imgpath}\\\\${LKR_UC}\r\n"], ["\r\n"], ["\r\n"], ["\r\n"], ["\r\n"], ["Tries to locate given image from the screen for given time.\r\n"], ["\r\n"], ["${image}\r\n"], ["timeout=${timeout}\r\n"], ["\r\n"], ["\r\n"], ["${loc}\r\n"], ["\r\n"], ["Image \"bviewer_opened\" found at (652, 94)\r\n"], ["${loc} = (652, 94)\r\n"], ["\r\n"], ["\r\n"], ["\r\n"], ["Runs the given keyword with the given arguments, if ``condition`` is true.\r\n"], ["\r\n"], ["'${image}' in ${lkr_loc_img}\r\n"], ["Change Image Folder\r\n"], ["${imgpath}\r\n"], ["\r\n"], ["\r\n"], ["\r\n"], ["\r\n"], ["\r\n"], ["\r\n"], ["Pauses the test executed for the given time.\r\n"], ["\r\n"], ["0.5\r\n"], ["\r\n"], ["Slept 500 milliseconds\r\n"], ["\r\n"], ["\r\n"], ["\r\n"], ["\r\n"], ["bviewer_opened\r\n"], ["timeout=10\r\n"], ["\r\n"], ["\r\n"], ["\r\n"], ["${image}\r\n"], ["${timeout}\r\n"], ["\r\n"], ["\r\n"], ["${loc}\r\n"], ["\r\n"], ["\r\n"], ["Runs the given keyword with the given arguments, if ``condition`` is true.\r\n"], ["\r\n"], ["'${image}' in ${lkr_loc_img}\r\n"], ["Change Image Folder\r\n"], ["${imgpath}\\\\${LKR_UC}\r\n"], ["\r\n"], ["\r\n"], ["\r\n"], ["\r\n"], ["Tries to locate given image from the screen for given time.\r\n"], ["\r\n"], ["${image}\r\n"], ["timeout=${timeout}\r\n"], ["\r\n"], ["\r\n"], ["${loc}\r\n"], ["\r\n"], ["Image \"bviewer_opened\" found at (652, 94)\r\n"], ["${loc} = (652, 94)\r\n"], ["\r\n"], ["\r\n"], ["\r\n"], ["Runs the given keyword with the given arguments, if ``condition`` is true.\r\n"], ["\r\n"], ["'${image}' in ${lkr_loc_img}\r\n"], ["Change Image Folder\r\n"], ["${imgpath}\r\n"], ["\r\n"], ["\r\n"], ["\r\n"], ["${loc} = (652, 94)\r\n"], ["\r\n"], ["\r\n"], ["\r\n"], ["\r\n"], ["${loc}\r\n"], ["\r\n"], ["\r\n"], ["Moves the mouse pointer to an absolute coordinates.\r\n"], ["\r\n"], ["${loc}\r\n"], ["\r\n"], ["\r\n"], ["\r\n"], ["\r\n"], ["Clicks with the specified mouse button.\r\n"], ["\r\n"], ["\r\n"], ["\r\n"], ["\r\n"], ["\r\n"], ["\r\n"], ["\r\n"], ["Pauses the test executed for the given time.\r\n"], ["\r\n"], ["0.5\r\n"], ["\r\n"], ["Slept 500 milliseconds\r\n"], ["\r\n"], ["\r\n"], ["\r\n"], ["Press given keyboard keys.\r\n"], ["\r\n"], ["Key.Win\r\n"], ["Key.Up\r\n"], ["\r\n"], ["\r\n"], ["\r\n"], ["\r\n"], ["Returns the given values which can then be assigned to a variables.\r\n"], ["\r\n"], ["ARCHIVETOOL_DOKU_${LKR_UC}_${anz_seiten}\r\n"], ["\r\n"], ["\r\n"], ["${search_image}\r\n"], ["\r\n"], ["${search_image} = ARCHIVETOOL_DOKU_ZH_300\r\n"], ["\r\n"], ["\r\n"], ["\r\n"], ["\r\n"], ["bviewer_opened\r\n"], ["timeout=10\r\n"], ["\r\n"], ["\r\n"], ["\r\n"], ["${image}\r\n"], ["${timeout}\r\n"], ["\r\n"], ["\r\n"], ["${loc}\r\n"], ["\r\n"], ["\r\n"], ["Runs the given keyword with the given arguments, if ``condition`` is true.\r\n"], ["\r\n"], ["'${image}' in ${lkr_loc_img}\r\n"], ["Change Image Folder\r\n"], ["${imgpath}\\\\${LKR_UC}\r\n"], ["\r\n"], ["\r\n"], ["\r\n"], ["\r\n"], ["Tries to locate given image from the screen for given time.\r\n"], ["\r\n"], ["${image}\r\n"], ["timeout=${timeout}\r\n"], ["\r\n"], ["\r\n"], ["${loc}\r\n"], ["\r\n"], ["Image \"bviewer_opened\" found at (11, 85)\r\n"], ["${loc} = (11, 85)\r\n"], ["\r\n"], ["\r\n"], ["\r\n"], ["Runs the given keyword with the given arguments, if ``condition`` is true.\r\n"], ["\r\n"], ["'${image}' in ${lkr_loc_img}\r\n"], ["Change Image Folder\r\n"], ["${imgpath}\r\n"], ["\r\n"], ["\r\n"], ["\r\n"], ["${loc} = (11, 85)\r\n"], ["\r\n"], ["\r\n"], ["\r\n"], ["\r\n"], ["${loc}\r\n"], ["\r\n"], ["\r\n"], ["Moves the mouse pointer to an absolute coordinates.\r\n"], ["\r\n"], ["${loc}\r\n"], ["\r\n"], ["\r\n"], ["\r\n"], ["\r\n"], ["Clicks with the specified mouse button.\r\n"], ["\r\n"], ["\r\n"], ["\r\n"], ["\r\n"], ["\r\n"], ["\r\n"], ["\r\n"], ["Tries to locate given image from the screen for given time.\r\n"], ["\r\n"], ["${search_image}\r\n"], ["timeout=90\r\n"], ["\r\n"], ["Image \"ARCHIVETOOL_DOKU_ZH_300\" found at (257, 599)\r\n"], ["\r\n"], ["\r\n"], ["\r\n"], ["Press given keyboard keys.\r\n"], ["\r\n"], ["Key.Alt\r\n"], ["Key.F4\r\n"], ["\r\n"], ["\r\n"], ["\r\n"], ["\r\n"], ["\r\n"], ["\r\n"], ["\r\n"], ["aae_suche_clear\r\n"], ["timeout=5\r\n"], ["\r\n"], ["\r\n"], ["\r\n"], ["${image}\r\n"], ["${timeout}\r\n"], ["\r\n"], ["\r\n"], ["${loc}\r\n"], ["\r\n"], ["\r\n"], ["Runs the given keyword with the given arguments, if ``condition`` is true.\r\n"], ["\r\n"], ["'${image}' in ${lkr_loc_img}\r\n"], ["Change Image Folder\r\n"], ["${imgpath}\\\\${LKR_UC}\r\n"], ["\r\n"], ["\r\n"], ["\r\n"], ["\r\n"], ["Tries to locate given image from the screen for given time.\r\n"], ["\r\n"], ["${image}\r\n"], ["timeout=${timeout}\r\n"], ["\r\n"], ["\r\n"], ["${loc}\r\n"], ["\r\n"], ["Image \"aae_suche_clear\" found at (404, 709)\r\n"], ["${loc} = (404, 709)\r\n"], ["\r\n"], ["\r\n"], ["\r\n"], ["Runs the given keyword with the given arguments, if ``condition`` is true.\r\n"], ["\r\n"], ["'${image}' in ${lkr_loc_img}\r\n"], ["Change Image Folder\r\n"], ["${imgpath}\r\n"], ["\r\n"], ["\r\n"], ["\r\n"], ["${loc} = (404, 709)\r\n"], ["\r\n"], ["\r\n"], ["\r\n"], ["\r\n"], ["${loc}\r\n"], ["\r\n"], ["\r\n"], ["Moves the mouse pointer to an absolute coordinates.\r\n"], ["\r\n"], ["${loc}\r\n"], ["\r\n"], ["\r\n"], ["\r\n"], ["\r\n"], ["Clicks with the specified mouse button.\r\n"], ["\r\n"], ["\r\n"], ["\r\n"], ["\r\n"], ["\r\n"], ["\r\n"], ["\r\n"], ["\r\n"], ["aae_dokumentennr_bereit\r\n"], ["timeout=5\r\n"], ["\r\n"], ["\r\n"], ["Runs the given keyword with the given arguments, if ``condition`` is true.\r\n"], ["\r\n"], ["'${image}' in ${lkr_loc_img}\r\n"], ["Change Image Folder\r\n"], ["${imgpath}\\\\${LKR_UC}\r\n"], ["\r\n"], ["\r\n"], ["\r\n"], ["\r\n"], ["Tries to locate given image from the screen for given time.\r\n"], ["\r\n"], ["${image}\r\n"], ["timeout=${timeout}\r\n"], ["\r\n"], ["\r\n"], ["${loc}\r\n"], ["\r\n"], ["Image \"aae_dokumentennr_bereit\" found at (569, 464)\r\n"], ["${loc} = (569, 464)\r\n"], ["\r\n"], ["\r\n"], ["\r\n"], ["Runs the given keyword with the given arguments, if ``condition`` is true.\r\n"], ["\r\n"], ["'${image}' in ${lkr_loc_img}\r\n"], ["Change Image Folder\r\n"], ["${imgpath}\r\n"], ["\r\n"], ["\r\n"], ["\r\n"], ["\r\n"], ["\r\n"], ["\r\n"], ["Evaluates the given expression in Python and returns the result.\r\n"], ["\r\n"], ["${i} + 1\r\n"], ["\r\n"], ["\r\n"], ["${i}\r\n"], ["\r\n"], ["${i} = 3\r\n"], ["\r\n"], ["\r\n"], ["\r\n"], ["\r\n"], ["\r\n"], ["\r\n"], ["\r\n"], ["\r\n"], ["\r\n"], ["\r\n"], ["Runs the given keyword with the given arguments, if ``condition`` is true.\r\n"], ["\r\n"], ["${APPOPEN}==${True}\r\n"], ["Terminate Application\r\n"], ["alias=archivetool\r\n"], ["\r\n"], ["\r\n"], ["Terminates the process launched with `Launch Application` with\r\n"], ["given ``alias``.\r\n"], ["\r\n"], ["alias=archivetool\r\n"], ["\r\n"], ["\r\n"], ["\r\n"], ["\r\n"], ["\r\n"], ["\r\n"], ["Runs the given keyword with the given arguments, if ``condition`` is true.\r\n"], ["\r\n"], ["${APPOPEN}==${True}\r\n"], ["Quit All Viewer Processes\r\n"], ["\r\n"], ["\r\n"], ["\r\n"], ["Runs a process and waits for it to complete.\r\n"], ["\r\n"], ["cmd.exe /c taskkill /IM ArchiveViewAdvancedA.exe\r\n"], ["shell=True\r\n"], ["\r\n"], ["Starting process:\r\n"], ["cmd.exe /c taskkill /IM ArchiveViewAdvancedA.exe\r\n"], ["Waiting for process to complete.\r\n"], ["Process completed.\r\n"], ["\r\n"], ["\r\n"], ["\r\n"], ["Runs a process and waits for it to complete.\r\n"], ["\r\n"], ["cmd.exe /c taskkill /IM ArchiveViewAdvancedB.exe\r\n"], ["shell=True\r\n"], ["\r\n"], ["Starting process:\r\n"], ["cmd.exe /c taskkill /IM ArchiveViewAdvancedB.exe\r\n"], ["Waiting for process to complete.\r\n"], ["Process completed.\r\n"], ["\r\n"], ["\r\n"], ["\r\n"], ["Runs a process and waits for it to complete.\r\n"], ["\r\n"], ["cmd.exe /c taskkill /IM ArchiveViewAdvancedC.exe\r\n"], ["shell=True\r\n"], ["\r\n"], ["Starting process:\r\n"], ["cmd.exe /c taskkill /IM ArchiveViewAdvancedC.exe\r\n"], ["Waiting for process to complete.\r\n"], ["Process completed.\r\n"], ["\r\n"], ["\r\n"], ["\r\n"], ["Runs a process and waits for it to complete.\r\n"], ["\r\n"], ["cmd.exe /c taskkill /IM\r\n"], ["ArchivToolExtAdvanced.exe\r\n"], ["shell=True\r\n"], ["\r\n"], ["Starting process:\r\n"], ["\"cmd.exe /c taskkill /IM\" ArchivToolExtAdvanced.exe\r\n"], ["Waiting for process to complete.\r\n"], ["Process completed.\r\n"], ["\r\n"], ["\r\n"], ["\r\n"], ["Runs a process and waits for it to complete.\r\n"], ["\r\n"], ["cmd.exe /c taskkill /IM\r\n"], ["archtool.exe\r\n"], ["shell=True\r\n"], ["\r\n"], ["Starting process:\r\n"], ["\"cmd.exe /c taskkill /IM\" archtool.exe\r\n"], ["Waiting for process to complete.\r\n"], ["Process completed.\r\n"], ["\r\n"], ["\r\n"], ["\r\n"], ["\r\n"], ["\r\n"], ["\r\n"], ["\r\n"], ["Makes a variable available everywhere within the scope of the current suite.\r\n"], ["\r\n"], ["${APPOPEN}\r\n"], ["${False}\r\n"], ["\r\n"], ["${APPOPEN} = False\r\n"], ["\r\n"], ["\r\n"], ["\r\n"], ["\r\n"], ["\r\n"], ["\r\n"], ["\r\n"], ["\r\n"], ["\r\n"], ["\r\n"], ["\r\n"], ["\r\n"], ["Critical Tests\r\n"], ["All Tests\r\n"], ["\r\n"], ["\r\n"], ["\r\n"], ["\r\n"], ["Archivetool\r\n"], ["Archivetool.Archivetool\r\n"], ["\r\n"], ["\r\n"], ["\r\n"], ["\r\n"], ["\r\n"]] \ No newline at end of file diff --git a/test/test_robotmk_check.py b/test/test_robotmk_check.py index 65bc3f37..cf2ca843 100644 --- a/test/test_robotmk_check.py +++ b/test/test_robotmk_check.py @@ -28,6 +28,7 @@ def test_check_info(checks): ('1S_3S_2S_3T', 'discovery_level_0', 0), ('1S_3S_2S_3T', 'discovery_level_1', 1), ('1S_3S_2S_3T', 'discovery_level_2', 2), + ('archivetool', 'discovery_level_2', 2), ] @pytest.mark.parametrize("testsuite, inventory_rules, discovery_level", inventory_test_params) def test_inventory_mk(checks, monkeypatch, testsuite, inventory_rules, discovery_level): @@ -56,26 +57,27 @@ def test_multi_inventory_mk(checks, monkeypatch): # 2 inventory_rule filename (without .py extension) # 3 discovery_level # 4 check item - # 5 checkgroup_parameters file name (without .py extension) + # 5 checkgroup_parameters file in test/fixtures/checkgroup_parameters (without .py extension) # The value of 3) is always what the patterns in 2) should result in # 1 2 3 4 5 - ('1S_3T', 'discovery_level_0', 0, '1S 3T', None), + ('1S_3T', 'discovery_level_0', 0, '1S 3T', None), ('1S_3T', 'discovery_level_0', 0, '1S 3T', 'MySleepSleep_0'), ('1S_3T', 'discovery_level_0', 0, '1S 3T', 'MySleepSleep_1'), ('1S_3T', 'discovery_level_0', 0, '1S 3T', 'MySleep_perfdata'), - ('1S_3S_2S_3T', 'discovery_level_0', 0, '1S 3S 2S 3T', None), + ('1S_3S_2S_3T', 'discovery_level_0', 0, '1S 3S 2S 3T', None), ('1S_3S_2S_3T', 'discovery_level_0', 0, '1S 3S 2S 3T', 'Subsuite1_0'), ('1S_3S_2S_3T', 'discovery_level_0', 0, '1S 3S 2S 3T', 'Subsuite1_1'), ('1S_3S_2S_3T', 'discovery_level_0', 0, '1S 3S 2S 3T', 'Subsuites_perfdata'), ('1S_3S_2S_3T', 'discovery_level_0', 0, '1S 3S 2S 3T', 'Tests_perfdata'), ('1S_3S_2S_3T', 'discovery_level_0', 0, '1S 3S 2S 3T', 'runtime_test_2sec_warn'), ('1S_3S_2S_3T', 'discovery_level_0', 0, '1S 3S 2S 3T', 'runtime_test_2sec_crit'), - ('1S_3S_2S_3T', 'discovery_level_1', 1, 'Subsuite1', None), + ('1S_3S_2S_3T', 'discovery_level_1', 1, 'Subsuite1', None), ('1S_3S_2S_3T', 'discovery_level_1', 1, 'Subsuite3', 'Suite_Sub3_suites_2seconds'), - ('1S_3S_2S_3T', 'discovery_level_2', 2, 'Sub1 suite1', None), - ('1S_2T_fail', 'discovery_level_0', 0, '1S 2T fail', None), + ('1S_3S_2S_3T', 'discovery_level_2', 2, 'Sub1 suite1', None), + ('archivetool', 'discovery_level_2', 2, 'Robot ARCHIVETOOL Suche LKR AI', 'Perfdata_SDL2'), + ('1S_2T_fail', 'discovery_level_0', 0, '1S 2T fail', None), ] @pytest.mark.parametrize("testsuite, inventory_rules, discovery_level, item, checkgroup_parameters", check_test_params) def test_check_mk(checks, monkeypatch, testsuite, inventory_rules, discovery_level, item, checkgroup_parameters): From 20034090b211dec1bdef5262f3a2117b5daa1466 Mon Sep 17 00:00:00 2001 From: Simon Meggle Date: Fri, 2 Oct 2020 11:12:46 +0200 Subject: [PATCH 05/12] Added documentation --- checks/robotmk | 2 ++ 1 file changed, 2 insertions(+) diff --git a/checks/robotmk b/checks/robotmk index 6fa1550a..da368483 100644 --- a/checks/robotmk +++ b/checks/robotmk @@ -51,6 +51,7 @@ def parse_robot(info): for xml in xmllist: oxml = ET.fromstring(xml) suite, statistics, error = (oxml.find('./suite'), oxml.find('./statistics'), oxml.find('./errors')) + # find a matching pattern and use its discovery level discovery_level = int(pattern_match(robot_discovery_level,suite.attrib['name'], 0)) if not all(map(lambda x: x != None, [suite, statistics, error])): continue @@ -71,6 +72,7 @@ def inventory_robot(robot_results): def check_robot(item, checkgroup_parameters, robot_result): if checkgroup_parameters == None: checkgroup_parameters = {} + # list of pattern tuples which can apply the discovery level. 1st one matches. robot_discovery_level = get_setting('robot_discovery_level',[]) for suite in robot_result: From ad675c201c6c2bd0a5183e856471f2330a0e100a Mon Sep 17 00:00:00 2001 From: Simon Meggle Date: Fri, 2 Oct 2020 12:18:21 +0200 Subject: [PATCH 06/12] archivetool inventory ok --- ...Perfdata_SDL2.py => perfdata_all_tests.py} | 0 test/fixtures/robot/1S_1T/expected.py | 16 +++--- test/fixtures/robot/1S_2T_fail/expected.py | 16 +++--- test/fixtures/robot/1S_3S_2S_3T/expected.py | 16 +++--- test/fixtures/robot/1S_3T/expected.py | 16 +++--- test/fixtures/robot/archivetool/expected.py | 56 ++++++++----------- test/test_robotmk_check.py | 9 ++- 7 files changed, 60 insertions(+), 69 deletions(-) rename test/fixtures/checkgroup_parameters/{Perfdata_SDL2.py => perfdata_all_tests.py} (100%) diff --git a/test/fixtures/checkgroup_parameters/Perfdata_SDL2.py b/test/fixtures/checkgroup_parameters/perfdata_all_tests.py similarity index 100% rename from test/fixtures/checkgroup_parameters/Perfdata_SDL2.py rename to test/fixtures/checkgroup_parameters/perfdata_all_tests.py diff --git a/test/fixtures/robot/1S_1T/expected.py b/test/fixtures/robot/1S_1T/expected.py index 2a1f84c4..831f0171 100644 --- a/test/fixtures/robot/1S_1T/expected.py +++ b/test/fixtures/robot/1S_1T/expected.py @@ -1,11 +1,11 @@ -# List of dicts for DSL 0,1,2... -# inventory_suites: list of Suite names the inventory function should find -# check_suites: The name of the item to be checked by the check (see Argument #4 in -# dict 'check_test_params' in front of the check test function -# checkgroup_parameters file in test/fixtures/checkgroup_parameters (without .py extension), -# can containing anything which can be set in the check's WATO page -# svc_status: The expected Nagios state of the suite -# svc_output: A Regex which is expected to match the Output +# 1) List of dicts for DSL 0,1,2... +# 2) inventory_suites: list of Suite names the inventory function should find +# 3) check_suites: The name of the item to be checked by the check (see Argument #4 in +# dict 'check_test_params' in front of the check test function +# 4) checkgroup_parameters file in test/fixtures/checkgroup_parameters (without .py extension), +# can containing anything which can be set in the check's WATO page +# 5) svc_status: The expected Nagios state of the suite +# 5) svc_output: A Regex which is expected to match the Output [ # discovery_suite_level 0 diff --git a/test/fixtures/robot/1S_2T_fail/expected.py b/test/fixtures/robot/1S_2T_fail/expected.py index e8c066a0..a1b5e33e 100644 --- a/test/fixtures/robot/1S_2T_fail/expected.py +++ b/test/fixtures/robot/1S_2T_fail/expected.py @@ -1,11 +1,11 @@ -# List of dicts for DSL 0,1,2... -# inventory_suites: list of Suite names the inventory function should find -# check_suites: The name of the item to be checked by the check (see Argument #4 in -# dict 'check_test_params' in front of the check test function -# checkgroup_parameters file in test/fixtures/checkgroup_parameters (without .py extension), -# can containing anything which can be set in the check's WATO page -# svc_status: The expected Nagios state of the suite -# svc_output: A Regex which is expected to match the Output +# 1) List of dicts for DSL 0,1,2... +# 2) inventory_suites: list of Suite names the inventory function should find +# 3) check_suites: The name of the item to be checked by the check (see Argument #4 in +# dict 'check_test_params' in front of the check test function +# 4) checkgroup_parameters file in test/fixtures/checkgroup_parameters (without .py extension), +# can containing anything which can be set in the check's WATO page +# 5) svc_status: The expected Nagios state of the suite +# 5) svc_output: A Regex which is expected to match the Output [ # discovery_suite_level 0 diff --git a/test/fixtures/robot/1S_3S_2S_3T/expected.py b/test/fixtures/robot/1S_3S_2S_3T/expected.py index 6c800334..2892f955 100644 --- a/test/fixtures/robot/1S_3S_2S_3T/expected.py +++ b/test/fixtures/robot/1S_3S_2S_3T/expected.py @@ -1,11 +1,11 @@ -# List of dicts for DSL 0,1,2... -# inventory_suites: list of Suite names the inventory function should find -# check_suites: The name of the item to be checked by the check (see Argument #4 in -# dict 'check_test_params' in front of the check test function -# checkgroup_parameters file in test/fixtures/checkgroup_parameters (without .py extension), -# can containing anything which can be set in the check's WATO page -# svc_status: The expected Nagios state of the suite -# svc_output: A Regex which is expected to match the Output +# 1) List of dicts for DSL 0,1,2... +# 2) inventory_suites: list of Suite names the inventory function should find +# 3) check_suites: The name of the item to be checked by the check (see Argument #4 in +# dict 'check_test_params' in front of the check test function +# 4) checkgroup_parameters file in test/fixtures/checkgroup_parameters (without .py extension), +# can containing anything which can be set in the check's WATO page +# 5) svc_status: The expected Nagios state of the suite +# 5) svc_output: A Regex which is expected to match the Output [ # discovery_suite_level 0 diff --git a/test/fixtures/robot/1S_3T/expected.py b/test/fixtures/robot/1S_3T/expected.py index 2a1f84c4..831f0171 100644 --- a/test/fixtures/robot/1S_3T/expected.py +++ b/test/fixtures/robot/1S_3T/expected.py @@ -1,11 +1,11 @@ -# List of dicts for DSL 0,1,2... -# inventory_suites: list of Suite names the inventory function should find -# check_suites: The name of the item to be checked by the check (see Argument #4 in -# dict 'check_test_params' in front of the check test function -# checkgroup_parameters file in test/fixtures/checkgroup_parameters (without .py extension), -# can containing anything which can be set in the check's WATO page -# svc_status: The expected Nagios state of the suite -# svc_output: A Regex which is expected to match the Output +# 1) List of dicts for DSL 0,1,2... +# 2) inventory_suites: list of Suite names the inventory function should find +# 3) check_suites: The name of the item to be checked by the check (see Argument #4 in +# dict 'check_test_params' in front of the check test function +# 4) checkgroup_parameters file in test/fixtures/checkgroup_parameters (without .py extension), +# can containing anything which can be set in the check's WATO page +# 5) svc_status: The expected Nagios state of the suite +# 5) svc_output: A Regex which is expected to match the Output [ # discovery_suite_level 0 diff --git a/test/fixtures/robot/archivetool/expected.py b/test/fixtures/robot/archivetool/expected.py index ef9f5e00..c1124836 100644 --- a/test/fixtures/robot/archivetool/expected.py +++ b/test/fixtures/robot/archivetool/expected.py @@ -1,50 +1,38 @@ -# List of dicts for DSL 0,1,2... -# inventory_suites: list of Suite names the inventory function should find -# check_suites: The name of the item to be checked by the check (see Argument #4 in -# dict 'check_test_params' in front of the check test function -# checkgroup_parameters file in test/fixtures/checkgroup_parameters (without .py extension), -# can containing anything which can be set in the check's WATO page -# svc_status: The expected Nagios state of the suite -# svc_output: A Regex which is expected to match the Output +# 1) List of dicts for DSL 0,1,2... +# 2) inventory_suites: list of Suite names the inventory function should find +# 3) check_item: The name of the item to be checked by the check (see Argument #4 in +# dict 'check_test_params' in front of the check test function +# 4) checkgroup_parameters file in test/fixtures/checkgroup_parameters (without .py extension), +# can containing anything which can be set in the check's WATO page +# 5) svc_status: The expected Nagios state of the suite +# 5) svc_output: A Regex which is expected to match the Output [ # discovery_suite_level 0 - {}, + { + 'inventory_suites': ['Archivetool'], + 'check_suites' : { + 'Archivetool': { + # checkgroup_parameters file + 'perfdata_all_tests': { + 'svc_status': 0, + 'svc_output': ".*'Archivetool': PASS.*, OK:.*'Archivetool': PASS.*'Archivetool': PASS.*", + }, + } + }, + }, # discovery_suite_level 1 {}, # discovery_suite_level 2 { 'inventory_suites': ['DUMMY', 'ARCHIVETOOL Suche LKR AI', 'ARCHIVETOOL Suche LKR FR', 'ARCHIVETOOL Suche LKR OW', 'ARCHIVETOOL Suche LKR SG', 'ARCHIVETOOL Suche LKR SH', 'ARCHIVETOOL Suche LKR UR', 'ARCHIVETOOL Suche LKR ZH'], 'check_suites' : { - '1S 3T': { + 'Robot ARCHIVETOOL Suche LKR AI': { # checkgroup_parameters file - None: { + 'perfdata_all_tests': { 'svc_status': 0, 'svc_output': ".*'1S 3T': PASS", }, - # Check that Keyword MySleepSleep gets not recursed - 'MySleepSleep_0': { - 'svc_status': 0, - 'svc_output': ".*\[T\] 'Test4 - 3 Nested Sleeps': PASS.*?\[K\] 'MySleepSleep': PASS \(\d+\.\d+s\)$" - }, - # Check that Keyword MySleepSleep gets recursed only 1 level deep - 'MySleepSleep_1': { - 'svc_status': 0, - 'svc_output': ".*\[T\] 'Test4 - 3 Nested Sleeps': PASS.*?\[K\] 'MySleepSleep': PASS \(\d+\.\d+s\).*?\[K\] 'MySleep': PASS \(\d+\.\d+s\)$" - }, - # Check Keyword perfdata for MySleep.* - 'MySleep_perfdata': { - 'svc_status': 0, - 'svc_output': ".*", - 'perfdata' : [ - ('s1-s1-t2-k1_MySleep', '\d+\.\d+'), - ('s1-s1-t3-k1_MySleepSleep', '\d+\.\d+'), - ('s1-s1-t3-k1-k1_MySleep', '\d+\.\d+'), - ('s1-s1-t4-k1_MySleepSleepSleep', '\d+\.\d+'), - ('s1-s1-t4-k1-k1_MySleepSleep', '\d+\.\d+'), - ('s1-s1-t4-k1-k1-k1_MySleep', '\d+\.\d+'), - ] - }, } }, }, diff --git a/test/test_robotmk_check.py b/test/test_robotmk_check.py index cf2ca843..7c9163d6 100644 --- a/test/test_robotmk_check.py +++ b/test/test_robotmk_check.py @@ -28,6 +28,7 @@ def test_check_info(checks): ('1S_3S_2S_3T', 'discovery_level_0', 0), ('1S_3S_2S_3T', 'discovery_level_1', 1), ('1S_3S_2S_3T', 'discovery_level_2', 2), + ('archivetool', 'discovery_level_0', 0), ('archivetool', 'discovery_level_2', 2), ] @pytest.mark.parametrize("testsuite, inventory_rules, discovery_level", inventory_test_params) @@ -56,8 +57,9 @@ def test_multi_inventory_mk(checks, monkeypatch): # 1 Test Suite folder # 2 inventory_rule filename (without .py extension) # 3 discovery_level - # 4 check item - # 5 checkgroup_parameters file in test/fixtures/checkgroup_parameters (without .py extension) + # 4 check item - that should be checked (see the item comment No. 3) in the suite's "expected.py") + # 5 checkgroup_parameters file in test/fixtures/checkgroup_parameters (without .py extension), + # See the item comment No. 4) in the suite's "expected.py # The value of 3) is always what the patterns in 2) should result in @@ -76,8 +78,9 @@ def test_multi_inventory_mk(checks, monkeypatch): ('1S_3S_2S_3T', 'discovery_level_1', 1, 'Subsuite1', None), ('1S_3S_2S_3T', 'discovery_level_1', 1, 'Subsuite3', 'Suite_Sub3_suites_2seconds'), ('1S_3S_2S_3T', 'discovery_level_2', 2, 'Sub1 suite1', None), - ('archivetool', 'discovery_level_2', 2, 'Robot ARCHIVETOOL Suche LKR AI', 'Perfdata_SDL2'), ('1S_2T_fail', 'discovery_level_0', 0, '1S 2T fail', None), + ('archivetool', 'discovery_level_0', 0, 'Archivetool', 'perfdata_all_tests'), + ('archivetool', 'discovery_level_2', 2, 'Robot ARCHIVETOOL Suche LKR AI', 'perfdata_all_tests'), ] @pytest.mark.parametrize("testsuite, inventory_rules, discovery_level, item, checkgroup_parameters", check_test_params) def test_check_mk(checks, monkeypatch, testsuite, inventory_rules, discovery_level, item, checkgroup_parameters): From dc70d2fac594393b26796f0c271d0e85e2136e5d Mon Sep 17 00:00:00 2001 From: Simon Meggle Date: Fri, 2 Oct 2020 16:51:45 +0200 Subject: [PATCH 07/12] Fixed bug in result recursion when discovery level > 0 (closes #53) --- checks/robotmk | 93 ++++++++++++------- .../{discovery_level_0.py => dl_0.py} | 0 .../{discovery_level_1.py => dl_1.py} | 0 .../{discovery_level_2.py => dl_2.py} | 0 test/fixtures/robot/1S_3S_2S_3T/expected.py | 6 -- test/fixtures/robot/archivetool/expected.py | 12 ++- test/test_robotmk_check.py | 51 +++++----- 7 files changed, 92 insertions(+), 70 deletions(-) rename test/fixtures/inventory_robotmk_rules/{discovery_level_0.py => dl_0.py} (100%) rename test/fixtures/inventory_robotmk_rules/{discovery_level_1.py => dl_1.py} (100%) rename test/fixtures/inventory_robotmk_rules/{discovery_level_2.py => dl_2.py} (100%) diff --git a/checks/robotmk b/checks/robotmk index da368483..fbe022fb 100644 --- a/checks/robotmk +++ b/checks/robotmk @@ -40,14 +40,17 @@ STATES = { # GRIFFEL WEG!! MUSS SEIN! inventory_robotmk_rules = [] -# info = one __or more__ robot XML results concatenated +# Input: one or more robot XML results, concatenated +# returns: +# if discovery_level = 0 -> returns one RFSuite Object +# if discovery_level > 0 -> depending on the structure, a list of custom result objects (RFSuite/RFTest or RFKeyword) def parse_robot(info): robot_discovery_level = get_setting('robot_discovery_level',[]) # stringify list of lists all_xmlstring = ''.join(map(str, [l[0] for l in info])) # identify XMLs xmllist = map(lambda x: '= this_runtime_threshold[1]: my_rc = 2 runtime_str = "%.2fs, CRITICAL: > %.2fs" % (elapsed_sec, this_runtime_threshold[1]) pad_str = padding * u"\u2504" my_out = ("%s %s %s '%s': %s (%s)" % (pad_str, self.symbol_nok, self.abbr, self.name, self.status, runtime_str)).strip() my_err = "%s '%s' over runtime" % (str(self), self.name) + # WARNING threshold exceeded? elif bool(this_runtime_threshold) and elapsed_sec >= this_runtime_threshold[0]: my_rc = 1 runtime_str = "%.2fs, WARNING: > %.2fs" % (elapsed_sec, this_runtime_threshold[0]) @@ -186,9 +195,9 @@ class RFObject(object): # PERFDATA ---- Which elemens should produce performance data? - this_perfdata_value = get_pattern_value('perfdata_creation') + perfdata_wanted = get_pattern_value('perfdata_creation') my_perfdata = None - if this_perfdata_value and elapsed_sec != None: + if perfdata_wanted and elapsed_sec != None: perflabel = "%s_%s" % (self.id, self.name.replace(' ', '_')) if this_runtime_threshold: my_perfdata = ( @@ -209,31 +218,35 @@ class RFObject(object): # t = this depth # nx = next depth + # next_depth_limit > 0 -> we can descend + # next_depth_limit = 0 -> we can descend, stop at next level + # next_depth_limit < 0 -> we cannot descend anymore + # i t nx # ----------- - # n n. n #3 - # n 0. -1 #4 - # n 2. 1 #1 - # - # 0. n -1 #2 - # 0 0. -1 #4 - # 0 2. 1 #1 - # - # 2 n 1 #2 - # 2 0. -1 #4 - # 2 2. 1 #1 + # n n. n # see note 3 + # n 0. -1 # see note 4 + # n 2. 1 # see note 1 + # + # 0. n -1 # see note 2 + # 0 0. -1 # see note 4 + # 0 2. 1 # see note 1 + # + # 2 n 1 # see note 2 + # 2 0. -1 # see note 4 + # 2 2. 1 # see note 1 if this_depth_limit == None or this_depth_limit > 0: if this_depth_limit > 0: - #1 we can descend + # note 1: we can descend, calculate next deph from this level next_depth_limit = this_depth_limit -1 else: - # no pattern for this, decide from inherited value + # no pattern set for this level. Calculate next depth from inherited value if depth_limit_inherited >= 0: - #2 + # note 2: next_depth_limit = depth_limit_inherited -1 else: - #3 + # note 3: we can descend; on this level there is no limitation set. next_depth_limit = None else: #4 there's 0 defined, this overwrites inherited depth @@ -249,8 +262,13 @@ class RFObject(object): for subitem in sublist: my_result_branches.append(subitem) - # Are we on the last recursion? - if self.level_relative == 0 and str(self) == "Suite": + # The recursion has reached the top node again, when + # - we are on the top item of a suite or keyword hierarchy (tests are not nested). + # This is the case when the relative level went down to 0. + # - the class type of this node is of the same type as the root_class. + # (= dont' exit the recursion when the tree has a suite top node and + # test has reached relative_level of 0... ) + if self.level_relative == 0 and type(self) == self.root_class: elements_with_errors = filter(lambda x: x[2], my_result_branches) errors = ', '.join([ x[2] for x in elements_with_errors]) worst_stateid = max(map(lambda x: x[0], my_result_branches)) @@ -350,6 +368,8 @@ class RFKeyword(RFObject): # ============================================================================== # Visitor Class for Robot Result =============================================== # ============================================================================== +# Takes a RF root suite object, returns one or more RFSuite/RFTest/RFKeyword result +# objects depending on the discovery_level class RobotMetrics(object): def __init__(self, suite, statistics, error, discovery_level=0): self.discovery_level = discovery_level @@ -393,9 +413,9 @@ class RobotMetrics(object): if keywords: subkw_objects = [ self.visit_keyword(keyword, statistics, error, level_absolute+1, 0, test.attrib['id'], ind+1) for ind, keyword in enumerate(keywords) ] - # ElementTree's XPath support is somehow... limited (no 'and') + # ElementTree's XPath support is somehow... limited (there is no 'and') - # Attention. Robot has another understanding of what's "ciritcal": "All test cases are considered critical by default". + # Attention. Robot has another understanding of what's "critical": "All test cases are considered critical by default". # (http://robotframework.org/robotframework/latest/RobotFrameworkUserGuide.html#setting-criticality) # For Robot, a FAILed test only can let the whole test run fail if it is marked as 'critical'. # For this reason, lets check for 'critical' as precondition and 'status' if it was an error. @@ -406,11 +426,14 @@ class RobotMetrics(object): critical = False text = '' - - # level_relative = always 0, because tests are not nested. + # level_relative: Suites and Keywords can be nested. WATO allows to set the maximum output depth + # for both. This "relative" level starts individually at 0 for each Suite/Test so that we know + # when it is time to exit the recursion. + # For Tests this value is always 0, because tests cannot be nested. test_node = RFTest( test.attrib['id'], level_absolute, + # set relative level to 0 (no nesting possible) 0, test.attrib['name'], test.find('status').attrib['status'], diff --git a/test/fixtures/inventory_robotmk_rules/discovery_level_0.py b/test/fixtures/inventory_robotmk_rules/dl_0.py similarity index 100% rename from test/fixtures/inventory_robotmk_rules/discovery_level_0.py rename to test/fixtures/inventory_robotmk_rules/dl_0.py diff --git a/test/fixtures/inventory_robotmk_rules/discovery_level_1.py b/test/fixtures/inventory_robotmk_rules/dl_1.py similarity index 100% rename from test/fixtures/inventory_robotmk_rules/discovery_level_1.py rename to test/fixtures/inventory_robotmk_rules/dl_1.py diff --git a/test/fixtures/inventory_robotmk_rules/discovery_level_2.py b/test/fixtures/inventory_robotmk_rules/dl_2.py similarity index 100% rename from test/fixtures/inventory_robotmk_rules/discovery_level_2.py rename to test/fixtures/inventory_robotmk_rules/dl_2.py diff --git a/test/fixtures/robot/1S_3S_2S_3T/expected.py b/test/fixtures/robot/1S_3S_2S_3T/expected.py index 2892f955..55ee9e56 100644 --- a/test/fixtures/robot/1S_3S_2S_3T/expected.py +++ b/test/fixtures/robot/1S_3S_2S_3T/expected.py @@ -95,12 +95,6 @@ 'svc_output': ".*\[S\] 'Sub1 suite1': PASS.*?\[S\] 'Sub1 suite1': PASS.*?\[T\] 'Sleep the first time for 0.1 sec': PASS.*?\[K\] 'Sleep': PASS", } }, - 'Sub1 suite1': { - 'Perfdata_SDL2': { - 'svc_status': 0, - 'svc_output': ".*\[S\] 'Sub1 suite1': PASS.*?\[S\] 'Sub1 suite1': PASS.*?\[T\] 'Sleep the first time for 0.1 sec': PASS.*?\[K\] 'Sleep': PASS", - } - }, }, }, ] \ No newline at end of file diff --git a/test/fixtures/robot/archivetool/expected.py b/test/fixtures/robot/archivetool/expected.py index c1124836..7c8e04a4 100644 --- a/test/fixtures/robot/archivetool/expected.py +++ b/test/fixtures/robot/archivetool/expected.py @@ -5,8 +5,9 @@ # 4) checkgroup_parameters file in test/fixtures/checkgroup_parameters (without .py extension), # can containing anything which can be set in the check's WATO page # 5) svc_status: The expected Nagios state of the suite -# 5) svc_output: A Regex which is expected to match the Output - +# 5) svc_output: A Regex which is expected to match the Output +# 5) perfdata: A list of tuples like this. To get the tuple, set +# a breakpoint at iqLA3EOq and debug the content of result[2] [ # discovery_suite_level 0 { @@ -27,11 +28,14 @@ { 'inventory_suites': ['DUMMY', 'ARCHIVETOOL Suche LKR AI', 'ARCHIVETOOL Suche LKR FR', 'ARCHIVETOOL Suche LKR OW', 'ARCHIVETOOL Suche LKR SG', 'ARCHIVETOOL Suche LKR SH', 'ARCHIVETOOL Suche LKR UR', 'ARCHIVETOOL Suche LKR ZH'], 'check_suites' : { - 'Robot ARCHIVETOOL Suche LKR AI': { + 'ARCHIVETOOL Suche LKR AI': { # checkgroup_parameters file 'perfdata_all_tests': { 'svc_status': 0, - 'svc_output': ".*'1S 3T': PASS", + 'svc_output': ".*ARCHIVETOOL Suche LKR AI': PASS .*OK:.*'ARCHIVETOOL Suche LKR AI': PASS.*'ARCHIVETOOL Suche': PASS.*", + 'perfdata' : [ + ('s1-s1-t2_ARCHIVETOOL_Suche_LKR_AI', '40.08') + ] }, } }, diff --git a/test/test_robotmk_check.py b/test/test_robotmk_check.py index 7c9163d6..0048e096 100644 --- a/test/test_robotmk_check.py +++ b/test/test_robotmk_check.py @@ -24,12 +24,12 @@ def test_check_info(checks): # Inventory test function inventory_test_params = [ - ('1S_3T', 'discovery_level_0', 0), - ('1S_3S_2S_3T', 'discovery_level_0', 0), - ('1S_3S_2S_3T', 'discovery_level_1', 1), - ('1S_3S_2S_3T', 'discovery_level_2', 2), - ('archivetool', 'discovery_level_0', 0), - ('archivetool', 'discovery_level_2', 2), + ('1S_3T', 'dl_0', 0), + ('1S_3S_2S_3T', 'dl_0', 0), + ('1S_3S_2S_3T', 'dl_1', 1), + ('1S_3S_2S_3T', 'dl_2', 2), + ('archivetool', 'dl_0', 0), + ('archivetool', 'dl_2', 2), ] @pytest.mark.parametrize("testsuite, inventory_rules, discovery_level", inventory_test_params) def test_inventory_mk(checks, monkeypatch, testsuite, inventory_rules, discovery_level): @@ -46,7 +46,7 @@ def test_multi_inventory_mk(checks, monkeypatch): mk_check_input = read_mk_input('1S_3T/input_check.json') # second suite mk_check_input.extend(read_mk_input('1S_3S_2S_3T/input_check.json')) - discovery_rules = read_mk_inventory_rules('discovery_level_0') + discovery_rules = read_mk_inventory_rules('dl_0') patch(checks.module, monkeypatch, discovery_rules) inventory = checks['robotmk'].inventory_mk(mk_check_input) assert_inventory(inventory, ['1S 3T', '1S 3S 2S 3T']) @@ -61,26 +61,26 @@ def test_multi_inventory_mk(checks, monkeypatch): # 5 checkgroup_parameters file in test/fixtures/checkgroup_parameters (without .py extension), # See the item comment No. 4) in the suite's "expected.py - # The value of 3) is always what the patterns in 2) should result in + # The value of 3) is the "item" = what the patterns in 2) should result in # 1 2 3 4 5 - ('1S_3T', 'discovery_level_0', 0, '1S 3T', None), - ('1S_3T', 'discovery_level_0', 0, '1S 3T', 'MySleepSleep_0'), - ('1S_3T', 'discovery_level_0', 0, '1S 3T', 'MySleepSleep_1'), - ('1S_3T', 'discovery_level_0', 0, '1S 3T', 'MySleep_perfdata'), - ('1S_3S_2S_3T', 'discovery_level_0', 0, '1S 3S 2S 3T', None), - ('1S_3S_2S_3T', 'discovery_level_0', 0, '1S 3S 2S 3T', 'Subsuite1_0'), - ('1S_3S_2S_3T', 'discovery_level_0', 0, '1S 3S 2S 3T', 'Subsuite1_1'), - ('1S_3S_2S_3T', 'discovery_level_0', 0, '1S 3S 2S 3T', 'Subsuites_perfdata'), - ('1S_3S_2S_3T', 'discovery_level_0', 0, '1S 3S 2S 3T', 'Tests_perfdata'), - ('1S_3S_2S_3T', 'discovery_level_0', 0, '1S 3S 2S 3T', 'runtime_test_2sec_warn'), - ('1S_3S_2S_3T', 'discovery_level_0', 0, '1S 3S 2S 3T', 'runtime_test_2sec_crit'), - ('1S_3S_2S_3T', 'discovery_level_1', 1, 'Subsuite1', None), - ('1S_3S_2S_3T', 'discovery_level_1', 1, 'Subsuite3', 'Suite_Sub3_suites_2seconds'), - ('1S_3S_2S_3T', 'discovery_level_2', 2, 'Sub1 suite1', None), - ('1S_2T_fail', 'discovery_level_0', 0, '1S 2T fail', None), - ('archivetool', 'discovery_level_0', 0, 'Archivetool', 'perfdata_all_tests'), - ('archivetool', 'discovery_level_2', 2, 'Robot ARCHIVETOOL Suche LKR AI', 'perfdata_all_tests'), + ('1S_3T', 'dl_0', 0, '1S 3T', None), + ('1S_3T', 'dl_0', 0, '1S 3T', 'MySleepSleep_0'), + ('1S_3T', 'dl_0', 0, '1S 3T', 'MySleepSleep_1'), + ('1S_3T', 'dl_0', 0, '1S 3T', 'MySleep_perfdata'), + ('1S_3S_2S_3T', 'dl_0', 0, '1S 3S 2S 3T', None), + ('1S_3S_2S_3T', 'dl_0', 0, '1S 3S 2S 3T', 'Subsuite1_0'), + ('1S_3S_2S_3T', 'dl_0', 0, '1S 3S 2S 3T', 'Subsuite1_1'), + ('1S_3S_2S_3T', 'dl_0', 0, '1S 3S 2S 3T', 'Subsuites_perfdata'), + ('1S_3S_2S_3T', 'dl_0', 0, '1S 3S 2S 3T', 'Tests_perfdata'), + ('1S_3S_2S_3T', 'dl_0', 0, '1S 3S 2S 3T', 'runtime_test_2sec_warn'), + ('1S_3S_2S_3T', 'dl_0', 0, '1S 3S 2S 3T', 'runtime_test_2sec_crit'), + ('1S_3S_2S_3T', 'dl_1', 1, 'Subsuite1', None), + ('1S_3S_2S_3T', 'dl_1', 1, 'Subsuite3', 'Suite_Sub3_suites_2seconds'), + ('1S_3S_2S_3T', 'dl_2', 2, 'Sub1 suite1', None), + ('1S_2T_fail', 'dl_0', 0, '1S 2T fail', None), + ('archivetool', 'dl_0', 0, 'Archivetool', 'perfdata_all_tests'), + ('archivetool', 'dl_2', 2, 'ARCHIVETOOL Suche LKR AI', 'perfdata_all_tests'), ] @pytest.mark.parametrize("testsuite, inventory_rules, discovery_level, item, checkgroup_parameters", check_test_params) def test_check_mk(checks, monkeypatch, testsuite, inventory_rules, discovery_level, item, checkgroup_parameters): @@ -95,6 +95,7 @@ def test_check_mk(checks, monkeypatch, testsuite, inventory_rules, discovery_lev assert result[0]== expected_data['svc_status'] expected_output = expected_data['svc_output'] assert re.match(expected_output, result[1], re.DOTALL) + #iqLA3EOq if 'perfdata' in expected_data and expected_data['perfdata']: expected_perfdata_list = expected_data['perfdata'] expected_perflabels = [ x[0] for x in expected_perfdata_list] From 9f3ebc4d8150c000b7e41bbcd7a71e648b99fb9b Mon Sep 17 00:00:00 2001 From: Simon Meggle Date: Fri, 2 Oct 2020 17:21:26 +0200 Subject: [PATCH 08/12] edited CHANGELOG --- CHANGELOG.md | 1 + 1 file changed, 1 insertion(+) diff --git a/CHANGELOG.md b/CHANGELOG.md index a51ea31e..7e79b74a 100644 --- a/CHANGELOG.md +++ b/CHANGELOG.md @@ -12,6 +12,7 @@ and this project adheres to [Semantic Versioning](https://semver.org/spec/v2.0.0 - Plugin: Set tmpdir on Windows to a fixed path (#47) - Improved Logging (#48) +- No graphs when using a discovery level (#53) ## [v0.1.3] - 2020-0-16 ### Added From 6bc79e6c11674aedfc219e2296e80787a10bf266 Mon Sep 17 00:00:00 2001 From: Simon Meggle Date: Fri, 2 Oct 2020 17:34:00 +0200 Subject: [PATCH 09/12] Check now makes use of HTML badges for WARN/CRIT (closes 52) --- CHANGELOG.md | 4 ++++ checks/robotmk | 6 +++--- 2 files changed, 7 insertions(+), 3 deletions(-) diff --git a/CHANGELOG.md b/CHANGELOG.md index 7e79b74a..e86485d8 100644 --- a/CHANGELOG.md +++ b/CHANGELOG.md @@ -12,6 +12,10 @@ and this project adheres to [Semantic Versioning](https://semver.org/spec/v2.0.0 - Plugin: Set tmpdir on Windows to a fixed path (#47) - Improved Logging (#48) +- Check now makes use of HTML badges for WARN/CRIT (#52) + +### Fixed + - No graphs when using a discovery level (#53) ## [v0.1.3] - 2020-0-16 diff --git a/checks/robotmk b/checks/robotmk index fbe022fb..99b08d89 100644 --- a/checks/robotmk +++ b/checks/robotmk @@ -165,7 +165,7 @@ class RFObject(object): if isinstance(self, RFTest) and self.critical: my_rc = 2 pad_str = padding * u"\u2504" - my_out = ("%s %s %s '%s': %s (CRITICAL: %s)" % (pad_str, self.symbol_nok, self.abbr, self.name, self.status, self.text)).strip() + my_out = ("%s %s %s '%s': %s ((!!)): %s)" % (pad_str, self.symbol_nok, self.abbr, self.name, self.status, self.text)).strip() my_err = "%s '%s' failed with '%s'" % (str(self), self.name, self.text) else: # RUNTIME EVALUTATION --- How long did Suites/Tests/Keywords run? @@ -175,14 +175,14 @@ class RFObject(object): # CRITICAL threshold exceeded? if bool(this_runtime_threshold) and elapsed_sec >= this_runtime_threshold[1]: my_rc = 2 - runtime_str = "%.2fs, CRITICAL: > %.2fs" % (elapsed_sec, this_runtime_threshold[1]) + runtime_str = "%.2fs, (!!): > %.2fs" % (elapsed_sec, this_runtime_threshold[1]) pad_str = padding * u"\u2504" my_out = ("%s %s %s '%s': %s (%s)" % (pad_str, self.symbol_nok, self.abbr, self.name, self.status, runtime_str)).strip() my_err = "%s '%s' over runtime" % (str(self), self.name) # WARNING threshold exceeded? elif bool(this_runtime_threshold) and elapsed_sec >= this_runtime_threshold[0]: my_rc = 1 - runtime_str = "%.2fs, WARNING: > %.2fs" % (elapsed_sec, this_runtime_threshold[0]) + runtime_str = "%.2fs, (!): > %.2fs" % (elapsed_sec, this_runtime_threshold[0]) pad_str = padding * u"\u2504" my_out = ("%s %s %s '%s': %s (%s)" % (pad_str, self.symbol_nok, self.abbr, self.name, self.status, runtime_str)).strip() my_err = "%s '%s' over runtime" % (str(self), self.name) From 7667a2931e9843467b0b52c6df2bdafe8add8711 Mon Sep 17 00:00:00 2001 From: Simon Meggle Date: Wed, 11 Nov 2020 13:12:22 +0100 Subject: [PATCH 10/12] Fixed pytest fixture for HTML badges --- test/fixtures/robot/1S_3S_2S_3T/expected.py | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/test/fixtures/robot/1S_3S_2S_3T/expected.py b/test/fixtures/robot/1S_3S_2S_3T/expected.py index 55ee9e56..131c04aa 100644 --- a/test/fixtures/robot/1S_3S_2S_3T/expected.py +++ b/test/fixtures/robot/1S_3S_2S_3T/expected.py @@ -80,7 +80,7 @@ # Two suites run for 3 seconds > 2 WARN 'Suite_Sub3_suites_2seconds': { 'svc_status': 1, - 'svc_output': ".*?\[S\] 'Subsuite3': PASS \(\d+\.\d+s\), WARNING: Suite 'Sub3 suite1' over runtime, Suite 'Sub3 suite2' over runtime.*?\[S\] 'Sub3 suite1': PASS \(\d+\.\d+s, WARNING: > \d+\.\d+s\).*?\[S\] 'Sub3 suite2': PASS \(\d+\.\d+s, WARNING: > \d+\.\d+s\)", + 'svc_output': ".*?\[S\] 'Subsuite3': PASS \(\d+\.\d+s\), WARNING: Suite 'Sub3 suite1' over runtime, Suite 'Sub3 suite2' over runtime.*?\[S\] 'Sub3 suite1': PASS \(\d+\.\d+s, \(!\): > \d+\.\d+s\).*?\[S\] 'Sub3 suite2': PASS \(\d+\.\d+s, \(!\): > \d+\.\d+s\)", }, } } From b25e14614a14f0141035f8dba61eb4e87ef7a004 Mon Sep 17 00:00:00 2001 From: Simon Meggle Date: Fri, 13 Nov 2020 10:03:50 +0100 Subject: [PATCH 11/12] Added spooldir mode; refactored WATO page and improved help text --- agents/bakery/robotmk | 86 +-- agents/plugins/Readme.md | 99 ---- agents/plugins/robotmk | 80 ++- web/plugins/wato/check_parameters_robotmk.py | 517 ++++++++++--------- 4 files changed, 378 insertions(+), 404 deletions(-) delete mode 100644 agents/plugins/Readme.md diff --git a/agents/bakery/robotmk b/agents/bakery/robotmk index a03a0a7c..bc0cebc8 100644 --- a/agents/bakery/robotmk +++ b/agents/bakery/robotmk @@ -21,40 +21,66 @@ import cmk.utils.paths import logging import yaml +import copy from cmk.utils.exceptions import MKGeneralException +DEFAULTS = { + 'windows': { + 'newline' : "\r\n", + 'robotdir' : "C:\\ProgramData\\checkmk\\agent\\robot", + 'pluginname' : 'robotmk.py', + }, + 'linux': { + 'newline' : "\n", + 'robotdir' : "/usr/lib/check_mk_agent/robot", + 'pluginname' : 'robotmk', + }, + 'noarch': { + 'cache_time' : 900, + } +} + def bake_robotmk(opsys, conf, conf_dir, plugins_dir): - robot_global_conf = conf.copy() - robot_test_suites = robot_global_conf.pop('suites') + lconf = copy.deepcopy(conf) + execution_type = lconf['execution'][0] + # this hash is the basis for building the YAML + execution_conf = lconf['execution'][1][0] + # add the execution type to the config + execution_conf['execution_type'] = execution_type + # remove the suites, because we need to modify this first; append later + robot_test_suites = execution_conf.pop('suites') - robot_global_conf.setdefault('log', '') - robot_global_conf.setdefault('console', '') - robot_global_conf.setdefault('report', '') - robot_global_conf.setdefault('cache_time', 900) + execution_conf.setdefault('log', '') + execution_conf.setdefault('console', '') + execution_conf.setdefault('report', '') + execution_conf.setdefault('cache_time', DEFAULTS['noarch']['cache_time']) + execution_conf.setdefault('robotdir', DEFAULTS[opsys]['robotdir']) + os_newline = DEFAULTS[opsys]['newline'] + # Linux: robotmk - Windows: robotmk.py + os_pluginname = DEFAULTS[opsys]['pluginname'] cfg_file = conf_dir + "/robotmk.yml" - if opsys == "windows": - # TODO: Path validation - os_newline = "\r\n" - os_pluginname = "robotmk.py" - robot_global_conf.setdefault('robotdir', "C:\\ProgramData\\checkmk\\agent\\robot") - with Path(conf_dir, "check_mk.ini.plugins.zzz_%s" % os_pluginname).open("w") as out: - out.write(u" execution %s = async\r\n" % os_pluginname) - out.write(u" cache_age %s = %d\r\n" % (os_pluginname, robot_global_conf['cache_time'])) - # Kill the plugin before the next async execution will start - out.write(u" timeout %s = %d\r\n" % (os_pluginname, robot_global_conf['cache_time'] - 60)) - out.write(u"\r\n") - elif opsys == "linux": - # TODO: Path validation - os_newline = "\n" - os_pluginname = "robotmk" - robot_global_conf.setdefault('robotdir', "/usr/lib/check_mk_agent/robot") - plugins_dir = Path(plugins_dir, "%s" % robot_global_conf['cache_time']) - plugins_dir.mkdir(parents=True, exist_ok=True) - else: - raise MKGeneralException("Error in bakery plugin \"%s\": %s\n" % - ("robotmk", "RobotMK is supported on Windows and Linux only")) - - shutil.copy2(cmk.utils.paths.local_agents_dir + '/plugins/robotmk', str(plugins_dir) + '/' + os_pluginname) + + # The plugin only gets deployed in async mode; when spooldir mode is used, + # the rule "deploy custom files to agent" (package: robotomk) must be set, + # which installs the plugin into the bin folder inside the agent installation. + if execution_type == "cmk_async": + if opsys == "windows": + # async mode in Windows: write configfile + with Path(conf_dir, "check_mk.ini.plugins.zzz_%s" % os_pluginname).open("w") as out: + out.write(u" execution %s = async\r\n" % os_pluginname) + out.write(u" cache_age %s = %d\r\n" % (os_pluginname, execution_conf['cache_time'])) + # Kill the plugin before the next async execution will start + out.write(u" timeout %s = %d\r\n" % (os_pluginname, execution_conf['cache_time'] - 60)) + out.write(u"\r\n") + elif opsys == "linux": + # async mode in Linux: "seconds"-subdir in plugins dir + plugins_dir = Path(plugins_dir, "%s" % execution_conf['cache_time']) + plugins_dir.mkdir(parents=True, exist_ok=True) + else: + raise MKGeneralException("Error in bakery plugin \"%s\": %s\n" % + ("robotmk", "RobotMK is supported on Windows and Linux only")) + + shutil.copy2(cmk.utils.paths.local_agents_dir + '/plugins/robotmk', str(plugins_dir) + '/' + os_pluginname) # transform suites dict robot_test_suites_dict = { 'suites' : dict( (x,y) for x,y in (robot_test_suites)) } @@ -68,7 +94,7 @@ def bake_robotmk(opsys, conf, conf_dir, plugins_dir): with open(cfg_file,"w") as output_file: output_file.write(agent_file_header) - yaml.safe_dump(robot_global_conf, output_file, line_break=os_newline, encoding='utf-8', allow_unicode=True) + yaml.safe_dump(execution_conf, output_file, line_break=os_newline, encoding='utf-8', allow_unicode=True) yaml.safe_dump(robot_test_suites_dict, output_file, line_break=os_newline, encoding='utf-8', allow_unicode=True) bakery_info["robotmk"] = { diff --git a/agents/plugins/Readme.md b/agents/plugins/Readme.md deleted file mode 100644 index ccc619aa..00000000 --- a/agents/plugins/Readme.md +++ /dev/null @@ -1,99 +0,0 @@ -# checkmk agent plugin for robotmk - -The plugin requires a python 3 installation with robotframework installed and pyYAML. If any of the libraries is not installed the plugin will exit silently. The agent plugin will check in the `AgentDirectory` the configuration file `robotmk.yml`. If the file is not found it will use the default configuration (see YAML configuration file), and start for each file or directory below the 1st level of the directory `robot` which is one level above the `PluginsDirectory` (normally /usr/lib/check_mk_agent/robot in Linux) the robot via the function run from the robot API without any additional options, create in the $tmp folder of the OS a XML output file named the same as the file or directory found and print to stdout each time a section ```<<>>``` followed by the content of the XML file. Finally the XML files in the $tmp folder will be deleted before the plugin exits. - -__EXAMPLE:__ - -Directories: -``` - /usr/lib/check_mk_agent/robot/Suite1 - /usr/lib/check_mk_agent/robot/Suite2 -``` -Files: -``` - /usr/lib/check_mk_agent/robot/Suite3.robot -``` -Will create three files, Suite1.xml, Suite2.xml, Suite3.xml in /tmp and print to stdout three times the section ```<<>>``` followed by the content of each XML file. - - -If a configuration file is found, it will be read in and each option found in the configuration file will overwrite the default value of the corresponding option. If no suites are defined, the plugin will follow the same approach to start the suites as described above without a configuration file. - -If suites are defined in the configuration file, the plugin will start only the defined suites with all configured suite specific options, regardless if there are additional suites in the filesystem. If a piggyback host is defined in the configuration file, the agent section will contain a section with this host to allow to assign the suite to another host as the monitored host. - -The plugin could be started with the option --debug to allow command line debugging. If the environment variables `AgentDirectory` and `DataDirectory` not found during debug run the hard coded directories are used instead. The debug option is not intended to debug the robot tests and will only output plugin specific information. To debug robot tests the robot command could be used. - -As by nature the plugin will run longer than the agent timout and frequency settings would allow, the plugin has to run as a cached plugin. Create a directory with number of seconds which are at least higher than the number of seconds the robot testes run below the `PluginsDirectory` and move the robotmk agent plugin to that directory. The agent will then delay the start of the plugin that number of seconds and cache the results. If the plugin is not able to return and update the cached results in time the service will go to stale. AFAIK the agent doesnt check if the plugin is already started and start another session after the cache time expired. This means the process robo needs to be monitored that it doesnt run more than once (To be tested). Best practise is to setup a global timeout for all tests lower than the chache time. In normal cases this timeout should never be reached because it leaves robot in an unconditional state and subsequent tests may not run correct anymore. - -For the checkmk CEE and CME edition a rule for the agent bakery will be available wich allows the settings of the cache time, the configuration of the global options and the configuration of the suites to be run with all specific options as described below. The YAML configuration file will be then baked along with the robotmk agent plugin in the installation packages and installed on the monitored host in the configured directories. - -To deploy the robot suites the Agent Bakery rule "Deploy custom files with agent" could be used. To make that work the files has to be in a directiry below /usr/lib/check_mk_agent or C:/ProgramData/checkmk/agent. - -## YAML Configuration File -The YAML configuration for robotmk plugin has a gobal section with options globally used for all suites. Possibly this options may overwritten per suite. -Currently the following options are global: - - -|option| function| default value| -|------|------------------------|---------------| -|outputdir| The directory where the XML outputfile is stored|OS $tmp| -|robotdir| The directory where the robot suites are living|/usr/lib/check_mk_agent/robot or C:/ProgramData/checkmk/agent/robot| -|log| Logfiles|none| -|console| MUST be always **none** while robotmk runs as a plugin|none| -|report| Reports generation|none| - - -Then the yaml configuration has a dictionary named `suites` which contains a dictionary for each suite to be run. The name of the key of the dictonaries below `suites` MUST have the same name as the suite directory or file below the robot root directory (option `robotdir`). Each suite could contain a dictionary with robot options. Option names match robot command line option long names without hyphens so that, for example, `--name` becomes `name` in the yaml configuration. See `robot --help` for explanation of each option. The options are optional and a suite dictionary may could be complete empty. - -A online parser like http://yaml-online-parser.appspot.com/ could be used to validate the configuration. - -Most options that can be given from the command line work. An exception is that options --pythonpath, --argumentfile, --help and --version are not supported. - -Options without a operator needs the operator 'True' or 'False' - -With the option `host` a piggy back host could be configured to allow to assign the suite to a specific host, other than the host the agent runs on. - -Options that can be given on the command line multiple times can be passed as lists. For example: -```yaml -critical: - - tag1 - - tag2 - - tag3 -``` - -is equivalent to --critical tag1 --critical tag2 --critical tag3. If such options are used only once, they can be given also as a single string like `include: tag`. - -For Variables only scalar variables with string values are supported. The variables has to be setup as a list of text elements: - -```yaml -variable: - - 'name1: value1' - - 'name2: value2' -``` - -is equivalent to --variable name1:value1 --variable name2:value2 --variable name3:value3. - -A complete robotmk yaml configuration file can look like this: - -```yaml -#Global variables -outputdir: /tmp/robot -robotdir: /usr/lib/check_mk_agent/robot -log: -console: -report: -#Here comes the suites -suites: - Suite1: - host: mypiggyhost - variable: - - 'name1: value1' - - 'name2: value2' - critical: - - tag1 - - tag2 - - tag3 - timestampoutputs: 'True' - Suite2: - Suite3: -``` - diff --git a/agents/plugins/robotmk b/agents/plugins/robotmk index 30c2e3ec..88d209df 100755 --- a/agents/plugins/robotmk +++ b/agents/plugins/robotmk @@ -2,9 +2,11 @@ # (c) 2020 Simon Meggle -# This file is part of RobotMK +# This file is part of RobotMK, a module for the integration of Robot +# framework test results into Checkmk. # https://robotmk.org # https://github.com/simonmeggle/robotmk +# https://robotframework.org/#tools # RobotMK is free software; you can redistribute it and/or modify it # under the terms of the GNU General Public License as published by @@ -21,18 +23,21 @@ import os import sys import shutil from pathlib import Path +from time import time import logging DEFAULTS = { 'nt': { 'agent_data_dir' : 'C:/ProgramData/checkmk/agent', 'agent_cfg_dir' : 'C:/ProgramData/checkmk/agent/config', + 'agent_spool_dir' : 'C:/ProgramData/checkmk/agent/spool', 'outputdir' : "C:/Windows/temp", 'logdir' : "C:/Windows/temp", }, 'posix': { 'agent_data_dir' : '/usr/lib/check_mk_agent', 'agent_cfg_dir' : '/etc/check_mk', + 'agent_spool_dir' : '/var/lib/check_mk_agent/spool', 'outputdir' : "str('/tmp/robot')", 'logdir' : "/tmp/robotmk.log", }, @@ -86,9 +91,10 @@ def start(): # Piggyback host if 'host' in suite_options: - host = suite_options.pop('host') - log_debug(f'Piggyback host: {host}') + piggybackhost = suite_options.pop('host') + log_debug(f'Piggyback host: {piggybackhost}') else: + piggybackhost = None log_debug('NO piggyback host defined.') # Preformat Variables to meet the Robot API requirement @@ -106,29 +112,75 @@ def start(): log_error ('Please run robot command manually to see the error') break ######################## print output.xml to stdout ####################################### - if 'host' in locals(): - print(f'<<<<{host}>>>>') - print('<<>>') + robot_xml = Path(suite_options['outputdir']).joinpath(suite).with_suffix('.xml') + process_result(suite, yml_cfg, robot_xml, piggybackhost) + log_info('#######################################################################') + + +def process_result(suite, yml_cfg, robot_xml, piggybackhost): + if not os.path.exists(robot_xml): + log_error(f'Cannot find Robot XML file {robot_xml}!') + exit(1) + now = str(time()).split('.')[0] try: log_info(f'Reading result XML file {robot_xml}') with open (robot_xml, 'r') as f: - shutil.copyfileobj(f, sys.stdout) - except: - log_error(f'Cannot find Robot XML file {robot_xml}!') + #shutil.copyfileobj(f, sys.stdout) + xmldata = f.read() + except Exception as e: + log_error(f'Could not read {robot_xml}: {e}') exit(1) - log_info('#######################################################################') + + if piggybackhost: + header_piggyback = f'<<<<{piggybackhost}>>>>\n' + else: + header_piggyback = '' + + # WATO: key HXYM4gT3 + # Keep it compatible: if key is not present, assume that the plugin was executed async by the agent. + execution_type = yml_cfg.get('execution_type', 'cmk_async') + + if execution_type == 'cmk_async': + log_info('Plugin was executed by CMK agent (mode: cmk_async), printing result to STDOUT') + resultstring = f'{header_piggyback}<<>>\n{xmldata}' + print(resultstring) + else: + # win_task_spooldir = TBD! + if execution_type not in ('win_task_spooldir', 'external_spooldir'): + log_error(f'{yml_cfg["execution_type"]} is not a valid execution type!') + exit(1) + else: + log_info(f'Plugin was executed externally (mode: {yml_cfg["execution_type"]}), write result into spooldir') + cache_time = yml_cfg["cache_time"] + # Indicates CMK that this plugin has another timing that the agent polling + header_cached = f':cached({now},{cache_time})' + # Ex. 240_robotmk_footest = invalidate the result of this suite after 4 minutes + spoolfile = Path(yml_cfg['agent_spool_dir']).joinpath(f'{str(cache_time)}_robotmk_{suite}') + log_debug(f'Spoolfile name: {spoolfile}') + resultstring = f'{header_piggyback}<<>>\n{xmldata}' + try: + with open (spoolfile, 'w') as f: + f.write(resultstring) + except Exception as e: + log_error(f'Could not write spoolfile {spoolfile}!') + exit(1) + + + # returns the default config and overrides by env vars def get_env_config(): if os.name in ['nt', 'posix']: agent_data_dir = Path(os.environ.setdefault('AGENT_DATA_DIR', DEFAULTS[os.name]['agent_data_dir'])) agent_cfg_dir = Path(os.environ.setdefault('AGENT_CFG_DIR', DEFAULTS[os.name]['agent_cfg_dir'])) + agent_spool_dir = Path(os.environ.setdefault('AGENT_SPOOL_DIR', DEFAULTS[os.name]['agent_spool_dir'])) outputdir = Path(os.environ.setdefault('OUTPUTDIR', DEFAULTS[os.name]['outputdir'])) env_cfg = { 'outputdir' : outputdir, 'robotdir' : agent_data_dir.joinpath('robot'), 'robotmk_yml' : agent_cfg_dir.joinpath(DEFAULTS['noarch']['robotmk_yml']), + 'agent_spool_dir' : agent_spool_dir, 'log' : 'none', 'console' : 'none', 'report' : 'none', @@ -197,8 +249,6 @@ def setup_logging(): console.setFormatter(console_formatter) console.setLevel(logging.DEBUG) logger.addHandler(console) - - def log_debug(text): logger.debug(text) @@ -212,13 +262,9 @@ def log_warning(text): def log_error(text): logger.error(text) - - def print_banner(): log_info('') - log_info('#######################################################################') log_info('########################### RobotMK ###########################') - log_info('#######################################################################') log_info(' 2020 Simon Meggle ') log_info(' https://www.simon.meggle.de') log_info('') @@ -236,4 +282,4 @@ if __name__ == '__main__': except: log_debug('You need robotframework installed to run this plugin.') exit(1) - start() + start() \ No newline at end of file diff --git a/web/plugins/wato/check_parameters_robotmk.py b/web/plugins/wato/check_parameters_robotmk.py index a4ec1790..c098f602 100644 --- a/web/plugins/wato/check_parameters_robotmk.py +++ b/web/plugins/wato/check_parameters_robotmk.py @@ -39,208 +39,267 @@ RulespecGroupMonitoringAgentsAgentPlugins ) +helptext_listof_testsuites_spooldir=""" + By default (if you do not add any suite), the RobotMK plugin will execute all .robot files in the Robot suites directory without any parametrization.
+ To specify suites, additional parameters and execution order, click Add test suite.
+ Keep in mind to set a proper cache time. It should be higher than the estimated maximum runtime of all suites.""" -def _valuespec_agent_config_robotmk(): - return Alternative( - title=_("RobotMK (Linux, Windows)"), - help=_( - "This will deploy the agent plugin to execute Robot Framework E2E test on the remote host " - "and a .YML configuration file with the list of test suites to execute."), - style="dropdown", - elements=[ - Dictionary(title=_("Deploy the RobotMK plugin"), - #optional_keys=["runas"], - elements=[ - ("cache_time", - Age( - title=_("Agent Plugin Cache time / execution interval"), - help=_("Sets the interval in which the RobotMK plugin should be executed on the host (instead of normal check interval).
" - "The default is set to 15min but strongly depends on the maximum probable runtime of all test suites. Choose an interval which is a comprimise between frequency and headroom.
" - "The timeout for the RobotMK plugin execution is always cache_time - 60s to avoid concurrency problems."), - minvalue=1, - maxvalue=65535, - default_value=900, - )), - # Leave this commented. Outputdir is not something the user should need to change. - # ("outputdir", - # TextUnicode( - # # regex="^[-a-zA-Z0-9._]*$", - # regex_error=_("Your outputdir has an invalid format."), - # title=_("Output directory of where XML test result is stored"), - # help=_("If nothing is filled out, the default will be used. Default assumes a linux path. Path validation is made during baking."), - # allow_empty=True, - # default_value="/tmp/" - # )), - ("robotdir", - TextUnicode( - title=_("Robot suites directory"), - help=_("By default the RobotMK plugin will search for Robot suites in /usr/lib/check_mk_agent/robot (Linux) or C:\\ProgramData\\checkmk\\agent\\robot (Windows).
" - "Windows paths can be given with single backslashes; OS dependent path validation is made during baking.
"), - allow_empty=True, - size=100, - default_value="" - )), - ("suites", - ListOf( - Tuple(elements=[ - TextUnicode( - title=_("Robot test file/dir name"), - help=_("Robot Framework can execute files (.robot) as well as nested directories " - "which itself contain .robot files. All names are expected to be relative to the robot dir."), - allow_empty=False, - size=50, - ), - - Dictionary( - elements=[ - ("name", - TextUnicode( - title=_("Top level suite name (--name)"), - help=_("Set the name of the top level suite. By default the name is created based on the executed file or directory.
" - "This sets the name of a fresh discovered Robot service; an already existing service will hide away and will be found by the discovery under a new name."), - allow_empty=False, - size=50, - )), - ("suite", - ListOfStrings( - title=_("Select suites (--suite)"), - help=_("Select suites by name.
When this option is used with" - " --test, --include or --exclude, only tests in" - " matching suites and also matching other filtering" - " criteria are selected.
" - " Name can be a simple pattern similarly as with --test and it can contain parent" - " name separated with a dot.
" - " For example, X.Y selects suite Y only if its parent is X.
"), - size=40, - )), - ("test", - ListOfStrings( - title=_("Select test (--test)"), - help=_("Select tests by name or by long name containing also" - " parent suite name like Parent.Test.
Name is case" - " and space insensitive and it can also be a simple" - " pattern where * matches anything, ? matches any" - " single character, and [chars] matches one character" - " in brackets.
"), - size=40, - )), - ("include", - ListOfStrings( - title=_("Include tests by tag (--include)"), - help=_("Select tests by tag. (About tagging test cases)
Similarly as name with --test," - "tag is case and space insensitive and it is possible" - "to use patterns with *, ? and [] as wildcards.
" - "Tags and patterns can also be combined together with" - "AND, OR, and NOT operators.
" - "Examples:
foo
bar*
fooANDbar*
"), - size=40, - )), - ("exclude", - ListOfStrings( - title=_("Exclude tests by tag (--exclude)"), - help=_("Select test cases not to run by tag. (About tagging test cases)
These tests are" - " not run even if included with --include.
Tags are" - " matched using same rules as with --include.
"), - size=40, - )), - ("critical", - ListOfStrings( - title=_("Critical test tag (--critical)"), - help=_("Tests having the given tag are considered critical. (This is no threshold, see About setting criticality)
" - "If no critical tags are set, all tests are critical.
" - "Tags can be given as a pattern same way as with --include.
"), - size=40, - )), - ("noncritical", - ListOfStrings( - title=_("Non-Critical test tag (--noncritical)"), - help=_("Tests having the given tag are considered non-critical, even if also --critical is set. (This is no threshold, see About setting criticality)
" - "Tags can be given as a pattern same way as with --include.
"), - size=40, - )), - # ("variable", - # ListOfStrings( - # title=_("Variables (--variable)"), - # help=_("Set variables in the test data.
Only scalar variables with string" - # " value are supported and name is given without ${}.
" - # " (See --variablefile for a more powerful variable setting mechanism.)
" - # "Example: varname:value
"), - # # size=600, - # orientation="vertical", - # valuespec=TextUnicode( - # size=40, - # regex=".*:.*", - # regex_error=_("Please enter a key-value pair separated by ':'"), - # ), - # )), - ("variable", - ListOf( - Tuple( - elements=[ - TextAscii( - title=_("Variable name:") - ), - TextAscii( - title=_("Value:"), - ), - ], - orientation="horizontal", - ), - movable=False, - title=_("Variables (--variable)"), - help=_("Set variables in the test data.
Only scalar variables with string" - " value are supported and name is given without ${}.
" - " (See --variablefile for a more powerful variable setting mechanism.)
") - )), - - ("variablefile", - ListOfStrings( - title=_("Load variables from file (--variablefile)"), - help=_("Python or YAML file file to read variables from. (About variable files)
Possible arguments to the variable file can be given" - " after the path using colon or semicolon as separator.
" - "Examples:
" - "path/vars.yaml
" - "set_environment.py:testing
"), - size=40, - )), - ("exitonfailure", - DropdownChoice( - title=_("Exit on failure (--exitonfailure)"), - help=_("Stops test execution if any critical test fails. (About failed tests)"), - choices=[ - ('yes', _('yes')), - ('no', _('no')), - ], - default_value="no", - )), - # Proposal: piggybackhost instead of host - ("host", - MonitoredHostname( - title=_("Piggyback host"), - help= - _("Piggyback allows to assign the results of this particular Robot test to another host."), - allow_empty=False, - )), - ], - ) - ]), - title=_("Test suites"), - help= - _("Click Add test suite to add Robot suites to the execution queue.
Drag them to change the order of execution.
" - "All test suites will be executed in series.
" - "If you do not add any suite, RobotMK will execute all .robot files in the Robot suites directory; directories containing .robot files will be also executed as suites.
" - "Keep in mind to set a proper Agent plugin cache time which is higher than the probable maximum runtime of all suites. "), - add_label=_("Add test suite"), - movable=True, - )), # test suites, Listof - ]), - FixedValue( - None, - title=_("Do not deploy the RobotMK plugin"), - totext=_("(disabled)"), - ), - ], +helptext_listof_testsuites_cmkasync=""" + By default (if you do not add any suite), the RobotMK plugin will execute all .robot files in the Robot suites directory without any parametrization.
+ To specify suites, additional parameters and execution order, click Add test suite.
+ Keep in mind to set a proper execution interval. It should be higher than the estimated maximum runtime of all suites.""" + +helptext_execution_mode_cmk_async=""" + The plugin will be placed within the agent's plugin directory.
+ It will be executed asynchronously by the agent in the given execution interval.
+ The Checkmk agent will read the result from STDOUT of the RobotMK plugin.

+ Use cases for this mode: in general, all Robot tests which can run headless and do not require a certain OS user.""" +helptext_execution_mode_spooldir=""" + In this mode there is no plugin execution by the agent; schedule it manually with Jenkins, cron, Windows task scheduler etc.
+ The agent plugin cache time should be higher than the scheduling interval.
+ The result of the plugin will be written into the SPOOLDIR of the Checkmk agent.
+ Important note: You need to utilize the rule Deploy custom files to agent to deliver the file package 'robotmk-plugin'. The RobotMK plugin will be installed then in the bin folder (instead of plugin) on the agent.

+ Use cases for this mode:
+ - Applications which need a desktop
+ - Applications which require to be run with a certain user account
+ - The need for more control about when to execute a Robot test and when not""" + +agent_config_cache_time_cmk_async=( + "cache_time", + Age( + title=_("Execution interval (default: 15min)"), + help=_("Sets the interval in which the Checkmk agent will execute the RobotMK plugin (instead of normal check interval).
" + "The default is 15min but strongly depends on the maximum probable runtime of all test suites. Choose an interval which is a good comprimise between frequency and execution runtime headroom.
" + "To avoid concurrency problems, the Checkmk agent is configured with a fixed plugin timeout of cache_time - 60s ."), + minvalue=1, + maxvalue=65535, + default_value=900, + ) +) +agent_config_cache_time_spooldir=( + "cache_time", + Age( + title=_("Cache time (default: 15min)"), + help=_("The cache time should always be slightly higher than the scheduling interval of the RobotMK plugin in cron, Windows Task Planner, Jenkins, etc.
" + "The scheduling interval in turn should be quite higher than the maximum probable runtime of all test suites to avoid concurency problems. Choose an interval which is a good comprimise between frequency and execution runtime headroom.
"), + minvalue=1, + maxvalue=65535, + default_value=900, + ) +) + +agent_config_robotdir = ( + "robotdir", + TextUnicode( + title=_("Robot suites directory"), + help=_("By default the RobotMK plugin will search for Robot suites in the following paths:
" + " - /usr/lib/check_mk_agent/robot (Linux)
" + " - C:\\ProgramData\\checkmk\\agent\\robot (Windows)
" + "You can override this setting if Robot tests are stored in another path.
" + "Windows paths can be given with single backslashes; OS dependent path validation is made during the agent baking.
"), + allow_empty=True, + size=100, + default_value="" ) +) + +# Make the help text of SuitList dependent on the type of execution +def agent_config_listof_testsuites(helptext): + return ( + "suites", + ListOf( + Tuple(elements=[ + TextUnicode( + title=_("Robot test file/dir name"), + help=_("Robot Framework can execute .robot files as well as nested directories " + "which itself contain .robot files. All names are expected to be relative to the robot dir."), + allow_empty=False, + size=50, + ), + + Dictionary( + elements=[ + ("name", + TextUnicode( + title=_("Top level suite name (--name)"), + help=_("Set the name of the top level suite. By default the name is created based on the executed file or directory.
" + "This sets the name of a fresh discovered Robot service; an already existing service will hide away and will be found by the discovery under a new name."), + allow_empty=False, + size=50, + )), + ("suite", + ListOfStrings( + title=_("Select suites (--suite)"), + help=_("Select suites by name.
When this option is used with" + " --test, --include or --exclude, only tests in" + " matching suites and also matching other filtering" + " criteria are selected.
" + " Name can be a simple pattern similarly as with --test and it can contain parent" + " name separated with a dot.
" + " For example, X.Y selects suite Y only if its parent is X.
"), + size=40, + )), + ("test", + ListOfStrings( + title=_("Select test (--test)"), + help=_("Select tests by name or by long name containing also" + " parent suite name like Parent.Test.
Name is case" + " and space insensitive and it can also be a simple" + " pattern where * matches anything, ? matches any" + " single character, and [chars] matches one character" + " in brackets.
"), + size=40, + )), + ("include", + ListOfStrings( + title=_("Include tests by tag (--include)"), + help=_("Select tests by tag. (About tagging test cases)
Similarly as name with --test," + "tag is case and space insensitive and it is possible" + "to use patterns with *, ? and [] as wildcards.
" + "Tags and patterns can also be combined together with" + "AND, OR, and NOT operators.
" + "Examples:
foo
bar*
fooANDbar*
"), + size=40, + )), + ("exclude", + ListOfStrings( + title=_("Exclude tests by tag (--exclude)"), + help=_("Select test cases not to run by tag. (About tagging test cases)
These tests are" + " not run even if included with --include.
Tags are" + " matched using same rules as with --include.
"), + size=40, + )), + ("critical", + ListOfStrings( + title=_("Critical test tag (--critical)"), + help=_("Tests having the given tag are considered critical. (This is no threshold, see About setting criticality)
" + "If no critical tags are set, all tests are critical.
" + "Tags can be given as a pattern same way as with --include.
"), + size=40, + )), + ("noncritical", + ListOfStrings( + title=_("Non-Critical test tag (--noncritical)"), + help=_("Tests having the given tag are considered non-critical, even if also --critical is set. (This is no threshold, see About setting criticality)
" + "Tags can be given as a pattern same way as with --include.
"), + size=40, + )), + ("variable", + ListOf( + Tuple( + elements=[ + TextAscii( + title=_("Variable name:") + ), + TextAscii( + title=_("Value:"), + ), + ], + orientation="horizontal", + ), + movable=False, + title=_("Variables (--variable)"), + help=_("Set variables in the test data.
Only scalar variables with string" + " value are supported and name is given without ${}.
" + " (See --variablefile for a more powerful variable setting mechanism.)
") + )), + ("variablefile", + ListOfStrings( + title=_("Load variables from file (--variablefile)"), + help=_("Python or YAML file file to read variables from. (About variable files)
Possible arguments to the variable file can be given" + " after the path using colon or semicolon as separator.
" + "Examples:
" + "path/vars.yaml
" + "set_environment.py:testing
"), + size=40, + )), + ("exitonfailure", + DropdownChoice( + title=_("Exit on failure (--exitonfailure)"), + help=_("Stops test execution if any critical test fails. (About failed tests)"), + choices=[ + ('yes', _('yes')), + ('no', _('no')), + ], + default_value="no", + )), + ("host", + MonitoredHostname( + title=_("Piggyback host"), + help= + _("Piggyback allows to assign the results of this particular Robot test to another host."), + allow_empty=False, + )), + ], + ) + ]), + title=_("Specify Robot Framework test suites"), + help=_(helptext), + add_label=_("Add test suite"), + movable=True, + ) +) + + +dropdown_robotmk_execution_choices=CascadingDropdown( + title=_("Type of execution"), + choices=[ + ("cmk_async", _("Async mode: Agent executes RobotMK plugin"), + Tuple( + elements=[ + Dictionary( + help=_(helptext_execution_mode_cmk_async), + elements=[ + agent_config_cache_time_cmk_async, + agent_config_robotdir, + agent_config_listof_testsuites(helptext=helptext_listof_testsuites_cmkasync), + ] + ) + ] + ) + ), + ("external_spooldir", _("Spooldir mode: RobotMK plugin executed externally"), + Tuple( + elements=[ + Dictionary( + help=_(helptext_execution_mode_spooldir), + elements=[ + agent_config_cache_time_spooldir, + agent_config_robotdir, + agent_config_listof_testsuites(helptext=helptext_listof_testsuites_spooldir), + ] + ) + ] + ) + ), + ] +) + + +def _valuespec_agent_config_robotmk(): + return Alternative( + title=_("RobotMK (Linux, Windows)"), + help=_( + "This will deploy the agent plugin to execute Robot Framework E2E test on the remote host " + "and a .YML configuration file with the list of test suites to execute."), + style="dropdown", + elements=[ + Dictionary( + title=_("Deploy the RobotMK plugin"), + elements=[ + ("execution", + dropdown_robotmk_execution_choices + ), + ], + optional_keys=["auth_instances"], + ), + FixedValue( + None, + title=_("Do not deploy the RobotMK plugin"), + totext=_("(No Robot Framework tests on this machine)"), + ), + ]) + rulespec_registry.register( HostRulespec( @@ -313,64 +372,6 @@ def _valuespec_inventory_robotmk_rules(): ], # elements ) - -# def _valuespec_inventory_robotmk_rules(): -# return Dictionary( -# title=_("Robot Framework Service Discovery"), - -# elements=[ -# ("robot_discovery", -# ListOf( -# Tuple(elements=[ - -# TextAscii( -# title=("Service name prefix"), -# allow_empty=True, -# size=25, -# default_value="Robot ", -# help=_("How all Robot service names start") -# ), -# Dictionary( -# title=_("Discovery level"), -# elements=[ -# ( "discovery_level", -# DropdownChoice( -# choices = [ -# ( "0" , _("0 - create ONE service from the one result element in the top level")), -# ( "1" , _("1 - create service(s) from each result element 1 level deeper")), -# ( "2" , _("2 - create service(s) from each result element 2 levels deeper")), -# ( "3" , _("3 - create service(s) from each result element 3 levels deeper")), -# ], -# ) -# ), -# ], -# help=_( -# u"Each Robot result consists of one suite which is either the " -# u".robot file name or the folder name containg the tests.
" -# u"By default, RobotMK creates 1 service from this single root node.
" -# u"Choosing another level enables you to split the Robot result into " -# u"as many services as you want.
" -# u"Keep in mind that the deeper you choose this level, the more likely " -# u"it is that you will also get services out from tests and keywords (if this is what you want...)." -# ), -# ), -# TextAscii( -# title=("Root suite pattern"), -# allow_empty=True, -# size=25, -# default_value=".*", -# help=_("A regular expression matching the single root node of the Robot result.") -# ), -# ]), #Tuple_elements -# title=_("Adopt discovery of services from Robot output"), - -# ) # ListOf -# ), -# ], # elements -# ) - - - rulespec_registry.register( HostRulespec( # lib/python/cmk/gui/watolib/rulespecs.py From 0eb23c01c3b259708f4260b5512907714c7cab1d Mon Sep 17 00:00:00 2001 From: Simon Meggle Date: Sun, 15 Nov 2020 17:30:42 +0100 Subject: [PATCH 12/12] CHANGELOG --- CHANGELOG.md | 13 ++++++++++++- 1 file changed, 12 insertions(+), 1 deletion(-) diff --git a/CHANGELOG.md b/CHANGELOG.md index e86485d8..b291e8d7 100644 --- a/CHANGELOG.md +++ b/CHANGELOG.md @@ -10,9 +10,20 @@ and this project adheres to [Semantic Versioning](https://semver.org/spec/v2.0.0 ### Changed +### Fixed + + + +## [v0.1.4] - 2020-11-15 +### Added + +- Bakery/Check: Added spooldir mode; Robotmk plugin can be triggered externally, writes to spooldir of mk agent (#49) +- Check now makes use of HTML badges for WARN/CRIT (#52) + +### Changed + - Plugin: Set tmpdir on Windows to a fixed path (#47) - Improved Logging (#48) -- Check now makes use of HTML badges for WARN/CRIT (#52) ### Fixed