mirror of
https://gerrit.wikimedia.org/r/mediawiki/extensions/RevisionSlider
synced 2024-12-12 07:25:13 +00:00
50fdb7b1c9
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
23 lines
682 B
Ruby
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 |