diff options
author | Daniel Calviño Sánchez <danxuliu@gmail.com> | 2018-11-22 05:26:45 +0100 |
---|---|---|
committer | Daniel Calviño Sánchez <danxuliu@gmail.com> | 2018-11-22 05:26:45 +0100 |
commit | 1d1708688fa173567906f9b3d44c836ecbe3109d (patch) | |
tree | 9b89cb04964aa9e95999cebec28b2d14edc0b6c4 | |
parent | 57ffa9ea73f6be9b2b72dcac6bfa6d4c208e80e4 (diff) | |
download | nextcloud-server-1d1708688fa173567906f9b3d44c836ecbe3109d.tar.gz nextcloud-server-1d1708688fa173567906f9b3d44c836ecbe3109d.zip |
Add acceptance tests for showing again the input field for tags
Signed-off-by: Daniel Calviño Sánchez <danxuliu@gmail.com>
-rw-r--r-- | tests/acceptance/features/app-files-tags.feature | 11 |
1 files changed, 11 insertions, 0 deletions
diff --git a/tests/acceptance/features/app-files-tags.feature b/tests/acceptance/features/app-files-tags.feature index 3da24b7e1c2..d606c7a88a4 100644 --- a/tests/acceptance/features/app-files-tags.feature +++ b/tests/acceptance/features/app-files-tags.feature @@ -8,6 +8,17 @@ Feature: app-files-tags When I open the input field for tags in the details view Then I see that the input field for tags in the details view is shown + Scenario: show the input field for tags in the details view after closing and opening the details view again + Given I am logged in + And I open the details view for "welcome.txt" + And I see that the details view is open + And I close the details view + And I see that the details view is closed + And I open the details view for "welcome.txt" + And I see that the details view is open + When I open the input field for tags in the details view + Then I see that the input field for tags in the details view is shown + Scenario: show the input field for tags in the details view after the sharing tab has loaded Given I am logged in And I open the details view for "welcome.txt" |