mirror of
https://github.com/scinote-eln/scinote-web.git
synced 2024-12-26 17:51:13 +08:00
141 lines
5 KiB
Gherkin
141 lines
5 KiB
Gherkin
|
# feature/protocol. feature
|
||
|
Feature: Protocol
|
||
|
As a member of a project
|
||
|
want to add/ edit/ delete a tag
|
||
|
want to add/ edit task description
|
||
|
want to complete / uncomplete task
|
||
|
want to add / change due date
|
||
|
|
||
|
Background:
|
||
|
Given default screen size2
|
||
|
Given the "BioSistemika Process" team exists
|
||
|
Given the following users are registered
|
||
|
| name | email | password | password_confirmation |
|
||
|
| Karli Novak | nonadmin@myorg.com | mypassword1234 | mypassword1234 |
|
||
|
And "nonadmin@myorg.com" is in "BioSistemika Process" team as a "admin"
|
||
|
Given Demo project exists for the "BioSistemika Process" team
|
||
|
And "nonadmin@myorg.com" is signed in with "mypassword1234"
|
||
|
|
||
|
@javascript
|
||
|
Scenario: Successful add new tag to a task
|
||
|
Given task page of Experiment design
|
||
|
And I click on ".search-field" sign
|
||
|
And I click on ".edit-tags-link" sign
|
||
|
And I click on "New" tag button
|
||
|
And I click on Edit sign of "New tag" tag
|
||
|
And I fill in "Star" in "#tag_name" field
|
||
|
And I click on ".btn-colorselector" sign
|
||
|
And I select "#15369E" color
|
||
|
And I click on "save-tag-link" class button
|
||
|
Then I should see "Star"
|
||
|
And I click on "Close" button
|
||
|
Then I should see "Star"
|
||
|
|
||
|
@javascript
|
||
|
Scenario: Successful change a tag to a task
|
||
|
Given task page of Experiment design
|
||
|
And I click on ".search-field" sign
|
||
|
And I click on ".edit-tags-link" sign
|
||
|
And I click on "New" tag button
|
||
|
And I click on Edit sign of "New tag" tag
|
||
|
And I fill in "Sun" in "#tag_name" field
|
||
|
And I click on ".btn-colorselector" sign
|
||
|
And I select "#15369E" color
|
||
|
And I click on "save-tag-link" class button
|
||
|
And I click on Edit sign of "Dry lab" tag
|
||
|
And I fill in "Sky" in "#tag_name" field
|
||
|
And I click on ".btn-colorselector" sign
|
||
|
And I select "#DC143C" color
|
||
|
And I click on "save-tag-link" class button
|
||
|
And I should see "Sky"
|
||
|
And I click on "remove-tag-link" class button
|
||
|
And WAIT
|
||
|
And I click on "Close" button
|
||
|
And task page of Experiment design
|
||
|
Then I should see "Sky"
|
||
|
Then I should not see "Sun"
|
||
|
|
||
|
@javascript
|
||
|
Scenario: Successful add a tag to a task
|
||
|
Given task page of Experiment design
|
||
|
And I click on ".search-field" sign
|
||
|
And I click on ".edit-tags-link" sign
|
||
|
And I click on ".bootstrap-select" sign
|
||
|
And WAIT
|
||
|
And I click on "Plant" within dropdown menu
|
||
|
And I click on "Add" button
|
||
|
And WAIT
|
||
|
And I click on ".bootstrap-select" sign
|
||
|
And WAIT
|
||
|
And I click on "Bacteria" within dropdown menu
|
||
|
And I click on "Add" button
|
||
|
And I click on "Close" button
|
||
|
And task page of Experiment design
|
||
|
Then I should see "Plant"
|
||
|
Then I should see "Bacteria"
|
||
|
|
||
|
@javascript
|
||
|
Scenario: Successful delete a tag
|
||
|
Given task page of Experiment design
|
||
|
And I click on ".search-field" sign
|
||
|
And I click on ".edit-tags-link" sign
|
||
|
And I click on "delete-tag-link" class button
|
||
|
And I click on "Close" button
|
||
|
And task page of Experiment design
|
||
|
Then I should not see "Dry lab"
|
||
|
|
||
|
@javascript
|
||
|
Scenario: Successful add a due date
|
||
|
Given task page of Experiment design
|
||
|
And I click on "a.due-date-link:nth-child(2)" sign
|
||
|
And I click on "#my_module_due_date" sign
|
||
|
And I click on "Save" button
|
||
|
And WAIT
|
||
|
Then I should not see "Due date: not set"
|
||
|
|
||
|
@javascript
|
||
|
Scenario: Successful remove a due date
|
||
|
Given task page of Experiment design
|
||
|
And I click on "a.due-date-link:nth-child(2)" sign
|
||
|
And I click on "#my_module_due_date_clear" sign
|
||
|
And I click on "Save" button
|
||
|
And WAIT
|
||
|
Then I should see "not set"
|
||
|
And I make screenshot
|
||
|
|
||
|
@javascript
|
||
|
Scenario: Successful add description
|
||
|
Given task page of Experiment design
|
||
|
And I click on "#my_module_description_view" sign
|
||
|
And confirm with ENTER key to "#my_module_description_textarea_ifr"
|
||
|
And I fill in "I was on Triglav one summer" in "#my_module_description_textarea" rich text editor field
|
||
|
And I click on ".tinymce-save-button" sign
|
||
|
Then I should see "I was on Triglav one summer"
|
||
|
|
||
|
@javascript
|
||
|
Scenario: Successful change description
|
||
|
Given task page of Experiment design
|
||
|
And I click on "#my_module_description_view" sign
|
||
|
And confirm with ENTER key to "#my_module_description_textarea_ifr"
|
||
|
And I fill in "I was on Triglav one summer" in "#my_module_description_textarea" rich text editor field
|
||
|
And I click on ".tinymce-save-button" sign
|
||
|
And I click on "#my_module_description_view" sign
|
||
|
And confirm with ENTER key to "#my_module_description_textarea_ifr"
|
||
|
And I fill in "I will go to Krn one day." in "#my_module_description_textarea" rich text editor field
|
||
|
And I make screenshot
|
||
|
And I click on ".tinymce-save-button" sign
|
||
|
Then I should see "I will go to Krn one day."
|
||
|
|
||
|
@javascript
|
||
|
Scenario: Successful Complete task
|
||
|
Given task page of Experiment design
|
||
|
And I click on "Complete Task" button
|
||
|
Then I should see "Uncomplete Task"
|
||
|
|
||
|
@javascript
|
||
|
Scenario: Successful Uncomplete task
|
||
|
Given task page of Experiment design
|
||
|
And I click on "Complete Task" button
|
||
|
And I click on "Uncomplete Task" button
|
||
|
Then I should see "Complete Task"
|