Skip to content

Commit

Permalink
updating host view
Browse files Browse the repository at this point in the history
  • Loading branch information
ColeHiggins2 committed Jun 20, 2023
1 parent b6cc4ff commit 1cdd95c
Showing 1 changed file with 8 additions and 2 deletions.
10 changes: 8 additions & 2 deletions airgun/views/host_new.py
Original file line number Diff line number Diff line change
Expand Up @@ -436,12 +436,18 @@ class repository_sets(Tab):
ROOT = './/div[@id="repo-sets-tab"]'

select_all = Checkbox(locator='.//div[@id="selection-checkbox"]/div/label')
searchbar = SearchInput(locator='.//input[contains(@class, "pf-m-search")]')
searchbar = SearchInput(
locator='.//input[contains(@aria-label, "text input for search")]'
)
show_all = Button(locator='.//div[button[@aria-label="No limit"]]')
limit_to_environemnt = Button(
locator='.//div[button[@aria-label="Limit to environment"]]'
)
status_filter = Select(locator='.//div[@aria-label="select Status container"]/div')
dropdown = Dropdown(locator='.//div[button[@aria-label="bulk_actions"]]')

table = Table(
locator='.//table[@aria-label="Content View Table"]',
locator='.//table[@data-ouia-component-id="host-repository-sets-table"]',
column_widgets={
0: Checkbox(locator='.//input[@type="checkbox"]'),
'Repository': Text('./span'),
Expand Down

0 comments on commit 1cdd95c

Please sign in to comment.