Skip to content

Instantly share code, notes, and snippets.

@chbaranowski
Created June 5, 2011 14:49
Show Gist options
  • Save chbaranowski/1009011 to your computer and use it in GitHub Desktop.
Save chbaranowski/1009011 to your computer and use it in GitHub Desktop.
Sikuli JUnit Demo Test
import org.junit.Test;
import org.sikuli.script.App;
import org.sikuli.script.Screen;
public class GoogleDemoTest {
@Test
public void testGoogleSearch() throws Exception {
Screen screen = new Screen();
App app = new App("Firefox 4.app");
app.focus();
screen.click("images/homeButton.png", 0);
screen.click("images/homeUrlInput.png",0);
screen.type(null, "www.google.com", 0);
screen.click("images/goButton.png", 0);
screen.click("images/searchInput.png", 0);
screen.type(null, "tux2323", 0);
screen.click("images/searchButton.png", 0);
screen.click("images/tux2323BlogLink.png", 0);
}
}
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment