Jenkinsfile selenium test step

This commit is contained in:
Artur Nowakowski 2019-12-09 11:05:27 +01:00
parent a2e99c0b35
commit a25033ab1e

7
Jenkinsfile vendored
View File

@ -24,4 +24,11 @@ node {
}
}
}
dir('target/selenium'){
stage("Frontend: Test Selenium") {
docker.image('joyzoursky/python-chromedriver:3.7-selenium').inside{
{ sh 'python3 test.py' }
}
}
}
}