mirror of
https://gerrit.wikimedia.org/r/mediawiki/skins/MinervaNeue
synced 2024-11-17 19:21:39 +00:00
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
|
||
|
};
|