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 e6bd116 commit c25b39dCopy full SHA for c25b39d
tests/walkthrough/test_walkthrough.py
@@ -38,8 +38,9 @@ def test_page_3(self):
38
39
def test_page_4(self):
40
"""Test page 4"""
41
- cb_cf_boards = self.get_element(By.CSS_SELECTOR, '#cb_cf_boards')
42
- assert cb_cf_boards.is_displayed()
+ WebDriverWait(self.driver, 30).until(
+ expected_conditions.presence_of_element_located((By.CSS_SELECTOR, '#cb_cf_boards optgroup[label="Arduino"]'))
43
+ )
44
self.execute_script(SELECT_BOARD_SCRIPT(TEST_BOARD), '$')
45
cb_cf_ports = self.get_element(By.CSS_SELECTOR, '#cb_cf_ports')
46
assert cb_cf_ports.is_displayed()
0 commit comments