2019-05-20 18:51:59 +02:00
|
|
|
import { Selector } from 'testcafe';
|
|
|
|
import testcafeconfig from './testcafeconfig';
|
|
|
|
import Page from "./page-model";
|
|
|
|
|
2019-05-21 17:00:46 +02:00
|
|
|
fixture`Use navigation`
|
|
|
|
.page`${testcafeconfig.url}`;
|
|
|
|
|
2019-05-20 18:51:59 +02:00
|
|
|
const page = new Page();
|
|
|
|
|
|
|
|
test('Navigate', async t => {
|
|
|
|
await page.openNav();
|
2019-06-22 15:13:23 +02:00
|
|
|
await t
|
|
|
|
.click('a[href="/albums"]')
|
|
|
|
.expect(Selector('div.p-page-albums').exists, {timeout: 5000}).ok();
|
|
|
|
await page.openNav();
|
2019-05-20 18:51:59 +02:00
|
|
|
await t
|
|
|
|
.click('a[href="/places"]')
|
2020-01-20 12:36:12 +01:00
|
|
|
.expect(Selector('#map').exists).ok();
|
2019-05-20 18:51:59 +02:00
|
|
|
await page.openNav();
|
|
|
|
await t
|
2019-05-28 03:49:44 +02:00
|
|
|
.click('a[href="/labels"]')
|
2019-06-22 15:13:23 +02:00
|
|
|
.expect(Selector('div.p-page-labels').exists, {timeout: 5000}).ok();
|
2019-05-20 18:51:59 +02:00
|
|
|
});
|