Skip to content

Commit

Permalink
Update steps_jp.md
Browse files Browse the repository at this point in the history
  • Loading branch information
kodai-t authored May 30, 2024
1 parent f15a3a1 commit 89ea84a
Showing 1 changed file with 5 additions and 5 deletions.
10 changes: 5 additions & 5 deletions steps_jp.md
Original file line number Diff line number Diff line change
Expand Up @@ -292,18 +292,18 @@ chrome://extensions/ を開いて右上のDeveloper modeをオンにして、RKG
- 今後、PRが大きくなりそうだったらPRを2回以上に分けることを検討しましょう
### ステップ8: テスト(system spec)を書こう
- First make sure that these gems are exist in Gemfile
- 最初に以下のgemがGemfileがあることを確認しましょう
```
group :test do
gem 'capybara', '>= 2.15'
gem 'selenium-webdriver'
end
```
**Note**: Remove the `webdrivers` gem from your Gemfile. If `webdrivers` is present, it will attempt to find Chrome in your application’s container.
As Chrome isn’t installed in the Dockerfile, the spec will fail.
**Note**: Gemfile から webdrivers gem を削除しましょう。 もし、webdriversが存在するとアプリケーションのコンテナでChromeを探そうとします。
ChromeはDockerfileにインストールされていないのでspecは失敗します。
- If you are using Docker, before start testing we need to register a new driver with Capybara that is configured to use the Selenium container, add the below codes to
`spec/rails_helper.rb`
- もしDockerを使用している場合はSeleniumコンテナを使うために設定された新しいドライバをCapybaraに登録する必要があります。以下のコードを`spec/rails_helper.rb`に追加しましょう。
```
Capybara.register_driver :remote_chrome do |app|
hub_url = 'https://chrome:4444/wd/hub'
Expand Down

0 comments on commit 89ea84a

Please sign in to comment.