Lotte 无图形化浏览器测试工具 项目简介
Lotte是一款自动化无图形化浏览器测试工具,采用phantomJs。使用环境:node.js >=0.8npm >=1.0PhantomJS <2.0.0使用:创建一个新文件lotte_github.js(最好是在一个空目录),复制下面的代码:this.open('https://github.com', function() {
this.describe('Sign Up button', function() {
this.assert.ok(this.$('.signup-button').length, 'expects button to be in the DOM');
this.success();
});
});运行,可查看以下输出:/tmp/lotte_github.js
@ https://github.com
✓ Sign Up button
this.describe('Sign Up button', function() {
this.assert.ok(this.$('.signup-button').length, 'expects button to be in the DOM');
this.success();
});
});运行,可查看以下输出:/tmp/lotte_github.js
@ https://github.com
✓ Sign Up button