Skip to content

Commit

Permalink
fix auto layout
Browse files Browse the repository at this point in the history
  • Loading branch information
ElectronicBlueberry committed Nov 4, 2024
1 parent 882f81d commit 2956422
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions lib/galaxy/selenium/navigates_galaxy.py
Original file line number Diff line number Diff line change
Expand Up @@ -1213,7 +1213,7 @@ def workflow_editor_set_license(self, license: str) -> None:
def workflow_editor_click_option(self, option_label):
self.workflow_editor_click_options()
menu_element = self.workflow_editor_options_menu_element()
option_elements = menu_element.find_elements(By.CSS_SELECTOR, "a")
option_elements = menu_element.find_elements(By.CSS_SELECTOR, "button")
assert len(option_elements) > 0, "Failed to find workflow editor options"
self.sleep_for(WAIT_TYPES.UX_RENDER)
found_option = False
Expand All @@ -1233,7 +1233,7 @@ def workflow_editor_click_options(self):
return self.wait_for_and_click_selector("#activity-settings")

def workflow_editor_options_menu_element(self):
return self.wait_for_selector_visible("#activity-settings")
return self.wait_for_selector_visible(".activity-settings")

def workflow_editor_click_run(self):
return self.wait_for_and_click_selector("#workflow-run-button")
Expand Down

0 comments on commit 2956422

Please sign in to comment.