我在黄瓜中遇到这种情况:
Scenario Outline: Protractor and Cucumber Test InValid
Given I have already......
When I fill the <number>
....
Examples:
| number|...
| 3 |...
|4 |...
我在.js文件中有此步骤定义:
When('I fill the {int}',{timeout: 90 * 1000}, function(callback, number) {
element(by.css("*[id='field_identificador']")).click();
element(by.css("*[id='field_identificador']")).sendKeys(number).then(callback);
});
我收到此错误:每个键必须是一个数字字符串;有功能
当我通过自己编写一个没有方案概要的值来执行测试时,例如:.sendKeys('4'),它将起作用。
我做错什么了吗?
答案 0 :(得分:0)
您的论点顺序错误。 callback
始终是参数列表中的最后一个元素。
修复:
When('I fill the {int}',{timeout: 90 * 1000}, function(number, callback) {
element(by.css("*[id='field_identificador']")).click();
element(by.css("*[id='field_identificador']")).sendKeys(number).then(callback);
});