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

Add a retry around pipeline click_job

parent 7ab1bd63
......@@ -77,7 +77,10 @@ module QA
end
def click_job(job_name)
click_element(:job_link, Project::Job::Show, text: 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)
end
end
def child_pipelines
......
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