##// END OF EJS Templates
Shrink cleanup lines
Shrink cleanup lines

File last commit:

r15959:61cc0a11
r15962:49b4f9c1
Show More
arrow_keys.js
24 lines | 956 B | application/javascript | JavascriptLexer
Paul Ivanov
a test of the arrow keys for non-empty notebook
r13282 //
// Check for errors with up and down arrow presses in a non-empty notebook.
//
casper.notebook_test(function () {
Jonathan Frederic
Revert accidental checkin of files from SlimerJS branch
r15958 var result = this.evaluate(function() {
IPython.notebook.command_mode();
pos0 = IPython.notebook.get_selected_index();
IPython.keyboard.trigger_keydown('b');
pos1 = IPython.notebook.get_selected_index();
IPython.keyboard.trigger_keydown('b');
pos2 = IPython.notebook.get_selected_index();
// Simulate the "up arrow" and "down arrow" keys.
IPython.keyboard.trigger_keydown('up');
pos3 = IPython.notebook.get_selected_index();
IPython.keyboard.trigger_keydown('down');
pos4 = IPython.notebook.get_selected_index();
return pos0 == 0 &&
pos1 == 1 &&
pos2 == 2 &&
pos3 == 1 &&
pos4 == 2;
Paul Ivanov
a test of the arrow keys for non-empty notebook
r13282 });
Jonathan Frederic
Revert accidental checkin of files from SlimerJS branch
r15958 this.test.assertTrue(result, 'Up/down arrow okay in non-empty notebook.');
Jonathan Frederic
Re-added new lines at eof
r15959 });