mirror of
https://github.com/zonemaster/zonemaster-gui.git
synced 2026-04-03 17:31:21 +02:00
15 lines
527 B
TypeScript
15 lines
527 B
TypeScript
import { by, browser, element, ExpectedConditions } from 'protractor';
|
|
|
|
import { Utils } from './utils/app.utils';
|
|
|
|
describe('Zonemaster test FR08 - [Presence of a default fallback language - English]', () => {
|
|
const utils = new Utils();
|
|
beforeAll(async () => {
|
|
await utils.goToHome();
|
|
await utils.clearBrowserCache();
|
|
});
|
|
|
|
it('should have a fallback language - English', async () => {
|
|
await browser.wait(() => ExpectedConditions.presenceOf(element(by.xpath('//h1[.="Domain name"]'))), 5 * 1000);
|
|
});
|
|
});
|