如何在量角器硒中进行单次测试。
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
})
});
我想只运行一次测试。我可以使用fit
运行它但我想从命令行执行它而不更改测试。
另外,如何使用Grunt进行单独测试?