mirror of
https://gerrit.wikimedia.org/r/mediawiki/extensions/Math
synced 2024-12-04 20:18:35 +00:00
61abb07b5d
Bug: T137711 Change-Id: I9aeb9d4c38bff31bdc2f248b74b6797a4e518f3d
14 lines
298 B
Ruby
14 lines
298 B
Ruby
class EditPage
|
|
include PageObject
|
|
|
|
page_url 'Special:Random?action=edit'
|
|
|
|
text_area(:article_text, id: 'wpTextbox1')
|
|
button(:preview, id: 'wpPreview')
|
|
span(:start_editing, text: 'Start editing')
|
|
|
|
def math_image_element
|
|
browser.img(class: 'mwe-math-fallback-image-inline')
|
|
end
|
|
end
|