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 87134cc commit 1f48c9dCopy full SHA for 1f48c9d
sde_collections/tests/frontend/test_pattern_application.py
@@ -141,6 +141,12 @@ def test_create_title_pattern(self):
141
assert "3" in row_text
142
143
self.driver.get(f"{self.live_server_url}/{self.collection.id}/delta-urls")
144
+
145
+ # Wait for at least one row to be present in the table
146
+ self.wait.until(
147
+ EC.presence_of_element_located((By.CSS_SELECTOR, "#delta_urls_table tbody tr td:not(.dt-empty)"))
148
+ )
149
150
table_html = self.driver.find_element(By.ID, "delta_urls_table").get_attribute("outerHTML")
151
152
# Verify that previous curated_url now appear in delta_urls page after pattern application
0 commit comments