Skip to content

Commit 692548d

Browse files
authored
Update automated-notebook-run-script.py
1 parent 5e65638 commit 692548d

File tree

1 file changed

+2
-2
lines changed

1 file changed

+2
-2
lines changed

scripts/automated-notebook-run-script.py

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -96,7 +96,7 @@ def run_notebook(driver, notebook_area, args):
9696
)
9797
input_box.click()
9898
input_box.send_keys(f"{args.stdin}")
99-
time.sleep(0.1)
99+
time.sleep(0.2)
100100
input_box.send_keys(Keys.CONTROL, Keys.ENTER)
101101
next_cell = current_cell.find_element(
102102
By.XPATH,
@@ -126,7 +126,7 @@ def run_notebook(driver, notebook_area, args):
126126
notebook_area.send_keys(Keys.SHIFT, Keys.ENTER)
127127
# This sleep is there is allow time for the box for standard input
128128
# to appear, if it needs to after executing the cell
129-
time.sleep(0.1)
129+
time.sleep(0.2)
130130
if not cell_is_waiting_for_input(driver):
131131
wait_for_idle_status(driver, current_cell, start_time, args.timeout)
132132
next_cell = current_cell.find_element(

0 commit comments

Comments
 (0)