mirror of
https://github.com/zonemaster/zonemaster-gui.git
synced 2026-04-03 17:31:21 +02:00
18 lines
452 B
TypeScript
18 lines
452 B
TypeScript
import { by, browser, element } from 'protractor';
|
|
|
|
import { Utils } from './utils/app.utils';
|
|
|
|
describe('Zonemaster test FR04 - Valid title for the Web interface', () => {
|
|
const utils = new Utils();
|
|
beforeAll(() => {
|
|
utils.goToHome();
|
|
utils.setLang('en');
|
|
});
|
|
|
|
it('should have right title - Zonemaster', () => {
|
|
utils.getPageTitle()
|
|
.then((title: string) => {
|
|
expect(title).toEqual('Zonemaster');
|
|
});
|
|
});
|
|
});
|