
エントリーの編集

エントリーの編集は全ユーザーに共通の機能です。
必ずガイドラインを一読の上ご利用ください。
ruby on rails - Capybara headless chrome in docker returns DevToolsActivePort file doesn't exist - Stack Overflow
記事へのコメント0件
- 注目コメント
- 新着コメント
このエントリーにコメントしてみましょう。
注目コメント算出アルゴリズムの一部にLINEヤフー株式会社の「建設的コメント順位付けモデルAPI」を使用しています

- バナー広告なし
- ミュート機能あり
- ダークモード搭載
関連記事
ruby on rails - Capybara headless chrome in docker returns DevToolsActivePort file doesn't exist - Stack Overflow
Im trying to configure system tests to work with headless chrome in selenium. I have the followin... Im trying to configure system tests to work with headless chrome in selenium. I have the following capybara configuration: # 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