Skip to content

Commit

Permalink
added changes in host_new entities (#1347)
Browse files Browse the repository at this point in the history
* add/update host_new entities & views

* new changes added in host_new entities

(cherry picked from commit 5e4f790)
  • Loading branch information
amolpati30 authored and web-flow committed Apr 17, 2024
1 parent 602e16c commit 88a13dd
Showing 1 changed file with 5 additions and 4 deletions.
9 changes: 5 additions & 4 deletions airgun/entities/host_new.py
Original file line number Diff line number Diff line change
Expand Up @@ -434,17 +434,18 @@ def get_ansible_roles_modal(self, entity_name):
self.browser.plugin.ensure_page_safe()
return view.table.read()

def remove_ansible_role(self, entity_name):
def remove_single_ansible_role(self, entity_name):
view = self.navigate_to(self, 'NewDetails', entity_name=entity_name)
view.wait_displayed()
self.browser.plugin.ensure_page_safe()
view.ansible.roles.edit.click()
wait_for(lambda: view.ansible.roles.edit.click(), timeout=5)
edit_role = EditAnsibleRolesView(self.browser)
actions = [edit_role.hostAssignedAnsibleRoles, edit_role.unselectRoles, edit_role.confirm]
edit_view = EditAnsibleRolesView(self.browser)
edit_view.wait_displayed()
actions = [edit_view.hostAssignedAnsibleRoles, edit_view.unselectRoles, edit_view.confirm]
for action in actions:
wait_for(lambda: edit_role.is_displayed, timeout=5)
action.click()
wait_for(lambda: view.ansible.roles.noRoleAssign.is_displayed, timeout=5)

def enable_tracer(self, entity_name):
view = self.navigate_to(self, 'NewDetails', entity_name=entity_name)
Expand Down

0 comments on commit 88a13dd

Please sign in to comment.