Skip to content

Commit

Permalink
Fix hostCollection airgun entities (#1563)
Browse files Browse the repository at this point in the history
(cherry picked from commit 9d92095)
  • Loading branch information
LadislavVasina1 authored and web-flow committed Sep 19, 2024
1 parent 044eacc commit fd11742
Showing 1 changed file with 5 additions and 0 deletions.
5 changes: 5 additions & 0 deletions airgun/entities/hostcollection.py
Original file line number Diff line number Diff line change
@@ -1,3 +1,5 @@
import time

from navmazing import NavigateToSibling
from wait_for import wait_for

Expand Down Expand Up @@ -105,9 +107,12 @@ def manage_packages(
# After this step the user is redirected to remote execution job
# create view.
job_create_view = HostCollectionActionRemoteExecutionJobCreate(view.browser)
self.browser.plugin.ensure_page_safe(timeout='5s')
job_create_view.fill(job_values)
job_create_view.submit.click()

# wait for the job deatils to load
time.sleep(3)
# After this step the user is redirected to job status view.
job_status_view = JobInvocationStatusView(view.browser)
wait_for(
Expand Down

0 comments on commit fd11742

Please sign in to comment.