We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent d7aec76 commit 8b8ab6aCopy full SHA for 8b8ab6a
tests/sketch/test_sketch.py
@@ -37,6 +37,10 @@ def test_verify_code(self):
37
compile_button = self.driver.find_element_by_id("compile")
38
compile_button.click()
39
40
+ # test progress bar is visible
41
+ progress_bar = self.get_element(By.ID, 'progress')
42
+ assert progress_bar.is_displayed()
43
+
44
WebDriverWait(self.driver, VERIFY_TIMEOUT).until(
45
expected_conditions.text_to_be_present_in_element(
46
(By.ID, "operation_output"), "Verification Successful!")
@@ -112,3 +116,5 @@ def test_verify_deletion(self):
112
116
confirm_delete_button.click()
113
117
self.driver.refresh()
114
118
assert 'test_file.txt' not in self.driver.page_source
119
120
0 commit comments