Skip to content

Latest commit

 

History

History
32 lines (21 loc) · 998 Bytes

readme.md

File metadata and controls

32 lines (21 loc) · 998 Bytes

== UI Test Project Layout

  • features/*.feature : cucumber features
  • features/step_definitions/web_steps.rb : generic steps that apply to all features
  • features/step_definintions/[feature]_steps.rb : steps specific to an individual feature file
  • support/env.rb : configures the driver and the hostname to use

== Prerequisites

== Configuration

  • bundle install

== Running Features

  • To run all features: rake
  • To run a specific feature: cucumber features/search.feature

== Debugging

  • To debug a specific step call save_and_open_page within the step

== Additional Documentation