@bigbinary/neeto-playwright-commons 4.7.4 → 4.8.0
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.d.ts +756 -753
- package/index.js +2689 -2677
- package/package.json +7 -7
package/index.d.ts
CHANGED
|
@@ -4,7 +4,7 @@ import { Page, APIRequestContext, Response, APIResponse, Locator, BrowserContext
|
|
|
4
4
|
import { TFunction } from 'i18next';
|
|
5
5
|
import { I18nPlaywrightFixture } from 'playwright-i18next-fixture';
|
|
6
6
|
import { TOTP, Secret } from 'otpauth';
|
|
7
|
-
import * as
|
|
7
|
+
import * as ts_toolbelt_out_Function_Curry_js from 'ts-toolbelt/out/Function/Curry.js';
|
|
8
8
|
interface InterceptMultipleResponsesParams {
|
|
9
9
|
responseUrl: string;
|
|
10
10
|
times: number;
|
|
@@ -1270,9 +1270,9 @@ declare class WebhookSiteApi {
|
|
|
1270
1270
|
private readonly request;
|
|
1271
1271
|
private readonly WEBHOOK_SITE_BASE_URL;
|
|
1272
1272
|
constructor(request: APIRequestContext);
|
|
1273
|
-
create: () => Promise<
|
|
1274
|
-
fetch: (token: string) => Promise<
|
|
1275
|
-
configure: (tokenId: string, content?: string) => Promise<
|
|
1273
|
+
create: () => Promise<_playwright_test.APIResponse>;
|
|
1274
|
+
fetch: (token: string) => Promise<_playwright_test.APIResponse>;
|
|
1275
|
+
configure: (tokenId: string, content?: string) => Promise<_playwright_test.APIResponse>;
|
|
1276
1276
|
}
|
|
1277
1277
|
type IntegrableType = "Form" | string;
|
|
1278
1278
|
interface TwilioRequestParams {
|
|
@@ -3211,7 +3211,7 @@ declare class IntegrationBase {
|
|
|
3211
3211
|
* await integrationBase.disconnect();
|
|
3212
3212
|
* @endexample
|
|
3213
3213
|
*/
|
|
3214
|
-
disconnect: (
|
|
3214
|
+
disconnect: (_interceptMultipleResponsesParams?: PartialInterceptMultipleResponsesParams) => Promise<void>;
|
|
3215
3215
|
/**
|
|
3216
3216
|
*
|
|
3217
3217
|
* Connects an integration. It takes the following parameters:
|
|
@@ -4506,6 +4506,8 @@ declare const IS_STAGING_ENV: boolean;
|
|
|
4506
4506
|
*/
|
|
4507
4507
|
declare const IS_DEV_ENV: boolean;
|
|
4508
4508
|
declare const IS_CI: boolean;
|
|
4509
|
+
declare const IS_DEV_CI: boolean;
|
|
4510
|
+
declare const IS_WEBKIT: boolean;
|
|
4509
4511
|
declare const DEFAULT_WEBHOOKS_RESPONSE_TEXT: string;
|
|
4510
4512
|
/**
|
|
4511
4513
|
*
|
|
@@ -5939,7 +5941,7 @@ declare class AuditLogsPage {
|
|
|
5939
5941
|
messageBuilders: MessageBuilders;
|
|
5940
5942
|
private admin;
|
|
5941
5943
|
constructor(page: Page, neetoPlaywrightUtilities: CustomCommands, /** @deprecated Audit log messages no longer include the product name. */
|
|
5942
|
-
|
|
5944
|
+
_product?: NeetoProducts, timeZone?: string);
|
|
5943
5945
|
/**
|
|
5944
5946
|
*
|
|
5945
5947
|
* Verifies an audit log entry by building the expected message based on the action type and data, then checking that the audit log content matches the expected message and current date.
|
|
@@ -6137,7 +6139,7 @@ declare class RolesPage {
|
|
|
6137
6139
|
* await rolesPage.addCustomRoleViaRequest("Custom Role", ["Manage themes", "View roles"]);
|
|
6138
6140
|
* @endexample
|
|
6139
6141
|
*/
|
|
6140
|
-
addCustomRoleViaRequest: (roleName: string, targetPermissions: string[], isGranularPermission?: boolean) => Promise<
|
|
6142
|
+
addCustomRoleViaRequest: (roleName: string, targetPermissions: string[], isGranularPermission?: boolean) => Promise<_playwright_test.APIResponse | undefined>;
|
|
6141
6143
|
/**
|
|
6142
6144
|
*
|
|
6143
6145
|
* Used to edit an existing role via API request.
|
|
@@ -6151,7 +6153,7 @@ declare class RolesPage {
|
|
|
6151
6153
|
* await rolesPage.editRoleViaRequest("Custom Role", ["Manage roles"]);
|
|
6152
6154
|
* @endexample
|
|
6153
6155
|
*/
|
|
6154
|
-
editRoleViaRequest: (roleName: string, targetPermissions: string[], isGranularPermission?: boolean) => Promise<
|
|
6156
|
+
editRoleViaRequest: (roleName: string, targetPermissions: string[], isGranularPermission?: boolean) => Promise<_playwright_test.APIResponse | undefined>;
|
|
6155
6157
|
/**
|
|
6156
6158
|
*
|
|
6157
6159
|
* Used to delete a role via API request.
|
|
@@ -6163,7 +6165,7 @@ declare class RolesPage {
|
|
|
6163
6165
|
* await rolesPage.deleteRoleViaRequest("Custom Role");
|
|
6164
6166
|
* @endexample
|
|
6165
6167
|
*/
|
|
6166
|
-
deleteRoleViaRequest: (roleName: string, secondaryRoleName?: string) => Promise<
|
|
6168
|
+
deleteRoleViaRequest: (roleName: string, secondaryRoleName?: string) => Promise<_playwright_test.APIResponse | undefined>;
|
|
6167
6169
|
/**
|
|
6168
6170
|
*
|
|
6169
6171
|
* Used to add a role through the UI.
|
|
@@ -6474,7 +6476,7 @@ declare class TagsPage {
|
|
|
6474
6476
|
name: string;
|
|
6475
6477
|
description?: string;
|
|
6476
6478
|
tagsRequestUrl: string;
|
|
6477
|
-
}) => Promise<
|
|
6479
|
+
}) => Promise<_playwright_test.APIResponse | undefined>;
|
|
6478
6480
|
/**
|
|
6479
6481
|
*
|
|
6480
6482
|
* Used to navigate to merge tags page.
|
|
@@ -7129,6 +7131,117 @@ declare const PHONE_NUMBER_FORMATS: {
|
|
|
7129
7131
|
format: string;
|
|
7130
7132
|
flag: string;
|
|
7131
7133
|
}[];
|
|
7134
|
+
/**
|
|
7135
|
+
*
|
|
7136
|
+
* Selectors for admin panel page components.
|
|
7137
|
+
*
|
|
7138
|
+
* @example
|
|
7139
|
+
*
|
|
7140
|
+
* import { ADMIN_PANEL_SELECTORS } from "@neetoplaywright";
|
|
7141
|
+
* @endexample
|
|
7142
|
+
* settingsItemHeading: Selector for settings item heading.
|
|
7143
|
+
*
|
|
7144
|
+
* settingsItemDescription: Selector for settings item description.
|
|
7145
|
+
*
|
|
7146
|
+
* expiryDateInput: Selector for expiry date input.
|
|
7147
|
+
*
|
|
7148
|
+
*/
|
|
7149
|
+
declare const ADMIN_PANEL_SELECTORS: {
|
|
7150
|
+
settingsItemHeading: string;
|
|
7151
|
+
settingsItemDescription: string;
|
|
7152
|
+
expiryDateInput: string;
|
|
7153
|
+
goBackButton: string;
|
|
7154
|
+
};
|
|
7155
|
+
/**
|
|
7156
|
+
*
|
|
7157
|
+
* Selectors for custom domain page components.
|
|
7158
|
+
*
|
|
7159
|
+
* addCustomDomainButton: Selector for the add custom domain button.
|
|
7160
|
+
*
|
|
7161
|
+
* customDomainInputField: Selector for the custom domain input field.
|
|
7162
|
+
*
|
|
7163
|
+
* submitCustomDomainButton: Selector for the submit custom domain button.
|
|
7164
|
+
*
|
|
7165
|
+
* customDomainValidateButton: Selector for the custom domain validate button.
|
|
7166
|
+
*
|
|
7167
|
+
* moreDropdownButton: Selector for the more dropdown button.
|
|
7168
|
+
*
|
|
7169
|
+
* editCustomDomainButton: Selector for the edit custom domain button.
|
|
7170
|
+
*
|
|
7171
|
+
* deleteCustomDomainButton: Selector for the delete custom domain button.
|
|
7172
|
+
*
|
|
7173
|
+
* activeTagContainer: Selector for the active tag container.
|
|
7174
|
+
*
|
|
7175
|
+
*/
|
|
7176
|
+
declare const CUSTOM_DOMAIN_SELECTORS: {
|
|
7177
|
+
addCustomDomainButton: string;
|
|
7178
|
+
customDomainInputField: string;
|
|
7179
|
+
submitCustomDomainButton: string;
|
|
7180
|
+
customDomainValidateButton: string;
|
|
7181
|
+
editCustomDomainButton: string;
|
|
7182
|
+
deleteCustomDomainButton: string;
|
|
7183
|
+
dropdownButton: string;
|
|
7184
|
+
activeTagContainer: string;
|
|
7185
|
+
nameInputError: string;
|
|
7186
|
+
};
|
|
7187
|
+
/**
|
|
7188
|
+
*
|
|
7189
|
+
* Selectors for API keys page components.
|
|
7190
|
+
*
|
|
7191
|
+
* editApiKeyButton: Selector for the edit API key button.
|
|
7192
|
+
*
|
|
7193
|
+
* deleteApiKeyButton: Selector for the delete API key button.
|
|
7194
|
+
*
|
|
7195
|
+
* addApiKeyButton: Selector for the add API key button.
|
|
7196
|
+
*
|
|
7197
|
+
* apiKeysLabelField: Selector for the API key label input field.
|
|
7198
|
+
*
|
|
7199
|
+
* apiKeysExpiresAtField: Selector for the API key expiry input field.
|
|
7200
|
+
*
|
|
7201
|
+
* expiryDateInputError: Selector for the expiry date input error message.
|
|
7202
|
+
*
|
|
7203
|
+
* expiryDateInput: Selector for the expiry date input field.
|
|
7204
|
+
*
|
|
7205
|
+
* tokenField: Selector for the token input or display field.
|
|
7206
|
+
*
|
|
7207
|
+
* expiresAtField: Selector for the expiry date field.
|
|
7208
|
+
*
|
|
7209
|
+
* createdAtField: Selector for the API key creation date field.
|
|
7210
|
+
*
|
|
7211
|
+
*/
|
|
7212
|
+
declare const API_KEYS_SELECTORS: {
|
|
7213
|
+
countLabel: string;
|
|
7214
|
+
editApiKeyButton: string;
|
|
7215
|
+
deleteApiKeyButton: string;
|
|
7216
|
+
addApiKeyButton: string;
|
|
7217
|
+
apiKeysLabelField: string;
|
|
7218
|
+
apiKeysExpiresAtField: string;
|
|
7219
|
+
expiryDateInputError: string;
|
|
7220
|
+
expiryDateInput: string;
|
|
7221
|
+
apiKeysField: string;
|
|
7222
|
+
tokenField: string;
|
|
7223
|
+
expiresAtField: string;
|
|
7224
|
+
createdAtField: string;
|
|
7225
|
+
};
|
|
7226
|
+
declare const IP_RESTRICTIONS_SELECTORS: {
|
|
7227
|
+
enableIPRestrictionChk: string;
|
|
7228
|
+
saveChanges: string;
|
|
7229
|
+
addIPRangeBtn: string;
|
|
7230
|
+
ipStartTextField: string;
|
|
7231
|
+
ipEndTextField: string;
|
|
7232
|
+
ipRangeDeleteBtn: string;
|
|
7233
|
+
ipStartInpError: string;
|
|
7234
|
+
ipEndInpError: string;
|
|
7235
|
+
typeSelectError: string;
|
|
7236
|
+
addressTypeSelect: string;
|
|
7237
|
+
resetButton: string;
|
|
7238
|
+
};
|
|
7239
|
+
declare const AUDIT_LOGS_SELECTORS: {
|
|
7240
|
+
card: string;
|
|
7241
|
+
content: string;
|
|
7242
|
+
timestamp: string;
|
|
7243
|
+
text: string;
|
|
7244
|
+
};
|
|
7132
7245
|
/**
|
|
7133
7246
|
*
|
|
7134
7247
|
* Common selectors for UI elements.
|
|
@@ -7647,6 +7760,29 @@ declare const THANK_YOU_SELECTORS: {
|
|
|
7647
7760
|
thankYouMessageWrapper: string;
|
|
7648
7761
|
countLabel: string;
|
|
7649
7762
|
};
|
|
7763
|
+
/**
|
|
7764
|
+
*
|
|
7765
|
+
* Selectors for date picker components.
|
|
7766
|
+
*
|
|
7767
|
+
* pickerInput: Selector for the picker input field.
|
|
7768
|
+
*
|
|
7769
|
+
* datePicker: Selector for the date picker component.
|
|
7770
|
+
*
|
|
7771
|
+
* timePicker: Selector for the time picker component.
|
|
7772
|
+
*
|
|
7773
|
+
* nextYearButton: Selector for the button to navigate to the next year.
|
|
7774
|
+
*
|
|
7775
|
+
* prevYearButton: Selector for the button to navigate to the previous year.
|
|
7776
|
+
*
|
|
7777
|
+
*/
|
|
7778
|
+
declare const DATE_PICKER_SELECTORS: {
|
|
7779
|
+
pickerInput: string;
|
|
7780
|
+
datePicker: string;
|
|
7781
|
+
timePicker: string;
|
|
7782
|
+
nextYearButton: string;
|
|
7783
|
+
prevYearButton: string;
|
|
7784
|
+
selectedDateInCalendarClass: string;
|
|
7785
|
+
};
|
|
7650
7786
|
declare const optionSelector: (option: string) => string;
|
|
7651
7787
|
declare const fixedMenuSelector: (selector: string) => string;
|
|
7652
7788
|
/**
|
|
@@ -8054,893 +8190,866 @@ declare const NEETO_IMAGE_UPLOADER_SELECTORS: {
|
|
|
8054
8190
|
};
|
|
8055
8191
|
/**
|
|
8056
8192
|
*
|
|
8057
|
-
* Selectors for
|
|
8193
|
+
* Selectors for integration components.
|
|
8058
8194
|
*
|
|
8059
8195
|
* @example
|
|
8060
8196
|
*
|
|
8061
|
-
* import {
|
|
8197
|
+
* import { INTEGRATION_SELECTORS } from "@neetoplaywright";
|
|
8062
8198
|
* @endexample
|
|
8063
|
-
*
|
|
8064
|
-
*
|
|
8065
|
-
* emailTextField: Selector to get the email field.
|
|
8066
|
-
*
|
|
8067
|
-
* googleAuthenticationButton: Selector for the Google authentication button.
|
|
8068
|
-
*
|
|
8069
|
-
* githubAuthenticationButton: Selector for the GitHub authentication button.
|
|
8199
|
+
* integrationCard(integration: string): Method that generates a selector for the integration card based on the integration name. Accepts a string parameter representing the integration name.
|
|
8070
8200
|
*
|
|
8071
|
-
*
|
|
8201
|
+
* connectButton: Selector for the connect button.
|
|
8072
8202
|
*
|
|
8073
|
-
*
|
|
8203
|
+
* integrationStatusTag: Selector for the integration status tag.
|
|
8074
8204
|
*
|
|
8075
|
-
*
|
|
8205
|
+
* disconnectButton: Selector for the disconnect button.
|
|
8076
8206
|
*
|
|
8077
|
-
*
|
|
8207
|
+
* manageButton: Selector for the manage button.
|
|
8078
8208
|
*
|
|
8079
|
-
*
|
|
8209
|
+
* integrationConnectedTag: Selector for the connected tag.
|
|
8080
8210
|
*
|
|
8081
8211
|
*/
|
|
8082
|
-
declare const
|
|
8083
|
-
|
|
8084
|
-
|
|
8085
|
-
|
|
8086
|
-
|
|
8087
|
-
|
|
8088
|
-
|
|
8089
|
-
|
|
8090
|
-
|
|
8091
|
-
|
|
8092
|
-
|
|
8093
|
-
|
|
8094
|
-
|
|
8095
|
-
|
|
8212
|
+
declare const INTEGRATION_SELECTORS: {
|
|
8213
|
+
integrationCard: (integration: string) => string;
|
|
8214
|
+
connectButton: string;
|
|
8215
|
+
integrationStatusTag: string;
|
|
8216
|
+
disconnectButton: string;
|
|
8217
|
+
manageButton: string;
|
|
8218
|
+
integrationConnectedTag: string;
|
|
8219
|
+
};
|
|
8220
|
+
declare const GOOGLE_LOGIN_SELECTORS: {
|
|
8221
|
+
totpNext: string;
|
|
8222
|
+
form: string;
|
|
8223
|
+
totpChallengeSelector: string;
|
|
8224
|
+
signOutFrameLocator: string;
|
|
8225
|
+
};
|
|
8226
|
+
declare const GOOGLE_ANALYTICS_SELECTORS: {
|
|
8227
|
+
gaCode: string;
|
|
8228
|
+
};
|
|
8229
|
+
declare const GOOGLE_SHEETS_SELECTORS: {
|
|
8230
|
+
iframe: string;
|
|
8096
8231
|
};
|
|
8097
8232
|
/**
|
|
8098
8233
|
*
|
|
8099
|
-
* Selectors for
|
|
8234
|
+
* Selectors for Microsoft login components.
|
|
8100
8235
|
*
|
|
8101
8236
|
* @example
|
|
8102
8237
|
*
|
|
8103
|
-
* import {
|
|
8238
|
+
* import { MICROSOFT_LOGIN_SELECTORS } from "@neetoplaywright";
|
|
8104
8239
|
* @endexample
|
|
8105
|
-
*
|
|
8106
|
-
*
|
|
8107
|
-
* newButton: Selector for the "New" button to add a new member.
|
|
8108
|
-
*
|
|
8109
|
-
* continueButton: Selector for the "Continue" button.
|
|
8240
|
+
* acceptButton: Selector for the accept/sign in submit button.
|
|
8110
8241
|
*
|
|
8111
|
-
*
|
|
8242
|
+
* cancelButton: Selector for the cancel button.
|
|
8112
8243
|
*
|
|
8113
|
-
*
|
|
8244
|
+
* signInProfileIcon: Selector for the sign in profile icon.
|
|
8114
8245
|
*
|
|
8115
|
-
*
|
|
8246
|
+
* emailInput: Selector for the email input field.
|
|
8116
8247
|
*
|
|
8117
|
-
*
|
|
8248
|
+
* placeholder: Selector for the placeholder container.
|
|
8118
8249
|
*
|
|
8119
|
-
*
|
|
8250
|
+
* dropdownMenu: Selector for the dropdown menu in Microsoft my apps page.
|
|
8120
8251
|
*
|
|
8121
|
-
|
|
8252
|
+
*/
|
|
8253
|
+
declare const MICROSOFT_LOGIN_SELECTORS: {
|
|
8254
|
+
acceptButton: string;
|
|
8255
|
+
cancelButton: string;
|
|
8256
|
+
signInProfileIcon: string;
|
|
8257
|
+
emailInput: string;
|
|
8258
|
+
placeholder: string;
|
|
8259
|
+
dropdownMenu: (appName: string) => string;
|
|
8260
|
+
};
|
|
8261
|
+
declare const dataQa: (value: string) => string;
|
|
8262
|
+
/**
|
|
8122
8263
|
*
|
|
8123
|
-
*
|
|
8264
|
+
* Selectors for Slack components.
|
|
8124
8265
|
*
|
|
8125
|
-
*
|
|
8266
|
+
* @example
|
|
8126
8267
|
*
|
|
8127
|
-
*
|
|
8268
|
+
* import { SLACK_SELECTORS} from "@neetoplaywright";
|
|
8269
|
+
* @endexample
|
|
8270
|
+
* messageContainer: Selector for the message container.
|
|
8128
8271
|
*
|
|
8129
|
-
*
|
|
8272
|
+
* loginEmail: Selector for the login email input.
|
|
8130
8273
|
*
|
|
8131
|
-
*
|
|
8274
|
+
* loginPassword: Selector for the login password input.
|
|
8132
8275
|
*
|
|
8133
|
-
*
|
|
8276
|
+
* signInButton: Selector for the sign-in button.
|
|
8134
8277
|
*
|
|
8135
|
-
*
|
|
8278
|
+
* teamPicketButtonContent: Selector for the team picker button content.
|
|
8136
8279
|
*
|
|
8137
|
-
*
|
|
8280
|
+
* redirectOpenInBrowser: Selector for the redirect "open in browser" button.
|
|
8138
8281
|
*
|
|
8139
|
-
*
|
|
8282
|
+
* workspaceActionsButton: Selector for the workspace actions button.
|
|
8140
8283
|
*
|
|
8141
|
-
*
|
|
8284
|
+
* teamMenuTrigger: Selector for the team menu trigger.
|
|
8142
8285
|
*
|
|
8143
|
-
*
|
|
8286
|
+
* menuItemButton: Selector for the menu item button.
|
|
8144
8287
|
*
|
|
8145
|
-
*
|
|
8288
|
+
* threadsFlexpane: Selector for the threads flexpane.
|
|
8146
8289
|
*
|
|
8147
|
-
*
|
|
8290
|
+
* replyBar: Selector for the reply bar.
|
|
8148
8291
|
*
|
|
8149
|
-
*
|
|
8292
|
+
* markdownElement: Selector for the markdown element.
|
|
8150
8293
|
*
|
|
8151
|
-
*
|
|
8294
|
+
* virtualListItem: Selector for the virtual list item.
|
|
8152
8295
|
*
|
|
8153
|
-
*
|
|
8296
|
+
* channelItems: Selector for channel items.
|
|
8154
8297
|
*
|
|
8155
8298
|
*/
|
|
8156
|
-
declare const
|
|
8157
|
-
|
|
8158
|
-
|
|
8159
|
-
|
|
8160
|
-
|
|
8161
|
-
|
|
8162
|
-
|
|
8163
|
-
|
|
8164
|
-
|
|
8165
|
-
|
|
8166
|
-
|
|
8167
|
-
|
|
8168
|
-
|
|
8169
|
-
|
|
8170
|
-
|
|
8171
|
-
|
|
8172
|
-
columnsDropdownContainer: string;
|
|
8173
|
-
emailDropdownItemLabel: string;
|
|
8174
|
-
roleDropdownItemLabel: string;
|
|
8175
|
-
inviteStatusDropdownItemLabel: string;
|
|
8176
|
-
heading: string;
|
|
8177
|
-
activateButton: string;
|
|
8178
|
-
deactivateButton: string;
|
|
8179
|
-
rolesButton: string;
|
|
8180
|
-
statusTag: string;
|
|
8181
|
-
exportMemberHeading: string;
|
|
8182
|
-
downloadAsRadioItem: (fileType: "pdf" | "excel" | "csv") => string;
|
|
8183
|
-
exportSubmitBtn: string;
|
|
8184
|
-
exportCancelBtn: string;
|
|
8185
|
-
downloadButton: string;
|
|
8186
|
-
manageAppListChk: string;
|
|
8187
|
-
takeActionDropdown: string;
|
|
8188
|
-
menubarSubLink: (sublink: string) => string;
|
|
8189
|
-
takeActionStateOption: (option?: string) => string;
|
|
8190
|
-
checkboxLabel: (label: string) => string;
|
|
8191
|
-
subscriptionPlanTag: string;
|
|
8192
|
-
memberNameCell: (nameOrEmail: string) => string;
|
|
8299
|
+
declare const SLACK_SELECTORS: {
|
|
8300
|
+
messageContainer: string;
|
|
8301
|
+
loginEmail: string;
|
|
8302
|
+
loginPassword: string;
|
|
8303
|
+
signInButton: string;
|
|
8304
|
+
teamPicketButtonContent: string;
|
|
8305
|
+
redirectOpenInBrowser: string;
|
|
8306
|
+
workspaceActionsButton: string;
|
|
8307
|
+
teamMenuTrigger: string;
|
|
8308
|
+
menuItemButton: string;
|
|
8309
|
+
threadsFlexpane: string;
|
|
8310
|
+
replyBar: string;
|
|
8311
|
+
markdownElement: string;
|
|
8312
|
+
virtualListItem: string;
|
|
8313
|
+
channelItems: string;
|
|
8314
|
+
installButton: string;
|
|
8193
8315
|
};
|
|
8194
8316
|
/**
|
|
8195
8317
|
*
|
|
8196
|
-
* Selectors for
|
|
8318
|
+
* Selectors for Slack components using 'data-qa' attributes.
|
|
8197
8319
|
*
|
|
8198
8320
|
* @example
|
|
8199
8321
|
*
|
|
8200
|
-
* import {
|
|
8322
|
+
* import { SLACK_DATA_QA_SELECTORS } from "@neetoplaywright";
|
|
8201
8323
|
* @endexample
|
|
8202
|
-
*
|
|
8324
|
+
* sectionHeadingButton: Selector for the section heading button.
|
|
8203
8325
|
*
|
|
8204
|
-
*
|
|
8326
|
+
* channelSectionSubmenuCreate: Selector for the channel section submenu create button.
|
|
8205
8327
|
*
|
|
8206
|
-
*
|
|
8328
|
+
* channelSectionMenuCreateChannel: Selector for the channel section menu create channel button.
|
|
8207
8329
|
*
|
|
8208
|
-
*
|
|
8330
|
+
* skModalContent: Selector for the modal content.
|
|
8209
8331
|
*
|
|
8210
|
-
*
|
|
8332
|
+
* infiniteSpinner: Selector for the infinite spinner.
|
|
8211
8333
|
*
|
|
8212
|
-
*
|
|
8334
|
+
* channelNameOptionsList: Selector for the channel name options list.
|
|
8335
|
+
*
|
|
8336
|
+
* channelNameInput: Selector for the channel name input.
|
|
8337
|
+
*
|
|
8338
|
+
* createChannelNextButton: Selector for the create channel next button.
|
|
8339
|
+
*
|
|
8340
|
+
* inviteToWorkspaceSkipButton: Selector for the invite to workspace skip button.
|
|
8341
|
+
*
|
|
8342
|
+
* menuItems: Selector for the menu items.
|
|
8343
|
+
*
|
|
8344
|
+
* channelDetailsModal: Selector for the channel details modal.
|
|
8345
|
+
*
|
|
8346
|
+
* channelDetailsSettingsTab: Selector for the channel details settings tab.
|
|
8213
8347
|
*
|
|
8214
8348
|
*/
|
|
8215
|
-
declare const
|
|
8216
|
-
|
|
8217
|
-
|
|
8218
|
-
|
|
8219
|
-
|
|
8220
|
-
|
|
8221
|
-
|
|
8349
|
+
declare const SLACK_DATA_QA_SELECTORS: {
|
|
8350
|
+
sectionHeadingButton: string;
|
|
8351
|
+
coachMarkCloseButton: string;
|
|
8352
|
+
messagePaneBannerCloseIcon: string;
|
|
8353
|
+
permissionBannerCloseIcon: string;
|
|
8354
|
+
channelSectionSubmenuCreate: string;
|
|
8355
|
+
channelSectionMenuCreateChannel: string;
|
|
8356
|
+
skModalContent: string;
|
|
8357
|
+
infiniteSpinner: string;
|
|
8358
|
+
channelNameOptionsList: string;
|
|
8359
|
+
channelNameInput: string;
|
|
8360
|
+
createChannelNextButton: string;
|
|
8361
|
+
inviteToWorkspaceSkipButton: string;
|
|
8362
|
+
menuItems: string;
|
|
8363
|
+
channelDetailsModal: string;
|
|
8364
|
+
channelDetailsSettingsTab: string;
|
|
8365
|
+
};
|
|
8366
|
+
declare const TWILIO_SELECTORS: {
|
|
8367
|
+
sidField: string;
|
|
8368
|
+
authTokenField: string;
|
|
8222
8369
|
};
|
|
8223
8370
|
/**
|
|
8224
8371
|
*
|
|
8225
|
-
* Selectors for
|
|
8372
|
+
* Selectors for webhook components.
|
|
8226
8373
|
*
|
|
8227
8374
|
* @example
|
|
8228
8375
|
*
|
|
8229
|
-
* import {
|
|
8376
|
+
* import { WEBHOOK_SELECTORS } from "@neetoplaywright";
|
|
8230
8377
|
* @endexample
|
|
8231
|
-
*
|
|
8378
|
+
* addNewWebhook: Selector for the "Add New Webhook" button.
|
|
8232
8379
|
*
|
|
8233
|
-
*
|
|
8380
|
+
* endpointInputField: Selector for the endpoint input field.
|
|
8234
8381
|
*
|
|
8235
|
-
*
|
|
8382
|
+
* deliveryResponseCode: Selector for the delivery response code.
|
|
8236
8383
|
*
|
|
8237
|
-
*
|
|
8384
|
+
* deliveryRequestPayload: Selector for the delivery request payload.
|
|
8238
8385
|
*
|
|
8239
|
-
*
|
|
8386
|
+
* addSecretKey: Selector for add secret key button.
|
|
8240
8387
|
*
|
|
8241
|
-
*
|
|
8388
|
+
* newWebhookHeader: Selector for new webhook pane header.
|
|
8242
8389
|
*
|
|
8243
|
-
*
|
|
8390
|
+
* endpointInputError: Selector for endpoint input error.
|
|
8244
8391
|
*
|
|
8245
|
-
*
|
|
8392
|
+
* eventsSelectError: Selector for event select error.
|
|
8246
8393
|
*
|
|
8247
|
-
*
|
|
8394
|
+
* regenerateSecret: Selector for regenerate secret key button.
|
|
8248
8395
|
*
|
|
8249
|
-
*
|
|
8396
|
+
* deleteSecret: Selector for delete secret key button.
|
|
8250
8397
|
*
|
|
8251
|
-
*
|
|
8398
|
+
* editWebhookButton: Selector for edit API key button.
|
|
8399
|
+
*
|
|
8400
|
+
* deleteWebhookButton: Selector for delete API key button.
|
|
8252
8401
|
*
|
|
8253
8402
|
*/
|
|
8254
|
-
declare const
|
|
8255
|
-
|
|
8256
|
-
|
|
8257
|
-
|
|
8258
|
-
|
|
8259
|
-
|
|
8260
|
-
|
|
8261
|
-
|
|
8262
|
-
|
|
8263
|
-
|
|
8264
|
-
|
|
8265
|
-
|
|
8266
|
-
|
|
8267
|
-
|
|
8268
|
-
|
|
8269
|
-
|
|
8270
|
-
editBtn: string;
|
|
8271
|
-
firstNameTextField: string;
|
|
8272
|
-
lastNameTextField: string;
|
|
8273
|
-
manageBillingAndSubscriptionsButton: string;
|
|
8274
|
-
cancelButton: string;
|
|
8275
|
-
profileSubmitBtn: string;
|
|
8276
|
-
editBasicInfoMenuBtn: string;
|
|
8277
|
-
editBasicInfoBtn: string;
|
|
8278
|
-
phoneNumberTxtField: string;
|
|
8279
|
-
timezoneBtn: string;
|
|
8280
|
-
timezoneSearchBox: string;
|
|
8281
|
-
nameField: string;
|
|
8282
|
-
emailField: string;
|
|
8283
|
-
firstNameField: string;
|
|
8284
|
-
lastNameField: string;
|
|
8285
|
-
phoneNumberField: string;
|
|
8286
|
-
countryField: string;
|
|
8287
|
-
timeZoneField: string;
|
|
8288
|
-
timeFormatField: string;
|
|
8289
|
-
dateFormatField: string;
|
|
8290
|
-
firstNameInputError: string;
|
|
8291
|
-
timeZoneSelect: string;
|
|
8292
|
-
lastNameInputError: string;
|
|
8293
|
-
phoneNumberInputError: string;
|
|
8294
|
-
imageUploadBtn: string;
|
|
8295
|
-
imageRemoveBtn: string;
|
|
8403
|
+
declare const WEBHOOK_SELECTORS: {
|
|
8404
|
+
addNewWebhook: string;
|
|
8405
|
+
endpointInputField: string;
|
|
8406
|
+
deliveryResponseCode: string;
|
|
8407
|
+
deliveryRequestPayload: string;
|
|
8408
|
+
addSecretKey: string;
|
|
8409
|
+
newWebhookHeader: string;
|
|
8410
|
+
endpointInputError: string;
|
|
8411
|
+
eventsSelectError: string;
|
|
8412
|
+
regenerateSecret: string;
|
|
8413
|
+
deleteSecret: string;
|
|
8414
|
+
deliveryRequestHeader: string;
|
|
8415
|
+
deliveryResponseBody: string;
|
|
8416
|
+
eventErrorText: string;
|
|
8417
|
+
editWebhookButton: string;
|
|
8418
|
+
deleteWebhookButton: string;
|
|
8296
8419
|
};
|
|
8297
8420
|
/**
|
|
8298
8421
|
*
|
|
8299
|
-
* Selectors for
|
|
8422
|
+
* Selectors for Zapier components.
|
|
8300
8423
|
*
|
|
8301
8424
|
* @example
|
|
8302
8425
|
*
|
|
8303
|
-
* import {
|
|
8304
|
-
* ROLES_SELECTORS
|
|
8305
|
-
* } from "@neetoplaywright";
|
|
8306
|
-
*
|
|
8426
|
+
* import { ZAPIER_SELECTORS } from "@neetoplaywright";
|
|
8307
8427
|
* @endexample
|
|
8308
|
-
*
|
|
8309
|
-
*
|
|
8310
|
-
* proceedButton: Selector for the "Proceed" button.
|
|
8311
|
-
*
|
|
8312
|
-
* cancelButton: Selector for the "Cancel" button.
|
|
8313
|
-
*
|
|
8314
|
-
* tableHeaderRoleName: Selector for the table header role name.
|
|
8428
|
+
* zapTriggerStep(zapId: string): Method that generates a selector for the Zap trigger step based on the Zap ID. Accepts a string parameter representing the Zap ID.
|
|
8315
8429
|
*
|
|
8316
|
-
*
|
|
8430
|
+
* zapAccountSubstep: Selector for the Zap account substep.
|
|
8317
8431
|
*
|
|
8318
|
-
*
|
|
8432
|
+
* zapOpenSubstepContainer: Selector for the container to open substeps.
|
|
8319
8433
|
*
|
|
8320
|
-
*
|
|
8434
|
+
* modal: Selector for modals.
|
|
8321
8435
|
*
|
|
8322
|
-
*
|
|
8436
|
+
* fmPrettytext: Selector for pretty text.
|
|
8323
8437
|
*
|
|
8324
|
-
*
|
|
8438
|
+
* spinner: Selector for spinners.
|
|
8325
8439
|
*
|
|
8326
|
-
*
|
|
8440
|
+
* skeletonBlock: Selector for skeleton blocks.
|
|
8327
8441
|
*
|
|
8328
|
-
*
|
|
8442
|
+
* accountsLoader: Selector for accounts loader.
|
|
8329
8443
|
*
|
|
8330
|
-
*
|
|
8444
|
+
* floatingBox: Selector for floating boxes.
|
|
8331
8445
|
*
|
|
8332
|
-
*
|
|
8446
|
+
* connection: Selector for connections.
|
|
8333
8447
|
*
|
|
8334
|
-
*
|
|
8448
|
+
* deleteConnectionModal: Selector for the delete connection modal.
|
|
8335
8449
|
*
|
|
8336
|
-
*
|
|
8450
|
+
* deleteConnectionDropdownButton: Selector for the dropdown button to delete a connection.
|
|
8337
8451
|
*
|
|
8338
|
-
*
|
|
8452
|
+
* usageAmounts: Selector for usage amounts.
|
|
8339
8453
|
*
|
|
8340
|
-
*
|
|
8454
|
+
* universalSidebar: Selector for the universal sidebar.
|
|
8341
8455
|
*
|
|
8342
|
-
*
|
|
8456
|
+
* sidebarFooter: Selector for the sidebar footer.
|
|
8343
8457
|
*
|
|
8344
|
-
*
|
|
8458
|
+
* contextualSideBar: Selector for the contextual sidebar.
|
|
8345
8459
|
*
|
|
8346
|
-
*
|
|
8460
|
+
* deleteApiButton: Selector for the delete button.
|
|
8347
8461
|
*
|
|
8348
|
-
*
|
|
8462
|
+
* zapierSubLink: Selector for the Zapier sub-link.
|
|
8349
8463
|
*
|
|
8350
8464
|
*/
|
|
8351
|
-
declare const
|
|
8352
|
-
|
|
8353
|
-
|
|
8354
|
-
|
|
8355
|
-
|
|
8356
|
-
|
|
8357
|
-
|
|
8358
|
-
|
|
8359
|
-
|
|
8360
|
-
|
|
8361
|
-
|
|
8362
|
-
|
|
8363
|
-
|
|
8364
|
-
|
|
8365
|
-
|
|
8366
|
-
|
|
8367
|
-
|
|
8368
|
-
|
|
8369
|
-
|
|
8370
|
-
|
|
8371
|
-
|
|
8372
|
-
|
|
8373
|
-
|
|
8374
|
-
|
|
8375
|
-
|
|
8465
|
+
declare const ZAPIER_SELECTORS: {
|
|
8466
|
+
zapTriggerStep: (zapId: string) => string;
|
|
8467
|
+
zapAccountSubstep: string;
|
|
8468
|
+
zapOpenSubstepContainer: string;
|
|
8469
|
+
modal: string;
|
|
8470
|
+
spinner: string;
|
|
8471
|
+
skeletonBlock: string;
|
|
8472
|
+
accountsLoader: string;
|
|
8473
|
+
floatingBox: string;
|
|
8474
|
+
connection: string;
|
|
8475
|
+
deleteConnectionModal: string;
|
|
8476
|
+
deleteConnectionDropdownButton: string;
|
|
8477
|
+
usageAmounts: string;
|
|
8478
|
+
universalSidebar: string;
|
|
8479
|
+
sidebarFooter: string;
|
|
8480
|
+
contextualSideBar: string;
|
|
8481
|
+
iconContainer: string;
|
|
8482
|
+
deleteApiButton: string;
|
|
8483
|
+
zapierSubLink: string;
|
|
8484
|
+
navbar: string;
|
|
8485
|
+
authTitle: string;
|
|
8486
|
+
publishButton: string;
|
|
8487
|
+
panelFooter: string;
|
|
8488
|
+
zapToggle: string;
|
|
8489
|
+
stepBlock: string;
|
|
8490
|
+
universalTopbar: string;
|
|
8491
|
+
accountsMenu: string;
|
|
8492
|
+
zapToggleCheckbox: string;
|
|
8376
8493
|
};
|
|
8377
8494
|
/**
|
|
8495
|
+
*
|
|
8496
|
+
* Selectors for login components.
|
|
8378
8497
|
*
|
|
8379
8498
|
* @example
|
|
8380
8499
|
*
|
|
8381
|
-
* import {
|
|
8500
|
+
* import { LOGIN_SELECTORS } from "@neetoplaywright";
|
|
8382
8501
|
* @endexample
|
|
8383
|
-
*
|
|
8384
|
-
*
|
|
8385
|
-
* emailTextField: Selector for the email text field in the signup form.
|
|
8386
|
-
*
|
|
8387
|
-
* firstNameTextField: Selector for the first name text field in the signup form.
|
|
8388
|
-
*
|
|
8389
|
-
* lastNameTextField: Selector for the last name text field in the signup form.
|
|
8390
|
-
*
|
|
8391
|
-
* organizationNameTextField: Selector for the organization name text field in the signup form.
|
|
8392
|
-
*
|
|
8393
|
-
* organizationSubmitButton: Selector for the organization submit button in the signup form.
|
|
8502
|
+
* appleAuthenticationButton: Selector for the Apple authentication button.
|
|
8394
8503
|
*
|
|
8395
|
-
*
|
|
8504
|
+
* emailTextField: Selector to get the email field.
|
|
8396
8505
|
*
|
|
8397
|
-
*
|
|
8506
|
+
* googleAuthenticationButton: Selector for the Google authentication button.
|
|
8398
8507
|
*
|
|
8399
|
-
*
|
|
8508
|
+
* githubAuthenticationButton: Selector for the GitHub authentication button.
|
|
8400
8509
|
*
|
|
8401
|
-
*
|
|
8510
|
+
* loginViaEmailButton: Selector for the login via email button.
|
|
8402
8511
|
*
|
|
8403
|
-
*
|
|
8512
|
+
* passwordTextField: Selector for the password text field.
|
|
8404
8513
|
*
|
|
8405
|
-
*
|
|
8514
|
+
* rememberMeCheckBox: Selector for the remember me check box.
|
|
8406
8515
|
*
|
|
8407
|
-
*
|
|
8516
|
+
* submitButton: Selector for the submit button.
|
|
8408
8517
|
*
|
|
8409
|
-
*
|
|
8518
|
+
* twitterAuthenticationButton: Selector for the Twitter authentication button.
|
|
8410
8519
|
*
|
|
8411
8520
|
*/
|
|
8412
|
-
declare const
|
|
8521
|
+
declare const LOGIN_SELECTORS: {
|
|
8522
|
+
appleAuthenticationButton: string;
|
|
8413
8523
|
emailTextField: string;
|
|
8414
|
-
|
|
8415
|
-
|
|
8416
|
-
|
|
8417
|
-
|
|
8418
|
-
|
|
8419
|
-
|
|
8420
|
-
signupViaEmailButton: string;
|
|
8524
|
+
loginAsOliverBtn: string;
|
|
8525
|
+
googleAuthenticationButton: string;
|
|
8526
|
+
githubAuthenticationButton: string;
|
|
8527
|
+
loginViaEmailButton: string;
|
|
8528
|
+
passwordTextField: string;
|
|
8529
|
+
rememberMeCheckBox: string;
|
|
8421
8530
|
submitButton: string;
|
|
8422
|
-
|
|
8423
|
-
|
|
8424
|
-
|
|
8425
|
-
|
|
8426
|
-
unregisteredEmailError: string;
|
|
8427
|
-
organization: (organizationName: string) => string;
|
|
8531
|
+
twitterAuthenticationButton: string;
|
|
8532
|
+
authenticatorAppOtpInput: string;
|
|
8533
|
+
enterOtpInputError: string;
|
|
8534
|
+
authenticatorAppLaterButton: string;
|
|
8428
8535
|
};
|
|
8429
8536
|
/**
|
|
8430
8537
|
*
|
|
8431
|
-
* Selectors for
|
|
8538
|
+
* Selectors for member components.
|
|
8432
8539
|
*
|
|
8433
8540
|
* @example
|
|
8434
8541
|
*
|
|
8435
|
-
* import {
|
|
8542
|
+
* import { MEMBER_SELECTORS } from "@neetoplaywright";
|
|
8436
8543
|
* @endexample
|
|
8437
|
-
*
|
|
8544
|
+
* membersTab: Selector for the members tab.
|
|
8438
8545
|
*
|
|
8439
|
-
*
|
|
8546
|
+
* newButton: Selector for the "New" button to add a new member.
|
|
8440
8547
|
*
|
|
8441
|
-
*
|
|
8548
|
+
* continueButton: Selector for the "Continue" button.
|
|
8442
8549
|
*
|
|
8443
|
-
*
|
|
8550
|
+
* submitButton: Selector for the "Submit" button.
|
|
8444
8551
|
*
|
|
8445
|
-
*
|
|
8552
|
+
* searchTextField: Selector for the search text field.
|
|
8446
8553
|
*
|
|
8447
|
-
*
|
|
8554
|
+
* deactivatedAgentsButton: Selector for the deactivated agents button.
|
|
8448
8555
|
*
|
|
8449
|
-
*
|
|
8556
|
+
* activatedMembersButton: Selector for the activated members button.
|
|
8450
8557
|
*
|
|
8451
|
-
|
|
8452
|
-
declare const TAB_SELECTORS: {
|
|
8453
|
-
configureTab: string;
|
|
8454
|
-
buildTab: string;
|
|
8455
|
-
themeTab: string;
|
|
8456
|
-
shareTab: string;
|
|
8457
|
-
submissionsTab: string;
|
|
8458
|
-
paymentsTab: string;
|
|
8459
|
-
settingsTab: string;
|
|
8460
|
-
};
|
|
8461
|
-
/**
|
|
8558
|
+
* columnCheckBox: Selector to get the NeetoUI checkbox.
|
|
8462
8559
|
*
|
|
8463
|
-
*
|
|
8560
|
+
* roleLabel(role: string): Method that generates a selector for role labels based on the role.
|
|
8464
8561
|
*
|
|
8465
|
-
*
|
|
8562
|
+
* dropDownIcon: Selector to get the NeetoUI Dropdown icon button.
|
|
8466
8563
|
*
|
|
8467
|
-
*
|
|
8468
|
-
* @endexample
|
|
8469
|
-
* newTagButton: Selector for the "New Tag" button.
|
|
8564
|
+
* editButton: Selector for the edit button.
|
|
8470
8565
|
*
|
|
8471
|
-
*
|
|
8566
|
+
* menuBarHeading: Selector for the menu bar heading.
|
|
8472
8567
|
*
|
|
8473
|
-
*
|
|
8568
|
+
* removeMember: Selector for the remove member button.
|
|
8474
8569
|
*
|
|
8475
|
-
*
|
|
8570
|
+
* columnsButton: Selector for the columns button.
|
|
8476
8571
|
*
|
|
8477
|
-
*
|
|
8572
|
+
* columnsDropdownContainer: Selector for the columns dropdown container.
|
|
8478
8573
|
*
|
|
8479
|
-
*
|
|
8574
|
+
* emailDropdownItemLabel: Selector for the email dropdown item label.
|
|
8480
8575
|
*
|
|
8481
|
-
*
|
|
8576
|
+
* roleDropdownItemLabel: Selector for the role dropdown item label.
|
|
8482
8577
|
*
|
|
8483
|
-
*
|
|
8578
|
+
* inviteStatusDropdownItemLabel: Selector for the invite status dropdown item label.
|
|
8484
8579
|
*
|
|
8485
|
-
*
|
|
8580
|
+
* heading: Selector for the manage members pane header.
|
|
8486
8581
|
*
|
|
8487
|
-
*
|
|
8582
|
+
* activateButton: Selector for the activate members button.
|
|
8488
8583
|
*
|
|
8489
|
-
*
|
|
8584
|
+
* deactivateButton: Selector for the deactivate members button.
|
|
8490
8585
|
*
|
|
8491
|
-
*
|
|
8586
|
+
* rolesButton: Selector for the manage member roles button.
|
|
8492
8587
|
*
|
|
8493
|
-
*
|
|
8588
|
+
* statusTag: Selector for the member status tag.
|
|
8494
8589
|
*
|
|
8495
|
-
*
|
|
8590
|
+
* subscriptionPlanTag: Selector for subscription plan tag.
|
|
8496
8591
|
*
|
|
8497
|
-
*
|
|
8592
|
+
* memberNameCell: Selector for member name or email cell in members table.
|
|
8498
8593
|
*
|
|
8499
8594
|
*/
|
|
8500
|
-
declare const
|
|
8501
|
-
|
|
8502
|
-
|
|
8503
|
-
|
|
8504
|
-
deleteButton: string;
|
|
8505
|
-
cancelButton: string;
|
|
8595
|
+
declare const MEMBER_SELECTORS: {
|
|
8596
|
+
membersTab: string;
|
|
8597
|
+
newButton: string;
|
|
8598
|
+
continueButton: string;
|
|
8506
8599
|
submitButton: string;
|
|
8507
8600
|
searchTextField: string;
|
|
8508
|
-
|
|
8509
|
-
|
|
8510
|
-
|
|
8511
|
-
|
|
8512
|
-
|
|
8513
|
-
|
|
8514
|
-
|
|
8515
|
-
|
|
8601
|
+
deactivatedAgentsButton: string;
|
|
8602
|
+
activatedMembersButton: string;
|
|
8603
|
+
columnCheckBox: string;
|
|
8604
|
+
roleLabel: (role: string) => string;
|
|
8605
|
+
teamMembersTable: string;
|
|
8606
|
+
dropDownIcon: string;
|
|
8607
|
+
editButton: string;
|
|
8608
|
+
menuBarHeading: string;
|
|
8609
|
+
removeMember: string;
|
|
8610
|
+
columnsButton: string;
|
|
8611
|
+
columnsDropdownContainer: string;
|
|
8612
|
+
emailDropdownItemLabel: string;
|
|
8613
|
+
roleDropdownItemLabel: string;
|
|
8614
|
+
inviteStatusDropdownItemLabel: string;
|
|
8615
|
+
heading: string;
|
|
8616
|
+
activateButton: string;
|
|
8617
|
+
deactivateButton: string;
|
|
8618
|
+
rolesButton: string;
|
|
8619
|
+
statusTag: string;
|
|
8620
|
+
exportMemberHeading: string;
|
|
8621
|
+
downloadAsRadioItem: (fileType: "pdf" | "excel" | "csv") => string;
|
|
8622
|
+
exportSubmitBtn: string;
|
|
8623
|
+
exportCancelBtn: string;
|
|
8624
|
+
downloadButton: string;
|
|
8625
|
+
manageAppListChk: string;
|
|
8626
|
+
takeActionDropdown: string;
|
|
8627
|
+
menubarSubLink: (sublink: string) => string;
|
|
8628
|
+
takeActionStateOption: (option?: string) => string;
|
|
8629
|
+
checkboxLabel: (label: string) => string;
|
|
8630
|
+
subscriptionPlanTag: string;
|
|
8631
|
+
memberNameCell: (nameOrEmail: string) => string;
|
|
8516
8632
|
};
|
|
8517
8633
|
/**
|
|
8518
8634
|
*
|
|
8519
|
-
* Selectors for
|
|
8635
|
+
* Selectors for member form components.
|
|
8520
8636
|
*
|
|
8521
8637
|
* @example
|
|
8522
8638
|
*
|
|
8523
|
-
* import {
|
|
8639
|
+
* import { MEMBER_FORM_SELECTORS } from "@neetoplaywright";
|
|
8524
8640
|
* @endexample
|
|
8525
|
-
*
|
|
8526
|
-
*
|
|
8527
|
-
* mergeButton: Selector for the merge button.
|
|
8528
|
-
*
|
|
8529
|
-
* sourceSearchTextField: Selector for the search text field in the source tags section.
|
|
8530
|
-
*
|
|
8531
|
-
* sourceTagsList: Selector for the list of source tags.
|
|
8641
|
+
* emailTextField: Selector for the email text field in the member form.
|
|
8532
8642
|
*
|
|
8533
|
-
*
|
|
8643
|
+
* firstNameTextField: Selector for the first name text field in the member form.
|
|
8534
8644
|
*
|
|
8535
|
-
*
|
|
8645
|
+
* lastNameTextField: Selector for the last name text field in the member form.
|
|
8536
8646
|
*
|
|
8537
|
-
*
|
|
8647
|
+
* emailInput: Selector for the email input in the member form.
|
|
8538
8648
|
*
|
|
8539
|
-
*
|
|
8649
|
+
* emailErrorField: Selector for the email error field in the member form.
|
|
8540
8650
|
*
|
|
8541
|
-
*
|
|
8651
|
+
* cancelButton: Selector for the cancel button in the member form.
|
|
8542
8652
|
*
|
|
8543
8653
|
*/
|
|
8544
|
-
declare const
|
|
8545
|
-
|
|
8546
|
-
|
|
8547
|
-
|
|
8548
|
-
|
|
8549
|
-
|
|
8550
|
-
destinationSearchTextField: string;
|
|
8654
|
+
declare const MEMBER_FORM_SELECTORS: {
|
|
8655
|
+
emailTextField: string;
|
|
8656
|
+
firstNameTextField: string;
|
|
8657
|
+
lastNameTextField: string;
|
|
8658
|
+
emailInput: string;
|
|
8659
|
+
emailErrorField: string;
|
|
8551
8660
|
cancelButton: string;
|
|
8552
|
-
|
|
8553
|
-
|
|
8554
|
-
|
|
8555
|
-
|
|
8661
|
+
};
|
|
8662
|
+
declare const ONBOARDING_SELECTORS: {
|
|
8663
|
+
welcomeTitle: string;
|
|
8664
|
+
welcomeDescription: string;
|
|
8665
|
+
getStartedBtn: string;
|
|
8666
|
+
doLaterBtn: string;
|
|
8667
|
+
helpBtn: string;
|
|
8668
|
+
continueBtn: string;
|
|
8669
|
+
congratulationsTitle: string;
|
|
8670
|
+
congratulationsDescription: string;
|
|
8671
|
+
congratulationsBtn: string;
|
|
8556
8672
|
};
|
|
8557
8673
|
/**
|
|
8558
8674
|
*
|
|
8559
|
-
* Selectors for
|
|
8675
|
+
* Selectors for profile section components.
|
|
8560
8676
|
*
|
|
8561
8677
|
* @example
|
|
8562
8678
|
*
|
|
8563
|
-
* import {
|
|
8679
|
+
* import { PROFILE_SECTION_SELECTORS } from "@neetoplaywright";
|
|
8564
8680
|
* @endexample
|
|
8565
|
-
*
|
|
8681
|
+
* profileSectionButton: Selector for the profile section button.
|
|
8566
8682
|
*
|
|
8567
|
-
*
|
|
8683
|
+
* profilePopup: Selector for the profile popup.
|
|
8568
8684
|
*
|
|
8569
|
-
*
|
|
8685
|
+
* profileMoreDropdownButton: Selector for the "more actions" dropdown trigger in the profile sheet.
|
|
8570
8686
|
*
|
|
8571
|
-
*
|
|
8687
|
+
* myProfileButton: Selector for the "My Profile" button.
|
|
8572
8688
|
*
|
|
8573
|
-
*
|
|
8689
|
+
* profileOrganizationSettingsButton: Selector for the profile organization settings button.
|
|
8574
8690
|
*
|
|
8575
|
-
*
|
|
8691
|
+
* logoutButton: Selector for the logout button.
|
|
8576
8692
|
*
|
|
8577
|
-
*
|
|
8693
|
+
* neetoAuthLink: Selector for the Neeto authentication link button.
|
|
8578
8694
|
*
|
|
8579
|
-
*
|
|
8695
|
+
* profileSidebarCancelButton: Selector for the profile sidebar cancel button.
|
|
8580
8696
|
*
|
|
8581
|
-
*
|
|
8697
|
+
* profileAvatar: Selector for the profile avatar.
|
|
8582
8698
|
*
|
|
8583
|
-
*
|
|
8699
|
+
* actionHeaderUserEmail: Selector for the user email.
|
|
8700
|
+
*
|
|
8701
|
+
* submitButton: Selector for the submit button.
|
|
8584
8702
|
*
|
|
8585
8703
|
*/
|
|
8586
|
-
declare const
|
|
8587
|
-
|
|
8588
|
-
|
|
8589
|
-
|
|
8590
|
-
|
|
8591
|
-
|
|
8592
|
-
|
|
8593
|
-
|
|
8594
|
-
|
|
8595
|
-
|
|
8596
|
-
|
|
8704
|
+
declare const PROFILE_SECTION_SELECTORS: {
|
|
8705
|
+
profileSectionButton: string;
|
|
8706
|
+
profilePopup: string;
|
|
8707
|
+
profileExpandMenuBtn: string;
|
|
8708
|
+
profileMoreDropdownButton: string;
|
|
8709
|
+
myProfileButton: string;
|
|
8710
|
+
updateEmailMenuBtn: string;
|
|
8711
|
+
workspaceDisplay: string;
|
|
8712
|
+
profileOrganizationSettingsButton: string;
|
|
8713
|
+
logoutButton: string;
|
|
8714
|
+
neetoAuthLink: string;
|
|
8715
|
+
profileSidebarCancelButton: string;
|
|
8716
|
+
profileAvatar: string;
|
|
8717
|
+
actionHeaderUserName: string;
|
|
8718
|
+
actionHeaderUserEmail: string;
|
|
8719
|
+
submitButton: string;
|
|
8720
|
+
editBtn: string;
|
|
8721
|
+
firstNameTextField: string;
|
|
8722
|
+
lastNameTextField: string;
|
|
8723
|
+
manageBillingAndSubscriptionsButton: string;
|
|
8724
|
+
cancelButton: string;
|
|
8725
|
+
profileSubmitBtn: string;
|
|
8726
|
+
editBasicInfoMenuBtn: string;
|
|
8727
|
+
editBasicInfoBtn: string;
|
|
8728
|
+
phoneNumberTxtField: string;
|
|
8729
|
+
timezoneBtn: string;
|
|
8730
|
+
timezoneSearchBox: string;
|
|
8731
|
+
nameField: string;
|
|
8732
|
+
emailField: string;
|
|
8733
|
+
firstNameField: string;
|
|
8734
|
+
lastNameField: string;
|
|
8735
|
+
phoneNumberField: string;
|
|
8736
|
+
countryField: string;
|
|
8737
|
+
timeZoneField: string;
|
|
8738
|
+
timeFormatField: string;
|
|
8739
|
+
dateFormatField: string;
|
|
8740
|
+
firstNameInputError: string;
|
|
8741
|
+
timeZoneSelect: string;
|
|
8742
|
+
lastNameInputError: string;
|
|
8743
|
+
phoneNumberInputError: string;
|
|
8744
|
+
imageUploadBtn: string;
|
|
8745
|
+
imageRemoveBtn: string;
|
|
8597
8746
|
};
|
|
8598
8747
|
/**
|
|
8748
|
+
*
|
|
8749
|
+
* Selectors for roles components.
|
|
8599
8750
|
*
|
|
8600
8751
|
* @example
|
|
8601
8752
|
*
|
|
8602
|
-
* import {
|
|
8753
|
+
* import {
|
|
8754
|
+
* ROLES_SELECTORS
|
|
8755
|
+
* } from "@neetoplaywright";
|
|
8756
|
+
*
|
|
8603
8757
|
* @endexample
|
|
8604
|
-
*
|
|
8758
|
+
* newButton: Selector for the "New" button to add a new role.
|
|
8605
8759
|
*
|
|
8606
|
-
*
|
|
8760
|
+
* proceedButton: Selector for the "Proceed" button.
|
|
8607
8761
|
*
|
|
8608
|
-
*
|
|
8762
|
+
* cancelButton: Selector for the "Cancel" button.
|
|
8609
8763
|
*
|
|
8610
|
-
*
|
|
8764
|
+
* tableHeaderRoleName: Selector for the table header role name.
|
|
8611
8765
|
*
|
|
8612
|
-
|
|
8613
|
-
declare const CHANGELOG_WIDGET_SELECTORS: {
|
|
8614
|
-
changelogWrapper: string;
|
|
8615
|
-
closeButton: string;
|
|
8616
|
-
publicUrlLink: string;
|
|
8617
|
-
};
|
|
8618
|
-
/**
|
|
8766
|
+
* nameTextField: Selector for the name text field when adding or updating a role.
|
|
8619
8767
|
*
|
|
8620
|
-
*
|
|
8768
|
+
* searchTextField: Selector for the search text field for roles.
|
|
8621
8769
|
*
|
|
8622
|
-
*
|
|
8770
|
+
* updateRolePaneHeading: Selector for the heading when updating a role.
|
|
8623
8771
|
*
|
|
8624
|
-
*
|
|
8625
|
-
* @endexample
|
|
8626
|
-
* keyboardShortcutsPane: Selector for the keyboard shortcuts pane.
|
|
8772
|
+
* updateRoleCancelButton: Selector for the cancel button when updating a role.
|
|
8627
8773
|
*
|
|
8628
|
-
*
|
|
8774
|
+
* descriptionTextField: Selector for the description text field when adding or updating a role.
|
|
8629
8775
|
*
|
|
8630
|
-
*
|
|
8776
|
+
* permissionCategoryTitle: Selector for the title of the permission category.
|
|
8631
8777
|
*
|
|
8632
|
-
|
|
8633
|
-
declare const KEYBOARD_SHORTCUTS_SELECTORS: {
|
|
8634
|
-
keyboardShortcutsPane: string;
|
|
8635
|
-
closePaneButton: string;
|
|
8636
|
-
hotKeyItem: string;
|
|
8637
|
-
};
|
|
8638
|
-
/**
|
|
8778
|
+
* headerColumn: Selector for the header column of the roles table.
|
|
8639
8779
|
*
|
|
8640
|
-
*
|
|
8780
|
+
* dropDownIcon: Selector for the dropdown icon in the roles table header.
|
|
8641
8781
|
*
|
|
8642
|
-
*
|
|
8782
|
+
* tableHeaderRoleTitle: Selector for the title in the roles table header.
|
|
8643
8783
|
*
|
|
8644
|
-
*
|
|
8645
|
-
* @endexample
|
|
8646
|
-
* integrationCard(integration: string): Method that generates a selector for the integration card based on the integration name. Accepts a string parameter representing the integration name.
|
|
8784
|
+
* permissionCheckbox(name): Builder for the add/edit-role pane permission checkbox, keyed on the permission name (e.g. meetings.create_meeting).
|
|
8647
8785
|
*
|
|
8648
|
-
*
|
|
8786
|
+
* editRoleButton: Selector for the edit role button in the roles table.
|
|
8649
8787
|
*
|
|
8650
|
-
*
|
|
8788
|
+
* deleteRoleButton: Selector for the delete role button in the roles table.
|
|
8651
8789
|
*
|
|
8652
|
-
*
|
|
8790
|
+
* permissionCard: Selector for the permission card.
|
|
8653
8791
|
*
|
|
8654
|
-
*
|
|
8792
|
+
* searchPermissionsInput: Selector for the search input.
|
|
8655
8793
|
*
|
|
8656
|
-
*
|
|
8794
|
+
* permissionDescription: Selector for the permission description.
|
|
8795
|
+
*
|
|
8796
|
+
* rolesEditButton: Selector for the edit button.
|
|
8797
|
+
*
|
|
8798
|
+
* permissionSubCategoryCard: Selector for permission sub-category card.
|
|
8657
8799
|
*
|
|
8658
8800
|
*/
|
|
8659
|
-
declare const
|
|
8660
|
-
|
|
8661
|
-
|
|
8662
|
-
|
|
8663
|
-
|
|
8664
|
-
|
|
8665
|
-
|
|
8666
|
-
|
|
8667
|
-
|
|
8668
|
-
|
|
8669
|
-
|
|
8670
|
-
|
|
8671
|
-
|
|
8672
|
-
|
|
8673
|
-
|
|
8674
|
-
|
|
8801
|
+
declare const ROLES_SELECTORS: {
|
|
8802
|
+
newButton: string;
|
|
8803
|
+
proceedButton: string;
|
|
8804
|
+
cancelButton: string;
|
|
8805
|
+
tableHeaderRoleName: string;
|
|
8806
|
+
nameTextField: string;
|
|
8807
|
+
searchTextField: string;
|
|
8808
|
+
updateRolePaneHeading: string;
|
|
8809
|
+
updateRoleCancelButton: string;
|
|
8810
|
+
descriptionTextField: string;
|
|
8811
|
+
permissionCategoryTitle: string;
|
|
8812
|
+
headerColumn: string;
|
|
8813
|
+
dropDownIcon: string;
|
|
8814
|
+
tableHeaderRoleTitle: string;
|
|
8815
|
+
permissionCheckbox: (name: string) => string;
|
|
8816
|
+
editRoleButton: string;
|
|
8817
|
+
deleteRoleButton: string;
|
|
8818
|
+
permissionCard: string;
|
|
8819
|
+
searchPermissionsInput: string;
|
|
8820
|
+
permissionDescription: string;
|
|
8821
|
+
rolesEditButton: string;
|
|
8822
|
+
roleCell: (roleName: string) => string;
|
|
8823
|
+
tablePermissionCheckbox: string;
|
|
8824
|
+
descriptionInputError: string;
|
|
8825
|
+
permissionSubCategoryCard: (index: number) => string;
|
|
8675
8826
|
};
|
|
8676
|
-
|
|
8677
|
-
|
|
8827
|
+
/**
|
|
8828
|
+
*
|
|
8829
|
+
* Selectors for SEO-related components.
|
|
8830
|
+
*
|
|
8831
|
+
* @example
|
|
8832
|
+
*
|
|
8833
|
+
* import { NEETO_SEO_SELECTORS } from "@neetoplaywright";
|
|
8834
|
+
* @endexample
|
|
8835
|
+
* configureBtn: Selector for the SEO configure button.
|
|
8836
|
+
*
|
|
8837
|
+
*/
|
|
8838
|
+
declare const NEETO_SEO_SELECTORS: {
|
|
8839
|
+
configureButton: string;
|
|
8678
8840
|
};
|
|
8679
|
-
declare const dataQa: (value: string) => string;
|
|
8680
8841
|
/**
|
|
8681
|
-
*
|
|
8682
|
-
* Selectors for Slack components.
|
|
8683
8842
|
*
|
|
8684
8843
|
* @example
|
|
8685
8844
|
*
|
|
8686
|
-
* import {
|
|
8845
|
+
* import { SIGNUP_SELECTORS } from "@neetoplaywright";
|
|
8687
8846
|
* @endexample
|
|
8688
|
-
*
|
|
8847
|
+
* Selectors for signup components.
|
|
8689
8848
|
*
|
|
8690
|
-
*
|
|
8849
|
+
* emailTextField: Selector for the email text field in the signup form.
|
|
8691
8850
|
*
|
|
8692
|
-
*
|
|
8851
|
+
* firstNameTextField: Selector for the first name text field in the signup form.
|
|
8693
8852
|
*
|
|
8694
|
-
*
|
|
8853
|
+
* lastNameTextField: Selector for the last name text field in the signup form.
|
|
8695
8854
|
*
|
|
8696
|
-
*
|
|
8855
|
+
* organizationNameTextField: Selector for the organization name text field in the signup form.
|
|
8697
8856
|
*
|
|
8698
|
-
*
|
|
8857
|
+
* organizationSubmitButton: Selector for the organization submit button in the signup form.
|
|
8699
8858
|
*
|
|
8700
|
-
*
|
|
8859
|
+
* otpTextBox: Selector for the OTP input text box in the signup form.
|
|
8701
8860
|
*
|
|
8702
|
-
*
|
|
8861
|
+
* profileSubmitButton: Selector for the profile submit button in the signup form.
|
|
8703
8862
|
*
|
|
8704
|
-
*
|
|
8863
|
+
* signupViaEmailButton: Selector for the signup via email button.
|
|
8705
8864
|
*
|
|
8706
|
-
*
|
|
8865
|
+
* submitButton: Selector for the submit button in the signup form.
|
|
8707
8866
|
*
|
|
8708
|
-
*
|
|
8867
|
+
* subdomainNameTextField: Selector for the subdomain name text field in the signup form.
|
|
8709
8868
|
*
|
|
8710
|
-
*
|
|
8869
|
+
* subdomainError: Selector for the subdomain input error message in the signup form.
|
|
8711
8870
|
*
|
|
8712
|
-
*
|
|
8871
|
+
* tryFreeButton: Selector for the "Try Free" button.
|
|
8713
8872
|
*
|
|
8714
|
-
*
|
|
8873
|
+
* unregisteredEmailError: Selector for the error message when using an unregistered email in the signup form.
|
|
8715
8874
|
*
|
|
8716
8875
|
*/
|
|
8717
|
-
declare const
|
|
8718
|
-
|
|
8719
|
-
|
|
8720
|
-
|
|
8721
|
-
|
|
8722
|
-
|
|
8723
|
-
|
|
8724
|
-
|
|
8725
|
-
|
|
8726
|
-
|
|
8727
|
-
|
|
8728
|
-
|
|
8729
|
-
|
|
8730
|
-
|
|
8731
|
-
|
|
8732
|
-
|
|
8876
|
+
declare const SIGNUP_SELECTORS: {
|
|
8877
|
+
emailTextField: string;
|
|
8878
|
+
firstNameTextField: string;
|
|
8879
|
+
lastNameTextField: string;
|
|
8880
|
+
organizationNameTextField: string;
|
|
8881
|
+
organizationSubmitButton: string;
|
|
8882
|
+
otpTextBox: string;
|
|
8883
|
+
profileSubmitButton: string;
|
|
8884
|
+
signupViaEmailButton: string;
|
|
8885
|
+
submitButton: string;
|
|
8886
|
+
subdomainNameTextField: string;
|
|
8887
|
+
subdomainAvailabilityMsg: string;
|
|
8888
|
+
subdomainError: string;
|
|
8889
|
+
tryFreeButton: string;
|
|
8890
|
+
unregisteredEmailError: string;
|
|
8891
|
+
organization: (organizationName: string) => string;
|
|
8733
8892
|
};
|
|
8734
8893
|
/**
|
|
8735
8894
|
*
|
|
8736
|
-
* Selectors for
|
|
8895
|
+
* Selectors for tab components.
|
|
8737
8896
|
*
|
|
8738
8897
|
* @example
|
|
8739
8898
|
*
|
|
8740
|
-
* import {
|
|
8899
|
+
* import { TAB_SELECTORS } from "@neetoplaywright";
|
|
8741
8900
|
* @endexample
|
|
8742
|
-
*
|
|
8743
|
-
*
|
|
8744
|
-
* channelSectionSubmenuCreate: Selector for the channel section submenu create button.
|
|
8745
|
-
*
|
|
8746
|
-
* channelSectionMenuCreateChannel: Selector for the channel section menu create channel button.
|
|
8747
|
-
*
|
|
8748
|
-
* skModalContent: Selector for the modal content.
|
|
8749
|
-
*
|
|
8750
|
-
* infiniteSpinner: Selector for the infinite spinner.
|
|
8751
|
-
*
|
|
8752
|
-
* channelNameOptionsList: Selector for the channel name options list.
|
|
8901
|
+
* configureTab: Selector for the configure tab.
|
|
8753
8902
|
*
|
|
8754
|
-
*
|
|
8903
|
+
* buildTab: Selector for the build tab.
|
|
8755
8904
|
*
|
|
8756
|
-
*
|
|
8905
|
+
* themeTab: Selector for the theme tab.
|
|
8757
8906
|
*
|
|
8758
|
-
*
|
|
8907
|
+
* shareTab: Selector for the share tab.
|
|
8759
8908
|
*
|
|
8760
|
-
*
|
|
8909
|
+
* submissionsTab: Selector for the submissions tab.
|
|
8761
8910
|
*
|
|
8762
|
-
*
|
|
8911
|
+
* paymentsTab: Selector for the payments tab.
|
|
8763
8912
|
*
|
|
8764
|
-
*
|
|
8913
|
+
* settingsTab: Selector for the settings tab.
|
|
8765
8914
|
*
|
|
8766
8915
|
*/
|
|
8767
|
-
declare const
|
|
8768
|
-
|
|
8769
|
-
|
|
8770
|
-
|
|
8771
|
-
|
|
8772
|
-
|
|
8773
|
-
|
|
8774
|
-
|
|
8775
|
-
infiniteSpinner: string;
|
|
8776
|
-
channelNameOptionsList: string;
|
|
8777
|
-
channelNameInput: string;
|
|
8778
|
-
createChannelNextButton: string;
|
|
8779
|
-
inviteToWorkspaceSkipButton: string;
|
|
8780
|
-
menuItems: string;
|
|
8781
|
-
channelDetailsModal: string;
|
|
8782
|
-
channelDetailsSettingsTab: string;
|
|
8916
|
+
declare const TAB_SELECTORS: {
|
|
8917
|
+
configureTab: string;
|
|
8918
|
+
buildTab: string;
|
|
8919
|
+
themeTab: string;
|
|
8920
|
+
shareTab: string;
|
|
8921
|
+
submissionsTab: string;
|
|
8922
|
+
paymentsTab: string;
|
|
8923
|
+
settingsTab: string;
|
|
8783
8924
|
};
|
|
8925
|
+
type ColumnMenuAction = "hide" | "freeze-unfreeze" | "ascending" | "descending" | "edit";
|
|
8784
8926
|
/**
|
|
8785
8927
|
*
|
|
8786
|
-
* Selectors for
|
|
8928
|
+
* Selectors for table components.
|
|
8787
8929
|
*
|
|
8788
8930
|
* @example
|
|
8789
8931
|
*
|
|
8790
|
-
* import {
|
|
8932
|
+
* import { TABLE_SELECTORS } from "@neetoplaywright";
|
|
8791
8933
|
* @endexample
|
|
8792
|
-
*
|
|
8793
|
-
*
|
|
8794
|
-
* endpointInputField: Selector for the endpoint input field.
|
|
8795
|
-
*
|
|
8796
|
-
* deliveryResponseCode: Selector for the delivery response code.
|
|
8797
|
-
*
|
|
8798
|
-
* deliveryRequestPayload: Selector for the delivery request payload.
|
|
8799
|
-
*
|
|
8800
|
-
* addSecretKey: Selector for add secret key button.
|
|
8801
|
-
*
|
|
8802
|
-
* newWebhookHeader: Selector for new webhook pane header.
|
|
8803
|
-
*
|
|
8804
|
-
* endpointInputError: Selector for endpoint input error.
|
|
8934
|
+
* freezeUnfreezeButton: Selector for freeze/unfreeze column button.
|
|
8805
8935
|
*
|
|
8806
|
-
*
|
|
8936
|
+
* ascendingButton: Selector for ascending column button.
|
|
8807
8937
|
*
|
|
8808
|
-
*
|
|
8938
|
+
* descendingButton: Selector for descending column button.
|
|
8809
8939
|
*
|
|
8810
|
-
*
|
|
8940
|
+
* hideButton: Selector for hide column button.
|
|
8811
8941
|
*
|
|
8812
|
-
*
|
|
8942
|
+
* columnHeaderTitle: Selector for column header title.
|
|
8813
8943
|
*
|
|
8814
|
-
*
|
|
8944
|
+
* columnMenuButton: Selector for column menu button.
|
|
8815
8945
|
*
|
|
8816
8946
|
*/
|
|
8817
|
-
declare const
|
|
8818
|
-
|
|
8819
|
-
|
|
8820
|
-
|
|
8821
|
-
|
|
8822
|
-
|
|
8823
|
-
|
|
8824
|
-
|
|
8825
|
-
|
|
8826
|
-
|
|
8827
|
-
deleteSecret: string;
|
|
8828
|
-
deliveryRequestHeader: string;
|
|
8829
|
-
deliveryResponseBody: string;
|
|
8830
|
-
eventErrorText: string;
|
|
8831
|
-
editWebhookButton: string;
|
|
8832
|
-
deleteWebhookButton: string;
|
|
8947
|
+
declare const TABLE_SELECTORS: {
|
|
8948
|
+
freezeUnfreezeButton: string;
|
|
8949
|
+
ascendingButton: string;
|
|
8950
|
+
descendingButton: string;
|
|
8951
|
+
hideButton: string;
|
|
8952
|
+
columnHeaderTitle: (columnName: string) => string;
|
|
8953
|
+
columnMenuButton: string;
|
|
8954
|
+
columnInfoIcon: string;
|
|
8955
|
+
columnMenuBtn: (action: ColumnMenuAction) => string;
|
|
8956
|
+
moveColumnBtn: (position: "left" | "right") => string;
|
|
8833
8957
|
};
|
|
8834
8958
|
/**
|
|
8835
8959
|
*
|
|
8836
|
-
* Selectors for
|
|
8960
|
+
* Selectors for tags components.
|
|
8837
8961
|
*
|
|
8838
8962
|
* @example
|
|
8839
8963
|
*
|
|
8840
|
-
* import {
|
|
8964
|
+
* import { TAGS_SELECTORS } from "@neetoplaywright";
|
|
8841
8965
|
* @endexample
|
|
8842
|
-
*
|
|
8843
|
-
*
|
|
8844
|
-
* zapAccountSubstep: Selector for the Zap account substep.
|
|
8845
|
-
*
|
|
8846
|
-
* zapOpenSubstepContainer: Selector for the container to open substeps.
|
|
8847
|
-
*
|
|
8848
|
-
* modal: Selector for modals.
|
|
8849
|
-
*
|
|
8850
|
-
* fmPrettytext: Selector for pretty text.
|
|
8966
|
+
* newTagButton: Selector for the "New Tag" button.
|
|
8851
8967
|
*
|
|
8852
|
-
*
|
|
8968
|
+
* tagNameTextField: Selector for the tag name text field.
|
|
8853
8969
|
*
|
|
8854
|
-
*
|
|
8970
|
+
* editButton: Selector for the edit button for tags.
|
|
8855
8971
|
*
|
|
8856
|
-
*
|
|
8972
|
+
* deleteButton: Selector for the delete button for tags.
|
|
8857
8973
|
*
|
|
8858
|
-
*
|
|
8974
|
+
* cancelButton: Selector for the cancel button when managing tags.
|
|
8859
8975
|
*
|
|
8860
|
-
*
|
|
8976
|
+
* submitButton: Selector for the submit button when managing tags.
|
|
8861
8977
|
*
|
|
8862
|
-
*
|
|
8978
|
+
* searchTextField: Selector for the search text field for tags.
|
|
8863
8979
|
*
|
|
8864
|
-
*
|
|
8980
|
+
* descriptionTextArea: Selector for the description text area for tags.
|
|
8865
8981
|
*
|
|
8866
|
-
*
|
|
8982
|
+
* addTagButton: Selector for the button to add a new tag.
|
|
8867
8983
|
*
|
|
8868
|
-
*
|
|
8984
|
+
* tagSearchField: Selector for the tag search input field.
|
|
8869
8985
|
*
|
|
8870
|
-
*
|
|
8986
|
+
* deleteTagButton: Selector for the button to delete a tag.
|
|
8871
8987
|
*
|
|
8872
|
-
*
|
|
8988
|
+
* metaDataCard: Selector for the metadata card container.
|
|
8873
8989
|
*
|
|
8874
|
-
*
|
|
8990
|
+
* metaDataBlock: Selector for individual metadata blocks inside the card.
|
|
8875
8991
|
*
|
|
8876
|
-
*
|
|
8992
|
+
* tagContainer: Selector for the tag container.
|
|
8877
8993
|
*
|
|
8878
|
-
|
|
8879
|
-
|
|
8880
|
-
|
|
8881
|
-
|
|
8882
|
-
|
|
8883
|
-
|
|
8884
|
-
|
|
8885
|
-
|
|
8886
|
-
|
|
8887
|
-
|
|
8888
|
-
|
|
8889
|
-
|
|
8890
|
-
|
|
8891
|
-
|
|
8892
|
-
|
|
8893
|
-
|
|
8894
|
-
|
|
8895
|
-
|
|
8896
|
-
|
|
8897
|
-
zapierSubLink: string;
|
|
8898
|
-
navbar: string;
|
|
8899
|
-
authTitle: string;
|
|
8900
|
-
publishButton: string;
|
|
8901
|
-
panelFooter: string;
|
|
8902
|
-
zapToggle: string;
|
|
8903
|
-
stepBlock: string;
|
|
8904
|
-
universalTopbar: string;
|
|
8905
|
-
accountsMenu: string;
|
|
8906
|
-
zapToggleCheckbox: string;
|
|
8907
|
-
};
|
|
8908
|
-
declare const TWILIO_SELECTORS: {
|
|
8909
|
-
sidField: string;
|
|
8910
|
-
authTokenField: string;
|
|
8994
|
+
* tagsCount: Selector for tags count text.
|
|
8995
|
+
*
|
|
8996
|
+
*/
|
|
8997
|
+
declare const TAGS_SELECTORS: {
|
|
8998
|
+
newTagButton: string;
|
|
8999
|
+
tagNameTextField: string;
|
|
9000
|
+
editButton: string;
|
|
9001
|
+
deleteButton: string;
|
|
9002
|
+
cancelButton: string;
|
|
9003
|
+
submitButton: string;
|
|
9004
|
+
searchTextField: string;
|
|
9005
|
+
descriptionTextArea: string;
|
|
9006
|
+
addTagButton: string;
|
|
9007
|
+
tagSearchField: string;
|
|
9008
|
+
deleteTagButton: string;
|
|
9009
|
+
metaDataCard: string;
|
|
9010
|
+
metaDataBlock: string;
|
|
9011
|
+
tagContainer: string;
|
|
9012
|
+
tagsCount: string;
|
|
8911
9013
|
};
|
|
8912
|
-
type ColumnMenuAction = "hide" | "freeze-unfreeze" | "ascending" | "descending" | "edit";
|
|
8913
9014
|
/**
|
|
8914
9015
|
*
|
|
8915
|
-
* Selectors for
|
|
9016
|
+
* Selectors for merging tags components.
|
|
8916
9017
|
*
|
|
8917
9018
|
* @example
|
|
8918
9019
|
*
|
|
8919
|
-
* import {
|
|
9020
|
+
* import { MERGE_TAGS_SELECTORS } from "@neetoplaywright";
|
|
8920
9021
|
* @endexample
|
|
8921
|
-
*
|
|
9022
|
+
* mergeTagsButton: Selector for the "Merge Tags" button.
|
|
8922
9023
|
*
|
|
8923
|
-
*
|
|
9024
|
+
* mergeButton: Selector for the merge button.
|
|
8924
9025
|
*
|
|
8925
|
-
*
|
|
9026
|
+
* sourceSearchTextField: Selector for the search text field in the source tags section.
|
|
8926
9027
|
*
|
|
8927
|
-
*
|
|
9028
|
+
* sourceTagsList: Selector for the list of source tags.
|
|
8928
9029
|
*
|
|
8929
|
-
*
|
|
9030
|
+
* destinationTagsList: Selector for the list of destination tags.
|
|
8930
9031
|
*
|
|
8931
|
-
*
|
|
9032
|
+
* destinationSearchTextField: Selector for the search text field in the destination tags section.
|
|
9033
|
+
*
|
|
9034
|
+
* cancelButton: Selector for the cancel button when merging tags.
|
|
9035
|
+
*
|
|
9036
|
+
* proceedButton: Selector for the proceed button when merging tags.
|
|
9037
|
+
*
|
|
9038
|
+
* disabledTag: Selector for disabled tags.
|
|
8932
9039
|
*
|
|
8933
9040
|
*/
|
|
8934
|
-
declare const
|
|
8935
|
-
|
|
8936
|
-
|
|
8937
|
-
|
|
8938
|
-
|
|
8939
|
-
|
|
8940
|
-
|
|
8941
|
-
|
|
8942
|
-
|
|
8943
|
-
|
|
9041
|
+
declare const MERGE_TAGS_SELECTORS: {
|
|
9042
|
+
mergeTagsButton: string;
|
|
9043
|
+
mergeButton: string;
|
|
9044
|
+
sourceSearchTextField: string;
|
|
9045
|
+
sourceTagsList: string;
|
|
9046
|
+
destinationTagsList: string;
|
|
9047
|
+
destinationSearchTextField: string;
|
|
9048
|
+
cancelButton: string;
|
|
9049
|
+
proceedButton: string;
|
|
9050
|
+
disabledTag: string;
|
|
9051
|
+
sourceTagRow: string;
|
|
9052
|
+
destinationTagRow: string;
|
|
8944
9053
|
};
|
|
8945
9054
|
/**
|
|
8946
9055
|
*
|
|
@@ -8962,191 +9071,84 @@ declare const THEMES_SELECTORS: {
|
|
|
8962
9071
|
};
|
|
8963
9072
|
/**
|
|
8964
9073
|
*
|
|
8965
|
-
* Selectors for
|
|
9074
|
+
* Selectors for the chat widget components.
|
|
8966
9075
|
*
|
|
8967
9076
|
* @example
|
|
8968
9077
|
*
|
|
8969
|
-
* import {
|
|
9078
|
+
* import { CHAT_WIDGET_SELECTORS } from "@neetoplaywright";
|
|
8970
9079
|
* @endexample
|
|
8971
|
-
*
|
|
8972
|
-
*
|
|
8973
|
-
* settingsItemDescription: Selector for settings item description.
|
|
8974
|
-
*
|
|
8975
|
-
* expiryDateInput: Selector for expiry date input.
|
|
8976
|
-
*
|
|
8977
|
-
*/
|
|
8978
|
-
declare const ADMIN_PANEL_SELECTORS: {
|
|
8979
|
-
settingsItemHeading: string;
|
|
8980
|
-
settingsItemDescription: string;
|
|
8981
|
-
expiryDateInput: string;
|
|
8982
|
-
goBackButton: string;
|
|
8983
|
-
};
|
|
8984
|
-
/**
|
|
8985
|
-
*
|
|
8986
|
-
* Selectors for custom domain page components.
|
|
8987
|
-
*
|
|
8988
|
-
* addCustomDomainButton: Selector for the add custom domain button.
|
|
8989
|
-
*
|
|
8990
|
-
* customDomainInputField: Selector for the custom domain input field.
|
|
8991
|
-
*
|
|
8992
|
-
* submitCustomDomainButton: Selector for the submit custom domain button.
|
|
8993
|
-
*
|
|
8994
|
-
* customDomainValidateButton: Selector for the custom domain validate button.
|
|
8995
|
-
*
|
|
8996
|
-
* moreDropdownButton: Selector for the more dropdown button.
|
|
8997
|
-
*
|
|
8998
|
-
* editCustomDomainButton: Selector for the edit custom domain button.
|
|
8999
|
-
*
|
|
9000
|
-
* deleteCustomDomainButton: Selector for the delete custom domain button.
|
|
9001
|
-
*
|
|
9002
|
-
* activeTagContainer: Selector for the active tag container.
|
|
9003
|
-
*
|
|
9004
|
-
*/
|
|
9005
|
-
declare const CUSTOM_DOMAIN_SELECTORS: {
|
|
9006
|
-
addCustomDomainButton: string;
|
|
9007
|
-
customDomainInputField: string;
|
|
9008
|
-
submitCustomDomainButton: string;
|
|
9009
|
-
customDomainValidateButton: string;
|
|
9010
|
-
editCustomDomainButton: string;
|
|
9011
|
-
deleteCustomDomainButton: string;
|
|
9012
|
-
dropdownButton: string;
|
|
9013
|
-
activeTagContainer: string;
|
|
9014
|
-
nameInputError: string;
|
|
9015
|
-
};
|
|
9016
|
-
/**
|
|
9017
|
-
*
|
|
9018
|
-
* Selectors for API keys page components.
|
|
9019
|
-
*
|
|
9020
|
-
* editApiKeyButton: Selector for the edit API key button.
|
|
9080
|
+
* iframe: Selector for the chat widget iframe.
|
|
9021
9081
|
*
|
|
9022
|
-
*
|
|
9082
|
+
* spinner: Selector for the spinner in the chat widget.
|
|
9023
9083
|
*
|
|
9024
|
-
*
|
|
9084
|
+
* helpButton: Selector for the help button in the chat widget.
|
|
9025
9085
|
*
|
|
9026
|
-
*
|
|
9086
|
+
* preChatEmailInput: Selector for the email input in the pre-chat section of the chat widget.
|
|
9027
9087
|
*
|
|
9028
|
-
*
|
|
9088
|
+
* preChatSubmitButton: Selector for the submit button in the pre-chat section of the chat widget.
|
|
9029
9089
|
*
|
|
9030
|
-
*
|
|
9090
|
+
* chatBubble: Selector for the chat message bubble in the chat widget.
|
|
9031
9091
|
*
|
|
9032
|
-
*
|
|
9092
|
+
* closeChat: Selector for the close button in the chat widget.
|
|
9033
9093
|
*
|
|
9034
|
-
*
|
|
9094
|
+
* chatQuestionHeader: Selector for the chat question header.
|
|
9035
9095
|
*
|
|
9036
|
-
*
|
|
9096
|
+
* openChat: Selector for the chat widget open button.
|
|
9037
9097
|
*
|
|
9038
|
-
*
|
|
9098
|
+
* homeScreenSubtitle: Selector for the home screen subtitle.
|
|
9039
9099
|
*
|
|
9040
9100
|
*/
|
|
9041
|
-
declare const
|
|
9042
|
-
|
|
9043
|
-
|
|
9044
|
-
|
|
9045
|
-
|
|
9046
|
-
|
|
9047
|
-
|
|
9048
|
-
|
|
9049
|
-
|
|
9050
|
-
|
|
9051
|
-
|
|
9052
|
-
expiresAtField: string;
|
|
9053
|
-
createdAtField: string;
|
|
9054
|
-
};
|
|
9055
|
-
declare const IP_RESTRICTIONS_SELECTORS: {
|
|
9056
|
-
enableIPRestrictionChk: string;
|
|
9057
|
-
saveChanges: string;
|
|
9058
|
-
addIPRangeBtn: string;
|
|
9059
|
-
ipStartTextField: string;
|
|
9060
|
-
ipEndTextField: string;
|
|
9061
|
-
ipRangeDeleteBtn: string;
|
|
9062
|
-
ipStartInpError: string;
|
|
9063
|
-
ipEndInpError: string;
|
|
9064
|
-
typeSelectError: string;
|
|
9065
|
-
addressTypeSelect: string;
|
|
9066
|
-
resetButton: string;
|
|
9067
|
-
};
|
|
9068
|
-
declare const AUDIT_LOGS_SELECTORS: {
|
|
9069
|
-
card: string;
|
|
9070
|
-
content: string;
|
|
9071
|
-
timestamp: string;
|
|
9072
|
-
text: string;
|
|
9101
|
+
declare const CHAT_WIDGET_SELECTORS: {
|
|
9102
|
+
iframe: string;
|
|
9103
|
+
spinner: string;
|
|
9104
|
+
helpButton: string;
|
|
9105
|
+
preChatEmailInput: string;
|
|
9106
|
+
preChatSubmitButton: string;
|
|
9107
|
+
chatBubble: string;
|
|
9108
|
+
closeChat: string;
|
|
9109
|
+
chatQuestionHeader: string;
|
|
9110
|
+
openChat: string;
|
|
9111
|
+
homeScreenSubtitle: string;
|
|
9073
9112
|
};
|
|
9074
9113
|
/**
|
|
9075
9114
|
*
|
|
9076
|
-
*
|
|
9077
|
-
*
|
|
9078
|
-
* pickerInput: Selector for the picker input field.
|
|
9079
|
-
*
|
|
9080
|
-
* datePicker: Selector for the date picker component.
|
|
9081
|
-
*
|
|
9082
|
-
* timePicker: Selector for the time picker component.
|
|
9083
|
-
*
|
|
9084
|
-
* nextYearButton: Selector for the button to navigate to the next year.
|
|
9085
|
-
*
|
|
9086
|
-
* prevYearButton: Selector for the button to navigate to the previous year.
|
|
9115
|
+
* @example
|
|
9087
9116
|
*
|
|
9088
|
-
|
|
9089
|
-
|
|
9090
|
-
|
|
9091
|
-
datePicker: string;
|
|
9092
|
-
timePicker: string;
|
|
9093
|
-
nextYearButton: string;
|
|
9094
|
-
prevYearButton: string;
|
|
9095
|
-
selectedDateInCalendarClass: string;
|
|
9096
|
-
};
|
|
9097
|
-
declare const ONBOARDING_SELECTORS: {
|
|
9098
|
-
welcomeTitle: string;
|
|
9099
|
-
welcomeDescription: string;
|
|
9100
|
-
getStartedBtn: string;
|
|
9101
|
-
doLaterBtn: string;
|
|
9102
|
-
helpBtn: string;
|
|
9103
|
-
continueBtn: string;
|
|
9104
|
-
congratulationsTitle: string;
|
|
9105
|
-
congratulationsDescription: string;
|
|
9106
|
-
congratulationsBtn: string;
|
|
9107
|
-
};
|
|
9108
|
-
/**
|
|
9117
|
+
* import { CHANGELOG_WIDGET_SELECTORS } from "@neetoplaywright";
|
|
9118
|
+
* @endexample
|
|
9119
|
+
* Selectors for the changelog widget components.
|
|
9109
9120
|
*
|
|
9110
|
-
*
|
|
9121
|
+
* changelogWrapper: Selector for the wrapper of the changelog widget.
|
|
9111
9122
|
*
|
|
9112
|
-
*
|
|
9123
|
+
* closeButton: Selector for the close button in the changelog widget.
|
|
9113
9124
|
*
|
|
9114
|
-
*
|
|
9115
|
-
* @endexample
|
|
9116
|
-
* configureBtn: Selector for the SEO configure button.
|
|
9125
|
+
* publicUrlLink: Selector for the public URL link in the changelog widget.
|
|
9117
9126
|
*
|
|
9118
9127
|
*/
|
|
9119
|
-
declare const
|
|
9120
|
-
|
|
9128
|
+
declare const CHANGELOG_WIDGET_SELECTORS: {
|
|
9129
|
+
changelogWrapper: string;
|
|
9130
|
+
closeButton: string;
|
|
9131
|
+
publicUrlLink: string;
|
|
9121
9132
|
};
|
|
9122
9133
|
/**
|
|
9123
9134
|
*
|
|
9124
|
-
* Selectors for
|
|
9135
|
+
* Selectors for the keyboard shortcuts pane components.
|
|
9125
9136
|
*
|
|
9126
9137
|
* @example
|
|
9127
9138
|
*
|
|
9128
|
-
* import {
|
|
9139
|
+
* import { KEYBOARD_SHORTCUTS_SELECTORS } from "@neetoplaywright";
|
|
9129
9140
|
* @endexample
|
|
9130
|
-
*
|
|
9131
|
-
*
|
|
9132
|
-
* cancelButton: Selector for the cancel button.
|
|
9133
|
-
*
|
|
9134
|
-
* signInProfileIcon: Selector for the sign in profile icon.
|
|
9135
|
-
*
|
|
9136
|
-
* emailInput: Selector for the email input field.
|
|
9141
|
+
* keyboardShortcutsPane: Selector for the keyboard shortcuts pane.
|
|
9137
9142
|
*
|
|
9138
|
-
*
|
|
9143
|
+
* closePaneButton: Selector for the close button in the keyboard shortcuts pane.
|
|
9139
9144
|
*
|
|
9140
|
-
*
|
|
9145
|
+
* hotKeyItem: Selector for the hotkey item in the keyboard shortcuts pane.
|
|
9141
9146
|
*
|
|
9142
9147
|
*/
|
|
9143
|
-
declare const
|
|
9144
|
-
|
|
9145
|
-
|
|
9146
|
-
|
|
9147
|
-
emailInput: string;
|
|
9148
|
-
placeholder: string;
|
|
9149
|
-
dropdownMenu: (appName: string) => string;
|
|
9148
|
+
declare const KEYBOARD_SHORTCUTS_SELECTORS: {
|
|
9149
|
+
keyboardShortcutsPane: string;
|
|
9150
|
+
closePaneButton: string;
|
|
9151
|
+
hotKeyItem: string;
|
|
9150
9152
|
};
|
|
9151
9153
|
/**
|
|
9152
9154
|
*
|
|
@@ -9400,7 +9402,7 @@ declare const toCamelCase: (string: string) => string;
|
|
|
9400
9402
|
* await findElementByNestedDataQA.hover();
|
|
9401
9403
|
* @endexample
|
|
9402
9404
|
*/
|
|
9403
|
-
declare const getByDataQA:
|
|
9405
|
+
declare const getByDataQA: ts_toolbelt_out_Function_Curry_js.Curry<(page: Page, dataQa: string | [string, string]) => _playwright_test.Locator>;
|
|
9404
9406
|
declare const getListCount: ({
|
|
9405
9407
|
page,
|
|
9406
9408
|
countSelector
|
|
@@ -9497,6 +9499,7 @@ declare const initializeTestData: (product: NeetoProducts) => {
|
|
|
9497
9499
|
};
|
|
9498
9500
|
declare const imageRegex: (imageName: string) => RegExp;
|
|
9499
9501
|
declare const minutesAgo: (minutes: number) => Date;
|
|
9502
|
+
declare const exampleEmail: () => string;
|
|
9500
9503
|
/**
|
|
9501
9504
|
*
|
|
9502
9505
|
* Wraps a login function with a Redis-backed cookie cache so that only one Playwright shard per provider performs a full OAuth login. Subsequent shards skip the login by restoring the cached cookies from Redis.
|
|
@@ -9850,7 +9853,7 @@ declare const tableUtils: {
|
|
|
9850
9853
|
* );
|
|
9851
9854
|
* @endexample
|
|
9852
9855
|
*/
|
|
9853
|
-
verifyFreezeColumnAction: (page: Page,
|
|
9856
|
+
verifyFreezeColumnAction: (page: Page, _t: TFunction) => Promise<void>;
|
|
9854
9857
|
/**
|
|
9855
9858
|
*
|
|
9856
9859
|
* Same as verifyFreezeColumnAction, but for products migrated to the shadcn DOM — works with role-based column menus.
|
|
@@ -9867,7 +9870,7 @@ declare const tableUtils: {
|
|
|
9867
9870
|
* );
|
|
9868
9871
|
* @endexample
|
|
9869
9872
|
*/
|
|
9870
|
-
verifyFreezeColumnActionV2: (page: Page,
|
|
9873
|
+
verifyFreezeColumnActionV2: (page: Page, _t: TFunction) => Promise<void>;
|
|
9871
9874
|
verifyReorderColumns: (page: Page) => Promise<void>;
|
|
9872
9875
|
};
|
|
9873
9876
|
interface EmulateNetworkConditionsParameters {
|
|
@@ -10338,7 +10341,7 @@ declare class EmailDeliveryUtils {
|
|
|
10338
10341
|
connectViaRequest: ({
|
|
10339
10342
|
provider,
|
|
10340
10343
|
ownerId
|
|
10341
|
-
}: ConnectRequestParams) => Promise<
|
|
10344
|
+
}: ConnectRequestParams) => Promise<_playwright_test.APIResponse | undefined>;
|
|
10342
10345
|
verifyEmailViaRequest: ({
|
|
10343
10346
|
subject,
|
|
10344
10347
|
to,
|
|
@@ -10448,5 +10451,5 @@ declare class InboundEmailApis {
|
|
|
10448
10451
|
reply: (emailParams: ReplyInboundEmailParams) => Promise<playwright_core.APIResponse | undefined>;
|
|
10449
10452
|
private deliverSource;
|
|
10450
10453
|
}
|
|
10451
|
-
export { ACTIONS, ADMIN_PANEL_SELECTORS, ALL_RESOURCES, ANALYTICS_RESOURCES, API_KEYS_SELECTORS, API_ROUTES, APP_RESOURCES, AUDIT_LOGS_SELECTORS, ApiKeysApi, ApiKeysPage, ApiKeysPageV2, AuditLogsPage, BASE_URL, CALENDAR_LABELS, CERTIFICATE_LIMIT_EXCEEDED_MESSAGE, CERTIFICATE_LIMIT_EXCEEDED_REGEXP, CHANGELOG_WIDGET_SELECTORS, CHAT_WIDGET_SELECTORS, CHAT_WIDGET_TEXTS, COLOR, COMMON_SELECTORS, COMMON_TEXTS, COMMUNITY_TEXTS, CREDENTIALS, CURRENT_TIME_RANGES, CUSTOM_DOMAIN_SELECTORS, CUSTOM_DOMAIN_SUFFIX, ColorPickerUtils, CustomCommands, CustomCommandsV2, CustomDomainApi, CustomDomainPage, DATE_FORMATS, DATE_PICKER_SELECTORS, DATE_RANGES, DATE_TEXTS, DEFAULT_TIMEZONE_ID, DEFAULT_WEBHOOKS_RESPONSE_TEXT, DESCRIPTION_EDITOR_TEXTS, EDITOR_VERIFY_TEXT_COLOR, EMBED_SELECTORS, EMOJI_LABEL, EMPTY_STORAGE_STATE, ENGAGE_TEXTS, ENVIRONMENT, EXAMPLE_URL, EXPANDED_FONT_SIZE, EXPORT_FILE_TYPES, EditorPage, EmailDeliveryUtils, EmbedBase, FILE_FORMATS, FONTS_RESOURCES, FONT_SIZE_SELECTORS, FROM_EMAIL_ENV_KEYS, GLOBAL_TRANSLATIONS_PATTERN, GOOGLE_ANALYTICS_SELECTORS, GOOGLE_CALENDAR_DATE_FORMAT, GOOGLE_LOGIN_SELECTORS, GOOGLE_LOGIN_TEXTS, GOOGLE_SHEETS_SELECTORS, GooglePage, HELP_CENTER_ROUTES, HELP_CENTER_SELECTORS, HelpAndProfilePage, HelpAndProfilePageV2, INTEGRATIONS_TEXTS, INTEGRATION_SELECTORS, IPRestrictionsPage, IP_RESTRICTIONS_SELECTORS, IS_CI, IS_DEV_ENV, IS_MAILPIT_ENABLED, IS_SHADCN_UI, IS_STAGING_ENV, ImageUploader, InboundEmailApis, IntegrationBase, IpRestrictionsApi, KEYBOARD_SHORTCUTS_SELECTORS, KEYBOARD_SHORTCUT_TEST_CASES, LIST_MODIFIER_SELECTORS, LIST_MODIFIER_TAGS, LOGIN_SELECTORS, MAILPIT_BASE_URL, MAILPIT_DOMAIN_NAME, MEMBER_FORM_SELECTORS, MEMBER_SELECTORS, MEMBER_TEXTS, MERGE_TAGS_SELECTORS, MICROSOFT_LOGIN_SELECTORS, MICROSOFT_LOGIN_TEXTS, MailerUtils, MailpitApi, Member, MemberApis, MicrosoftPage, NEETO_AUTH_BASE_URL, NEETO_EDITOR_SELECTORS, NEETO_FILTERS_SELECTORS, NEETO_IMAGE_UPLOADER_SELECTORS, NEETO_ROUTES, NEETO_SEO_SELECTORS, NEETO_TEXT_MODIFIER_SELECTORS, NeetoAuthServer, NeetoChatWidget, NeetoEmailDeliveryApi, NeetoTowerApi, ONBOARDING_SELECTORS, ORGANIZATION_TEXTS, OTP_EMAIL_PATTERN, OrganizationPage, PAST_TIME_RANGES, PHONE_NUMBER_FORMATS, PLURAL, PRODUCT_ROLES_ROUTE_MAP, PROFILE_LINKS, PROFILE_SECTION_SELECTORS, PROJECT_NAMES, PROJECT_TRANSLATIONS_PATH, ROLES_SELECTORS, ROUTES, RailsEmailApiClient, RailsEmailUtils, RoleApis, RolesPage, RolesPageV2, SIGNUP_SELECTORS, SINGULAR, SLACK_DATA_QA_SELECTORS, SLACK_DEFAULT_CHANNEL, SLACK_SELECTORS, SLACK_WEB_TEXTS, STATUS_TEXTS, STORAGE_STATE, SecurityApi, SidebarSection, SlackApi, SlackPage, SmsApi, SmsUtils, TABLE_SELECTORS, TAB_SELECTORS, TAGS_SELECTORS, TEAM_MEMBER_TEXTS, TEXT_MODIFIER_ROLES, TEXT_MODIFIER_SELECTORS, TEXT_MODIFIER_TAGS, THANK_YOU_SELECTORS, THEMES_SELECTORS, THEMES_TEXTS, THIRD_PARTY_RESOURCES, THIRD_PARTY_ROUTES, TIME_RANGES, TOASTR_MESSAGES, TWILIO_SELECTORS, TagsApi, TagsPage, TeamMembers, TeamMembersV2, ThankYouApi, ThankYouPage, TwilioApi, USER_AGENTS, WEBHOOK_SELECTORS, WebhookSiteApi, WebhooksPage, ZAPIER_LIMIT_EXHAUSTED_MESSAGE, ZAPIER_SELECTORS, ZAPIER_TEST_EMAIL, ZAPIER_TEST_EMAIL_V2, ZAPIER_WEB_TEXTS, ZapierPage, authenticateUser, baseURLGenerator, basicHTMLContent, clearCredentials, commands, cpuThrottlingUsingCDP, createOrganizationViaApi, createOrganizationViaRake, currencyUtils, dataQa, decodeQRCodeFromFile, definePlaywrightConfig, executeWithThrottledResources, extractSubdomainFromError, filterUtils, fixedMenuSelector, generatePhoneNumber, generatePhoneNumberDetails, generateRandomBypassEmail, generateRandomFile, generateStagingData, getByDataQA, getClipboardContent, getDirname, getFormattedPhoneNumber, getFullUrl, getGlobalUserProps, getGlobalUserState, getImagePathAndName, getIsoCodeFromPhoneCode, getListCount, globalShortcuts, grantClipboardPermissions, hexToRGB, hexToRGBA, i18nFixture, imageRegex, initializeCredentials, initializeTestData, initializeTotp, isGithubIssueOpen, isStagingOrganizationExpired, joinHyphenCase, joinString, login, mailpitDomainName, minutesAgo, networkConditions, networkThrottlingUsingCDP, optionSelector, readFileAsBrowserFile, readFileSyncIfExists, removeCredentialFile, serializeFileForBrowser, shouldSkipCustomDomainSetup, shouldSkipSetupAndTeardown, simulateClickWithDelay, simulateTypingWithDelay, skipTest, squish, _default as stealthTest, tableUtils, toCamelCase, updateCredentials, warmup, withCookieCache, writeDataToFile };
|
|
10454
|
+
export { ACTIONS, ADMIN_PANEL_SELECTORS, ALL_RESOURCES, ANALYTICS_RESOURCES, API_KEYS_SELECTORS, API_ROUTES, APP_RESOURCES, AUDIT_LOGS_SELECTORS, ApiKeysApi, ApiKeysPage, ApiKeysPageV2, AuditLogsPage, BASE_URL, CALENDAR_LABELS, CERTIFICATE_LIMIT_EXCEEDED_MESSAGE, CERTIFICATE_LIMIT_EXCEEDED_REGEXP, CHANGELOG_WIDGET_SELECTORS, CHAT_WIDGET_SELECTORS, CHAT_WIDGET_TEXTS, COLOR, COMMON_SELECTORS, COMMON_TEXTS, COMMUNITY_TEXTS, CREDENTIALS, CURRENT_TIME_RANGES, CUSTOM_DOMAIN_SELECTORS, CUSTOM_DOMAIN_SUFFIX, ColorPickerUtils, CustomCommands, CustomCommandsV2, CustomDomainApi, CustomDomainPage, DATE_FORMATS, DATE_PICKER_SELECTORS, DATE_RANGES, DATE_TEXTS, DEFAULT_TIMEZONE_ID, DEFAULT_WEBHOOKS_RESPONSE_TEXT, DESCRIPTION_EDITOR_TEXTS, EDITOR_VERIFY_TEXT_COLOR, EMBED_SELECTORS, EMOJI_LABEL, EMPTY_STORAGE_STATE, ENGAGE_TEXTS, ENVIRONMENT, EXAMPLE_URL, EXPANDED_FONT_SIZE, EXPORT_FILE_TYPES, EditorPage, EmailDeliveryUtils, EmbedBase, FILE_FORMATS, FONTS_RESOURCES, FONT_SIZE_SELECTORS, FROM_EMAIL_ENV_KEYS, GLOBAL_TRANSLATIONS_PATTERN, GOOGLE_ANALYTICS_SELECTORS, GOOGLE_CALENDAR_DATE_FORMAT, GOOGLE_LOGIN_SELECTORS, GOOGLE_LOGIN_TEXTS, GOOGLE_SHEETS_SELECTORS, GooglePage, HELP_CENTER_ROUTES, HELP_CENTER_SELECTORS, HelpAndProfilePage, HelpAndProfilePageV2, INTEGRATIONS_TEXTS, INTEGRATION_SELECTORS, IPRestrictionsPage, IP_RESTRICTIONS_SELECTORS, IS_CI, IS_DEV_CI, IS_DEV_ENV, IS_MAILPIT_ENABLED, IS_SHADCN_UI, IS_STAGING_ENV, IS_WEBKIT, ImageUploader, InboundEmailApis, IntegrationBase, IpRestrictionsApi, KEYBOARD_SHORTCUTS_SELECTORS, KEYBOARD_SHORTCUT_TEST_CASES, LIST_MODIFIER_SELECTORS, LIST_MODIFIER_TAGS, LOGIN_SELECTORS, MAILPIT_BASE_URL, MAILPIT_DOMAIN_NAME, MEMBER_FORM_SELECTORS, MEMBER_SELECTORS, MEMBER_TEXTS, MERGE_TAGS_SELECTORS, MICROSOFT_LOGIN_SELECTORS, MICROSOFT_LOGIN_TEXTS, MailerUtils, MailpitApi, Member, MemberApis, MicrosoftPage, NEETO_AUTH_BASE_URL, NEETO_EDITOR_SELECTORS, NEETO_FILTERS_SELECTORS, NEETO_IMAGE_UPLOADER_SELECTORS, NEETO_ROUTES, NEETO_SEO_SELECTORS, NEETO_TEXT_MODIFIER_SELECTORS, NeetoAuthServer, NeetoChatWidget, NeetoEmailDeliveryApi, NeetoTowerApi, ONBOARDING_SELECTORS, ORGANIZATION_TEXTS, OTP_EMAIL_PATTERN, OrganizationPage, PAST_TIME_RANGES, PHONE_NUMBER_FORMATS, PLURAL, PRODUCT_ROLES_ROUTE_MAP, PROFILE_LINKS, PROFILE_SECTION_SELECTORS, PROJECT_NAMES, PROJECT_TRANSLATIONS_PATH, ROLES_SELECTORS, ROUTES, RailsEmailApiClient, RailsEmailUtils, RoleApis, RolesPage, RolesPageV2, SIGNUP_SELECTORS, SINGULAR, SLACK_DATA_QA_SELECTORS, SLACK_DEFAULT_CHANNEL, SLACK_SELECTORS, SLACK_WEB_TEXTS, STATUS_TEXTS, STORAGE_STATE, SecurityApi, SidebarSection, SlackApi, SlackPage, SmsApi, SmsUtils, TABLE_SELECTORS, TAB_SELECTORS, TAGS_SELECTORS, TEAM_MEMBER_TEXTS, TEXT_MODIFIER_ROLES, TEXT_MODIFIER_SELECTORS, TEXT_MODIFIER_TAGS, THANK_YOU_SELECTORS, THEMES_SELECTORS, THEMES_TEXTS, THIRD_PARTY_RESOURCES, THIRD_PARTY_ROUTES, TIME_RANGES, TOASTR_MESSAGES, TWILIO_SELECTORS, TagsApi, TagsPage, TeamMembers, TeamMembersV2, ThankYouApi, ThankYouPage, TwilioApi, USER_AGENTS, WEBHOOK_SELECTORS, WebhookSiteApi, WebhooksPage, ZAPIER_LIMIT_EXHAUSTED_MESSAGE, ZAPIER_SELECTORS, ZAPIER_TEST_EMAIL, ZAPIER_TEST_EMAIL_V2, ZAPIER_WEB_TEXTS, ZapierPage, authenticateUser, baseURLGenerator, basicHTMLContent, clearCredentials, commands, cpuThrottlingUsingCDP, createOrganizationViaApi, createOrganizationViaRake, currencyUtils, dataQa, decodeQRCodeFromFile, definePlaywrightConfig, exampleEmail, executeWithThrottledResources, extractSubdomainFromError, filterUtils, fixedMenuSelector, generatePhoneNumber, generatePhoneNumberDetails, generateRandomBypassEmail, generateRandomFile, generateStagingData, getByDataQA, getClipboardContent, getDirname, getFormattedPhoneNumber, getFullUrl, getGlobalUserProps, getGlobalUserState, getImagePathAndName, getIsoCodeFromPhoneCode, getListCount, globalShortcuts, grantClipboardPermissions, hexToRGB, hexToRGBA, i18nFixture, imageRegex, initializeCredentials, initializeTestData, initializeTotp, isGithubIssueOpen, isStagingOrganizationExpired, joinHyphenCase, joinString, login, mailpitDomainName, minutesAgo, networkConditions, networkThrottlingUsingCDP, optionSelector, readFileAsBrowserFile, readFileSyncIfExists, removeCredentialFile, serializeFileForBrowser, shouldSkipCustomDomainSetup, shouldSkipSetupAndTeardown, simulateClickWithDelay, simulateTypingWithDelay, skipTest, squish, _default as stealthTest, tableUtils, toCamelCase, updateCredentials, warmup, withCookieCache, writeDataToFile };
|
|
10452
10455
|
export type { BaseThemeStyle, BaseThemeStyleType, ColumnMenuAction, CountryProps, CustomFixture, EmailDeliveryConnectParams, EmailDeliveryProvider, EmailDeliveryVerifiedEmail, EmailDeliveryVerifyEmailParams, EmailDeliveryVerifyEmailResponse, EmailMatchCriteria, InboundEmailParams, IntroPageThemeStyle, IntroPageThemeStyleType, OAuthEmailDeliveryProvider, ProjectName, ReplyInboundEmailParams, Sms, SmsFilters, SmsProvider, SmsSearchCriteria, SmsSearchParams, ThemeCategory, ValueOf, WaitForSmsOptions };
|