Commit d804d770 authored by Will Meek's avatar Will Meek Committed by Andrejs Cunskis

Add a retry around pipeline click_job

parent 7ab1bd63
...@@ -77,8 +77,11 @@ module QA ...@@ -77,8 +77,11 @@ module QA
end end
def click_job(job_name) def click_job(job_name)
# Retry due to transient bug https://gitlab.com/gitlab-org/gitlab/-/issues/347126
QA::Support::Retrier.retry_on_exception do
click_element(:job_link, Project::Job::Show, text: job_name) click_element(:job_link, Project::Job::Show, text: job_name)
end end
end
def child_pipelines def child_pipelines
all_elements(:child_pipeline, minimum: 1) all_elements(:child_pipeline, minimum: 1)
......
Markdown is supported
0%
or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment