Skip to content

Commit 9d92095

Browse files
Fix hostCollection airgun entities (#1563)
1 parent cb109c1 commit 9d92095

File tree

1 file changed

+5
-0
lines changed

1 file changed

+5
-0
lines changed

airgun/entities/hostcollection.py

+5
Original file line numberDiff line numberDiff line change
@@ -1,3 +1,5 @@
1+
import time
2+
13
from navmazing import NavigateToSibling
24
from wait_for import wait_for
35

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

114+
# wait for the job deatils to load
115+
time.sleep(3)
111116
# After this step the user is redirected to job status view.
112117
job_status_view = JobInvocationStatusView(view.browser)
113118
wait_for(

0 commit comments

Comments
 (0)