Can we use a remote selenium server for integration tests in pipelines?

stephenarifin69 July 16, 2017

Hello,

I was wondering how I could connect to another container in the Bitbucket Pipelines. I use capybara and selenium chrome and I would love to run my integration tests on bitbucket pipelines.

Here is my bitbucket-pipelines.yml:

image: damireh/ruby-2.3.1-node-6.9.4

pipelines:
default:
- step:
script:
- export DATABASE_URL=postgresql://test_user:test_user_password@localhost/db/test
- bundle install
- curl -o- -L https://yarnpkg.com/install.sh | bash -s -- --version 0.23.3
- export PATH=$HOME/.yarn/bin:$PATH
- yarn install
- rake db:migrate
- DOCKER=true bundle exec rspec
- yarn test
services:
- postgres
- chromedriver
branches:
master:
- step:
script:
- export DATABASE_URL=postgresql://test_user:test_user_password@localhost/db/test
- bundle install
- curl -o- -L https://yarnpkg.com/install.sh | bash -s -- --version 0.23.3
- export PATH=$HOME/.yarn/bin:$PATH
- yarn install
- rake db:migrate
- DOCKER=true bundle exec rspec
- yarn test
- git push https://heroku:$HEROKU_API_KEY@git.heroku.com/$HEROKU_APP_NAME.git
services:
- postgres
- chromedriver

definitions:
services:
postgres:
image: postgres
environment:
POSTGRES_DB: db/test
POSTGRES_USER: test_user
POSTGRES_PASSWORD: test_user_password
chromedriver:
image: selenium/standalone-chrome
ports:
- "4444:4444"
- "5900:5900"

1 answer

0 votes
Christine_Pinto January 19, 2018

the yml file looks good. It now depends on how your selenium tests are configured.

Did you try out the shown yml file? What errors did you get from the pipeline?

viktorsmari October 28, 2018

@Christine_Pinto can you provide an example post or readme with examples how to implement this?

I have been trying for some days to use either selenium + geckodriver or chromium + webdriver on Bitbucket Pipelines but I cannot find a solution that works!

I am using Rails and Capybara, and locally I can use both selenium and webkit but neither on Bitbucket.

Suggest an answer

Log in or Sign up to answer
TAGS
AUG Leaders

Atlassian Community Events