naveens33_
3 years agoContributor
How to skip the BDD test
How to skip the BDD test.
I have 2 scenarios below. I want Scenario2 should be Skipped.
Feature: Check the User Profile settings
Check all the ways to open the settings form.
Check the edit features.
Scenario: Scenario1
Given The tested app is running
And The Login form is on screen
When I enter JohnSmith in the Name edit box
And I enter no password
And I click Sign In
Then I should see 'Hi, John Smith' in the toolbar
Scenario: Scenario2
Given The tested app is running
And The Login form is on screen
When I enter JohnSmith in the Name edit box
And I enter no password
And I click Sign In
Then I should see 'Hi, John Smith' in the toolbar
Can anyone please help with this.