zonemaster-gui/e2e/GR28.e2e-spec.ts
Pierre-Aymeric Masse 143f0abeae first commit
2018-06-21 09:10:55 +02:00

19 lines
509 B
TypeScript

import { by, browser, element } from 'protractor';
import { Utils } from './pages/app.utils';
describe('Zonemaster test GR28 - Valid title for the Web interface', () => {
const homePage = new Utils();
describe('home page should work fine', () => {
beforeAll(() => {
homePage.goToHome();
});
it('should have right title - Zonemaster', () => {
homePage.getPageTitle()
.then((title: string) => {
expect(title).toEqual('Zonemaster');
});
});
});
});