diaspora/features/step_definitions/gallery_steps.rb
2017-09-17 19:29:15 +02:00

13 lines
341 B
Ruby

# frozen_string_literal: true
Then "I should see the photo lightbox" do
step %(I should see a "#blueimp-gallery" within "body")
end
Then "I should not see the photo lightbox" do
step %(I should not see a "#blueimp-gallery" within "body")
end
Then "I press the close lightbox link" do
find(:css, "#blueimp-gallery .close").click
end