Added more cucumber tests (wip)

This commit is contained in:
vjrj 2018-02-01 17:45:04 +01:00
parent fb3511b264
commit 236d06308d
6 changed files with 69 additions and 11 deletions

View file

@ -5,13 +5,14 @@
this.Before(() => {
// global.expect = require('@xolvio/jasmine-expect').expect;
/* Not used
if (!this.initMyCmds) {
client.addCommand('waitForClickable', function elementClickable(selector, timeout) {
this.waitForVisible(selector, timeout);
this.waitForEnabled(selector, timeout);
});
this.initMyCmds = true;
}
} */
// server.call('fixtures/reset');
// server.call('emailStub/reset');

View file

@ -0,0 +1,43 @@
/* global module expect require process client */
const { goHome } = require('./helper.js');
// Does no works with arrow func
module.exports = function () {
let pages;
this.Given(/^a list of page ids and contents$/, (table, callback) => {
pages = table.raw();
callback();
});
function processPage(i) {
const id = `#${pages[i][0]}`;
const content = pages[i][1];
client.waitForVisible(id, 10000);
client.click(id);
client.waitForText('#react-root', content);
}
this.Given(/^a list of non visible pages ids and contents$/, (table, callback) => {
pages = table.raw();
callback();
});
this.Then(/^I check that all non visible pages works properly$/, (callback) => {
for (let i = 0; i < pages.length; i += 1) {
client.url(`${process.env.ROOT_URL}/${pages[i][0]}`);
const content = pages[i][1];
client.waitForText('#react-root', content);
}
callback();
});
this.Then(/^I check that all pages works properly$/, (callback) => {
goHome(client);
for (let i = 0; i < pages.length; i += 1) {
processPage(i);
}
callback();
});
};