Skip to content

drtran/aep-specflow

Folders and files

NameName
Last commit message
Last commit date

Latest commit

 

History

5 Commits
 
 
 
 
 
 
 
 
 
 
 
 
 
 

Repository files navigation

Project notes - CSD 2015.

I download markdown tools for VS2013 here

Activities:

  • Create a new solution under VS2013.

  • Create a Class Library C# project titled Module1

  • Need to add the following references:

      NUnit
      Selenium Driver
    
  • I update file AssemblyInfo.cs file to include the lines below because WatiN requires a single threaded:

      using NUnit.Framework;
      [assembly:RequiresSTA]
      Use NuGet to install SpecFlow.NUnit
    
  • I create a feature file: AdoptMultiplePuppies.feature:

      Feature: Adopting multiple puppies
        In order to have the puppies chew my furniture
        As a pet owner,
        I want to adopt two puppies
      
      @Wip
        Scenario: Adopting multiple puppies from the website.
          Given that I am at the website "http://localhost:3000"
          When I adopt for these pets, 
      	  | petName    |
            | Brook      |
            | Hanna      |
            | Maggie Mae |
          And I pay for the adoption using this type of payment:
            | paymentType | orderName   | orderAddress    | orderEmail         |
            | Check       | Mr. Baloney | 123 Main Street | baloney@sleezy.com |
          Then I should be back at the main page with a thank you note, "Thank you for adopting a puppy!" 
    
  • I generate Step Definitions

About

SpecFlow examples

Resources

Stars

Watchers

Forks

Releases

No releases published

Packages

No packages published