双击 Sencha Test 中的一行
Double click a row in Sencha Test
如何使用 Sencha 测试框架双击网格行?
到目前为止,我能够引用该行并执行单击,但我没有看到执行双击的方法(单击 2 次也不能作为双击)
http://docs.sencha.com/sencha_test/2.1.0/api/ST.future.Row.html#method-click
ST.play([
{type: "dblclick", target: row}
]);
行是这样的:
return this.grid().rowWith('name', 'Value of the name').visible();
从这里得到它:
如何使用 Sencha 测试框架双击网格行?
到目前为止,我能够引用该行并执行单击,但我没有看到执行双击的方法(单击 2 次也不能作为双击)
http://docs.sencha.com/sencha_test/2.1.0/api/ST.future.Row.html#method-click
ST.play([
{type: "dblclick", target: row}
]);
行是这样的:
return this.grid().rowWith('name', 'Value of the name').visible();
从这里得到它: