How to use the @hetznercloud/protractor-test-helper.waitForWindowCount function in @hetznercloud/protractor-test-helper

To help you get started, we’ve selected a few @hetznercloud/protractor-test-helper examples, based on popular ways it is used in public projects.

Secure your code as it's written. Use Snyk Code to scan source code in minutes - no build needed - and fix issues immediately.

github hetznercloud / protractor-test-helper / test / async / waits.e2e-spec.ts View on Github external
it('waitForWindowCount should wait for window window number increase and decrease', async () => {
        const actionPage: ActionsPage = new ActionsPage();
        await openUrlInNewTab(actionPage.url);
        await waitForWindowCount(2);

        await expect(getWindowHandlesCount()).toBe(2);

        await closeWindow(1);
        await waitForWindowCount(1);

        await expect(getWindowHandlesCount()).toBe(1);
    });
});
github hetznercloud / protractor-test-helper / test / flow / waits.e2e-spec.ts View on Github external
it('waitForWindowCount should wait for window window number increase and decrease', () => {
        const actionPage: ActionsPage = new ActionsPage();
        openUrlInNewTab(actionPage.url);
        waitForWindowCount(2);
        closeWindow(1);
        waitForWindowCount(1);
    });
});
github hetznercloud / protractor-test-helper / test / flow / waits.e2e-spec.ts View on Github external
it('waitForWindowCount should wait for window window number increase and decrease', () => {
        const actionPage: ActionsPage = new ActionsPage();
        openUrlInNewTab(actionPage.url);
        waitForWindowCount(2);
        closeWindow(1);
        waitForWindowCount(1);
    });
});
github hetznercloud / protractor-test-helper / test / async / waits.e2e-spec.ts View on Github external
it('waitForWindowCount should wait for window window number increase and decrease', async () => {
        const actionPage: ActionsPage = new ActionsPage();
        await openUrlInNewTab(actionPage.url);
        await waitForWindowCount(2);

        await expect(getWindowHandlesCount()).toBe(2);

        await closeWindow(1);
        await waitForWindowCount(1);

        await expect(getWindowHandlesCount()).toBe(1);
    });
});

@hetznercloud/protractor-test-helper

[![npm version](https://badge.fury.io/js/%40hetznercloud%2Fprotractor-test-helper.svg)](https://www.npmjs.com/package/@hetznercloud/protractor-test-helper) [![Build Status](https://travis-ci.com/hetznercloud/protractor-test-helper.svg?branch=master)](http

MIT
Latest version published 3 years ago

Package Health Score

46 / 100
Full package analysis