Commit 56c060a8 authored by Andrejs Cunskis's avatar Andrejs Cunskis

Merge branch 'retry-to-fix-ambigious' into 'master'

Adding a retry on exception to try fixing ambiguous element error

See merge request gitlab-org/gitlab!83920
parents d07344a4 724f3629
......@@ -161,7 +161,9 @@ module QA
end
EE::Page::Project::Secure::SecurityDashboard.perform do |security_dashboard|
security_dashboard.click_vulnerability(description: sast_scan_fp_example_vuln)
Support::Retrier.retry_on_exception(max_attempts: 2, reload_page: page, message: 'False positive vuln retry') do
security_dashboard.click_vulnerability(description: sast_scan_fp_example_vuln)
end
end
EE::Page::Project::Secure::VulnerabilityDetails.perform do |vulnerability_details|
......
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