package.cypress-utils.constants.selectors.ipRestriction.js Maven / Gradle / Ivy
Go to download
Show more of this group Show more artifacts with this name
Show all versions of neeto-commons-frontend Show documentation
Show all versions of neeto-commons-frontend Show documentation
A package encapsulating common code across neeto projects including initializers, utility functions, common components and hooks and so on.
import { dataCy } from "../../utils/common";
export var ipRestrictionSelectors = {
addButton: dataCy("add-allowed-ip-range-button"),
ipStartTextField: function ipStartTextField(index) {
return dataCy("ip-start-text-field", ":eq(".concat(index, ")"));
},
ipEndTextField: dataCy("ip-end-text-field"),
cancelButton: dataCy("ip-cancel-button"),
ipRangeRow: dataCy("ip-range-row"),
enableIpRestrictionCheckbox: dataCy("enable-ip-restriction-checkbox")
};
//# sourceMappingURL=ipRestriction.js.map