双击Sencha Test中的一行

时间:2017-05-29 14:29:28

标签: extjs sencha-test sencha-test-2.1

如何使用Sencha Test Framework双击网格行?

到目前为止,我能够引用该行并执行单击但我没有看到执行双击的方法(单击2次单击无法双击)

http://docs.sencha.com/sencha_test/2.1.0/api/ST.future.Row.html#method-click

1 个答案:

答案 0 :(得分:2)

 ST.play([
            {type: "dblclick", target: row}
 ]);

行是这样的:

return this.grid().rowWith('name', 'Value of the name').visible();

从这里得到它:

https://www.sencha.com/forum/showthread.php?334035-Double-Clicking-on-a-grid-row&p=1186355#post1186355