2019-04-08 23:45:11 +00:00
|
|
|
const assert = require( 'assert' );
|
|
|
|
const { ArticlePage } = require( '../support/world.js' );
|
|
|
|
|
|
|
|
const theWatchstarShouldNotBeSelected = () => {
|
|
|
|
ArticlePage.watch_element.waitForExist();
|
|
|
|
assert.strictEqual( ArticlePage.watched_element.isExisting(), false,
|
|
|
|
'the watched element should not be present' );
|
|
|
|
};
|
|
|
|
|
|
|
|
const theWatchstarShouldBeSelected = () => {
|
|
|
|
ArticlePage.watched_element.waitForExist();
|
|
|
|
const watchstar = ArticlePage.watched_element;
|
|
|
|
assert.strictEqual( watchstar.isVisible(), true );
|
|
|
|
};
|
|
|
|
|
|
|
|
const iClickTheWatchstar = () => {
|
2019-09-18 23:07:21 +00:00
|
|
|
ArticlePage.waitUntilResourceLoaderModuleReady( 'skins.minerva.scripts' );
|
2019-04-08 23:45:11 +00:00
|
|
|
ArticlePage.watch_element.waitForExist();
|
|
|
|
ArticlePage.watch_element.click();
|
|
|
|
};
|
|
|
|
|
|
|
|
const iClickTheUnwatchStar = () => {
|
2019-09-18 23:07:21 +00:00
|
|
|
ArticlePage.waitUntilResourceLoaderModuleReady( 'skins.minerva.scripts' );
|
2019-10-16 21:01:59 +00:00
|
|
|
ArticlePage.watched_element.waitForExist();
|
|
|
|
ArticlePage.watched_element.click();
|
2019-04-08 23:45:11 +00:00
|
|
|
};
|
|
|
|
|
|
|
|
module.exports = {
|
|
|
|
theWatchstarShouldNotBeSelected, theWatchstarShouldBeSelected,
|
|
|
|
iClickTheWatchstar, iClickTheUnwatchStar };
|