Commit d55709ab authored by Andrejs Cunskis's avatar Andrejs Cunskis

Merge branch 'pipeline_click_job_retry' into 'master'

Add a retry around pipeline click_job

See merge request gitlab-org/gitlab!75659
parents 733ba47f d804d770
......@@ -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