@bigbinary/neeto-playwright-commons 1.11.1 → 1.11.3
This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
- package/index.cjs.js +8 -0
- package/index.cjs.js.map +1 -1
- package/index.d.ts +31 -7
- package/index.js +8 -0
- package/index.js.map +1 -1
- package/package.json +1 -1
package/index.cjs.js
CHANGED
|
@@ -303,6 +303,7 @@ const COMMON_SELECTORS = {
|
|
|
303
303
|
copyButton: "copy-button",
|
|
304
304
|
resetButton: "reset-button",
|
|
305
305
|
spinner: ".neeto-ui-spinner",
|
|
306
|
+
uiSpinner: "neeto-ui-spinner",
|
|
306
307
|
subheaderText: "subheader-left",
|
|
307
308
|
alertTitle: "alert-title",
|
|
308
309
|
alertModalMessage: "alert-message",
|
|
@@ -322,6 +323,7 @@ const COMMON_SELECTORS = {
|
|
|
322
323
|
windowAlert: "#alert-box",
|
|
323
324
|
body: "body",
|
|
324
325
|
toastIcon: ".Toastify__toast-icon",
|
|
326
|
+
toastContainer: ".Toastify__toast-container",
|
|
325
327
|
paneModalCrossIcon: "pane-close-button",
|
|
326
328
|
inputField: "nui-input-field",
|
|
327
329
|
alertBox: "alert-box",
|
|
@@ -379,6 +381,10 @@ const COMMON_SELECTORS = {
|
|
|
379
381
|
tableRow: ".ant-table-row",
|
|
380
382
|
navigationHeaderLeftBlock: "navigation-header-left-block",
|
|
381
383
|
fileUploadBody: "file-upload-body",
|
|
384
|
+
modalBody: "modal-body",
|
|
385
|
+
modalForever: "modal-footer",
|
|
386
|
+
navigationHeader: "navigation-header",
|
|
387
|
+
buttonSpinner: ".neeto-ui-btn__spinner",
|
|
382
388
|
};
|
|
383
389
|
|
|
384
390
|
var commonjsGlobal = typeof globalThis !== 'undefined' ? globalThis : typeof window !== 'undefined' ? window : typeof global !== 'undefined' ? global : typeof self !== 'undefined' ? self : {};
|
|
@@ -12953,6 +12959,8 @@ const PROFILE_SECTION_SELECTORS = {
|
|
|
12953
12959
|
logoutButton: "profile-logout-button",
|
|
12954
12960
|
neetoAuthLink: "ntm-visit-auth-button",
|
|
12955
12961
|
profileSidebarCancelButton: "ntm-profile-cancel-button",
|
|
12962
|
+
profileAvatar: "profile-avatar",
|
|
12963
|
+
actionHeaderUserEmail: "floating-action-menu-header-user-email",
|
|
12956
12964
|
};
|
|
12957
12965
|
|
|
12958
12966
|
const CHAT_WIDGET_SELECTORS = {
|