Implement extension registration from an extension.json file
[mediawiki.git] / tests / browser / features / step_definitions / main_page_links_steps.rb
blobc76fd2ba7b4323cceab93e1bdd95eb1777b80116
1 Given(/^I open the main wiki URL$/) do
2   visit(MainPage)
3 end
5 Then(/^I should see a link for View History$/) do
6   on(MainPage).view_history_link_element.should be_visible
7 end
9 Then(/^I should see a link for Edit$/) do
10   on(MainPage).edit_link_element.should be_visible
11 end
13 Then(/^I should see a link for Recent changes$/) do
14   on(MainPage).recent_changes_link_element.should be_visible
15 end
17 Then(/^I should see a link for Random page$/) do
18   on(MainPage).random_page_link_element.should be_visible
19 end
21 Then(/^I should see a link for Help$/) do
22   on(MainPage).help_link_element.should be_visible
23 end
25 Then(/^I should see a link for What links here$/) do
26   on(MainPage).what_links_here_link_element.should be_visible
27 end
29 Then(/^I should see a link for Related changes$/) do
30   on(MainPage).related_changes_link_element.should be_visible
31 end
33 Then(/^I should see a link for Special pages$/) do
34   on(MainPage).special_pages_link_element.should be_visible
35 end
37 Then(/^I should see a link for Printable version$/) do
38   on(MainPage).printable_version_link_element.should be_visible
39 end
41 Then(/^I should see a link for Permanent link$/) do
42   on(MainPage).permanent_link_link_element.should be_visible
43 end
45 Then(/^I should see a link for Page information$/) do
46   on(MainPage).page_information_link_element.should be_visible
47 end