Take the 2-minute tour ×
Stack Overflow is a question and answer site for professional and enthusiast programmers. It's 100% free, no registration required.

Is there any open source of commercial tools available for test automation of HTML/JS/CSS animations? Is it possible to ascertain the visual artifacts by some means of image capture and comparison ( selenium offers image grab, but its more static) quickly to ascertain a test application pass/fail

share|improve this question
add comment

1 Answer

Try to use Sikuli framework. Sikuli automates everything you see on the screen. It uses image recognition to identify and control GUI components. It is useful when there is no easy access to a GUI's internal or source code. URL - http://www.sikuli.org/

Also you can use the mix of Webdeiver and Sikuli - SikuliWebDriver. Here you can find an example of using it: http://code.google.com/p/sikuli-api/wiki/SikuliWebDriver

I prefer using the Sikuli Java API and create wrapper functions around the Sikuli functions like click, type etc. http://doc.sikuli.org/faq/030-java-dev.html

share|improve this answer
add comment

Your Answer

 
discard

By posting your answer, you agree to the privacy policy and terms of service.

Not the answer you're looking for? Browse other questions tagged or ask your own question.