Skip to content

Commit

Permalink
Fixes in repo discovery and search
Browse files Browse the repository at this point in the history
(cherry picked from commit 9b6592c)
  • Loading branch information
vsedmik authored and web-flow committed Apr 8, 2024
1 parent 7e2408f commit e8f273b
Show file tree
Hide file tree
Showing 2 changed files with 2 additions and 3 deletions.
2 changes: 1 addition & 1 deletion airgun/views/product.py
Original file line number Diff line number Diff line change
Expand Up @@ -159,7 +159,7 @@ def is_displayed(self):

@View.nested
class discovered_repos(View):
discover_action = Text("//button[@type='submit']")
discover_action = Text("//button[@type='submit' and contains(., 'Discover')]")
cancel_discovery = Text("//button[@ng-click='cancelDiscovery()']")
repos = CreateDiscoveredReposView()

Expand Down
3 changes: 1 addition & 2 deletions airgun/views/repository.py
Original file line number Diff line number Diff line change
Expand Up @@ -12,7 +12,6 @@
from airgun.views.common import (
BaseLoggedInView,
SearchableViewMixin,
SearchableViewMixinPF4,
)
from airgun.widgets import (
ActionsDropdown,
Expand All @@ -26,7 +25,7 @@
)


class RepositoriesView(BaseLoggedInView, SearchableViewMixinPF4):
class RepositoriesView(BaseLoggedInView, SearchableViewMixin):
breadcrumb = BreadCrumb()
new = Text("//button[contains(@href, '/repositories/new')]")
sync = Text("//button[contains(@ng-click, 'syncSelectedRepositories')]")
Expand Down

0 comments on commit e8f273b

Please sign in to comment.