Skip to content

Commit

Permalink
fix test_editor_duplicate_node test
Browse files Browse the repository at this point in the history
  • Loading branch information
ElectronicBlueberry authored and dannon committed Dec 3, 2024
1 parent 63a67ec commit 6e7585c
Show file tree
Hide file tree
Showing 2 changed files with 3 additions and 0 deletions.
1 change: 1 addition & 0 deletions client/src/utils/navigation/navigation.yml
Original file line number Diff line number Diff line change
Expand Up @@ -705,6 +705,7 @@ workflow_editor:
node:
selectors:
_: "[node-label='${label}']"
by_id: "#wf-node-step-${id}"
title: '${_} .node-title'
destroy: '${_} .node-destroy'
clone: '${_} .node-clone'
Expand Down
2 changes: 2 additions & 0 deletions lib/galaxy_test/selenium/test_workflow_editor.py
Original file line number Diff line number Diff line change
Expand Up @@ -770,6 +770,8 @@ def test_editor_duplicate_node(self):
editor.remove_tags_input.wait_for_and_send_keys("#oldboringtag" + Keys.ENTER + Keys.ESCAPE)
self.sleep_for(self.wait_types.UX_RENDER)
cat_node.clone.wait_for_and_click()
cloned_node = editor.node.by_id(id=2)
cloned_node.wait_for_and_click()
editor.label_input.wait_for_and_send_keys(Keys.BACKSPACE * 20)
editor.label_input.wait_for_and_send_keys("cloned label")
output_label = editor.label_output(output="out_file1")
Expand Down

0 comments on commit 6e7585c

Please sign in to comment.