mirror of
https://gerrit.wikimedia.org/r/mediawiki/extensions/Echo
synced 2024-12-02 03:16:49 +00:00
bb6eef198c
yippee ki yay! Tests basic functionality 1) presence of Echo button 2) behaviour of clicking Echo button Change-Id: I6334264e1ee73a59da1e7b0c3f18a1d43b565f3a
9 lines
268 B
Ruby
9 lines
268 B
Ruby
class ArticlePage
|
|
include PageObject
|
|
include URL
|
|
page_url URL.url("<%=params[:article_name]%><%=params[:hash]%>")
|
|
li("flyout_link_container", css: "#pt-notifications")
|
|
a("flyout_link", css: "#pt-notifications a")
|
|
div("flyout", css: ".mw-echo-overlay")
|
|
end
|