Created
February 9, 2018 23:31
-
-
Save mayribeirofernandes/1b4a07a0023c7b58ccaa61939b2ffe82 to your computer and use it in GitHub Desktop.
Exemplo Sikuli com Robot Framework
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
| *** Settings *** | |
| Documentation Sikuli Library Demo | |
| Test Setup Carrega diretório de imagens | |
| Test Teardown Stop Remote Server | |
| Library SikuliLibrary | |
| *** Variables *** | |
| #As imagens da pasta img devem estar de acordo com a interface do seu PC!!!! Tire os prints necessários! | |
| ${IMAGE_DIR} ${CURDIR}\\img | |
| *** Test Cases *** | |
| Windows Notepad Hello World | |
| Abre o menu inicial do windows | |
| Abre o notepad++ | |
| Digita "Hello Word" | |
| Fecha o notepad++ | |
| *** Keywords *** | |
| Carrega diretório de imagens | |
| Add Image Path ${IMAGE_DIR} | |
| Abre o menu inicial do windows | |
| Click windows_start_menu.png | |
| Abre o notepad++ | |
| Click notepad.png | |
| Digita "${TEXTO}" | |
| Input Text notepad_workspace.png ${TEXTO} | |
| Screen Should Contain helloword.png | |
| Fecha o notepad++ | |
| Click close.png |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment