This is my feature file -
Background: Common steps
Given User should be on profile dashboard page
Scenario Outline: Adding new key and values
**Then User clicks on Add New Key button**
Then User enters Key name, Key description, Value type and Add
value to key
Then User selects the required default value radio button
**Then User clicks on save button
Then User clicks on cancel button**
And User can see the newly added key-value on the profile
dashboard page
Examples: | KeyName | Desc | AddValue |
| TestKey | Test | Required |
Scenario: To verify if able to add same Key name
**Then User clicks on Add New Key button**
Then User enters existing key name and values
Then User selects the default value
**Then Now user clicks on Save button**
And User should see error message saying Key & values already
existing
Can I use the highlighted steps in background and how, please help me with this