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 458f678 commit 1740456Copy full SHA for 1740456
tests/common/sketch/test_sketch.py
@@ -87,6 +87,14 @@ def test_serial_monitor_disables_fields(self):
87
)
88
89
90
+ def test_close_serial_monitor(self):
91
+ self.get_element(By.ID, 'serial_monitor_toggle').click()
92
+ WebDriverWait(self.driver, VERIFY_TIMEOUT).until(
93
+ expected_conditions.invisibility_of_element_located(
94
+ (By.ID, 'serial_monitor')
95
+ )
96
97
+
98
def test_clone_project(self):
99
"""Tests that clicking the 'Clone Project' link brings us to a new
100
sketch with the title 'test_project clone'."""
0 commit comments