Skip to content

Instantly share code, notes, and snippets.

@rafaelrpbelo
Last active January 4, 2019 20:45
Show Gist options
  • Save rafaelrpbelo/ce97db14be506258f9c0fd1327c6c869 to your computer and use it in GitHub Desktop.
Save rafaelrpbelo/ce97db14be506258f9c0fd1327c6c869 to your computer and use it in GitHub Desktop.
chromedriver in docker
# Env var
export DISPLAY=:0
# Dependências
apt-get install xvfb chromedrive
# Configuração do Driver
options = {
desired_capabilities: {
chromeOptions: {
args: %w[headless disable-gpu no-sandbox]
}
}
}
# Para executar, usar:
`xvfb-run -a <command>`
@rafaelrpbelo
Copy link
Author

Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment