PhantomCSS是CSS回归测试工具。一个通过PhantomJS或者SlimerJS和Resemble.js进行自动视觉回归测试的CasperJS模块。
示例代码:
casper. start( url ). then(function(){ // do something casper.click('button#open-dialog'); // Take a screenshot of the UI component phantomcss.screenshot('#the-dialog', 'a screenshot of my dialog'); });
评论