@bigbinary/neeto-playwright-commons 2.1.2 → 2.1.3
This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
- package/index.cjs.js +4763 -4569
- package/index.cjs.js.map +1 -1
- package/index.d.ts +195 -42
- package/index.js +4763 -4570
- package/index.js.map +1 -1
- package/package.json +1 -1
package/index.d.ts
CHANGED
|
@@ -2193,6 +2193,25 @@ interface UpdateProfileProps {
|
|
|
2193
2193
|
firstName: string;
|
|
2194
2194
|
lastName?: string;
|
|
2195
2195
|
}
|
|
2196
|
+
interface FillTextFieldsProps {
|
|
2197
|
+
firstName: string;
|
|
2198
|
+
lastName: string;
|
|
2199
|
+
phoneNumber?: string;
|
|
2200
|
+
}
|
|
2201
|
+
interface ContactInfo extends FillTextFieldsProps {
|
|
2202
|
+
email?: string;
|
|
2203
|
+
}
|
|
2204
|
+
interface SettingsInfo {
|
|
2205
|
+
country: string;
|
|
2206
|
+
timeZone: string;
|
|
2207
|
+
timeFormat: string;
|
|
2208
|
+
dateFormat: string;
|
|
2209
|
+
}
|
|
2210
|
+
interface BasicInfoParams {
|
|
2211
|
+
contact: ContactInfo;
|
|
2212
|
+
settings: SettingsInfo;
|
|
2213
|
+
imageName: string;
|
|
2214
|
+
}
|
|
2196
2215
|
type NeetoProducts = "Form" | "Cal" | "Auth" | "KB" | "Desk" | "Chat" | "Invoice" | "Playdash" | "BugWatch" | "Record" | "Site" | "Engage" | "Quiz" | "Planner" | "CRM" | "Publish" | "Course";
|
|
2197
2216
|
declare class HelpAndProfilePage {
|
|
2198
2217
|
page: Page;
|
|
@@ -2215,18 +2234,22 @@ declare class HelpAndProfilePage {
|
|
|
2215
2234
|
*
|
|
2216
2235
|
* @example
|
|
2217
2236
|
*
|
|
2218
|
-
*
|
|
2237
|
+
* await helpAndProfilePage.openHelpCenter();
|
|
2219
2238
|
* @endexample
|
|
2220
2239
|
*/
|
|
2221
2240
|
openHelpCenter: () => Promise<void>;
|
|
2222
2241
|
private openLiveChatAndVerify;
|
|
2223
2242
|
/**
|
|
2224
2243
|
*
|
|
2225
|
-
* The function reloads the page, opens the chat interface, closes and reopens the
|
|
2244
|
+
* The function reloads the page, opens the chat interface, closes and reopens the
|
|
2245
|
+
*
|
|
2246
|
+
* chat frame, initiates a new conversation, and verifies the conversation window
|
|
2247
|
+
*
|
|
2248
|
+
* content.
|
|
2226
2249
|
*
|
|
2227
2250
|
* @example
|
|
2228
2251
|
*
|
|
2229
|
-
*
|
|
2252
|
+
* await helpAndProfilePage.openAndVerifyChatWidget();
|
|
2230
2253
|
* @endexample
|
|
2231
2254
|
*/
|
|
2232
2255
|
openAndVerifyChatWidget: () => Promise<void>;
|
|
@@ -2236,7 +2259,7 @@ declare class HelpAndProfilePage {
|
|
|
2236
2259
|
*
|
|
2237
2260
|
* @example
|
|
2238
2261
|
*
|
|
2239
|
-
*
|
|
2262
|
+
* await helpAndProfilePage.openAndVerifyHelpArticles();
|
|
2240
2263
|
* @endexample
|
|
2241
2264
|
*/
|
|
2242
2265
|
openAndVerifyHelpArticles: () => Promise<void>;
|
|
@@ -2247,22 +2270,29 @@ declare class HelpAndProfilePage {
|
|
|
2247
2270
|
*
|
|
2248
2271
|
* @example
|
|
2249
2272
|
*
|
|
2250
|
-
*
|
|
2273
|
+
* await helpAndProfilePage.openAndVerifyChangelog();
|
|
2251
2274
|
* @endexample
|
|
2252
2275
|
*/
|
|
2253
2276
|
openAndVerifyChangelog: () => Promise<void>;
|
|
2254
2277
|
private formatKeyboardShortcut;
|
|
2255
2278
|
/**
|
|
2256
2279
|
*
|
|
2257
|
-
* Opens and verifies the keyboard shortcuts pane in Help Center. It takes the
|
|
2280
|
+
* Opens and verifies the keyboard shortcuts pane in Help Center. It takes the
|
|
2258
2281
|
*
|
|
2259
|
-
*
|
|
2282
|
+
* following parameters:
|
|
2260
2283
|
*
|
|
2261
|
-
*
|
|
2284
|
+
* productShortcuts: Array of objects containing description and sequence of
|
|
2285
|
+
*
|
|
2286
|
+
* product shortcuts. osPlatform: Platform for keyboard shortcuts ("mac" or
|
|
2287
|
+
*
|
|
2288
|
+
* "windows").
|
|
2262
2289
|
*
|
|
2263
2290
|
* @example
|
|
2264
2291
|
*
|
|
2265
|
-
*
|
|
2292
|
+
* await helpAndProfilePage.openAndVerifyKeyboardShortcutsPane(
|
|
2293
|
+
* productShortcuts,
|
|
2294
|
+
* "windows"
|
|
2295
|
+
* );
|
|
2266
2296
|
* @endexample
|
|
2267
2297
|
*/
|
|
2268
2298
|
openAndVerifyKeyboardShortcutsPane: (productShortcuts: {
|
|
@@ -2275,7 +2305,7 @@ declare class HelpAndProfilePage {
|
|
|
2275
2305
|
*
|
|
2276
2306
|
* @example
|
|
2277
2307
|
*
|
|
2278
|
-
*
|
|
2308
|
+
* await helpAndProfilePage.openAppSwitcherAndVerify();
|
|
2279
2309
|
* @endexample
|
|
2280
2310
|
*/
|
|
2281
2311
|
openAppSwitcherAndVerify: () => Promise<void>;
|
|
@@ -2285,89 +2315,185 @@ declare class HelpAndProfilePage {
|
|
|
2285
2315
|
*
|
|
2286
2316
|
* @example
|
|
2287
2317
|
*
|
|
2288
|
-
*
|
|
2318
|
+
* await helpAndProfilePage.verifyLogout();
|
|
2289
2319
|
* @endexample
|
|
2290
2320
|
*/
|
|
2291
2321
|
verifyLogout: () => Promise<void>;
|
|
2292
2322
|
private openAuthLinkAndVerify;
|
|
2323
|
+
private fillTextFields;
|
|
2324
|
+
private selectDropdownFields;
|
|
2293
2325
|
/**
|
|
2294
2326
|
*
|
|
2295
|
-
*
|
|
2327
|
+
* Command to upload an image to image uploader and verify it. It takes the following parameters:
|
|
2328
|
+
*
|
|
2329
|
+
* localImagePath: Path to image.
|
|
2296
2330
|
*
|
|
2297
2331
|
* @example
|
|
2298
2332
|
*
|
|
2299
|
-
* await
|
|
2333
|
+
* await neetoPlaywrightUtilities.uploadImage("../assets/image.png");
|
|
2300
2334
|
* @endexample
|
|
2301
2335
|
*/
|
|
2302
|
-
|
|
2336
|
+
private uploadImage;
|
|
2303
2337
|
/**
|
|
2304
2338
|
*
|
|
2305
|
-
*
|
|
2339
|
+
* Updates basic profile info in the profile pane (image, fields, dropdowns,
|
|
2340
|
+
*
|
|
2341
|
+
* submit, then waits for the pane to close).
|
|
2342
|
+
*
|
|
2343
|
+
* contact: First name, last name, and optional phone number. settings:
|
|
2344
|
+
*
|
|
2345
|
+
* Country, timezone, time format, and date format. imageName: File under
|
|
2346
|
+
*
|
|
2347
|
+
* images/ for the uploader.
|
|
2306
2348
|
*
|
|
2307
2349
|
* @example
|
|
2308
2350
|
*
|
|
2309
|
-
*
|
|
2351
|
+
* await helpAndProfilePage.updateBasicInfo({
|
|
2352
|
+
* contact: {
|
|
2353
|
+
* firstName: "Ada",
|
|
2354
|
+
* lastName: "Lovelace",
|
|
2355
|
+
* phoneNumber: "+1234567890",
|
|
2356
|
+
* },
|
|
2357
|
+
* settings: {
|
|
2358
|
+
* country: "Australia",
|
|
2359
|
+
* timeZone: "Australian Eastern Standard Time",
|
|
2360
|
+
* timeFormat: "24 hour",
|
|
2361
|
+
* dateFormat: "DD/MM/YYYY",
|
|
2362
|
+
* },
|
|
2363
|
+
* imageName: "sample.png",
|
|
2364
|
+
* });
|
|
2310
2365
|
* @endexample
|
|
2311
2366
|
*/
|
|
2312
|
-
|
|
2367
|
+
updateBasicInfo: ({
|
|
2368
|
+
contact,
|
|
2369
|
+
settings,
|
|
2370
|
+
imageName
|
|
2371
|
+
}: BasicInfoParams) => Promise<void>;
|
|
2313
2372
|
/**
|
|
2314
2373
|
*
|
|
2315
|
-
* Opens
|
|
2374
|
+
* Opens the My profile pane from Help Center and verifies the pane header.
|
|
2316
2375
|
*
|
|
2317
2376
|
* @example
|
|
2318
2377
|
*
|
|
2319
|
-
*
|
|
2378
|
+
* await helpAndProfilePage.openProfile();
|
|
2320
2379
|
* @endexample
|
|
2321
2380
|
*/
|
|
2322
|
-
|
|
2381
|
+
openProfile: () => Promise<void>;
|
|
2323
2382
|
/**
|
|
2324
2383
|
*
|
|
2325
|
-
*
|
|
2384
|
+
* Asserts displayed values in the My profile side pane. Use after the pane is open
|
|
2326
2385
|
*
|
|
2327
|
-
*
|
|
2386
|
+
* (for example after openProfile).
|
|
2328
2387
|
*
|
|
2329
|
-
*
|
|
2388
|
+
* Same BasicInfoParams shape as updateBasicInfo (contact, settings,
|
|
2389
|
+
*
|
|
2390
|
+
* imageName). Most fields match exact text; timezone allows a substring match
|
|
2391
|
+
*
|
|
2392
|
+
* when the UI shows a shortened label.
|
|
2330
2393
|
*
|
|
2331
2394
|
* @example
|
|
2332
2395
|
*
|
|
2333
|
-
*
|
|
2334
|
-
*
|
|
2335
|
-
*
|
|
2336
|
-
*
|
|
2337
|
-
*
|
|
2396
|
+
* await helpAndProfilePage.verifyProfileSidePane({
|
|
2397
|
+
* contact: { firstName: "Ada", lastName: "Lovelace" },
|
|
2398
|
+
* settings: {
|
|
2399
|
+
* country: "Australia",
|
|
2400
|
+
* timeZone: "Australian Eastern Standard Time",
|
|
2401
|
+
* timeFormat: "24 hour",
|
|
2402
|
+
* dateFormat: "DD/MM/YYYY",
|
|
2403
|
+
* },
|
|
2404
|
+
* imageName: "sample.png",
|
|
2405
|
+
* });
|
|
2338
2406
|
* @endexample
|
|
2339
2407
|
*/
|
|
2340
|
-
|
|
2408
|
+
verifyProfileSidePane: ({
|
|
2409
|
+
contact,
|
|
2410
|
+
settings
|
|
2411
|
+
}: BasicInfoParams) => Promise<void>;
|
|
2341
2412
|
/**
|
|
2342
2413
|
*
|
|
2343
|
-
* Verifies
|
|
2414
|
+
* Verifies profile actions including billing/subscriptions access, update email
|
|
2344
2415
|
*
|
|
2345
|
-
*
|
|
2416
|
+
* navigation, and basic info update flow.
|
|
2346
2417
|
*
|
|
2347
2418
|
* @example
|
|
2348
2419
|
*
|
|
2349
|
-
* await helpAndProfilePage.
|
|
2420
|
+
* await helpAndProfilePage.verifyProfile();
|
|
2350
2421
|
* @endexample
|
|
2351
2422
|
*/
|
|
2352
|
-
|
|
2423
|
+
verifyProfile: () => Promise<void>;
|
|
2424
|
+
/**
|
|
2425
|
+
*
|
|
2426
|
+
* Opens the workspace menu from Help Center and verifies the organization settings
|
|
2427
|
+
*
|
|
2428
|
+
* link opens the admin panel in a new tab.
|
|
2429
|
+
*
|
|
2430
|
+
* @example
|
|
2431
|
+
*
|
|
2432
|
+
* await helpAndProfilePage.verifyWorkspace();
|
|
2433
|
+
* @endexample
|
|
2434
|
+
*/
|
|
2435
|
+
verifyWorkspace: () => Promise<void>;
|
|
2436
|
+
/**
|
|
2437
|
+
* @deprecated This method is deprecated. Use verifyWorkspace instead.
|
|
2438
|
+
*/
|
|
2439
|
+
verifyProfileAndOrganizationLinks: () => Promise<void>;
|
|
2353
2440
|
/**
|
|
2354
2441
|
*
|
|
2355
|
-
*
|
|
2442
|
+
* Opens and verifies the Neeto status in Help Center.
|
|
2356
2443
|
*
|
|
2357
|
-
*
|
|
2444
|
+
* @example
|
|
2358
2445
|
*
|
|
2359
|
-
*
|
|
2446
|
+
* await helpAndProfilePage.openAndVerifyStatus();
|
|
2447
|
+
* @endexample
|
|
2448
|
+
*/
|
|
2449
|
+
openAndVerifyStatus: () => Promise<void>;
|
|
2450
|
+
/**
|
|
2360
2451
|
*
|
|
2361
|
-
*
|
|
2452
|
+
* Opens and verifies the Neeto community in Help Center.
|
|
2362
2453
|
*
|
|
2363
2454
|
* @example
|
|
2364
2455
|
*
|
|
2365
|
-
* await helpAndProfilePage.
|
|
2366
|
-
* firstName: "John",
|
|
2367
|
-
* lastName: "Doe",
|
|
2368
|
-
* });
|
|
2456
|
+
* await helpAndProfilePage.openAndVerifyCommunity();
|
|
2369
2457
|
* @endexample
|
|
2370
2458
|
*/
|
|
2459
|
+
openAndVerifyCommunity: () => Promise<void>;
|
|
2460
|
+
/**
|
|
2461
|
+
*
|
|
2462
|
+
* Verifies the current subscription plan in Help Center.
|
|
2463
|
+
*
|
|
2464
|
+
* plan: Current subscription plan ("Free" or "Pro"). product (optional): Name
|
|
2465
|
+
*
|
|
2466
|
+
* of the Neeto product to verify the plan for.
|
|
2467
|
+
*
|
|
2468
|
+
* @example
|
|
2469
|
+
*
|
|
2470
|
+
* // Verify current plan only
|
|
2471
|
+
* await helpAndProfilePage.verifySubscriptionPlan("Free");
|
|
2472
|
+
*
|
|
2473
|
+
* // Verify plan and specific product details
|
|
2474
|
+
* await helpAndProfilePage.verifySubscriptionPlan("Pro", "Chat");
|
|
2475
|
+
* @endexample
|
|
2476
|
+
*/
|
|
2477
|
+
verifySubscriptionPlan: (plan: "Free" | "Pro", product?: NeetoProducts) => Promise<void>;
|
|
2478
|
+
/**
|
|
2479
|
+
*
|
|
2480
|
+
* Verifies theme switching functionality by comparing a screenshot of the profile
|
|
2481
|
+
*
|
|
2482
|
+
* dropdown.
|
|
2483
|
+
*
|
|
2484
|
+
* expectedScreenshot: The filename of the expected screenshot to compare
|
|
2485
|
+
*
|
|
2486
|
+
* against.
|
|
2487
|
+
*
|
|
2488
|
+
* @example
|
|
2489
|
+
*
|
|
2490
|
+
* await helpAndProfilePage.verifyThemeSwitcher("dark-theme-profile-dropdown.png");
|
|
2491
|
+
* @endexample
|
|
2492
|
+
*/
|
|
2493
|
+
verifyThemeSwitcher: (expectedScreenshot: string) => Promise<void>;
|
|
2494
|
+
/**
|
|
2495
|
+
* @deprecated This method is deprecated. Use updateBasicInfo instead.
|
|
2496
|
+
*/
|
|
2371
2497
|
updateProfile: ({
|
|
2372
2498
|
firstName,
|
|
2373
2499
|
lastName
|
|
@@ -5372,6 +5498,7 @@ declare const ROUTES: {
|
|
|
5372
5498
|
profile: string;
|
|
5373
5499
|
admin: string;
|
|
5374
5500
|
myProfile: string;
|
|
5501
|
+
updateEmail: string;
|
|
5375
5502
|
authSettings: string;
|
|
5376
5503
|
webhooks: string;
|
|
5377
5504
|
login: string;
|
|
@@ -6191,6 +6318,7 @@ declare const COMMON_SELECTORS: {
|
|
|
6191
6318
|
urlInputError: string;
|
|
6192
6319
|
noDataPrimaryButton: string;
|
|
6193
6320
|
modalHeader: string;
|
|
6321
|
+
avatar: string;
|
|
6194
6322
|
nameInputError: string;
|
|
6195
6323
|
selectContainer: string;
|
|
6196
6324
|
dropdownMenu: string;
|
|
@@ -6947,7 +7075,9 @@ declare const MEMBER_FORM_SELECTORS: {
|
|
|
6947
7075
|
declare const PROFILE_SECTION_SELECTORS: {
|
|
6948
7076
|
profileSectionButton: string;
|
|
6949
7077
|
profilePopup: string;
|
|
7078
|
+
profileExpandMenuBtn: string;
|
|
6950
7079
|
myProfileButton: string;
|
|
7080
|
+
updateEmailMenuBtn: string;
|
|
6951
7081
|
workspaceDisplay: string;
|
|
6952
7082
|
profileOrganizationSettingsButton: string;
|
|
6953
7083
|
logoutButton: string;
|
|
@@ -6961,6 +7091,28 @@ declare const PROFILE_SECTION_SELECTORS: {
|
|
|
6961
7091
|
firstNameTextField: string;
|
|
6962
7092
|
lastNameTextField: string;
|
|
6963
7093
|
manageBillingAndSubscriptionsButton: string;
|
|
7094
|
+
cancelButton: string;
|
|
7095
|
+
profileSubmitBtn: string;
|
|
7096
|
+
editBasicInfoMenuBtn: string;
|
|
7097
|
+
editBasicInfoBtn: string;
|
|
7098
|
+
phoneNumberTxtField: string;
|
|
7099
|
+
timezoneBtn: string;
|
|
7100
|
+
timezoneSearchBox: string;
|
|
7101
|
+
nameField: string;
|
|
7102
|
+
emailField: string;
|
|
7103
|
+
firstNameField: string;
|
|
7104
|
+
lastNameField: string;
|
|
7105
|
+
phoneNumberField: string;
|
|
7106
|
+
countryField: string;
|
|
7107
|
+
timeZoneField: string;
|
|
7108
|
+
timeFormatField: string;
|
|
7109
|
+
dateFormatField: string;
|
|
7110
|
+
firstNameInputError: string;
|
|
7111
|
+
timeZoneSelect: string;
|
|
7112
|
+
lastNameInputError: string;
|
|
7113
|
+
phoneNumberInputError: string;
|
|
7114
|
+
imageUploadBtn: string;
|
|
7115
|
+
imageRemoveBtn: string;
|
|
6964
7116
|
};
|
|
6965
7117
|
/**
|
|
6966
7118
|
*
|
|
@@ -8158,6 +8310,7 @@ declare const initializeTestData: (product: NeetoProducts) => {
|
|
|
8158
8310
|
credentials: Credentials;
|
|
8159
8311
|
baseURL: string;
|
|
8160
8312
|
};
|
|
8313
|
+
declare const imageRegex: (imageName: string) => RegExp;
|
|
8161
8314
|
interface LoginProps {
|
|
8162
8315
|
page: Page;
|
|
8163
8316
|
loginPath?: string;
|
|
@@ -8769,5 +8922,5 @@ interface Overrides {
|
|
|
8769
8922
|
* @endexample
|
|
8770
8923
|
*/
|
|
8771
8924
|
declare const definePlaywrightConfig: (overrides: Overrides) => PlaywrightTestConfig<{}, {}>;
|
|
8772
|
-
export { ACTIONS, ADMIN_PANEL_SELECTORS, API_KEYS_SELECTORS, API_ROUTES, AUDIT_LOGS_SELECTORS, ApiKeysApi, ApiKeysPage, 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, CustomCommands, CustomDomainApi, CustomDomainPage, DATE_FORMATS, DATE_PICKER_SELECTORS, DATE_RANGES, DATE_TEXTS, DEFAULT_WEBHOOKS_RESPONSE_TEXT, DESCRIPTION_EDITOR_TEXTS, EMBED_SELECTORS, EMOJI_LABEL, EMPTY_STORAGE_STATE, ENGAGE_TEXTS, ENVIRONMENT, EXAMPLE_URL, EXPANDED_FONT_SIZE, EXPORT_FILE_TYPES, EditorPage, EmbedBase, FILE_FORMATS, FONT_SIZE_SELECTORS, 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, INTEGRATIONS_TEXTS, INTEGRATION_SELECTORS, IPRestrictionsPage, IP_RESTRICTIONS_SELECTORS, IS_DEV_ENV, IS_STAGING_ENV, ImageUploader, IntegrationBase, IpRestrictionsApi, KEYBOARD_SHORTCUTS_SELECTORS, KEYBOARD_SHORTCUT_TEST_CASES, LIST_MODIFIER_SELECTORS, LIST_MODIFIER_TAGS, LOGIN_SELECTORS, MEMBER_FORM_SELECTORS, MEMBER_SELECTORS, MEMBER_TEXTS, MERGE_TAGS_SELECTORS, MICROSOFT_LOGIN_SELECTORS, MICROSOFT_LOGIN_TEXTS, MailerUtils, 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, NeetoTowerApi, ONBOARDING_SELECTORS, ORGANIZATION_TEXTS, OTP_EMAIL_PATTERN, OrganizationPage, PAST_TIME_RANGES, PHONE_NUMBER_FORMATS, PLURAL, PROFILE_LINKS, PROFILE_SECTION_SELECTORS, PROJECT_NAMES, PROJECT_TRANSLATIONS_PATH, ROLES_SELECTORS, ROUTES, RailsEmailRakeClient, RailsEmailUtils, RoleApis, RolesPage, SIGNUP_SELECTORS, SINGULAR, SLACK_DATA_QA_SELECTORS, SLACK_DEFAULT_CHANNEL, SLACK_SELECTORS, SLACK_WEB_TEXTS, STATUS_TEXTS, STORAGE_STATE, SecurityApi, SidebarSection, SlackApi, SlackPage, 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_ROUTES, TIME_RANGES, TOASTR_MESSAGES, TWILIO_SELECTORS, TagsApi, TagsPage, TeamMembers, ThankYouApi, ThankYouPage, TwilioApi, USER_AGENTS, WEBHOOK_SELECTORS, WebhookSiteApi, WebhooksPage, ZAPIER_LIMIT_EXHAUSTED_MESSAGE, ZAPIER_SELECTORS, ZAPIER_TEST_EMAIL, ZAPIER_WEB_TEXTS, ZapierPage, baseURLGenerator, basicHTMLContent, clearCredentials, commands, cpuThrottlingUsingCDP, createOrganizationViaRake, currencyUtils, dataQa, decodeQRCodeFromFile, definePlaywrightConfig, executeWithThrottledResources, extractSubdomainFromError, fillCredentialsAndSubmit, filterUtils, generatePhoneNumber, generatePhoneNumberDetails, generateRandomBypassEmail, generateRandomFile, generateStagingData, getByDataQA, getClipboardContent, getFormattedPhoneNumber, getFullUrl, getGlobalUserProps, getGlobalUserState, getImagePathAndName, getIsoCodeFromPhoneCode, getListCount, globalShortcuts, grantClipboardPermissions, hexToRGB, hexToRGBA, i18nFixture, initializeCredentials, initializeTestData, initializeTotp, isGithubIssueOpen, joinHyphenCase, joinString, login, loginWithoutSSO, networkConditions, networkThrottlingUsingCDP, readFileSyncIfExists, removeCredentialFile, serializeFileForBrowser, shouldSkipCustomDomainSetup, shouldSkipSetupAndTeardown, simulateClickWithDelay, simulateTypingWithDelay, skipTest, squish, _default as stealthTest, tableUtils, toCamelCase, updateCredentials, writeDataToFile };
|
|
8925
|
+
export { ACTIONS, ADMIN_PANEL_SELECTORS, API_KEYS_SELECTORS, API_ROUTES, AUDIT_LOGS_SELECTORS, ApiKeysApi, ApiKeysPage, 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, CustomCommands, CustomDomainApi, CustomDomainPage, DATE_FORMATS, DATE_PICKER_SELECTORS, DATE_RANGES, DATE_TEXTS, DEFAULT_WEBHOOKS_RESPONSE_TEXT, DESCRIPTION_EDITOR_TEXTS, EMBED_SELECTORS, EMOJI_LABEL, EMPTY_STORAGE_STATE, ENGAGE_TEXTS, ENVIRONMENT, EXAMPLE_URL, EXPANDED_FONT_SIZE, EXPORT_FILE_TYPES, EditorPage, EmbedBase, FILE_FORMATS, FONT_SIZE_SELECTORS, 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, INTEGRATIONS_TEXTS, INTEGRATION_SELECTORS, IPRestrictionsPage, IP_RESTRICTIONS_SELECTORS, IS_DEV_ENV, IS_STAGING_ENV, ImageUploader, IntegrationBase, IpRestrictionsApi, KEYBOARD_SHORTCUTS_SELECTORS, KEYBOARD_SHORTCUT_TEST_CASES, LIST_MODIFIER_SELECTORS, LIST_MODIFIER_TAGS, LOGIN_SELECTORS, MEMBER_FORM_SELECTORS, MEMBER_SELECTORS, MEMBER_TEXTS, MERGE_TAGS_SELECTORS, MICROSOFT_LOGIN_SELECTORS, MICROSOFT_LOGIN_TEXTS, MailerUtils, 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, NeetoTowerApi, ONBOARDING_SELECTORS, ORGANIZATION_TEXTS, OTP_EMAIL_PATTERN, OrganizationPage, PAST_TIME_RANGES, PHONE_NUMBER_FORMATS, PLURAL, PROFILE_LINKS, PROFILE_SECTION_SELECTORS, PROJECT_NAMES, PROJECT_TRANSLATIONS_PATH, ROLES_SELECTORS, ROUTES, RailsEmailRakeClient, RailsEmailUtils, RoleApis, RolesPage, SIGNUP_SELECTORS, SINGULAR, SLACK_DATA_QA_SELECTORS, SLACK_DEFAULT_CHANNEL, SLACK_SELECTORS, SLACK_WEB_TEXTS, STATUS_TEXTS, STORAGE_STATE, SecurityApi, SidebarSection, SlackApi, SlackPage, 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_ROUTES, TIME_RANGES, TOASTR_MESSAGES, TWILIO_SELECTORS, TagsApi, TagsPage, TeamMembers, ThankYouApi, ThankYouPage, TwilioApi, USER_AGENTS, WEBHOOK_SELECTORS, WebhookSiteApi, WebhooksPage, ZAPIER_LIMIT_EXHAUSTED_MESSAGE, ZAPIER_SELECTORS, ZAPIER_TEST_EMAIL, ZAPIER_WEB_TEXTS, ZapierPage, baseURLGenerator, basicHTMLContent, clearCredentials, commands, cpuThrottlingUsingCDP, createOrganizationViaRake, currencyUtils, dataQa, decodeQRCodeFromFile, definePlaywrightConfig, executeWithThrottledResources, extractSubdomainFromError, fillCredentialsAndSubmit, filterUtils, generatePhoneNumber, generatePhoneNumberDetails, generateRandomBypassEmail, generateRandomFile, generateStagingData, getByDataQA, getClipboardContent, getFormattedPhoneNumber, getFullUrl, getGlobalUserProps, getGlobalUserState, getImagePathAndName, getIsoCodeFromPhoneCode, getListCount, globalShortcuts, grantClipboardPermissions, hexToRGB, hexToRGBA, i18nFixture, imageRegex, initializeCredentials, initializeTestData, initializeTotp, isGithubIssueOpen, joinHyphenCase, joinString, login, loginWithoutSSO, networkConditions, networkThrottlingUsingCDP, readFileSyncIfExists, removeCredentialFile, serializeFileForBrowser, shouldSkipCustomDomainSetup, shouldSkipSetupAndTeardown, simulateClickWithDelay, simulateTypingWithDelay, skipTest, squish, _default as stealthTest, tableUtils, toCamelCase, updateCredentials, writeDataToFile };
|
|
8773
8926
|
export type { BaseThemeStyle, BaseThemeStyleType, ColumnMenuAction, CountryProps, CustomFixture, IntroPageThemeStyle, IntroPageThemeStyleType, ProjectName, ThemeCategory, ValueOf };
|