Step 1: Creating submission scenarios that use new steps

Write new submission scenarios that contain new step methods.

The following text is an example of a new BA_Submission_Agent_Ext.feature file. It contains several new step methods, including "Given a business auto policy".

@business_auto @submission
Feature: Submission

  As an agent, I want to create a submission for a new policy, quote the submission so that I can give the policyholder
  a quote for their new policy request.

  Background:
    Given I am a user with the "Producer" role
    And an account of type "Person":
      | First name | Jack  |
      | Last name  | Clark |

  Scenario: Issue a quoted Business Auto submission
    Given a Business Auto submission
    And the job status is "Quoted"
    When I issue the policy
    Then the submission status should be "Bound"

For more information on creating scenarios, see Writing scenarios.