Difference between revisions of "Creating your first ta project"

From Test Automation Wiki
Jump to: navigation, search
Line 1: Line 1:
Lipsum..
+
 
 +
 
 +
 
 +
=== Folder structure ===
 +
<source>
 +
01.─┬/config/
 +
02. ├─> config.yml
 +
03. └─> cucumber.yml
 +
04.─┬/features/
 +
05. ├─┬/step_definitions/
 +
06. │ ├─> interaction_steps.rb
 +
07. │ └─> validation_steps.rb
 +
08. ├─┬/support/
 +
09. │ └─> env.rb
 +
10. ├─> example.feature
 +
11. └─> mobile.feature
 +
12.──/log/
 +
13.──/results/
 +
14.──/sceenshots/
 +
</source>
  
  
  
 
[[Category:Web Test Automation Tutorial|2]]
 
[[Category:Web Test Automation Tutorial|2]]

Revision as of 14:53, 21 June 2016


Folder structure

01.─┬/config/
02. ├─> config.yml
03. └─> cucumber.yml
04.─┬/features/
05. ├─┬/step_definitions/
06. │ ├─> interaction_steps.rb
07. │ └─> validation_steps.rb
08. ├─┬/support/
09. │ └─> env.rb
10. ├─> example.feature
11. └─> mobile.feature
12.──/log/
13.──/results/
14.──/sceenshots/