How to double click a grid row using Sencha Test Framework ?
So far I'm able to reference the row and execute a click but I don't see a way to perform a double click (doing a click 2 times doesn't work either as a double click)
http://docs.sencha.com/sencha_test/2.1.0/api/ST.future.Row.html#method-click
ST.play([
{type: "dblclick", target: row}
]);
row being something like this:
return this.grid().rowWith('name', 'Value of the name').visible();
got it from here: