|
|
|
|
@ -30,7 +30,7 @@ casper.notebook_test(function () {
|
|
|
|
|
var cell = IPython.notebook.get_cell(0);
|
|
|
|
|
cell.set_text('a=11; print(a)');
|
|
|
|
|
cell.clear_output()
|
|
|
|
|
$(document).trigger($.Event('keydown', {which: 13, ctrlKey: true}))
|
|
|
|
|
IPython.utils.press_ctrl_enter();
|
|
|
|
|
});
|
|
|
|
|
|
|
|
|
|
this.waitFor(function () {
|
|
|
|
|
@ -48,4 +48,28 @@ casper.notebook_test(function () {
|
|
|
|
|
})
|
|
|
|
|
this.test.assertEquals(result, '11\n', 'cell execute (using ctrl-enter)')
|
|
|
|
|
});
|
|
|
|
|
|
|
|
|
|
// do it again with the keyboard shortcut
|
|
|
|
|
this.thenEvaluate(function () {
|
|
|
|
|
var cell = IPython.notebook.get_cell(0);
|
|
|
|
|
cell.set_text('a=12; print(a)');
|
|
|
|
|
cell.clear_output()
|
|
|
|
|
IPython.utils.press_shift_enter();
|
|
|
|
|
});
|
|
|
|
|
|
|
|
|
|
this.waitFor(function () {
|
|
|
|
|
return this.evaluate(function get_output() {
|
|
|
|
|
var cell = IPython.notebook.get_cell(0);
|
|
|
|
|
return cell.output_area.outputs.length != 0;
|
|
|
|
|
})
|
|
|
|
|
});
|
|
|
|
|
|
|
|
|
|
this.then(function () {
|
|
|
|
|
var result = this.evaluate(function () {
|
|
|
|
|
var cell = IPython.notebook.get_cell(0);
|
|
|
|
|
var output = cell.output_area.outputs[0].text;
|
|
|
|
|
return output;
|
|
|
|
|
})
|
|
|
|
|
this.test.assertEquals(result, '12\n', 'cell execute (using shift-enter)')
|
|
|
|
|
});
|
|
|
|
|
});
|
|
|
|
|
|