1

我正在尝试测试我们的聚合物组件,其中有铁输入。为了测试诸如最大长度和过滤允许模式之类的东西,我想测试某些键盘输入。不知何故,这似乎不起作用,铁输入元素的值保持不变。

我尝试了这些方法:

// from iron-test-helpers
MockInteractions.pressAndReleaseKeyOn(input, undefined, [], '2');

// generic way
var e = document.createEvent('TextEvent');
e.initTextEvent('textInput', true, true, null, 'Bob');
input.dispatchEvent(e);

//check input.value (native) and input.bindValue (iron-input var, set after input event is triggered)
console.log(input.value);

console.log(input.bindValue);
assert.equal(input.bindValue, '123456');   
4

0 回答 0