@bigbinary/neeto-playwright-commons 1.13.7 → 1.13.9
This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
- package/index.cjs.js +62 -30
- package/index.cjs.js.map +1 -1
- package/index.d.ts +37 -5
- package/index.js +62 -31
- package/index.js.map +1 -1
- package/package.json +1 -1
package/index.d.ts
CHANGED
|
@@ -6,8 +6,8 @@ import MailosaurClient from 'mailosaur';
|
|
|
6
6
|
import { I18nPlaywrightFixture } from 'playwright-i18next-fixture';
|
|
7
7
|
import { TFunction } from 'i18next';
|
|
8
8
|
import { TOTP, Secret } from 'otpauth';
|
|
9
|
-
import * as playwright_core from 'playwright-core';
|
|
10
9
|
import { MemberApis } from 'apis/members';
|
|
10
|
+
import * as playwright_core from 'playwright-core';
|
|
11
11
|
import { TagsApi } from 'apis/tags';
|
|
12
12
|
import { Protocol } from 'playwright-core/types/protocol';
|
|
13
13
|
import * as ts_toolbelt_out_Function_Curry from 'ts-toolbelt/out/Function/Curry';
|
|
@@ -101,7 +101,17 @@ declare class CustomCommands {
|
|
|
101
101
|
csrfToken: string | null | undefined;
|
|
102
102
|
constructor(page: Page, request: APIRequestContext, baseURL?: string | undefined);
|
|
103
103
|
private waitUntilTimeout;
|
|
104
|
-
|
|
104
|
+
/**
|
|
105
|
+
*
|
|
106
|
+
* Command to initialize the Csrf token. The Csrf token is initialized by default if its not defined yet, whenever the method apiRequest is executed. Its helpful in cases when we want to hit the api request for two different applications.
|
|
107
|
+
*
|
|
108
|
+
* @example
|
|
109
|
+
*
|
|
110
|
+
*
|
|
111
|
+
* neetoPlaywrightUtilities.initializeCsrfToken();
|
|
112
|
+
* @endexample
|
|
113
|
+
*/
|
|
114
|
+
initializeCsrfToken: () => Promise<string | null>;
|
|
105
115
|
/**
|
|
106
116
|
*
|
|
107
117
|
* Command to wait until a response with URL responseUrl is found. Optionally,
|
|
@@ -2001,7 +2011,7 @@ declare class Member {
|
|
|
2001
2011
|
* });
|
|
2002
2012
|
* @endexample
|
|
2003
2013
|
*/
|
|
2004
|
-
deactivateMemberViaRequest: (email: string) => Promise<
|
|
2014
|
+
deactivateMemberViaRequest: (email: string) => Promise<APIResponse | undefined>;
|
|
2005
2015
|
generateRandomTeamMembers: ({
|
|
2006
2016
|
count,
|
|
2007
2017
|
role
|
|
@@ -3966,7 +3976,7 @@ declare const COMMON_SELECTORS: {
|
|
|
3966
3976
|
profileSidebar: string;
|
|
3967
3977
|
selectOption: (label: string) => string;
|
|
3968
3978
|
radioLabel: (embedLabel: string) => string;
|
|
3969
|
-
toastMessage: string;
|
|
3979
|
+
toastMessage: (type: string) => string;
|
|
3970
3980
|
toastCloseButton: string;
|
|
3971
3981
|
windowAlert: string;
|
|
3972
3982
|
body: string;
|
|
@@ -6024,6 +6034,28 @@ declare const currencyUtils: {
|
|
|
6024
6034
|
* @endexample
|
|
6025
6035
|
*/
|
|
6026
6036
|
declare const isGithubIssueOpen: (issueLinks: string[]) => Promise<boolean>;
|
|
6037
|
+
/**
|
|
6038
|
+
*
|
|
6039
|
+
* This function converts a hexadecimal color code to its RGBA equivalent.
|
|
6040
|
+
*
|
|
6041
|
+
* hex: A string representing the hexadecimal color code to be converted to RGBA.
|
|
6042
|
+
*
|
|
6043
|
+
* @example
|
|
6044
|
+
*
|
|
6045
|
+
* import { hexToRGBA } from "@bigbinary/neeto-playwright-commons";
|
|
6046
|
+
*
|
|
6047
|
+
* // Convert hexadecimal color code to RGB
|
|
6048
|
+
* const rgbaColor = hexToRGBA("#ffffff29");
|
|
6049
|
+
*
|
|
6050
|
+
* console.log(rgbaColor); // Output: 'rgba(255, 255, 255, 0.16)'
|
|
6051
|
+
*
|
|
6052
|
+
* // Convert another hexadecimal color code to RGB
|
|
6053
|
+
* const anotherRGBAColor = hexToRGBA("#00ff00ff");
|
|
6054
|
+
*
|
|
6055
|
+
* console.log(anotherRGBAColor); // Output: 'rgba(0, 255, 0, 1)'
|
|
6056
|
+
* @endexample
|
|
6057
|
+
*/
|
|
6058
|
+
declare const hexToRGBA: (hex: string) => string;
|
|
6027
6059
|
interface PlaydashOverrides {
|
|
6028
6060
|
projectKey: string;
|
|
6029
6061
|
}
|
|
@@ -6051,4 +6083,4 @@ interface Overrides {
|
|
|
6051
6083
|
* @endexample
|
|
6052
6084
|
*/
|
|
6053
6085
|
declare const definePlaywrightConfig: (overrides: Overrides) => _playwright_test.PlaywrightTestConfig<{}, {}>;
|
|
6054
|
-
export { API_ROUTES, AUDIT_LOGS_TEXTS, AuditLogsPage, BASE_URL, CHANGELOG_WIDGET_SELECTORS, CHAT_WIDGET_SELECTORS, CHAT_WIDGET_TEXTS, COMMON_SELECTORS, CREDENTIALS, CustomCommands, type CustomFixture, DESCRIPTION_EDITOR_TEXTS, EMBED_SELECTORS, EMOJI_LABEL, ENGAGE_TEXTS, ENVIRONMENT, EXPANDED_FONT_SIZE, EditorPage, EmbedBase, FONT_SIZE_SELECTORS, GLOBAL_TRANSLATIONS_PATTERN, GOOGLE_CALENDAR_DATE_FORMAT, GOOGLE_LOGIN_SELECTORS, GOOGLE_LOGIN_TEXTS, GooglePage, HELP_CENTER_SELECTORS, HelpAndProfilePage, INTEGRATIONS_TEXTS, INTEGRATION_SELECTORS, IS_STAGING_ENV, ImageUploader, IntegrationBase, KEYBOARD_SHORTCUTS_SELECTORS, LIST_MODIFIER_SELECTORS, LIST_MODIFIER_TAGS, LOGIN_SELECTORS, MEMBER_FORM_SELECTORS, MEMBER_SELECTORS, MEMBER_TEXTS, MERGE_TAGS_SELECTORS, MailerUtils, MailosaurUtils, Member, NEETO_AUTH_BASE_URL, NEETO_EDITOR_SELECTORS, NEETO_FILTERS_SELECTORS, NEETO_IMAGE_UPLOADER_SELECTORS, NEETO_ROUTES, NEETO_TEXT_MODIFIER_SELECTORS, OTP_EMAIL_PATTERN, OrganizationPage, PLURAL, PROFILE_SECTION_SELECTORS, PROJECT_TRANSLATIONS_PATH, ROLES_SELECTORS, ROUTES, SELECT_COUNTRY, SIGNUP_SELECTORS, SINGULAR, SLACK_DATA_QA_SELECTORS, SLACK_DEFAULT_CHANNEL, SLACK_SELECTORS, SLACK_WEB_TEXTS, STORAGE_STATE, SidebarSection, SlackPage, TAB_SELECTORS, TAGS_SELECTORS, TEXT_MODIFIER_ROLES, TEXT_MODIFIER_SELECTORS, TEXT_MODIFIER_TAGS, THANK_YOU_SELECTORS, THIRD_PARTY_ROUTES, TOASTR_MESSAGES, TagsPage, TeamMembers, ThankYouPage, USER_AGENTS, WEBHOOK_SELECTORS, WebhooksPage, ZAPIER_LIMIT_EXHAUSTED_MESSAGE, ZAPIER_SELECTORS, ZAPIER_TEST_EMAIL, ZAPIER_WEB_TEXTS, ZapierPage, basicHTMLContent, clearCredentials, commands, cpuThrottlingUsingCDP, currencyUtils, decodeQRCodeFromFile, definePlaywrightConfig, executeWithThrottledResources, extractSubdomainFromError, filterUtils, generateRandomBypassEmail, generateStagingData, getByDataQA, getGlobalUserState, getImagePathAndName, getListCount, headerUtils, hexToRGB, hyphenize, i18nFixture, initializeCredentials, initializeTotp, isGithubIssueOpen, joinHyphenCase, joinString, login, loginWithoutSSO, memberUtils, networkConditions, networkThrottlingUsingCDP, readFileSyncIfExists, removeCredentialFile, shouldSkipSetupAndTeardown, skipTest, squish, _default as stealthTest, tableUtils, toCamelCase, updateCredentials, writeDataToFile };
|
|
6086
|
+
export { API_ROUTES, AUDIT_LOGS_TEXTS, AuditLogsPage, BASE_URL, CHANGELOG_WIDGET_SELECTORS, CHAT_WIDGET_SELECTORS, CHAT_WIDGET_TEXTS, COMMON_SELECTORS, CREDENTIALS, CustomCommands, type CustomFixture, DESCRIPTION_EDITOR_TEXTS, EMBED_SELECTORS, EMOJI_LABEL, ENGAGE_TEXTS, ENVIRONMENT, EXPANDED_FONT_SIZE, EditorPage, EmbedBase, FONT_SIZE_SELECTORS, GLOBAL_TRANSLATIONS_PATTERN, GOOGLE_CALENDAR_DATE_FORMAT, GOOGLE_LOGIN_SELECTORS, GOOGLE_LOGIN_TEXTS, GooglePage, HELP_CENTER_SELECTORS, HelpAndProfilePage, INTEGRATIONS_TEXTS, INTEGRATION_SELECTORS, IS_STAGING_ENV, ImageUploader, IntegrationBase, KEYBOARD_SHORTCUTS_SELECTORS, LIST_MODIFIER_SELECTORS, LIST_MODIFIER_TAGS, LOGIN_SELECTORS, MEMBER_FORM_SELECTORS, MEMBER_SELECTORS, MEMBER_TEXTS, MERGE_TAGS_SELECTORS, MailerUtils, MailosaurUtils, Member, NEETO_AUTH_BASE_URL, NEETO_EDITOR_SELECTORS, NEETO_FILTERS_SELECTORS, NEETO_IMAGE_UPLOADER_SELECTORS, NEETO_ROUTES, NEETO_TEXT_MODIFIER_SELECTORS, OTP_EMAIL_PATTERN, OrganizationPage, PLURAL, PROFILE_SECTION_SELECTORS, PROJECT_TRANSLATIONS_PATH, ROLES_SELECTORS, ROUTES, SELECT_COUNTRY, SIGNUP_SELECTORS, SINGULAR, SLACK_DATA_QA_SELECTORS, SLACK_DEFAULT_CHANNEL, SLACK_SELECTORS, SLACK_WEB_TEXTS, STORAGE_STATE, SidebarSection, SlackPage, TAB_SELECTORS, TAGS_SELECTORS, TEXT_MODIFIER_ROLES, TEXT_MODIFIER_SELECTORS, TEXT_MODIFIER_TAGS, THANK_YOU_SELECTORS, THIRD_PARTY_ROUTES, TOASTR_MESSAGES, TagsPage, TeamMembers, ThankYouPage, USER_AGENTS, WEBHOOK_SELECTORS, WebhooksPage, ZAPIER_LIMIT_EXHAUSTED_MESSAGE, ZAPIER_SELECTORS, ZAPIER_TEST_EMAIL, ZAPIER_WEB_TEXTS, ZapierPage, basicHTMLContent, clearCredentials, commands, cpuThrottlingUsingCDP, currencyUtils, decodeQRCodeFromFile, definePlaywrightConfig, executeWithThrottledResources, extractSubdomainFromError, filterUtils, generateRandomBypassEmail, generateStagingData, getByDataQA, getGlobalUserState, getImagePathAndName, getListCount, headerUtils, hexToRGB, hexToRGBA, hyphenize, i18nFixture, initializeCredentials, initializeTotp, isGithubIssueOpen, joinHyphenCase, joinString, login, loginWithoutSSO, memberUtils, networkConditions, networkThrottlingUsingCDP, readFileSyncIfExists, removeCredentialFile, shouldSkipSetupAndTeardown, skipTest, squish, _default as stealthTest, tableUtils, toCamelCase, updateCredentials, writeDataToFile };
|
package/index.js
CHANGED
|
@@ -237,7 +237,7 @@ const COMMON_SELECTORS = {
|
|
|
237
237
|
profileSidebar: "profile-section",
|
|
238
238
|
selectOption: (label) => `${hyphenize(label)}-select-option`,
|
|
239
239
|
radioLabel: (embedLabel) => `${hyphenize(embedLabel)}-radio-label`,
|
|
240
|
-
toastMessage:
|
|
240
|
+
toastMessage: (type) => `toastr-${type}-container`,
|
|
241
241
|
toastCloseButton: "toastr-close-button",
|
|
242
242
|
windowAlert: "#alert-box",
|
|
243
243
|
body: "body",
|
|
@@ -3871,7 +3871,7 @@ class CustomCommands {
|
|
|
3871
3871
|
*/
|
|
3872
3872
|
this.verifySuccessToast = async ({ message = "", closeAfterVerification = true, } = {}) => {
|
|
3873
3873
|
if (!isEmpty$1(message)) {
|
|
3874
|
-
await expect(this.page.getByTestId(COMMON_SELECTORS.toastMessage)).toContainText(message);
|
|
3874
|
+
await expect(this.page.getByTestId(COMMON_SELECTORS.toastMessage("success"))).toContainText(message);
|
|
3875
3875
|
}
|
|
3876
3876
|
else {
|
|
3877
3877
|
await expect(this.page.locator(COMMON_SELECTORS.toastIcon)).toContainText("👍");
|
|
@@ -3881,12 +3881,9 @@ class CustomCommands {
|
|
|
3881
3881
|
await expect(this.page.locator(COMMON_SELECTORS.toastIcon)).toBeHidden();
|
|
3882
3882
|
};
|
|
3883
3883
|
this.verifyToast = async ({ message = "", toastType = "success", closeAfterVerification = true, timeout = 10000, } = {}) => {
|
|
3884
|
-
if (toastType === "error") {
|
|
3885
|
-
await expect(this.page.getByTestId(COMMON_SELECTORS.errorToastIcon)).toBeVisible({ timeout });
|
|
3886
|
-
}
|
|
3887
3884
|
const toastrCloseButton = this.page.getByTestId(COMMON_SELECTORS.toastCloseButton);
|
|
3888
3885
|
if (!isEmpty$1(message)) {
|
|
3889
|
-
await expect(this.page.getByTestId(COMMON_SELECTORS.toastMessage)).toContainText(message, { timeout });
|
|
3886
|
+
await expect(this.page.getByTestId(COMMON_SELECTORS.toastMessage(toastType))).toContainText(message, { timeout });
|
|
3890
3887
|
}
|
|
3891
3888
|
else {
|
|
3892
3889
|
await expect(this.page.locator(COMMON_SELECTORS.toastIcon)).toContainText("👍", { timeout });
|
|
@@ -24119,55 +24116,72 @@ class MemberApis {
|
|
|
24119
24116
|
this.neetoPlaywrightUtilities = neetoPlaywrightUtilities;
|
|
24120
24117
|
this.create = (body) => this.neetoPlaywrightUtilities.apiRequest({
|
|
24121
24118
|
method: "post",
|
|
24122
|
-
url:
|
|
24119
|
+
url: this.teamsBaseUrl,
|
|
24123
24120
|
body: { user: body },
|
|
24124
24121
|
});
|
|
24122
|
+
this.jobStatus = (jobId) => this.neetoPlaywrightUtilities.apiRequest({
|
|
24123
|
+
url: `${this.teamsBaseUrl}/creation_status/${jobId}`,
|
|
24124
|
+
});
|
|
24125
24125
|
this.fetch = (params) => this.neetoPlaywrightUtilities.apiRequest({
|
|
24126
24126
|
method: "get",
|
|
24127
|
-
url:
|
|
24127
|
+
url: this.teamsBaseUrl,
|
|
24128
24128
|
params,
|
|
24129
24129
|
});
|
|
24130
24130
|
this.update = (memberId, body) => this.neetoPlaywrightUtilities.apiRequest({
|
|
24131
24131
|
method: "put",
|
|
24132
|
-
url:
|
|
24132
|
+
url: `${this.teamsBaseUrl}/${memberId}`,
|
|
24133
24133
|
body: { team: body },
|
|
24134
24134
|
});
|
|
24135
24135
|
this.bulkUpdate = (body) => this.neetoPlaywrightUtilities.apiRequest({
|
|
24136
24136
|
method: "patch",
|
|
24137
|
-
url:
|
|
24137
|
+
url: `${this.teamsBaseUrl}/bulk_update`,
|
|
24138
24138
|
body: { users: body },
|
|
24139
24139
|
});
|
|
24140
|
+
this.teamsBaseUrl = "/team_members/teams";
|
|
24140
24141
|
}
|
|
24141
24142
|
}
|
|
24142
24143
|
|
|
24143
24144
|
class Member {
|
|
24144
24145
|
constructor(neetoPlaywrightUtilities) {
|
|
24145
24146
|
this.neetoPlaywrightUtilities = neetoPlaywrightUtilities;
|
|
24146
|
-
this.addMemberViaRequest = ({ email, role = MEMBER_TEXTS.agent, appName, }) =>
|
|
24147
|
-
|
|
24148
|
-
|
|
24149
|
-
|
|
24150
|
-
|
|
24151
|
-
|
|
24152
|
-
|
|
24153
|
-
|
|
24154
|
-
|
|
24155
|
-
|
|
24156
|
-
|
|
24157
|
-
|
|
24147
|
+
this.addMemberViaRequest = async ({ email, role = MEMBER_TEXTS.agent, appName, }) => {
|
|
24148
|
+
let response;
|
|
24149
|
+
await expect
|
|
24150
|
+
.poll(async () => {
|
|
24151
|
+
response = await this.memberApis.create({
|
|
24152
|
+
emails: [email],
|
|
24153
|
+
organization_role: role,
|
|
24154
|
+
app_roles: [
|
|
24155
|
+
{ app_name: appName, active_role: role, is_enabled: true },
|
|
24156
|
+
],
|
|
24157
|
+
});
|
|
24158
|
+
return response === null || response === void 0 ? void 0 : response.status();
|
|
24159
|
+
}, { timeout: 30000 })
|
|
24160
|
+
.toBe(200);
|
|
24161
|
+
const responseBodyBuffer = await (response === null || response === void 0 ? void 0 : response.body());
|
|
24162
|
+
const { job_id: jobId } = JSON.parse(String(responseBodyBuffer));
|
|
24163
|
+
// eslint-disable-next-line playwright/no-standalone-expect
|
|
24164
|
+
await expect
|
|
24165
|
+
.poll(async () => {
|
|
24166
|
+
const jobResponse = await this.memberApis.jobStatus(jobId);
|
|
24167
|
+
const responseBodyBuffer = await (jobResponse === null || jobResponse === void 0 ? void 0 : jobResponse.body());
|
|
24168
|
+
const { is_completed: isCompleted } = JSON.parse(String(responseBodyBuffer));
|
|
24169
|
+
return isCompleted;
|
|
24170
|
+
}, { timeout: 30000 })
|
|
24171
|
+
.toBe(true);
|
|
24172
|
+
};
|
|
24158
24173
|
this.editMemberViaRequest = async ({ email, firstName, lastName, newRole, }) => {
|
|
24159
|
-
const
|
|
24160
|
-
|
|
24161
|
-
|
|
24162
|
-
|
|
24163
|
-
|
|
24164
|
-
await this.memberApis.update(memberDetails.id, {
|
|
24174
|
+
const responseBody = (await this.memberApis
|
|
24175
|
+
.fetch({ search: email })
|
|
24176
|
+
.then(response => response === null || response === void 0 ? void 0 : response.json()));
|
|
24177
|
+
const memberDetails = responseBody === null || responseBody === void 0 ? void 0 : responseBody.members.find(({ email }) => email === email.toLowerCase());
|
|
24178
|
+
memberDetails &&
|
|
24179
|
+
(await this.memberApis.update(memberDetails.id, {
|
|
24165
24180
|
active: true,
|
|
24166
24181
|
first_name: firstName,
|
|
24167
24182
|
last_name: lastName,
|
|
24168
24183
|
organization_role: newRole,
|
|
24169
|
-
});
|
|
24170
|
-
}
|
|
24184
|
+
}));
|
|
24171
24185
|
};
|
|
24172
24186
|
this.deactivateMemberViaRequest = (email) => this.memberApis.bulkUpdate({ active: false, emails: [email] });
|
|
24173
24187
|
this.generateRandomTeamMembers = ({ count = 1, role = "standard" }) => dynamicArray(count, () => ({
|
|
@@ -157821,6 +157835,23 @@ const isGithubIssueOpen = async (issueLinks) => {
|
|
|
157821
157835
|
return issueStatuses.some(issueStatus => { var _a; return ((_a = issueStatus === null || issueStatus === void 0 ? void 0 : issueStatus.data) === null || _a === void 0 ? void 0 : _a.state) === "open"; });
|
|
157822
157836
|
};
|
|
157823
157837
|
|
|
157838
|
+
const hexToRGBA = (hex) => {
|
|
157839
|
+
let r = 0, g = 0, b = 0, a = 1;
|
|
157840
|
+
if (hex.length === 5) {
|
|
157841
|
+
r = parseInt(`${hex[1]}${hex[1]}`, 16);
|
|
157842
|
+
g = parseInt(`${hex[2]}${hex[2]}`, 16);
|
|
157843
|
+
b = parseInt(`${hex[3]}${hex[3]}`, 16);
|
|
157844
|
+
a = parseInt(`${hex[4]}${hex[4]}`, 16) / 255;
|
|
157845
|
+
}
|
|
157846
|
+
else if (hex.length === 9) {
|
|
157847
|
+
r = parseInt(`${hex[1]}${hex[2]}`, 16);
|
|
157848
|
+
g = parseInt(`${hex[3]}${hex[4]}`, 16);
|
|
157849
|
+
b = parseInt(`${hex[5]}${hex[6]}`, 16);
|
|
157850
|
+
a = parseInt(`${hex[7]}${hex[8]}`, 16) / 255;
|
|
157851
|
+
}
|
|
157852
|
+
return `rgba(${r}, ${g}, ${b}, ${a.toFixed(2)})`;
|
|
157853
|
+
};
|
|
157854
|
+
|
|
157824
157855
|
var main$2 = {exports: {}};
|
|
157825
157856
|
|
|
157826
157857
|
var name = "dotenv";
|
|
@@ -158442,5 +158473,5 @@ const definePlaywrightConfig = (overrides) => {
|
|
|
158442
158473
|
});
|
|
158443
158474
|
};
|
|
158444
158475
|
|
|
158445
|
-
export { API_ROUTES, AUDIT_LOGS_TEXTS, AuditLogsPage, BASE_URL, CHANGELOG_WIDGET_SELECTORS, CHAT_WIDGET_SELECTORS, CHAT_WIDGET_TEXTS, COMMON_SELECTORS, CREDENTIALS, CustomCommands, DESCRIPTION_EDITOR_TEXTS, EMBED_SELECTORS, EMOJI_LABEL, ENGAGE_TEXTS, ENVIRONMENT, EXPANDED_FONT_SIZE, EditorPage, EmbedBase, FONT_SIZE_SELECTORS, GLOBAL_TRANSLATIONS_PATTERN, GOOGLE_CALENDAR_DATE_FORMAT, GOOGLE_LOGIN_SELECTORS, GOOGLE_LOGIN_TEXTS, GooglePage, HELP_CENTER_SELECTORS, HelpAndProfilePage, INTEGRATIONS_TEXTS, INTEGRATION_SELECTORS, IS_STAGING_ENV, ImageUploader, IntegrationBase, KEYBOARD_SHORTCUTS_SELECTORS, LIST_MODIFIER_SELECTORS, LIST_MODIFIER_TAGS, LOGIN_SELECTORS, MEMBER_FORM_SELECTORS, MEMBER_SELECTORS, MEMBER_TEXTS, MERGE_TAGS_SELECTORS, MailerUtils, MailosaurUtils, Member, NEETO_AUTH_BASE_URL, NEETO_EDITOR_SELECTORS, NEETO_FILTERS_SELECTORS, NEETO_IMAGE_UPLOADER_SELECTORS, NEETO_ROUTES, NEETO_TEXT_MODIFIER_SELECTORS, OTP_EMAIL_PATTERN, OrganizationPage, PLURAL, PROFILE_SECTION_SELECTORS, PROJECT_TRANSLATIONS_PATH, ROLES_SELECTORS, ROUTES, SELECT_COUNTRY, SIGNUP_SELECTORS, SINGULAR, SLACK_DATA_QA_SELECTORS, SLACK_DEFAULT_CHANNEL, SLACK_SELECTORS, SLACK_WEB_TEXTS, STORAGE_STATE, SidebarSection, SlackPage, TAB_SELECTORS, TAGS_SELECTORS, TEXT_MODIFIER_ROLES, TEXT_MODIFIER_SELECTORS, TEXT_MODIFIER_TAGS, THANK_YOU_SELECTORS, THIRD_PARTY_ROUTES, TOASTR_MESSAGES, TagsPage, TeamMembers, ThankYouPage, USER_AGENTS, WEBHOOK_SELECTORS, WebhooksPage, ZAPIER_LIMIT_EXHAUSTED_MESSAGE, ZAPIER_SELECTORS, ZAPIER_TEST_EMAIL, ZAPIER_WEB_TEXTS, ZapierPage, basicHTMLContent, clearCredentials, commands, cpuThrottlingUsingCDP, currencyUtils, decodeQRCodeFromFile, definePlaywrightConfig, executeWithThrottledResources, extractSubdomainFromError, filterUtils, generateRandomBypassEmail, generateStagingData, getByDataQA, getGlobalUserState, getImagePathAndName, getListCount, headerUtils, hexToRGB, hyphenize, i18nFixture, initializeCredentials, initializeTotp, isGithubIssueOpen, joinHyphenCase, joinString, login, loginWithoutSSO, memberUtils, networkConditions, networkThrottlingUsingCDP, readFileSyncIfExists, removeCredentialFile, shouldSkipSetupAndTeardown, skipTest, squish, stealth as stealthTest, tableUtils, toCamelCase, updateCredentials, writeDataToFile };
|
|
158476
|
+
export { API_ROUTES, AUDIT_LOGS_TEXTS, AuditLogsPage, BASE_URL, CHANGELOG_WIDGET_SELECTORS, CHAT_WIDGET_SELECTORS, CHAT_WIDGET_TEXTS, COMMON_SELECTORS, CREDENTIALS, CustomCommands, DESCRIPTION_EDITOR_TEXTS, EMBED_SELECTORS, EMOJI_LABEL, ENGAGE_TEXTS, ENVIRONMENT, EXPANDED_FONT_SIZE, EditorPage, EmbedBase, FONT_SIZE_SELECTORS, GLOBAL_TRANSLATIONS_PATTERN, GOOGLE_CALENDAR_DATE_FORMAT, GOOGLE_LOGIN_SELECTORS, GOOGLE_LOGIN_TEXTS, GooglePage, HELP_CENTER_SELECTORS, HelpAndProfilePage, INTEGRATIONS_TEXTS, INTEGRATION_SELECTORS, IS_STAGING_ENV, ImageUploader, IntegrationBase, KEYBOARD_SHORTCUTS_SELECTORS, LIST_MODIFIER_SELECTORS, LIST_MODIFIER_TAGS, LOGIN_SELECTORS, MEMBER_FORM_SELECTORS, MEMBER_SELECTORS, MEMBER_TEXTS, MERGE_TAGS_SELECTORS, MailerUtils, MailosaurUtils, Member, NEETO_AUTH_BASE_URL, NEETO_EDITOR_SELECTORS, NEETO_FILTERS_SELECTORS, NEETO_IMAGE_UPLOADER_SELECTORS, NEETO_ROUTES, NEETO_TEXT_MODIFIER_SELECTORS, OTP_EMAIL_PATTERN, OrganizationPage, PLURAL, PROFILE_SECTION_SELECTORS, PROJECT_TRANSLATIONS_PATH, ROLES_SELECTORS, ROUTES, SELECT_COUNTRY, SIGNUP_SELECTORS, SINGULAR, SLACK_DATA_QA_SELECTORS, SLACK_DEFAULT_CHANNEL, SLACK_SELECTORS, SLACK_WEB_TEXTS, STORAGE_STATE, SidebarSection, SlackPage, TAB_SELECTORS, TAGS_SELECTORS, TEXT_MODIFIER_ROLES, TEXT_MODIFIER_SELECTORS, TEXT_MODIFIER_TAGS, THANK_YOU_SELECTORS, THIRD_PARTY_ROUTES, TOASTR_MESSAGES, TagsPage, TeamMembers, ThankYouPage, USER_AGENTS, WEBHOOK_SELECTORS, WebhooksPage, ZAPIER_LIMIT_EXHAUSTED_MESSAGE, ZAPIER_SELECTORS, ZAPIER_TEST_EMAIL, ZAPIER_WEB_TEXTS, ZapierPage, basicHTMLContent, clearCredentials, commands, cpuThrottlingUsingCDP, currencyUtils, decodeQRCodeFromFile, definePlaywrightConfig, executeWithThrottledResources, extractSubdomainFromError, filterUtils, generateRandomBypassEmail, generateStagingData, getByDataQA, getGlobalUserState, getImagePathAndName, getListCount, headerUtils, hexToRGB, hexToRGBA, hyphenize, i18nFixture, initializeCredentials, initializeTotp, isGithubIssueOpen, joinHyphenCase, joinString, login, loginWithoutSSO, memberUtils, networkConditions, networkThrottlingUsingCDP, readFileSyncIfExists, removeCredentialFile, shouldSkipSetupAndTeardown, skipTest, squish, stealth as stealthTest, tableUtils, toCamelCase, updateCredentials, writeDataToFile };
|
|
158446
158477
|
//# sourceMappingURL=index.js.map
|