Advertisement
Guest User

Untitled

a guest
Feb 22nd, 2019
70
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 0.39 KB | None | 0 0
  1. public class TesteSairApp extends GermantechTest {
  2.  
  3. @Test
  4. public void testApp() throws Exception {
  5. SWTBotMenu file = bot.menu("Arquivo");
  6. bot.sleep(1000);
  7.  
  8. SWTBotMenu clickSair = file.menu("Sair");
  9. bot.sleep(1000);
  10.  
  11. SWTBotMenu menuClicado = clickSair.click();
  12. System.out.println(menuClicado);
  13. bot.sleep(1000);
  14.  
  15. pass();
  16. }
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement