一尘不染

使用量角器时如何运行单个特定的测试用例

angularjs

我正在使用量角器在我的应用中进行角度js测试,目前大约有19个测试用例,其中一个失败了

describe('Login page', function() {

beforeEach(function() {
  browser.ignoreSynchronization = true;
  ptor = protractor.getInstance();
});

it('should contain navigation items', function(){
  //test case code here
});

it('should login the user successfully', function(){ 
  //test case code here
})
});

当前,我运行所有测试用例。但是,如何仅运行一个测试用例来调试问题,例如描述为“登录页面应成功登录用户”的问题?


阅读 213

收藏
2020-07-04

共1个答案

一尘不染

Protractor的最新版本(至少)支持通常的Jasmine方法:将describe()函数重命名为ddescribe(),并且仅运行其中的测试。或将it()函数重命名为iit(),仅此测试将运行。

2020-07-04