The SIKULI project is based on the Java VM and also provides an API for writing the automation in Java here a JUnit sample test.
This file contains 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
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); | |
} | |
} |
For real world web testing it is not the right tool I think, because it depends on the style of the elements. When the button style changed you need a new screenshot of the button. But it is a nice tool for simple automation tasks. Have also a look at screen casts on the project homepage.
Links:
- Project Home - http://sikuli.org/
- How to use Sikuli Script in your JAVA programs - http://sikuli.org/docx/faq/030-java-dev.html