Welcome to mirror list, hosted at ThFree Co, Russian Federation.

gitlab.com/gitlab-org/gitlab-foss.git - Unnamed repository; edit this file 'description' to name the repository.
summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorAnnabel Dunstone <annabel.dunstone@gmail.com>2016-03-30 17:17:03 +0300
committerAnnabel Dunstone <annabel.dunstone@gmail.com>2016-03-30 20:28:57 +0300
commit51031a68f76b23b8936bf674d9bc65491b207ebe (patch)
tree348d53f7bc452e40dbe4b15b87374f2d9d992afa /features/steps/dashboard
parent673bb9ef1e9ca7c6a2fdd16bb75289181e076b08 (diff)
Make entire todo row clickable
Diffstat (limited to 'features/steps/dashboard')
-rw-r--r--features/steps/dashboard/todos.rb8
1 files changed, 8 insertions, 0 deletions
diff --git a/features/steps/dashboard/todos.rb b/features/steps/dashboard/todos.rb
index 963e4f21365..5c30d8e0c72 100644
--- a/features/steps/dashboard/todos.rb
+++ b/features/steps/dashboard/todos.rb
@@ -88,6 +88,14 @@ class Spinach::Features::DashboardTodos < Spinach::FeatureSteps
should_not_see_todo "John Doe assigned you issue ##{issue.iid}"
end
+ step 'I click on the todo' do
+ execute_script("$('.todo:nth-child(1)').click()")
+ end
+
+ step 'I should be directed to the corresponding page' do
+ page.should have_css('.identifier', text: 'Merge Request !1')
+ end
+
def should_see_todo(position, title, body, pending = true)
page.within(".todo:nth-child(#{position})") do
expect(page).to have_content title