-
Notifications
You must be signed in to change notification settings - Fork 1
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
- Loading branch information
Showing
1 changed file
with
24 additions
and
0 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,24 @@ | ||
Feature: Agent merge | ||
Background: | ||
Given an administrator user is logged in | ||
And two Agents A & B have been created | ||
Scenario: Merge two Agents by browsing | ||
Given the Agent A is opened in edit mode | ||
When the user clicks on 'Merge' | ||
And the user clicks on the dropdown in the merge dropdown form | ||
And the user clicks on 'Browse' in the merge dropdown form | ||
And the user filters by text with the Agent B name in the modal | ||
And the user selects the Agent B from the search results in the modal | ||
And the user clicks on 'Link' in the modal | ||
And the user clicks on 'Merge' in the merge dropdown form | ||
And the user clicks on 'Merge' in the modal | ||
Then the 'Agent(s)' merged message is displayed | ||
And the Agent B is deleted | ||
Scenario: Merge two Agents by searching | ||
Given the Agent A is opened in edit mode | ||
When the user clicks on 'Merge' | ||
And the user fills in and selects the Agent B in the merge dropdown form | ||
And the user clicks on 'Merge' in the merge dropdown form | ||
And the user clicks on 'Merge' in the modal | ||
Then the 'Agent(s)' merged message is displayed | ||
And the Agent B is deleted |