Guest User

Untitled

a guest
Feb 22nd, 2018
85
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 0.81 KB | None | 0 0
  1. *** Settings ***
  2. Documentation Sikuli Library Demo
  3. Test Setup Carrega diretório de imagens
  4. Test Teardown Stop Remote Server
  5. Library SikuliLibrary
  6.  
  7. *** Variables ***
  8. #As imagens da pasta img devem estar de acordo com a interface do seu PC!!!! Tire os prints necessários!
  9. ${IMAGE_DIR} ${CURDIR}\\img
  10.  
  11. *** Test Cases ***
  12. Windows Notepad Hello World
  13. Abre o menu inicial do windows
  14. Abre o notepad++
  15. Digita "Hello Word"
  16. Fecha o notepad++
  17.  
  18. *** Keywords ***
  19. Carrega diretório de imagens
  20. Add Image Path ${IMAGE_DIR}
  21.  
  22. Abre o menu inicial do windows
  23. Click windows_start_menu.png
  24.  
  25. Abre o notepad++
  26. Click notepad.png
  27.  
  28. Digita "${TEXTO}"
  29. Input Text notepad_workspace.png ${TEXTO}
  30. Screen Should Contain helloword.png
  31.  
  32. Fecha o notepad++
  33. Click close.png
Add Comment
Please, Sign In to add comment