Seleniumでヘッドレスchromeで動作するようにシステムテストを設定しようとしています。次のcapybara設定があります。
# spec/support/capybara.rb
Capybara.server = :puma, { Silent: true }
RSpec.configure do |config|
config.before(:each, type: :system) do
driven_by :rack_test
end
config.before(:each, type: :system, js: true) do
driven_by :Selenium_chrome_headless, screen_size: [1400, 1400]
end
end
および次のDockerfile(ホストを使用しているため、データベースはありません):
FROM Ruby:2.5.1
RUN apt-get update
RUN apt-get install -y wget git
# Node
RUN curl -sL https://deb.nodesource.com/setup_9.x | bash -
RUN curl -sS https://dl.yarnpkg.com/debian/pubkey.gpg | apt-key add -
RUN echo "deb https://dl.yarnpkg.com/debian/ stable main" | tee /etc/apt/sources.list.d/yarn.list
RUN apt-get update
# Essentials
RUN apt-get install -y git-core curl zlib1g-dev build-essential libssl-dev libreadline-dev libyaml-dev libsqlite3-dev sqlite3 libxml2-dev libxslt1-dev libcurl4-openssl-dev software-properties-common libffi-dev nodejs yarn unzip
# Chrome
RUN wget -q -O - https://dl-ssl.google.com/linux/linux_signing_key.pub | apt-key add - \
&& echo "deb http://dl.google.com/linux/chrome/deb/ stable main" >> /etc/apt/sources.list.d/google.list
RUN apt-get update && apt-get -y install google-chrome-stable
# Chromedriver
RUN wget -q https://chromedriver.storage.googleapis.com/2.39/chromedriver_linux64.Zip
RUN unzip chromedriver_linux64.Zip -d /usr/local/bin
RUN rm -f chromedriver_linux64.Zip
RUN apt-get clean
Headless_chromeテストの設定方法については、オンラインでいくつかのソースをフォローしましたが、すべて上記の構成に戻ります。 capybaraを実行しようとすると、次のエラーが表示され、うまくデバッグできないようです。
Selenium::WebDriver::Error::UnknownError:
unknown error: DevToolsActivePort file doesn't exist
(Driver info: chromedriver=2.39.562737 (dba483cee6a5f15e2e2d73df16968ab10b38a2bf),platform=Linux 4.16.11-1-Arch x86_64)
上記のdockerファイルには、最新のchromeおよびchromedriverバージョン、それぞれ67および2.39が含まれています。バージョンサポートに準拠して、上記の同じエラー(66および2.38など)を試しました。 http://chromedriver.chromium.org/downloads 。
誰もこのエラーを見たことがありますか?
CapybaraのデフォルトのSelenium_chrome_headless設定では、Dockerコンテナでの実行には不十分なようです。 spec/support/capybara.rbの設定を次のように変更することで解決しました。
# spec/support/capybara.rb
# Setup chrome headless driver
Capybara.server = :puma, { Silent: true }
Capybara.register_driver :chrome_headless do |app|
options = ::Selenium::WebDriver::Chrome::Options.new
options.add_argument('--headless')
options.add_argument('--no-sandbox')
options.add_argument('--disable-dev-shm-usage')
options.add_argument('--window-size=1400,1400')
Capybara::Selenium::Driver.new(app, browser: :chrome, options: options)
end
Capybara.javascript_driver = :chrome_headless
# Setup rspec
RSpec.configure do |config|
config.before(:each, type: :system) do
driven_by :rack_test
end
config.before(:each, type: :system, js: true) do
driven_by :chrome_headless
end
end
特に、「-disable-dev-shm-usage」は、dockerの限られたリソースの問題を解決するので、忘れてはいけません: https://github.com/GoogleChrome/puppeteer/issues/1834
編集:上記のDockerfileに変更を加えていない