mirror of
https://gerrit.wikimedia.org/r/mediawiki/extensions/Popups
synced 2024-11-18 21:05:57 +00:00
12 lines
358 B
Ruby
12 lines
358 B
Ruby
|
# Standard article page
|
||
|
class ArticlePage
|
||
|
include PageObject
|
||
|
|
||
|
page_url '<%= URI.encode(params[:article_name]) %>'\
|
||
|
'<%= URI.encode(params[:query_string]) if params[:query_string] %>'\
|
||
|
'<%= params[:hash] %>'
|
||
|
div(:page_header, css: '#mw-head')
|
||
|
a(:first_valid_link, css: 'ul a', index: 0)
|
||
|
div(:hovercard, css: '.mwe-popups')
|
||
|
end
|