mediawiki-extensions-Revisi.../tests/browser/features/support/step_definitions/help.rb
addshore 50fdb7b1c9 Timeline browser tests
This adds tests for navigating the timeline using the back
and forward buttons.
It also makes sure that the buttons are disabled / enabled
at the correct times.

Bug: T133278
Change-Id: I9834dd3d3bf107557b15fdd105a946902d53b8f2
2016-07-05 11:44:23 +02:00

23 lines
682 B
Ruby

Given(/^I have closed the help dialog at the start$/) do
on(DiffPage).revisionslider_help_close_start_element.click
end
Given(/^I have closed the help dialog at the end/) do
on(DiffPage).revisionslider_help_close_end_element.click
end
Given(/^I have moved to the next step$/) do
on(DiffPage).revisionslider_help_next_element.click
end
Given(/^The help dialog is hidden$/) do
on(DiffPage).wait_for_help_dialog_to_hide
end
Then(/^The help dialog should be visible/) do
on(DiffPage).revisionslider_help_dialog_element.visible?.should be_truthy
end
Then(/^The help dialog should not be present/) do
expect{ on(DiffPage).revisionslider_help_dialog }.to raise_error
end