2019-05-21 17:00:46 +02:00
|
|
|
import { Selector } from 'testcafe';
|
|
|
|
import testcafeconfig from './testcafeconfig';
|
|
|
|
import Page from "./page-model";
|
|
|
|
|
2019-06-27 17:02:02 +02:00
|
|
|
fixture`Test clipboard`
|
2019-05-21 17:00:46 +02:00
|
|
|
.page`${testcafeconfig.url}`;
|
|
|
|
|
|
|
|
const page = new Page();
|
|
|
|
|
2019-06-27 17:02:02 +02:00
|
|
|
test('Test selecting photos and clear clipboard', async t => {
|
2019-12-10 19:56:32 +01:00
|
|
|
const clipboardCount = await Selector('span.t-clipboard-count');
|
2019-06-20 16:17:43 +02:00
|
|
|
|
2019-07-02 18:16:55 +02:00
|
|
|
await page.selectPhoto(0);
|
|
|
|
await page.selectPhoto(2);
|
2019-06-20 16:17:43 +02:00
|
|
|
|
|
|
|
await t
|
2019-12-10 19:56:32 +01:00
|
|
|
.expect(clipboardCount.textContent).eql("2");
|
2019-07-02 18:16:55 +02:00
|
|
|
await page.unselectPhoto(0);
|
2019-06-20 16:17:43 +02:00
|
|
|
|
|
|
|
await t
|
2019-12-10 19:56:32 +01:00
|
|
|
.expect(clipboardCount.textContent).eql("1")
|
2019-06-20 16:17:43 +02:00
|
|
|
|
2019-05-21 17:00:46 +02:00
|
|
|
await page.openNav();
|
|
|
|
await t
|
2019-05-28 03:49:44 +02:00
|
|
|
.click('a[href="/labels"]')
|
2019-06-09 04:37:02 +02:00
|
|
|
.expect(Selector('main .p-page-labels').exists, {timeout: 5000}).ok();
|
2019-05-21 17:00:46 +02:00
|
|
|
await page.openNav();
|
|
|
|
await t
|
|
|
|
.click('a[href="/photos"]')
|
2019-12-10 19:56:32 +01:00
|
|
|
.expect(clipboardCount.textContent).eql("1")
|
2019-06-27 17:02:02 +02:00
|
|
|
.click(Selector('div.p-photo-clipboard'))
|
|
|
|
.click(Selector('.p-photo-clipboard-clear'), {timeout: 15000});
|
2019-12-10 19:56:32 +01:00
|
|
|
|
|
|
|
await t.expect(Selector('#t-clipboard').exists).eql(false);
|
2019-05-21 17:59:12 +02:00
|
|
|
});
|