We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent cb109c1 commit 9d92095Copy full SHA for 9d92095
airgun/entities/hostcollection.py
@@ -1,3 +1,5 @@
1
+import time
2
+
3
from navmazing import NavigateToSibling
4
from wait_for import wait_for
5
@@ -105,9 +107,12 @@ def manage_packages(
105
107
# After this step the user is redirected to remote execution job
106
108
# create view.
109
job_create_view = HostCollectionActionRemoteExecutionJobCreate(view.browser)
110
+ self.browser.plugin.ensure_page_safe(timeout='5s')
111
job_create_view.fill(job_values)
112
job_create_view.submit.click()
113
114
+ # wait for the job deatils to load
115
+ time.sleep(3)
116
# After this step the user is redirected to job status view.
117
job_status_view = JobInvocationStatusView(view.browser)
118
wait_for(
0 commit comments