https://github.com/minimum2scp/e2e-test-example-01
rspec + turnip + capybara + selenium-webdriver example
https://github.com/minimum2scp/e2e-test-example-01
Last synced: 3 months ago
JSON representation
rspec + turnip + capybara + selenium-webdriver example
- Host: GitHub
- URL: https://github.com/minimum2scp/e2e-test-example-01
- Owner: minimum2scp
- License: mit
- Created: 2018-06-27T17:27:45.000Z (almost 7 years ago)
- Default Branch: master
- Last Pushed: 2022-10-19T16:00:05.000Z (over 2 years ago)
- Last Synced: 2025-01-07T04:42:53.305Z (5 months ago)
- Language: Ruby
- Size: 17.6 KB
- Stars: 0
- Watchers: 2
- Forks: 0
- Open Issues: 5
-
Metadata Files:
- Readme: README.md
- License: LICENSE
Awesome Lists containing this project
README
# e2e-test-example-01
rspec + turnip + capybara + selenium-webdriver example## Requirements
* [ruby](https://www.ruby-lang.org)
* [bundler](https://bundler.io/)
* [geckodriver](https://github.com/mozilla/geckodriver) + [firefox](https://www.mozilla.org/firefox/)
or
[chromedriver](http://chromedriver.chromium.org/) + [chrome](https://www.google.com/chrome/index.html)### Run spec
```shell
bundle install --path=vendor/bundle
bundle exec rake
```## Links
* [rspec](https://github.com/rspec/rspec)
* [turnip](https://github.com/jnicklas/turnip)
* [capybara](https://github.com/teamcapybara/capybara)
* [selenium-webdriver](https://github.com/SeleniumHQ/selenium)
* [Gherkin Reference](https://docs.cucumber.io/gherkin/reference/)
* [エンドツーエンドテストの自動化は Cucumber から Turnip へ](https://magazine.rubyist.net/articles/0042/0042-FromCucumberToTurnip.html)