这是一个单击字段以输入某个值的测试的快速示例:
it('should enter someValue into field', function() {
var field = $('.someField');
// Insert timer start function here
field.click();
this.switchToActiveElement().sendKeys('someValue');
this.hitEnter();
// Insert timer stop function here and output result!
assert.eventually.equal(field.getText(), 'someValue');
});
我想做的是单击该字段并输入一些值需要多长时间,然后以某种方式输出它的执行时间。我原本以为我可以只插入console.time()
和console.timeEnd()
函数,但当然这不适用于量角器的控制流,对吧?
对此的任何帮助将不胜感激。谢谢!