mirror of
https://github.com/IRPTeam/IRP.git
synced 2026-04-24 03:53:25 +02:00
6705f19af2
* Create DashBoardDemo.feature * Update expected results in movement and attribute feature tests * Add scenario for disabling 'Use dashboard' option
78 lines
2.5 KiB
Gherkin
78 lines
2.5 KiB
Gherkin
#language: en
|
|
@tree
|
|
@Positive
|
|
@SettingsCatalogs
|
|
|
|
Feature: filling in data base title
|
|
|
|
As an owner
|
|
I want to fill out items information
|
|
To further use it when reflecting in the program of business processes
|
|
|
|
Background:
|
|
Given I open new TestClient session or connect the existing one
|
|
|
|
|
|
|
|
Scenario: _0050 Data base title
|
|
When set True value to the constant
|
|
When set True value to the constant Use job queue for external functions
|
|
When set False value to the constant Use Use dashboard
|
|
* Filling in title
|
|
Given I open hyperlink "e1cib/list/Catalog.DataBaseStatus"
|
|
And I go to line in "List" table
|
|
| 'is Product server' |
|
|
| 'Yes' |
|
|
And I select current line in "List" table
|
|
And I input "Test IRP" text in the field named "Description_en"
|
|
And I click "Save and close" button
|
|
* Check Data base title
|
|
And I close all client application windows
|
|
And I close TestClient session
|
|
Given I open new TestClient session or connect the existing one
|
|
And I delete "$$$$DataBaseTitle0050$$$$" variable
|
|
And I save the window as "$$$$DataBaseTitle0050$$$$"
|
|
And I display "$$$$DataBaseTitle0050$$$$" variable value
|
|
Then "$$$$DataBaseTitle0050$$$$" variable is equal to "Test IRP"
|
|
And I close all client application windows
|
|
|
|
Scenario: _0051 external function folder
|
|
And I close all client application windows
|
|
* Open external function catalog
|
|
Given I open hyperlink "e1cib/list/Catalog.ExternalFunctions"
|
|
And I click the button named "FormCreateFolder"
|
|
And I input "Test" text in the field named "Description"
|
|
And I click "Save and close" button
|
|
* Check creation
|
|
And "List" table contains lines
|
|
| 'Description' |
|
|
| 'Test' |
|
|
And I close all client application windows
|
|
|
|
Scenario: _0052 form settings for Jobs
|
|
And I close all client application windows
|
|
* Open external function catalog
|
|
Given I open hyperlink "e1cib/list/Catalog.ExternalFunctions"
|
|
And I click the button named "FormCreate"
|
|
And I input "Test" text in the field named "Description"
|
|
And I set checkbox "Use for set description"
|
|
And I set checkbox "Use scheduler"
|
|
And I move to "Scheduler" tab
|
|
And I click Choice button of the field named "User"
|
|
And I go to line in "List" table
|
|
| 'Login' |
|
|
| 'CI' |
|
|
And I select current line in "List" table
|
|
And I click "Save" button
|
|
And I click "Save and close" button
|
|
And I wait "Error Eval code (External function)" window closing in 10 seconds
|
|
* Check creation
|
|
And "List" table contains lines
|
|
| 'Description' |
|
|
| 'Test' |
|
|
And I close all client application windows
|
|
|
|
|
|
|
|
|
|
|