前端测试

来源:互联网 发布:人格训练软件森 编辑:程序博客网 时间:2024/04/30 04:13

单元测试(测试function,输入为参数): Mocha.js(浏览器/nodejs)、Jasmine(浏览器)

浏览器环境自动化测试(测试页面,输入为事件):(Selenium 2.0)WebDriver(JAVA/Python/C#) 、PhantomJS(nodeJS)


PhontomJS
var page = require('webpage').create();
page.open('http://some.org', function (status) {  // 打开目标网页
  console.log(status); // 用console 或 其他日志工具 记录测试报告
  phantom.exit();
});
原创粉丝点击