@bigbinary/neeto-playwright-commons 1.11.2 → 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 +3 -0
- package/index.cjs.js.map +1 -1
- package/index.d.ts +16 -7
- package/index.js +3 -0
- package/index.js.map +1 -1
- package/package.json +1 -1
package/index.d.ts
CHANGED
|
@@ -2803,7 +2803,7 @@ declare const networkConditions: Record<"Slow 3G" | "Fast 3G" | "No Throttling",
|
|
|
2803
2803
|
*
|
|
2804
2804
|
* alertModalMessage: Selector for alert modal messages.
|
|
2805
2805
|
*
|
|
2806
|
-
* alertModalSubmitButton: to get the submit button of the
|
|
2806
|
+
* alertModalSubmitButton: to get the submit button of the NeetoUI Alert component.
|
|
2807
2807
|
*
|
|
2808
2808
|
* checkbox: Selector for checkboxes.
|
|
2809
2809
|
*
|
|
@@ -2825,19 +2825,21 @@ declare const networkConditions: Record<"Slow 3G" | "Fast 3G" | "No Throttling",
|
|
|
2825
2825
|
*
|
|
2826
2826
|
* radioLabel(embedLabel: string): Method that generates a selector for radio labels based on the embedded label.
|
|
2827
2827
|
*
|
|
2828
|
-
* toastMessage: To get the
|
|
2828
|
+
* toastMessage: To get the NeetoUI Toastr message.
|
|
2829
2829
|
*
|
|
2830
|
-
* toastCloseButton: To get the
|
|
2830
|
+
* toastCloseButton: To get the NeetoUI Toastr close icon.
|
|
2831
2831
|
*
|
|
2832
2832
|
* windowAlert: Selector for window alerts.
|
|
2833
2833
|
*
|
|
2834
2834
|
* body: Selector for the body.
|
|
2835
2835
|
*
|
|
2836
|
-
* toastIcon: To get the
|
|
2836
|
+
* toastIcon: To get the NeetoUI Toastr icon.
|
|
2837
|
+
*
|
|
2838
|
+
* toastContainer: To get the NeetoUI Toastr container.
|
|
2837
2839
|
*
|
|
2838
2840
|
* paneModalCrossIcon: Selector for pane modal cross icons.
|
|
2839
2841
|
*
|
|
2840
|
-
* inputField: Selector to get
|
|
2842
|
+
* inputField: Selector to get NeetoUI input field.
|
|
2841
2843
|
*
|
|
2842
2844
|
* alertBox: Selector for alert box.
|
|
2843
2845
|
*
|
|
@@ -2983,6 +2985,7 @@ declare const COMMON_SELECTORS: {
|
|
|
2983
2985
|
windowAlert: string;
|
|
2984
2986
|
body: string;
|
|
2985
2987
|
toastIcon: string;
|
|
2988
|
+
toastContainer: string;
|
|
2986
2989
|
paneModalCrossIcon: string;
|
|
2987
2990
|
inputField: string;
|
|
2988
2991
|
alertBox: string;
|
|
@@ -3335,11 +3338,11 @@ declare const LOGIN_SELECTORS: {
|
|
|
3335
3338
|
*
|
|
3336
3339
|
* activatedMembersButton: Selector for the activated members button.
|
|
3337
3340
|
*
|
|
3338
|
-
* columnCheckBox: Selector to get the
|
|
3341
|
+
* columnCheckBox: Selector to get the NeetoUI checkbox.
|
|
3339
3342
|
*
|
|
3340
3343
|
* roleLabel(role: string): Method that generates a selector for role labels based on the role.
|
|
3341
3344
|
*
|
|
3342
|
-
* dropDownIcon: Selector to get the
|
|
3345
|
+
* dropDownIcon: Selector to get the NeetoUI Dropdown icon button.
|
|
3343
3346
|
*
|
|
3344
3347
|
* editButton: Selector for the edit button.
|
|
3345
3348
|
*
|
|
@@ -3719,6 +3722,10 @@ declare const KEYBOARD_SHORTCUTS_SELECTORS: {
|
|
|
3719
3722
|
*
|
|
3720
3723
|
* profileSidebarCancelButton: Selector for the profile sidebar cancel button.
|
|
3721
3724
|
*
|
|
3725
|
+
* profileAvatar: Selector for the profile avatar.
|
|
3726
|
+
*
|
|
3727
|
+
* actionHeaderUserEmail: Selector for the user email.
|
|
3728
|
+
*
|
|
3722
3729
|
*/
|
|
3723
3730
|
declare const PROFILE_SECTION_SELECTORS: {
|
|
3724
3731
|
profileSectionButton: string;
|
|
@@ -3728,6 +3735,8 @@ declare const PROFILE_SECTION_SELECTORS: {
|
|
|
3728
3735
|
logoutButton: string;
|
|
3729
3736
|
neetoAuthLink: string;
|
|
3730
3737
|
profileSidebarCancelButton: string;
|
|
3738
|
+
profileAvatar: string;
|
|
3739
|
+
actionHeaderUserEmail: string;
|
|
3731
3740
|
};
|
|
3732
3741
|
/**
|
|
3733
3742
|
*
|
package/index.js
CHANGED
|
@@ -276,6 +276,7 @@ const COMMON_SELECTORS = {
|
|
|
276
276
|
windowAlert: "#alert-box",
|
|
277
277
|
body: "body",
|
|
278
278
|
toastIcon: ".Toastify__toast-icon",
|
|
279
|
+
toastContainer: ".Toastify__toast-container",
|
|
279
280
|
paneModalCrossIcon: "pane-close-button",
|
|
280
281
|
inputField: "nui-input-field",
|
|
281
282
|
alertBox: "alert-box",
|
|
@@ -12911,6 +12912,8 @@ const PROFILE_SECTION_SELECTORS = {
|
|
|
12911
12912
|
logoutButton: "profile-logout-button",
|
|
12912
12913
|
neetoAuthLink: "ntm-visit-auth-button",
|
|
12913
12914
|
profileSidebarCancelButton: "ntm-profile-cancel-button",
|
|
12915
|
+
profileAvatar: "profile-avatar",
|
|
12916
|
+
actionHeaderUserEmail: "floating-action-menu-header-user-email",
|
|
12914
12917
|
};
|
|
12915
12918
|
|
|
12916
12919
|
const CHAT_WIDGET_SELECTORS = {
|