-
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
21 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,21 @@ | ||
Feature: Agent Publish | ||
Background: | ||
Given an administrator user is logged in | ||
And an Agent has been created | ||
Scenario: Publish the Agent from toolbar | ||
Given the Agent is opened in edit mode | ||
When the user clicks on 'Publish All' | ||
And the user clicks on 'Publish All' in the modal | ||
Then the 'Agent' published message is displayed | ||
And the 'View Published' button is displayed | ||
Scenario: Publish the Agent record from the Publish checkbox in the Basic Information section | ||
Given the Agent is opened in edit mode | ||
When the user checks 'Publish' | ||
And the user clicks on 'Save' | ||
Then the 'Agent' updated message is displayed | ||
And the 'View Published' button is displayed | ||
Scenario: View a published Agent Record in the public interface | ||
Given the Agent is opened in edit mode | ||
And the Agent is published | ||
When the user clicks on 'View Published' | ||
Then the Agent opens on a new tab in the public interface |