29 lines
984 B
Ruby
29 lines
984 B
Ruby
When /^I click on "([^"]*)" aspect edit icon$/ do |aspect_name|
|
|
When %{I hover over the "ul.sub_nav > li:contains('#{aspect_name}')"}
|
|
within("#aspect_nav") do
|
|
find(:xpath, "//a[@rel='facebox'][.//img[@title='Edit #{aspect_name}']]").click
|
|
end
|
|
end
|
|
|
|
When /^I select only "([^"]*)" aspect$/ do |aspect_name|
|
|
within('#aspect_nav') do
|
|
click_link 'Select all' if has_link? 'Select all'
|
|
click_link 'Deselect all'
|
|
click_link aspect_name
|
|
end
|
|
And %{I wait for the ajax to finish}
|
|
end
|
|
|
|
When /^I should see "([^"]*)" aspect selected$/ do |aspect_name|
|
|
aspect = @me.aspects.where(:name => aspect_name).first
|
|
within("#aspect_nav") do
|
|
page.has_css?("li.active[data-aspect_id='#{aspect.id}']").should be_true
|
|
end
|
|
end
|
|
|
|
When /^I should see "([^"]*)" aspect unselected$/ do |aspect_name|
|
|
aspect = @me.aspects.where(:name => aspect_name).first
|
|
within("#aspect_nav") do
|
|
page.has_css?("li[data-aspect_id='#{aspect.id}']:not(.active)").should be_true
|
|
end
|
|
end
|