mediawiki-skins-MinervaNeue/tests/selenium/features/step_definitions/search_steps.js
Edward Tadros c8ce9608c0 Selenium: Update WebdriverIO to version 5
Bug: T255447
Change-Id: I4cdde3070a6dc4e742ea37a78a17dfd556103dd6
2020-06-30 08:27:05 -07:00

41 lines
989 B
JavaScript

'use strict';
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
.$( 'input' );
input.waitForExist();
input.setValue( term );
};
const iSeeSearchResults = () => {
ArticlePageWithOverlay.overlay_element
.$( '.page-list' ).waitForExist( 5000 );
};
const iClickASearchWatchstar = () => {
iSeeSearchResults();
const watchThisArticle = ArticlePageWithOverlay.overlay_element
.$( '.watch-this-article' );
watchThisArticle.waitForExist( 5000 );
watchThisArticle.click();
};
const iSeeTheSearchOverlay = () => {
iSeeAnOverlay();
};
module.exports = {
iClickTheSearchIcon,
iTypeIntoTheSearchBox,
iClickASearchWatchstar,
iSeeTheSearchOverlay
};