mediawiki-extensions-Echo/tests/browser/features/step_definitions/flyout_steps.rb

16 lines
450 B
Ruby
Raw Normal View History

Then(/^I do not see the notification flyout button$/) do
on(ArticlePage).flyout_link_container_element.when_not_present
end
Then(/^I see the notification flyout button$/) do
on(ArticlePage).flyout_link_container_element.when_present
end
When(/^I click the notification flyout button$/) do
on(ArticlePage).flyout_link_element.when_present.click
end
Then(/^I see the notification flyout$/) do
on(ArticlePage).flyout_element.when_present
end