Step 1 – Install seleniumhtmlreport
- https://plugins.jenkins.io/seleniumhtmlreport/
Step 2 – Use following code
# CODE 1
seleniumHtmlReport(String testResultLocation = 'target') {}
# CODE 2
job('seleniumreport') {
publishers {
seleniumHtmlReport('target/test-output') {
failOnExceptions()
}
}
}
Latest posts by Rajesh Kumar (see all)
- Appdynamics Demo Video - December 6, 2024
- PyTorch Lab – 9 – Pytorch CUDA Semantics - December 6, 2024
- PyTorch Lab – 8 – Pytorch Install And Setup Tensorflow Hidden Layer - December 6, 2024