HTML: <ul class="list"> <li ng-repeat="item in itmes" ng-click="selectItem(item)" ng-class="{selected: item.isSelected}">{{ item.name }}</li> </ul> //
分类:
其他好文 时间:
2016-02-23 06:08:23
阅读次数:
225
环境:y@y:karma-t01$ protractor --versionVersion 3.0.0y@y:karma-t01$ node -vv4.2.2y@y:karma-t01$ y@y:karma-t01$ webdriver-manager updatey@y:karma-t01$ we...
分类:
Web程序 时间:
2015-11-29 14:52:38
阅读次数:
633
y@y:karma-t01$ protractor protractor.conf.js [launcher] Process exited with error code 1undefined:1190 vlog(2, () => this + ' scheduling notificati...
分类:
Web程序 时间:
2015-11-29 13:25:00
阅读次数:
1103
Protractor is built to interact with AngularJS applications. In this lesson, we will take a look at how Protractor interacts with the application usin...
分类:
其他好文 时间:
2015-11-23 06:16:30
阅读次数:
158
上一篇写了通过webdriver在浏览器环境下异步调用js代码。
今天进入正题。
其实有了executeAsyncScript,一切就呼之欲出了。
直接上代码:
var compareImage=function(){
return function(){
eval(arguments[0]);
var canvasBase64=argume...
分类:
其他好文 时间:
2015-07-02 10:18:15
阅读次数:
113
protractor是angular那帮人搞得一个e2e的测试框架,本质上是用的webdriver。
测试canvas,主要就是图像的比较,搜了搜,没有找到太好的nodejs库,所有还是用之前用过的resemblejs。
resemblejs用了Image和Canvas,所以是不能直接在nodejs里用的。
github上有个人搞了个node-resemble,但是用到了一个c写的node-...
分类:
其他好文 时间:
2015-07-01 10:16:24
阅读次数:
119
Protractor是专为AngularJS应用程序编写的UI自动化测试框架。前端构建有很多构建工具,比如Grunt、Gulp等。一般我们会把这些构建工具作为集成集成的脚本执行工具。所以如果把Protractor的执行也集成进去,则可以达到自动验证UI功能的效果。
分类:
其他好文 时间:
2015-06-01 13:02:46
阅读次数:
134
Protractor是为Angular JS应用量身打造的端到端测试框架。它可以真实的驱动浏览器,自动完成对web应用的测试。Protractor驱动浏览器使用的是WebDriver标准,所以使用起来与其他语言实现的WebDriver库大体相同。当然,我说大体相同那肯定还是有不同的地方。一旦不注意这...
分类:
其他好文 时间:
2015-05-04 19:53:18
阅读次数:
1591
前端框架:AngularJS + Bootstrap3开发环境:Sublime + EmmetTDD工具:Karma + Jasmine集成测试工具:Protractor运行环境:Chrome ,FF,IE构建工具:Grunt or Gulp支持环境的工具:node & npm前端异步加载模块:Re...
分类:
其他好文 时间:
2015-04-17 01:04:29
阅读次数:
186
By default, Angular provides a lot of debug information on the DOM that's only necessary for tools like Protractor and Batarang. Angular 1.3 allows yo...
分类:
Web程序 时间:
2014-12-25 21:56:36
阅读次数:
268