2020-06-02 21:21:44 +00:00
|
|
|
'use strict';
|
|
|
|
|
2019-04-08 23:45:11 +00:00
|
|
|
const {
|
|
|
|
pageExists, iShouldSeeAToastNotification,
|
|
|
|
iAmUsingMobileScreenResolution,
|
|
|
|
iAmUsingTheMobileSite,
|
|
|
|
iAmLoggedIntoTheMobileWebsite,
|
|
|
|
iAmOnPage
|
|
|
|
} = require( '../features/step_definitions/common_steps' ),
|
|
|
|
{
|
|
|
|
iClickTheSearchIcon,
|
|
|
|
iTypeIntoTheSearchBox,
|
|
|
|
iClickASearchWatchstar,
|
|
|
|
iSeeTheSearchOverlay
|
|
|
|
} = require( '../features/step_definitions/search_steps' );
|
|
|
|
|
|
|
|
// @test2.m.wikipedia.org @vagrant @login
|
2019-10-16 21:01:59 +00:00
|
|
|
describe( 'Search', () => {
|
2019-04-08 23:45:11 +00:00
|
|
|
it( 'Clicking on a watchstar toggles the watchstar', () => {
|
|
|
|
iAmUsingTheMobileSite();
|
|
|
|
pageExists( 'Selenium search test' );
|
|
|
|
iAmLoggedIntoTheMobileWebsite();
|
|
|
|
iAmOnPage( 'Main Page' );
|
|
|
|
iAmUsingMobileScreenResolution();
|
|
|
|
iClickTheSearchIcon();
|
|
|
|
iSeeTheSearchOverlay();
|
|
|
|
iTypeIntoTheSearchBox( 'Selenium search tes' );
|
2019-10-16 21:01:59 +00:00
|
|
|
// This pause statement is a temporary bandaid until we figure a bettery dynamic sync
|
|
|
|
browser.pause( 1000 );
|
2019-04-08 23:45:11 +00:00
|
|
|
iClickASearchWatchstar();
|
|
|
|
iShouldSeeAToastNotification();
|
|
|
|
} );
|
|
|
|
} );
|