Skip to content

Commit f453f30

Browse files
committed
Make sure all cells executed are printed to the terminal
1 parent d2a08dd commit f453f30

File tree

1 file changed

+2
-0
lines changed

1 file changed

+2
-0
lines changed

scripts/automated-notebook-run-script.py

Lines changed: 2 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -140,6 +140,7 @@ def main():
140140
driver.execute_script(
141141
"arguments[0].scrollIntoView({block:'center'});", next_cell
142142
)
143+
print(next_cell.text)
143144
next_cell.click()
144145
run_menu = wait.until(
145146
EC.element_to_be_clickable((By.XPATH, "//li[normalize-space()='Run']"))
@@ -183,6 +184,7 @@ def main():
183184
driver.execute_script(
184185
"arguments[0].scrollIntoView({block:'center'});", next_cell
185186
)
187+
print(next_cell.text)
186188
next_cell.click()
187189
driver.execute_script(
188190
"""

0 commit comments

Comments
 (0)