2017-06-09 19:12:53 +00:00
|
|
|
Given(/^I click continue$/) do
|
|
|
|
on(ArticlePage).continue_button_element.when_present.click
|
|
|
|
end
|
|
|
|
|
|
|
|
Given(/^I click submit$/) do
|
|
|
|
on(ArticlePage) do |page|
|
|
|
|
page.spinner_loading_element.when_not_present
|
|
|
|
page.submit_button_element.when_present.click
|
|
|
|
end
|
|
|
|
end
|
|
|
|
|
|
|
|
When(/^I click on the history link in the last modified bar$/) do
|
|
|
|
on(ArticlePage).last_modified_bar_history_link_element.when_present.click
|
|
|
|
expect(on(SpecialHistoryPage).side_list_element.when_present(10)).to be_visible
|
|
|
|
end
|
|
|
|
|
|
|
|
When(/^I click on the page$/) do
|
2019-07-18 20:16:04 +00:00
|
|
|
on(ArticlePage).transparent_shield_element.when_visible(10).click
|
2017-06-09 19:12:53 +00:00
|
|
|
end
|
|
|
|
|
|
|
|
When(/^I click the unwatch star$/) do
|
|
|
|
on(ArticlePage).unwatch_star_element.when_present.click
|
|
|
|
end
|
|
|
|
|
|
|
|
When(/^I click the watch star$/) do
|
|
|
|
on(ArticlePage).watch_star_element.when_present.click
|
|
|
|
end
|
|
|
|
|
|
|
|
Then(/^I should see a toast notification$/) do
|
2018-11-15 22:31:22 +00:00
|
|
|
expect(on(ArticlePage).notification_area_element.when_present).to be_visible
|
2017-06-09 19:12:53 +00:00
|
|
|
end
|
|
|
|
|
2017-07-27 20:36:04 +00:00
|
|
|
Then(/^I should see a toast with message "(.+)"$/) do |msg|
|
2017-08-01 18:47:07 +00:00
|
|
|
on(ArticlePage) do |page|
|
2017-08-08 16:56:04 +00:00
|
|
|
page.wait_until_rl_module_ready('mediawiki.notification')
|
2017-08-01 18:47:07 +00:00
|
|
|
expect(page.toast_element.when_present.text).to match msg
|
|
|
|
end
|
2017-07-27 20:36:04 +00:00
|
|
|
end
|
|
|
|
|
2017-06-09 19:12:53 +00:00
|
|
|
Then /^I should see a drawer with message "(.+)"$/ do |text|
|
|
|
|
expect(on(ArticlePage).drawer_element.when_present.text).to match text
|
|
|
|
end
|
|
|
|
|
|
|
|
Then(/^the text of the first heading should be "(.*)"$/) do |title|
|
|
|
|
on(ArticlePage) do |page|
|
|
|
|
page.wait_until do
|
|
|
|
page.first_heading_element.when_present.text.include? title
|
|
|
|
end
|
|
|
|
expect(page.first_heading_element.when_present.text).to match title
|
|
|
|
end
|
|
|
|
end
|
|
|
|
|
|
|
|
Then /^the watch star should be selected$/ do
|
|
|
|
expect(on(ArticlePage).unwatch_star_element).to be_visible
|
|
|
|
end
|
|
|
|
|
|
|
|
Then /^the watch star should not be selected$/ do
|
|
|
|
expect(on(ArticlePage).watch_star_element).to be_visible
|
|
|
|
end
|