Skip to content

Commit

Permalink
fix clear filters selector in collection creator
Browse files Browse the repository at this point in the history
  • Loading branch information
ahmedhamidawan committed Nov 22, 2024
1 parent e5dd625 commit 6cdb23b
Show file tree
Hide file tree
Showing 2 changed files with 2 additions and 2 deletions.
2 changes: 1 addition & 1 deletion client/src/utils/navigation/navigation.yml
Original file line number Diff line number Diff line change
Expand Up @@ -438,7 +438,7 @@ history_copy_elements:

collection_builders:
selectors:
clear_filters: "a.clear-filters-link"
clear_filters: "button.clear-filters-link"
forward_datasets: ".forward-column .column-datasets"
reverse_datasets: ".reverse-column .column-datasets"
name: "input#collection-name"
Expand Down
2 changes: 1 addition & 1 deletion lib/galaxy/selenium/navigates_galaxy.py
Original file line number Diff line number Diff line change
Expand Up @@ -1993,7 +1993,7 @@ def collection_builder_create(self):
self.wait_for_and_click_selector("button.create-collection")

def collection_builder_clear_filters(self):
self.wait_for_and_click_selector("a.clear-filters-link")
self.wait_for_and_click_selector("button.clear-filters-link")

def collection_builder_click_paired_item(self, forward_or_reverse, item):
assert forward_or_reverse in ["forward", "reverse"]
Expand Down

0 comments on commit 6cdb23b

Please sign in to comment.