Skip to content

Commit

Permalink
Fixes in repo discovery and search (#1320)
Browse files Browse the repository at this point in the history
(cherry picked from commit 9b6592c)

Co-authored-by: Vladimir Sedmik <vsedmik@redhat.com>
  • Loading branch information
Satellite-QE and vsedmik authored Apr 9, 2024
1 parent 1c1e2d6 commit b140b9f
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 b140b9f

Please sign in to comment.