mirror of
https://gerrit.wikimedia.org/r/mediawiki/skins/MinervaNeue
synced 2024-11-15 10:27:31 +00:00
544b0e70c9
Bug: T219920 Change-Id: I9f651d73cae8d6494ffa585ac3cbd791686b926a
39 lines
992 B
JavaScript
39 lines
992 B
JavaScript
const { iSeeAnOverlay } = require( './common_steps' );
|
|
const { ArticlePage } = require( '../support/world.js' );
|
|
const ArticlePageWithOverlay = require( '../support/pages/article_page_with_overlay' );
|
|
|
|
const iClickTheSearchIcon = () => {
|
|
ArticlePage.search_icon_element.click();
|
|
};
|
|
|
|
const iTypeIntoTheSearchBox = ( term ) => {
|
|
const input = ArticlePageWithOverlay.overlay_element
|
|
.element( 'input' );
|
|
input.waitForExist();
|
|
input.setValue( term );
|
|
};
|
|
|
|
const iSeeSearchResults = () => {
|
|
ArticlePageWithOverlay.overlay_element
|
|
.element( '.page-list' ).waitForExist( 5000 );
|
|
};
|
|
|
|
const iClickASearchWatchstar = () => {
|
|
iSeeSearchResults();
|
|
const watchThisArticle = ArticlePageWithOverlay.overlay_element
|
|
.element( '.watch-this-article' );
|
|
watchThisArticle.waitForExist( 5000 );
|
|
watchThisArticle.click();
|
|
};
|
|
|
|
const iSeeTheSearchOverlay = () => {
|
|
iSeeAnOverlay();
|
|
};
|
|
|
|
module.exports = {
|
|
iClickTheSearchIcon,
|
|
iTypeIntoTheSearchBox,
|
|
iClickASearchWatchstar,
|
|
iSeeTheSearchOverlay
|
|
};
|