You can not select more than 25 topics Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.

14 lines
346 B

# selenium test version for 'empty_arrow_keys.js'
def remove_cells(notebook):
for i in notebook.cells:
notebook.delete_cell(notebook.index(i))
return True
def test_empty_arrows_keys(notebook):
# delete all the cells
notebook.trigger_keydown('up')
notebook.trigger_keydown('down')
assert remove_cells(notebook);