Skip to content

Commit aa9ad87

Browse files
wait for checkbox to be present rather than visible
1 parent 9cb9677 commit aa9ad87

1 file changed

Lines changed: 1 addition & 1 deletion

File tree

lib/galaxy_test/selenium/test_workflow_extraction.py

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -167,7 +167,7 @@ def extract_workflow_submit(self):
167167
def extract_workflow_toggle_job(self, job_id: str):
168168
"""Toggle the selection checkbox for a specific job card by job_id."""
169169
checkbox = self.components.workflow_extract.card_checkbox_by_job_id(job_id=job_id)
170-
element = checkbox.wait_for_visible()
170+
element = checkbox.wait_for_present()
171171
self.execute_script_click(element)
172172

173173
def find_workflow_by_name(self, name: str) -> str:

0 commit comments

Comments
 (0)