0

如何使用 Sencha 测试框架双击网格行?

到目前为止,我能够引用该行并执行单击,但我看不到执行双击的方法(单击 2 次也不能作为双击工作)

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

4

1 回答 1

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

于 2017-05-29T14:45:29.247 回答