Skip to content

Commit

Permalink
selenium add render wait to wait for window location change
Browse files Browse the repository at this point in the history
also fix jest for wf editor attributes by specifying version prop
  • Loading branch information
ahmedhamidawan committed Nov 4, 2023
1 parent b00a94c commit 36c1639
Show file tree
Hide file tree
Showing 2 changed files with 2 additions and 0 deletions.
1 change: 1 addition & 0 deletions client/src/components/Workflow/Editor/Attributes.test.js
Original file line number Diff line number Diff line change
Expand Up @@ -33,6 +33,7 @@ describe("Attributes", () => {
name: TEST_NAME,
tags: ["workflow_tag_0", "workflow_tag_1"],
parameters: untypedParameters,
version: 0,
versions: TEST_VERSIONS,
annotation: TEST_ANNOTATION,
},
Expand Down
1 change: 1 addition & 0 deletions lib/galaxy/selenium/navigates_galaxy.py
Original file line number Diff line number Diff line change
Expand Up @@ -1526,6 +1526,7 @@ def workflow_create_new(self, annotation=None, clear_placeholder=False):
save_button.wait_for_visible()
assert not save_button.has_class("disabled")
save_button.wait_for_and_click()
self.sleep_for(self.wait_types.UX_RENDER)
return name

def invocation_index_table_elements(self):
Expand Down

0 comments on commit 36c1639

Please sign in to comment.