Как включить изображение селена chrome (селен / автономный- chrome) в файл YAML битбакета? - PullRequest
0 голосов
/ 05 мая 2020

Я хочу запустить сценарий селена (Java, Maven и Selenium) в конвейере битбакета. Не могли бы вы сообщить мне, как включить изображения selenium / standalone- chrome в файл YAML?

image: maven:3.3.9

pipelines:
default:
- step:
name: Code is pushed - Ready for Execution
script: # Modify the commands below to build your repository.
- echo "Please click on 'Run' button to start execution"
- step:
name: Start Execution
caches:
- maven
trigger: manual
script: # Modify the commands below to build your repository.
- mvn -B verify # -B batch mode makes Maven less verbose
artifacts: # defining the artifacts to be passed to each future step.
- Results/** 
...