I'm looking for a tool to test web sites that will follow a simple script e.g.
URL www.example.com/SomePage
FORMFIELD MyFormFieldID = "Some value"
BUTTON-PUSH MyButtonID
or
CLICK-LINK MyLinkID
WAIT 2 seconds
and capture browser window images for comparison against a known-good master image set, e.g. a command like:
SCREEN CAPTURE TO Test0001-Image0001.JPG
such that the browser's window will be captured to file (including capturing hidden portions)
Then a DIFF tool that will show me differences between a previously saved Master Image set and the Current Test image set.
The Image Compare should preferably allow the use of XOR-Mask images (e.g. to prevent display of Date/Time being considered a difference)
We have a version of Waitir that we heavily modified to do just this (using image capture from www.smalleranimals.com/sasuite.htm ), but I could now do with something cross-browser - e.g. based on Selenium (perhaps using captureEntirePageScreenshot (filename, kwargs) )