package.cypress-utils.constants.selectors.editor.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 neetoEditorSelectors = {
boldOption: dataCy("neeto-editor-fixed-menu-bold-option"),
italicOption: dataCy("neeto-editor-fixed-menu-italic-option"),
underlineOption: dataCy("neeto-editor-fixed-menu-underline-option"),
strikeOption: dataCy("neeto-editor-fixed-menu-strike-option"),
codeBlockOption: dataCy("neeto-editor-fixed-menu-code-option"),
highlightOption: dataCy("neeto-editor-fixed-menu-highlight-option"),
linkInput: dataCy("neeto-editor-fixed-menu-link-option-input"),
linkSubmitButton: dataCy("neeto-editor-fixed-menu-link-option-link-button"),
commandList: function commandList(index) {
return dataCy("neeto-editor-command-list-item-".concat(index));
},
imageUploadUrlSubmitButton: dataCy("neeto-editor-media-upload-url-submit"),
imageUploadUrlInputTextField: dataCy("neeto-editor-media-upload-url-input"),
uploadInput: dataCy("neeto-editor-media-uploader-input"),
editorMenuBarWrapper: dataCy("neeto-editor-fixed-menu-wrapper"),
undoOption: dataCy("neeto-editor-fixed-menu-undo-option"),
redoOption: dataCy("neeto-editor-fixed-menu-redo-option"),
imageWrapper: dataCy("neeto-editor-image-wrapper")
};
//# sourceMappingURL=editor.js.map