mirror of
https://gerrit.wikimedia.org/r/mediawiki/skins/MinervaNeue
synced 2024-11-16 10:50:52 +00:00
11 lines
297 B
Ruby
11 lines
297 B
Ruby
|
Then(/^I should not see the table of contents$/) do
|
||
|
on(ArticlePage) do |page|
|
||
|
page.toc_element.when_not_visible
|
||
|
expect(page.toc_element).not_to be_visible
|
||
|
end
|
||
|
end
|
||
|
|
||
|
Then(/^I should see the table of contents$/) do
|
||
|
expect(on(ArticlePage).toc_element.when_present(10)).to be_visible
|
||
|
end
|