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