Implement extension registration from an extension.json file
[mediawiki.git] / tests / browser / features / support / pages / main_page.rb
blob7d96c2b2ad9606a740f3446c9005a5631a9f3660
1 class MainPage
2   include PageObject
4   include URL
5   page_url URL.url("")
7   a(:edit_link, href: /action=edit/)
8   li(:help_link, id: "n-help")
9   div(:page_content, id: "content")
10   li(:page_information_link, id: "t-info")
11   li(:permanent_link_link, id: "t-permalink")
12   a(:printable_version_link, href: /printable=yes/)
13   li(:random_page_link, id: "n-randompage")
14   li(:recent_changes_link, id: "n-recentchanges")
15   li(:related_changes_link, id: "t-recentchangeslinked")
16   li(:special_pages_link, id: "t-specialpages")
17   a(:view_history_link, href: /action=history/)
18   li(:what_links_here_link, id: "t-whatlinkshere")
19 end