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