How to use the protractor-helper.click function in protractor-helper

To help you get started, we’ve selected a few protractor-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 wlsf82 / protractor-components-and-page-objects / test / e2e / specs / createImage.spec.js View on Github external
it("Then all required fields are shown in red, meaning error", () => {
        helper.click(createImagePage.form.submitButton);

        expect(
          createImagePage.form.nameField.getCssValue("background-color")
        ).toEqual("rgb(255,0,0)");
        expect(
          createImagePage.form.descriptionField.getCssValue("background-color")
        ).toEqual("rgb(255,0,0)");
        expect(
          createImagePage.form.imageUrlField.getCssValue("background-color")
        ).toEqual("rgb(255,0,0)");
      });
    });
github wlsf82 / protractor-components-and-page-objects / test / e2e / components / Form.js View on Github external
fillWithDataAndSubmit(data) {
    helper.fillFieldWithText(this.nameField, data.name);
    helper.fillFieldWithText(this.descriptionField, data.description);
    helper.fillFieldWithText(this.imageUrlField, data.imageUrlValue);
    helper.click(this.submitButton);
  }
}