How to use the wix-ui-core/dist/src/testkit/protractor.inputTestkitFactory function in wix-ui-core

To help you get started, we’ve selected a few wix-ui-core 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 wix / wix-ui-backoffice / src / components / Input / Input.e2e.ts View on Github external
eyes.it('should render', () => {
    const driver = inputTestkitFactory({dataHook});

    expect(driver.element().isDisplayed()).toBe(true);
  });
});
github wix / wix-ui-backoffice / src / components / Input / Input.e2e.ts View on Github external
eyes.it('should render', () => {
    const driver = inputTestkitFactory({dataHook});

    expect(driver.element().isDisplayed()).toBe(true);
  }, {version: 'story with value'});
});