Skip to content

Commit

Permalink
Update integration test
Browse files Browse the repository at this point in the history
  • Loading branch information
edan-bainglass committed Oct 22, 2024
1 parent 43a13e8 commit 9dd056e
Showing 1 changed file with 7 additions and 0 deletions.
7 changes: 7 additions & 0 deletions tests_integration/test_app.py
Original file line number Diff line number Diff line change
Expand Up @@ -20,6 +20,13 @@ def test_qe_app_select_silicon_and_confirm(
driver = selenium_driver("qe.ipynb", wait_time=30.0)
driver.set_window_size(1920, 1485)

# Open structure selection step
element = WebDriverWait(driver, 60).until(
EC.presence_of_element_located((By.CLASS_NAME, "p-Accordion-child"))
)
element.click()

# Select the Silicon example
element = WebDriverWait(driver, 60).until(
EC.presence_of_element_located((By.XPATH, "//*[text()='From Examples']"))
)
Expand Down

0 comments on commit 9dd056e

Please sign in to comment.