@bigbinary/neeto-playwright-commons 3.3.13 → 4.0.1
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/README.md +3 -0
- package/index.d.ts +63 -80
- package/index.js +66 -1119
- package/package.json +11 -8
- package/index.cjs.js +0 -127377
- package/index.cjs.js.map +0 -1
- package/index.js.map +0 -1
package/README.md
CHANGED
|
@@ -123,6 +123,9 @@ You can import the utility functions and constants from the
|
|
|
123
123
|
import { COMMON_SELECTORS } from "@bigbinary/neeto-playwright-common";
|
|
124
124
|
```
|
|
125
125
|
|
|
126
|
+
This package is published as ESM-only. Use `import` syntax and avoid
|
|
127
|
+
CommonJS `require()` for package consumption.
|
|
128
|
+
|
|
126
129
|
## Exported Functions
|
|
127
130
|
|
|
128
131
|
- [Common default configurations](./docs/default-configurations.md)
|
package/index.d.ts
CHANGED
|
@@ -870,7 +870,7 @@ declare class RoleApis {
|
|
|
870
870
|
*
|
|
871
871
|
* @example
|
|
872
872
|
*
|
|
873
|
-
* import { BASE_URL } from "@
|
|
873
|
+
* import { BASE_URL } from "@neetoplaywright";
|
|
874
874
|
* @endexample
|
|
875
875
|
*/
|
|
876
876
|
private readonly BASE_URL;
|
|
@@ -1832,7 +1832,7 @@ declare class MailerUtils {
|
|
|
1832
1832
|
*
|
|
1833
1833
|
* @example
|
|
1834
1834
|
*
|
|
1835
|
-
* import { decodeQRCodeFromFile } from "@
|
|
1835
|
+
* import { decodeQRCodeFromFile } from "@neetoplaywright";
|
|
1836
1836
|
*
|
|
1837
1837
|
* const filePath = "path/to/qrCodeImage.png";
|
|
1838
1838
|
*
|
|
@@ -1855,7 +1855,7 @@ declare class QRCodeUtils {
|
|
|
1855
1855
|
*
|
|
1856
1856
|
* @example
|
|
1857
1857
|
*
|
|
1858
|
-
* import { decodeQRCodeFromFile } from "@
|
|
1858
|
+
* import { decodeQRCodeFromFile } from "@neetoplaywright";
|
|
1859
1859
|
*
|
|
1860
1860
|
* const filePath = "path/to/qrCodeImage.png";
|
|
1861
1861
|
*
|
|
@@ -1892,7 +1892,7 @@ type ThemeCategory = "base" | "intro";
|
|
|
1892
1892
|
*
|
|
1893
1893
|
* @example
|
|
1894
1894
|
*
|
|
1895
|
-
* import { hexToRGBA } from "@
|
|
1895
|
+
* import { hexToRGBA } from "@neetoplaywright";
|
|
1896
1896
|
*
|
|
1897
1897
|
* // Convert hexadecimal color code to RGB
|
|
1898
1898
|
* const rgbaColor = hexToRGBA("#ffffff29");
|
|
@@ -1916,7 +1916,7 @@ declare class ColorPickerUtils {
|
|
|
1916
1916
|
*
|
|
1917
1917
|
* @example
|
|
1918
1918
|
*
|
|
1919
|
-
* import { hexToRGBA } from "@
|
|
1919
|
+
* import { hexToRGBA } from "@neetoplaywright";
|
|
1920
1920
|
*
|
|
1921
1921
|
* // Convert hexadecimal color code to RGB
|
|
1922
1922
|
* const rgbaColor = hexToRGBA("#ffffff29");
|
|
@@ -1950,7 +1950,7 @@ declare const commands: Commands;
|
|
|
1950
1950
|
*
|
|
1951
1951
|
* @example
|
|
1952
1952
|
*
|
|
1953
|
-
* import { generateStagingData } from "@
|
|
1953
|
+
* import { generateStagingData } from "@neetoplaywright";
|
|
1954
1954
|
*
|
|
1955
1955
|
* // Generate staging data for the default product ("invoice")
|
|
1956
1956
|
* const stagingData = generateStagingData();
|
|
@@ -1993,7 +1993,7 @@ declare const generateStagingData: (product?: string) => {
|
|
|
1993
1993
|
*
|
|
1994
1994
|
* @example
|
|
1995
1995
|
*
|
|
1996
|
-
* import { isStagingOrganizationExpired } from "@
|
|
1996
|
+
* import { isStagingOrganizationExpired } from "@neetoplaywright";
|
|
1997
1997
|
*
|
|
1998
1998
|
* isStagingOrganizationExpired("cpt-cal-3005-1338-45286-4");
|
|
1999
1999
|
* @endexample
|
|
@@ -2310,10 +2310,6 @@ interface HelpAndProfilePageInitializerProps {
|
|
|
2310
2310
|
neetoPlaywrightUtilities: CustomCommands;
|
|
2311
2311
|
product: NeetoProducts;
|
|
2312
2312
|
}
|
|
2313
|
-
interface UpdateProfileProps {
|
|
2314
|
-
firstName: string;
|
|
2315
|
-
lastName?: string;
|
|
2316
|
-
}
|
|
2317
2313
|
interface FillTextFieldsProps {
|
|
2318
2314
|
firstName: string;
|
|
2319
2315
|
lastName: string;
|
|
@@ -2612,13 +2608,6 @@ declare class HelpAndProfilePage {
|
|
|
2612
2608
|
* @endexample
|
|
2613
2609
|
*/
|
|
2614
2610
|
verifyThemeSwitcher: (expectedScreenshot: string) => Promise<void>;
|
|
2615
|
-
/**
|
|
2616
|
-
* @deprecated This method is deprecated. Use updateBasicInfo instead.
|
|
2617
|
-
*/
|
|
2618
|
-
updateProfile: ({
|
|
2619
|
-
firstName,
|
|
2620
|
-
lastName
|
|
2621
|
-
}: UpdateProfileProps) => Promise<void>;
|
|
2622
2611
|
}
|
|
2623
2612
|
type IntegrationStatus = "connected" | "disconnected";
|
|
2624
2613
|
type PartialInterceptMultipleResponsesParams = Partial<InterceptMultipleResponsesParams>;
|
|
@@ -2840,7 +2829,7 @@ declare class GooglePage extends IntegrationBase {
|
|
|
2840
2829
|
*
|
|
2841
2830
|
* @example
|
|
2842
2831
|
*
|
|
2843
|
-
* import { initializeTotp } from "@
|
|
2832
|
+
* import { initializeTotp } from "@neetoplaywright";
|
|
2844
2833
|
*
|
|
2845
2834
|
* // Initialize TOTP with issuer and secret
|
|
2846
2835
|
* const issuer = "MyApp";
|
|
@@ -3119,13 +3108,6 @@ declare class SlackPage extends IntegrationBase {
|
|
|
3119
3108
|
channelName,
|
|
3120
3109
|
kind
|
|
3121
3110
|
}: CreateNewSlackChannelParams) => Promise<void>;
|
|
3122
|
-
/**
|
|
3123
|
-
* @deprecated Use {@link SlackPage.archiveChannelViaAPI} instead. This flow
|
|
3124
|
-
* drives the Slack web UI to permanently delete a channel and is brittle;
|
|
3125
|
-
* `archiveChannelViaAPI` archives via the Slack Web API (requires
|
|
3126
|
-
* `SLACK_BOT_TOKEN`).
|
|
3127
|
-
*/
|
|
3128
|
-
deleteSlackChannel: (channel: string) => Promise<void>;
|
|
3129
3111
|
/**
|
|
3130
3112
|
*
|
|
3131
3113
|
* Archives a Slack channel by name using the Slack Web API (conversations.list then conversations.archive). Requires SLACK_BOT_TOKEN with scopes that allow listing and archiving channels. Does not drive the Slack web UI; use when tests only need the channel removed or archived on the workspace.
|
|
@@ -5619,7 +5601,7 @@ declare const USER_AGENTS: {
|
|
|
5619
5601
|
*
|
|
5620
5602
|
* @example
|
|
5621
5603
|
*
|
|
5622
|
-
* import { BASE_URL } from "@
|
|
5604
|
+
* import { BASE_URL } from "@neetoplaywright";
|
|
5623
5605
|
* @endexample
|
|
5624
5606
|
*/
|
|
5625
5607
|
declare const BASE_URL = "/api/v1";
|
|
@@ -5630,7 +5612,7 @@ declare const NEETO_AUTH_BASE_URL: (subdomain?: string) => string;
|
|
|
5630
5612
|
*
|
|
5631
5613
|
* @example
|
|
5632
5614
|
*
|
|
5633
|
-
* import { ROUTES } from "@
|
|
5615
|
+
* import { ROUTES } from "@neetoplaywright";
|
|
5634
5616
|
* @endexample
|
|
5635
5617
|
* neetoAuthSignup: URL for Neeto Auth signup page.
|
|
5636
5618
|
*
|
|
@@ -5714,7 +5696,7 @@ declare const ROUTES: {
|
|
|
5714
5696
|
*
|
|
5715
5697
|
* @example
|
|
5716
5698
|
*
|
|
5717
|
-
* import { API_ROUTES } from "@
|
|
5699
|
+
* import { API_ROUTES } from "@neetoplaywright";
|
|
5718
5700
|
* @endexample
|
|
5719
5701
|
* teamMembers: Object containing URLs related to team members (similar structure to ROUTES).
|
|
5720
5702
|
*
|
|
@@ -5745,7 +5727,7 @@ declare const API_ROUTES: {
|
|
|
5745
5727
|
*
|
|
5746
5728
|
* @example
|
|
5747
5729
|
*
|
|
5748
|
-
* import { THIRD_PARTY_ROUTES } from "@
|
|
5730
|
+
* import { THIRD_PARTY_ROUTES } from "@neetoplaywright";
|
|
5749
5731
|
* @endexample
|
|
5750
5732
|
* webhooks: Object containing URLs for webhook services.
|
|
5751
5733
|
*
|
|
@@ -6204,7 +6186,7 @@ declare const PHONE_NUMBER_FORMATS: {
|
|
|
6204
6186
|
*
|
|
6205
6187
|
* @example
|
|
6206
6188
|
*
|
|
6207
|
-
* import { COMMON_SELECTORS } from "@
|
|
6189
|
+
* import { COMMON_SELECTORS } from "@neetoplaywright";
|
|
6208
6190
|
* @endexample
|
|
6209
6191
|
* emailInputError: Selector for email input error.
|
|
6210
6192
|
*
|
|
@@ -6616,7 +6598,7 @@ declare const COMMON_SELECTORS: {
|
|
|
6616
6598
|
*
|
|
6617
6599
|
* @example
|
|
6618
6600
|
*
|
|
6619
|
-
* import { THANK_YOU_SELECTORS } from "@
|
|
6601
|
+
* import { THANK_YOU_SELECTORS } from "@neetoplaywright";
|
|
6620
6602
|
* @endexample
|
|
6621
6603
|
* settingsLink: Selector for the settings link.
|
|
6622
6604
|
*
|
|
@@ -6673,7 +6655,7 @@ declare const THANK_YOU_SELECTORS: {
|
|
|
6673
6655
|
*
|
|
6674
6656
|
* @example
|
|
6675
6657
|
*
|
|
6676
|
-
* import { NEETO_EDITOR_SELECTORS } from "@
|
|
6658
|
+
* import { NEETO_EDITOR_SELECTORS } from "@neetoplaywright";
|
|
6677
6659
|
* @endexample
|
|
6678
6660
|
* boldOption: Selector for the bold option.
|
|
6679
6661
|
*
|
|
@@ -6842,7 +6824,7 @@ declare const FONT_SIZE_SELECTORS: {
|
|
|
6842
6824
|
*
|
|
6843
6825
|
* @example
|
|
6844
6826
|
*
|
|
6845
|
-
* import { EMBED_SELECTORS } from "@
|
|
6827
|
+
* import { EMBED_SELECTORS } from "@neetoplaywright";
|
|
6846
6828
|
* @endexample
|
|
6847
6829
|
* iframe(appName: string): Method that generates a selector for the iframe based on the app name.
|
|
6848
6830
|
*
|
|
@@ -6922,7 +6904,7 @@ declare const EMBED_SELECTORS: {
|
|
|
6922
6904
|
*
|
|
6923
6905
|
* @example
|
|
6924
6906
|
*
|
|
6925
|
-
* import { NEETO_FILTERS_SELECTORS } from "@
|
|
6907
|
+
* import { NEETO_FILTERS_SELECTORS } from "@neetoplaywright";
|
|
6926
6908
|
* @endexample
|
|
6927
6909
|
* emailSelectContainer: Selector for the email select container wrapper.
|
|
6928
6910
|
*
|
|
@@ -7000,7 +6982,7 @@ declare const NEETO_FILTERS_SELECTORS: {
|
|
|
7000
6982
|
*
|
|
7001
6983
|
* @example
|
|
7002
6984
|
*
|
|
7003
|
-
* import { HELP_CENTER_SELECTORS } from "@
|
|
6985
|
+
* import { HELP_CENTER_SELECTORS } from "@neetoplaywright";
|
|
7004
6986
|
* @endexample
|
|
7005
6987
|
* helpButton: Selector for the help button.
|
|
7006
6988
|
*
|
|
@@ -7074,7 +7056,7 @@ declare const NEETO_IMAGE_UPLOADER_SELECTORS: {
|
|
|
7074
7056
|
*
|
|
7075
7057
|
* @example
|
|
7076
7058
|
*
|
|
7077
|
-
* import { LOGIN_SELECTORS } from "@
|
|
7059
|
+
* import { LOGIN_SELECTORS } from "@neetoplaywright";
|
|
7078
7060
|
* @endexample
|
|
7079
7061
|
* appleAuthenticationButton: Selector for the Apple authentication button.
|
|
7080
7062
|
*
|
|
@@ -7115,7 +7097,7 @@ declare const LOGIN_SELECTORS: {
|
|
|
7115
7097
|
*
|
|
7116
7098
|
* @example
|
|
7117
7099
|
*
|
|
7118
|
-
* import { MEMBER_SELECTORS } from "@
|
|
7100
|
+
* import { MEMBER_SELECTORS } from "@neetoplaywright";
|
|
7119
7101
|
* @endexample
|
|
7120
7102
|
* membersTab: Selector for the members tab.
|
|
7121
7103
|
*
|
|
@@ -7211,7 +7193,7 @@ declare const MEMBER_SELECTORS: {
|
|
|
7211
7193
|
*
|
|
7212
7194
|
* @example
|
|
7213
7195
|
*
|
|
7214
|
-
* import { MEMBER_FORM_SELECTORS } from "@
|
|
7196
|
+
* import { MEMBER_FORM_SELECTORS } from "@neetoplaywright";
|
|
7215
7197
|
* @endexample
|
|
7216
7198
|
* emailTextField: Selector for the email text field in the member form.
|
|
7217
7199
|
*
|
|
@@ -7240,7 +7222,7 @@ declare const MEMBER_FORM_SELECTORS: {
|
|
|
7240
7222
|
*
|
|
7241
7223
|
* @example
|
|
7242
7224
|
*
|
|
7243
|
-
* import { PROFILE_SECTION_SELECTORS } from "@
|
|
7225
|
+
* import { PROFILE_SECTION_SELECTORS } from "@neetoplaywright";
|
|
7244
7226
|
* @endexample
|
|
7245
7227
|
* profileSectionButton: Selector for the profile section button.
|
|
7246
7228
|
*
|
|
@@ -7313,7 +7295,7 @@ declare const PROFILE_SECTION_SELECTORS: {
|
|
|
7313
7295
|
*
|
|
7314
7296
|
* import {
|
|
7315
7297
|
* ROLES_SELECTORS
|
|
7316
|
-
* } from "@
|
|
7298
|
+
* } from "@neetoplaywright";
|
|
7317
7299
|
*
|
|
7318
7300
|
* @endexample
|
|
7319
7301
|
* newButton: Selector for the "New" button to add a new role.
|
|
@@ -7389,7 +7371,7 @@ declare const ROLES_SELECTORS: {
|
|
|
7389
7371
|
*
|
|
7390
7372
|
* @example
|
|
7391
7373
|
*
|
|
7392
|
-
* import { SIGNUP_SELECTORS } from "@
|
|
7374
|
+
* import { SIGNUP_SELECTORS } from "@neetoplaywright";
|
|
7393
7375
|
* @endexample
|
|
7394
7376
|
* Selectors for signup components.
|
|
7395
7377
|
*
|
|
@@ -7443,7 +7425,7 @@ declare const SIGNUP_SELECTORS: {
|
|
|
7443
7425
|
*
|
|
7444
7426
|
* @example
|
|
7445
7427
|
*
|
|
7446
|
-
* import { TAB_SELECTORS } from "@
|
|
7428
|
+
* import { TAB_SELECTORS } from "@neetoplaywright";
|
|
7447
7429
|
* @endexample
|
|
7448
7430
|
* configureTab: Selector for the configure tab.
|
|
7449
7431
|
*
|
|
@@ -7475,7 +7457,7 @@ declare const TAB_SELECTORS: {
|
|
|
7475
7457
|
*
|
|
7476
7458
|
* @example
|
|
7477
7459
|
*
|
|
7478
|
-
* import { TAGS_SELECTORS } from "@
|
|
7460
|
+
* import { TAGS_SELECTORS } from "@neetoplaywright";
|
|
7479
7461
|
* @endexample
|
|
7480
7462
|
* newTagButton: Selector for the "New Tag" button.
|
|
7481
7463
|
*
|
|
@@ -7531,7 +7513,7 @@ declare const TAGS_SELECTORS: {
|
|
|
7531
7513
|
*
|
|
7532
7514
|
* @example
|
|
7533
7515
|
*
|
|
7534
|
-
* import { MERGE_TAGS_SELECTORS } from "@
|
|
7516
|
+
* import { MERGE_TAGS_SELECTORS } from "@neetoplaywright";
|
|
7535
7517
|
* @endexample
|
|
7536
7518
|
* mergeTagsButton: Selector for the "Merge Tags" button.
|
|
7537
7519
|
*
|
|
@@ -7571,7 +7553,7 @@ declare const MERGE_TAGS_SELECTORS: {
|
|
|
7571
7553
|
*
|
|
7572
7554
|
* @example
|
|
7573
7555
|
*
|
|
7574
|
-
* import { CHAT_WIDGET_SELECTORS } from "@
|
|
7556
|
+
* import { CHAT_WIDGET_SELECTORS } from "@neetoplaywright";
|
|
7575
7557
|
* @endexample
|
|
7576
7558
|
* iframe: Selector for the chat widget iframe.
|
|
7577
7559
|
*
|
|
@@ -7610,7 +7592,7 @@ declare const CHAT_WIDGET_SELECTORS: {
|
|
|
7610
7592
|
*
|
|
7611
7593
|
* @example
|
|
7612
7594
|
*
|
|
7613
|
-
* import { CHANGELOG_WIDGET_SELECTORS } from "@
|
|
7595
|
+
* import { CHANGELOG_WIDGET_SELECTORS } from "@neetoplaywright";
|
|
7614
7596
|
* @endexample
|
|
7615
7597
|
* Selectors for the changelog widget components.
|
|
7616
7598
|
*
|
|
@@ -7632,7 +7614,7 @@ declare const CHANGELOG_WIDGET_SELECTORS: {
|
|
|
7632
7614
|
*
|
|
7633
7615
|
* @example
|
|
7634
7616
|
*
|
|
7635
|
-
* import { KEYBOARD_SHORTCUTS_SELECTORS } from "@
|
|
7617
|
+
* import { KEYBOARD_SHORTCUTS_SELECTORS } from "@neetoplaywright";
|
|
7636
7618
|
* @endexample
|
|
7637
7619
|
* keyboardShortcutsPane: Selector for the keyboard shortcuts pane.
|
|
7638
7620
|
*
|
|
@@ -7652,7 +7634,7 @@ declare const KEYBOARD_SHORTCUTS_SELECTORS: {
|
|
|
7652
7634
|
*
|
|
7653
7635
|
* @example
|
|
7654
7636
|
*
|
|
7655
|
-
* import { INTEGRATION_SELECTORS } from "@
|
|
7637
|
+
* import { INTEGRATION_SELECTORS } from "@neetoplaywright";
|
|
7656
7638
|
* @endexample
|
|
7657
7639
|
* 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.
|
|
7658
7640
|
*
|
|
@@ -7694,7 +7676,7 @@ declare const dataQa: (value: string) => string;
|
|
|
7694
7676
|
*
|
|
7695
7677
|
* @example
|
|
7696
7678
|
*
|
|
7697
|
-
* import { SLACK_SELECTORS} from "@
|
|
7679
|
+
* import { SLACK_SELECTORS} from "@neetoplaywright";
|
|
7698
7680
|
* @endexample
|
|
7699
7681
|
* messageContainer: Selector for the message container.
|
|
7700
7682
|
*
|
|
@@ -7748,7 +7730,7 @@ declare const SLACK_SELECTORS: {
|
|
|
7748
7730
|
*
|
|
7749
7731
|
* @example
|
|
7750
7732
|
*
|
|
7751
|
-
* import { SLACK_DATA_QA_SELECTORS } from "@
|
|
7733
|
+
* import { SLACK_DATA_QA_SELECTORS } from "@neetoplaywright";
|
|
7752
7734
|
* @endexample
|
|
7753
7735
|
* sectionHeadingButton: Selector for the section heading button.
|
|
7754
7736
|
*
|
|
@@ -7798,7 +7780,7 @@ declare const SLACK_DATA_QA_SELECTORS: {
|
|
|
7798
7780
|
*
|
|
7799
7781
|
* @example
|
|
7800
7782
|
*
|
|
7801
|
-
* import { WEBHOOK_SELECTORS } from "@
|
|
7783
|
+
* import { WEBHOOK_SELECTORS } from "@neetoplaywright";
|
|
7802
7784
|
* @endexample
|
|
7803
7785
|
* addNewWebhook: Selector for the "Add New Webhook" button.
|
|
7804
7786
|
*
|
|
@@ -7848,7 +7830,7 @@ declare const WEBHOOK_SELECTORS: {
|
|
|
7848
7830
|
*
|
|
7849
7831
|
* @example
|
|
7850
7832
|
*
|
|
7851
|
-
* import { ZAPIER_SELECTORS } from "@
|
|
7833
|
+
* import { ZAPIER_SELECTORS } from "@neetoplaywright";
|
|
7852
7834
|
* @endexample
|
|
7853
7835
|
* 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.
|
|
7854
7836
|
*
|
|
@@ -7929,7 +7911,7 @@ type ColumnMenuAction = "hide" | "freeze-unfreeze" | "ascending" | "descending"
|
|
|
7929
7911
|
*
|
|
7930
7912
|
* @example
|
|
7931
7913
|
*
|
|
7932
|
-
* import { TABLE_SELECTORS } from "@
|
|
7914
|
+
* import { TABLE_SELECTORS } from "@neetoplaywright";
|
|
7933
7915
|
* @endexample
|
|
7934
7916
|
* freezeUnfreezeButton: Selector for freeze/unfreeze column button.
|
|
7935
7917
|
*
|
|
@@ -7961,7 +7943,7 @@ declare const TABLE_SELECTORS: {
|
|
|
7961
7943
|
*
|
|
7962
7944
|
* @example
|
|
7963
7945
|
*
|
|
7964
|
-
* import { THEMES_SELECTORS } from "@
|
|
7946
|
+
* import { THEMES_SELECTORS } from "@neetoplaywright";
|
|
7965
7947
|
* @endexample
|
|
7966
7948
|
* colorPickerDropdownContainer(colorHex: string): Selector for the color picker dropdown container.
|
|
7967
7949
|
*
|
|
@@ -7979,7 +7961,7 @@ declare const THEMES_SELECTORS: {
|
|
|
7979
7961
|
*
|
|
7980
7962
|
* @example
|
|
7981
7963
|
*
|
|
7982
|
-
* import { ADMIN_PANEL_SELECTORS } from "@
|
|
7964
|
+
* import { ADMIN_PANEL_SELECTORS } from "@neetoplaywright";
|
|
7983
7965
|
* @endexample
|
|
7984
7966
|
* settingsItemHeading: Selector for settings item heading.
|
|
7985
7967
|
*
|
|
@@ -8124,7 +8106,7 @@ declare const ONBOARDING_SELECTORS: {
|
|
|
8124
8106
|
*
|
|
8125
8107
|
* @example
|
|
8126
8108
|
*
|
|
8127
|
-
* import { NEETO_SEO_SELECTORS } from "@
|
|
8109
|
+
* import { NEETO_SEO_SELECTORS } from "@neetoplaywright";
|
|
8128
8110
|
* @endexample
|
|
8129
8111
|
* configureBtn: Selector for the SEO configure button.
|
|
8130
8112
|
*
|
|
@@ -8138,7 +8120,7 @@ declare const NEETO_SEO_SELECTORS: {
|
|
|
8138
8120
|
*
|
|
8139
8121
|
* @example
|
|
8140
8122
|
*
|
|
8141
|
-
* import { MICROSOFT_LOGIN_SELECTORS } from "@
|
|
8123
|
+
* import { MICROSOFT_LOGIN_SELECTORS } from "@neetoplaywright";
|
|
8142
8124
|
* @endexample
|
|
8143
8125
|
* acceptButton: Selector for the accept/sign in submit button.
|
|
8144
8126
|
*
|
|
@@ -8221,6 +8203,7 @@ declare const joinString: JoinString;
|
|
|
8221
8203
|
* @endexample
|
|
8222
8204
|
*/
|
|
8223
8205
|
declare const readFileSyncIfExists: ReadFileSyncIfExists;
|
|
8206
|
+
declare const getDirname: (metaUrl: string) => string;
|
|
8224
8207
|
/**
|
|
8225
8208
|
*
|
|
8226
8209
|
* Returns the current logged in user info.
|
|
@@ -8545,7 +8528,7 @@ declare const imageRegex: (imageName: string) => RegExp;
|
|
|
8545
8528
|
* @example
|
|
8546
8529
|
*
|
|
8547
8530
|
* import { chromium } from "@playwright/test";
|
|
8548
|
-
* import { withCookieCache } from "@
|
|
8531
|
+
* import { withCookieCache } from "@neetoplaywright";
|
|
8549
8532
|
*
|
|
8550
8533
|
* export default async () => {
|
|
8551
8534
|
* const browser = await chromium.launch();
|
|
@@ -8584,7 +8567,7 @@ declare const fillCredentialsAndSubmit: ({
|
|
|
8584
8567
|
*
|
|
8585
8568
|
* @example
|
|
8586
8569
|
*
|
|
8587
|
-
* import { loginWithoutSSO } from "@
|
|
8570
|
+
* import { loginWithoutSSO } from "@neetoplaywright"
|
|
8588
8571
|
*
|
|
8589
8572
|
* await loginWithoutSSO({ page, loginPath:"/home" })
|
|
8590
8573
|
* @endexample
|
|
@@ -8604,7 +8587,7 @@ declare const loginWithoutSSO: ({
|
|
|
8604
8587
|
*
|
|
8605
8588
|
* @example
|
|
8606
8589
|
*
|
|
8607
|
-
* import { login } from "@
|
|
8590
|
+
* import { login } from "@neetoplaywright"
|
|
8608
8591
|
*
|
|
8609
8592
|
* await login({ page, loginPath:"/home" })
|
|
8610
8593
|
* @endexample
|
|
@@ -8622,7 +8605,7 @@ declare const login: ({
|
|
|
8622
8605
|
*
|
|
8623
8606
|
* @example
|
|
8624
8607
|
*
|
|
8625
|
-
* import { generateRandomBypassEmail } from "@
|
|
8608
|
+
* import { generateRandomBypassEmail } from "@neetoplaywright";
|
|
8626
8609
|
*
|
|
8627
8610
|
* const bypassEmail = generateRandomBypassEmail();
|
|
8628
8611
|
* @endexample
|
|
@@ -8664,7 +8647,7 @@ interface CreateOrganizationProps {
|
|
|
8664
8647
|
*
|
|
8665
8648
|
* @example
|
|
8666
8649
|
*
|
|
8667
|
-
* import { createOrganizationViaRake } from "@
|
|
8650
|
+
* import { createOrganizationViaRake } from "@neetoplaywright";
|
|
8668
8651
|
*
|
|
8669
8652
|
* await createOrganizationViaRake({
|
|
8670
8653
|
* email: "user@example.com",
|
|
@@ -8709,7 +8692,7 @@ declare const tableUtils: {
|
|
|
8709
8692
|
*
|
|
8710
8693
|
* @example
|
|
8711
8694
|
*
|
|
8712
|
-
* import { tableUtils } from "@
|
|
8695
|
+
* import { tableUtils } from "@neetoplaywright"
|
|
8713
8696
|
*
|
|
8714
8697
|
* await tableUtils.verifyTableColumnsExistence({
|
|
8715
8698
|
* page,
|
|
@@ -8733,7 +8716,7 @@ declare const tableUtils: {
|
|
|
8733
8716
|
*
|
|
8734
8717
|
* @example
|
|
8735
8718
|
*
|
|
8736
|
-
* import { tableUtils } from "@
|
|
8719
|
+
* import { tableUtils } from "@neetoplaywright"
|
|
8737
8720
|
*
|
|
8738
8721
|
* await tableUtils.assertColumnHeaderVisibility({
|
|
8739
8722
|
* page,
|
|
@@ -8759,7 +8742,7 @@ declare const tableUtils: {
|
|
|
8759
8742
|
*
|
|
8760
8743
|
* @example
|
|
8761
8744
|
*
|
|
8762
|
-
* import { tableUtils } from "@
|
|
8745
|
+
* import { tableUtils } from "@neetoplaywright"
|
|
8763
8746
|
*
|
|
8764
8747
|
* await tableUtils.toggleColumnCheckboxAndVerifyVisibility({
|
|
8765
8748
|
* page,
|
|
@@ -8783,7 +8766,7 @@ declare const tableUtils: {
|
|
|
8783
8766
|
*
|
|
8784
8767
|
* @example
|
|
8785
8768
|
*
|
|
8786
|
-
* import { tableUtils } from "@
|
|
8769
|
+
* import { tableUtils } from "@neetoplaywright"
|
|
8787
8770
|
*
|
|
8788
8771
|
* await tableUtils.verifyFreezeColumnAction(
|
|
8789
8772
|
* page,
|
|
@@ -8820,7 +8803,7 @@ type NetworkThrottlingUsingCdpParams = {
|
|
|
8820
8803
|
*
|
|
8821
8804
|
* @example
|
|
8822
8805
|
*
|
|
8823
|
-
* import { cpuThrottlingUsingCDP } from "@
|
|
8806
|
+
* import { cpuThrottlingUsingCDP } from "@neetoplaywright";
|
|
8824
8807
|
*
|
|
8825
8808
|
* cpuThrottlingUsingCDP({
|
|
8826
8809
|
* cdpSession
|
|
@@ -8841,7 +8824,7 @@ type NetworkThrottlingUsingCdpParams = {
|
|
|
8841
8824
|
* @example
|
|
8842
8825
|
*
|
|
8843
8826
|
* import { networkConditions } from "@constants/networkConditions";
|
|
8844
|
-
* import { executeWithThrottledResources } from "@
|
|
8827
|
+
* import { executeWithThrottledResources } from "@neetoplaywright";
|
|
8845
8828
|
*
|
|
8846
8829
|
* const emulateNetworkConditionsParameters = networkConditions["Fast 3G"];
|
|
8847
8830
|
* const cpuThrottlingRate = 2;
|
|
@@ -8904,7 +8887,7 @@ declare const basicHTMLContent: (content: string) => string;
|
|
|
8904
8887
|
*
|
|
8905
8888
|
* @example
|
|
8906
8889
|
*
|
|
8907
|
-
* import { hexToRGB } from "@
|
|
8890
|
+
* import { hexToRGB } from "@neetoplaywright";
|
|
8908
8891
|
*
|
|
8909
8892
|
* // Convert hexadecimal color code to RGB
|
|
8910
8893
|
* const rgbColor = hexToRGB("#ff0000");
|
|
@@ -8928,7 +8911,7 @@ declare const filterUtils: {
|
|
|
8928
8911
|
* @example
|
|
8929
8912
|
*
|
|
8930
8913
|
* import { Page } from "@playwright/test";
|
|
8931
|
-
* import { filterUtils } from "@
|
|
8914
|
+
* import { filterUtils } from "@neetoplaywright";
|
|
8932
8915
|
*
|
|
8933
8916
|
* await filterUtils.openFilterPane(page);
|
|
8934
8917
|
* @endexample
|
|
@@ -8943,7 +8926,7 @@ declare const filterUtils: {
|
|
|
8943
8926
|
* @example
|
|
8944
8927
|
*
|
|
8945
8928
|
* import { Page } from "@playwright/test";
|
|
8946
|
-
* import { filterUtils } from "@
|
|
8929
|
+
* import { filterUtils } from "@neetoplaywright";
|
|
8947
8930
|
*
|
|
8948
8931
|
* await filterUtils.clearFiltersFromActionBlock(page);
|
|
8949
8932
|
* @endexample
|
|
@@ -8956,7 +8939,7 @@ declare const filterUtils: {
|
|
|
8956
8939
|
*
|
|
8957
8940
|
* @example
|
|
8958
8941
|
*
|
|
8959
|
-
* import { getImagePathAndName } from "@
|
|
8942
|
+
* import { getImagePathAndName } from "@neetoplaywright";
|
|
8960
8943
|
*
|
|
8961
8944
|
* const { imagePath, imageName } = getImagePathAndName("../assets/images/image.png");
|
|
8962
8945
|
* @endexample
|
|
@@ -9020,7 +9003,7 @@ declare const isGithubIssueOpen: (issueLinks: string[]) => Promise<boolean>;
|
|
|
9020
9003
|
*
|
|
9021
9004
|
* @example
|
|
9022
9005
|
*
|
|
9023
|
-
* import { simulateTypingWithDelay } from "@
|
|
9006
|
+
* import { simulateTypingWithDelay } from "@neetoplaywright";
|
|
9024
9007
|
*
|
|
9025
9008
|
* await simulateTypingWithDelay({
|
|
9026
9009
|
* field: page.getByTestId("email-field"),
|
|
@@ -9044,7 +9027,7 @@ declare const simulateTypingWithDelay: ({
|
|
|
9044
9027
|
*
|
|
9045
9028
|
* @example
|
|
9046
9029
|
*
|
|
9047
|
-
* import { simulateClickWithDelay } from "@
|
|
9030
|
+
* import { simulateClickWithDelay } from "@neetoplaywright";
|
|
9048
9031
|
*
|
|
9049
9032
|
* await simulateClickWithDelay({
|
|
9050
9033
|
* element: page.getByTestId("submit-button"),
|
|
@@ -9131,13 +9114,13 @@ declare const getFormattedPhoneNumber: (countryName: string, phoneNumber: string
|
|
|
9131
9114
|
*/
|
|
9132
9115
|
declare const generatePhoneNumberDetails: () => CountryProps;
|
|
9133
9116
|
interface WarmupOptions {
|
|
9134
|
-
urls
|
|
9135
|
-
timeout
|
|
9117
|
+
urls: string[];
|
|
9118
|
+
timeout: number;
|
|
9136
9119
|
}
|
|
9137
9120
|
declare function warmup({
|
|
9138
9121
|
urls,
|
|
9139
9122
|
timeout
|
|
9140
|
-
}?: WarmupOptions): Promise<void>;
|
|
9123
|
+
}?: Partial<WarmupOptions>): Promise<void>;
|
|
9141
9124
|
declare class NeetoAuthServer {
|
|
9142
9125
|
private process;
|
|
9143
9126
|
private targetApp;
|
|
@@ -9299,7 +9282,7 @@ interface Overrides {
|
|
|
9299
9282
|
*
|
|
9300
9283
|
* @example
|
|
9301
9284
|
*
|
|
9302
|
-
* import { definePlaywrightConfig } from "@
|
|
9285
|
+
* import { definePlaywrightConfig } from "@neetoplaywright";
|
|
9303
9286
|
*
|
|
9304
9287
|
* export default definePlaywrightConfig({
|
|
9305
9288
|
* playdashProductionOverrides: { projectKey: "********************" },
|
|
@@ -9307,5 +9290,5 @@ interface Overrides {
|
|
|
9307
9290
|
* @endexample
|
|
9308
9291
|
*/
|
|
9309
9292
|
declare const definePlaywrightConfig: (overrides: Overrides) => PlaywrightTestConfig<{}, {}>;
|
|
9310
|
-
export { ACTIONS, ADMIN_PANEL_SELECTORS, ALL_RESOURCES, ANALYTICS_RESOURCES, API_KEYS_SELECTORS, API_ROUTES, APP_RESOURCES, 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, ColorPickerUtils, 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, 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, INTEGRATIONS_TEXTS, INTEGRATION_SELECTORS, IPRestrictionsPage, IP_RESTRICTIONS_SELECTORS, IS_CI, 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, 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, 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_RESOURCES, 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, isStagingOrganizationExpired, joinHyphenCase, joinString, login, loginWithoutSSO, networkConditions, networkThrottlingUsingCDP, readFileSyncIfExists, removeCredentialFile, serializeFileForBrowser, shouldSkipCustomDomainSetup, shouldSkipSetupAndTeardown, simulateClickWithDelay, simulateTypingWithDelay, skipTest, squish, _default as stealthTest, tableUtils, toCamelCase, updateCredentials, warmup, withCookieCache, writeDataToFile };
|
|
9293
|
+
export { ACTIONS, ADMIN_PANEL_SELECTORS, ALL_RESOURCES, ANALYTICS_RESOURCES, API_KEYS_SELECTORS, API_ROUTES, APP_RESOURCES, 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, ColorPickerUtils, 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, 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, INTEGRATIONS_TEXTS, INTEGRATION_SELECTORS, IPRestrictionsPage, IP_RESTRICTIONS_SELECTORS, IS_CI, 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, 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, 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_RESOURCES, 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, getDirname, getFormattedPhoneNumber, getFullUrl, getGlobalUserProps, getGlobalUserState, getImagePathAndName, getIsoCodeFromPhoneCode, getListCount, globalShortcuts, grantClipboardPermissions, hexToRGB, hexToRGBA, i18nFixture, imageRegex, initializeCredentials, initializeTestData, initializeTotp, isGithubIssueOpen, isStagingOrganizationExpired, joinHyphenCase, joinString, login, loginWithoutSSO, networkConditions, networkThrottlingUsingCDP, readFileSyncIfExists, removeCredentialFile, serializeFileForBrowser, shouldSkipCustomDomainSetup, shouldSkipSetupAndTeardown, simulateClickWithDelay, simulateTypingWithDelay, skipTest, squish, _default as stealthTest, tableUtils, toCamelCase, updateCredentials, warmup, withCookieCache, writeDataToFile };
|
|
9311
9294
|
export type { BaseThemeStyle, BaseThemeStyleType, ColumnMenuAction, CountryProps, CustomFixture, EmailDeliveryConnectParams, EmailDeliveryProvider, EmailDeliveryVerifiedEmail, EmailDeliveryVerifyEmailParams, EmailDeliveryVerifyEmailResponse, EmailMatchCriteria, IntroPageThemeStyle, IntroPageThemeStyleType, OAuthEmailDeliveryProvider, ProjectName, ThemeCategory, ValueOf };
|