diff options
author | Jacob Schatz <jschatz@gitlab.com> | 2016-04-20 19:18:32 +0000 |
---|---|---|
committer | Jacob Schatz <jschatz@gitlab.com> | 2016-04-20 19:18:32 +0000 |
commit | 692c35e6f499598d0c6f91eb83ca8837ca93e07f (patch) | |
tree | c8af3c1ea77c3845957e34f238950a379339cd01 /features/steps/project | |
parent | 9a60887199ef1087285ea6997f2eb117f87d0a03 (diff) | |
parent | 490f77318b8d54be30558c3ef8914335ed83549b (diff) | |
download | gitlab-ce-692c35e6f499598d0c6f91eb83ca8837ca93e07f.tar.gz |
Merge branch 'multi-filter-labels' into 'master'
Mutliple label filter
Fixes #989
See merge request !3438
Diffstat (limited to 'features/steps/project')
-rw-r--r-- | features/steps/project/issues/filter_labels.rb | 4 |
1 files changed, 4 insertions, 0 deletions
diff --git a/features/steps/project/issues/filter_labels.rb b/features/steps/project/issues/filter_labels.rb index 6d50501a722..d82c6856918 100644 --- a/features/steps/project/issues/filter_labels.rb +++ b/features/steps/project/issues/filter_labels.rb @@ -32,6 +32,10 @@ class Spinach::Features::ProjectIssuesFilterLabels < Spinach::FeatureSteps page.find('.js-label-select').click sleep 0.5 execute_script("$('.dropdown-menu-labels li:contains(\"bug\") a').click()") + end + + step 'I click "dropdown close button"' do + page.first('.labels-filter .dropdown-title .dropdown-menu-close-icon').click sleep 2 end |