@bigbinary/neeto-playwright-commons 1.22.8 → 1.22.10
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 +2906 -2693
- package/index.cjs.js.map +1 -1
- package/index.d.ts +9 -10
- package/index.js +2906 -2693
- package/index.js.map +1 -1
- package/package.json +1 -1
package/index.d.ts
CHANGED
|
@@ -1181,16 +1181,18 @@ type GetByRoleOptions = {
|
|
|
1181
1181
|
selected?: boolean;
|
|
1182
1182
|
};
|
|
1183
1183
|
type InlineCustomizationOptions = {
|
|
1184
|
-
|
|
1185
|
-
|
|
1184
|
+
/**
|
|
1185
|
+
* @deprecated This parameter is deprecated.
|
|
1186
|
+
*/
|
|
1187
|
+
embedHeight?: string;
|
|
1188
|
+
/**
|
|
1189
|
+
* @deprecated This parameter is deprecated.
|
|
1190
|
+
*/
|
|
1191
|
+
embedWidth?: string;
|
|
1186
1192
|
embedDivContainerId: string;
|
|
1187
1193
|
};
|
|
1188
1194
|
type VerifyInlineCustomizationParams = {
|
|
1189
1195
|
headingTestId: string;
|
|
1190
|
-
/**
|
|
1191
|
-
* @deprecated This parameter is deprecated.
|
|
1192
|
-
*/
|
|
1193
|
-
inlineEmbedInterceptParams?: Partial<InterceptMultipleResponsesParams>;
|
|
1194
1196
|
customizationOptions: InlineCustomizationOptions;
|
|
1195
1197
|
};
|
|
1196
1198
|
type FloatingPopupCustomizationOptions = {
|
|
@@ -1360,22 +1362,18 @@ declare class EmbedBase {
|
|
|
1360
1362
|
*
|
|
1361
1363
|
* headingTestId: Test ID of the heading element.
|
|
1362
1364
|
*
|
|
1363
|
-
* inlineEmbedInterceptParams: (Deprecated) Parameters for intercepting multiple responses.
|
|
1364
|
-
*
|
|
1365
1365
|
* customizationOptions: Options for customization.
|
|
1366
1366
|
*
|
|
1367
1367
|
* @example
|
|
1368
1368
|
*
|
|
1369
1369
|
* await embedBase.verifyInlineCustomization({
|
|
1370
1370
|
* headingTestId: "heading",
|
|
1371
|
-
* inlineEmbedInterceptParams: { urlRegex: /example\.com/, status: 200 },
|
|
1372
1371
|
* customizationOptions: { embedHeight: "100", embedWidth: "100", embedDivContainerId: "container" }
|
|
1373
1372
|
* });
|
|
1374
1373
|
* @endexample
|
|
1375
1374
|
*/
|
|
1376
1375
|
verifyInlineCustomization: ({
|
|
1377
1376
|
headingTestId,
|
|
1378
|
-
inlineEmbedInterceptParams,
|
|
1379
1377
|
customizationOptions
|
|
1380
1378
|
}: VerifyInlineCustomizationParams) => Promise<void>;
|
|
1381
1379
|
backToEmbedSelection: () => Promise<void>;
|
|
@@ -5572,6 +5570,7 @@ declare const PROFILE_SECTION_SELECTORS: {
|
|
|
5572
5570
|
profileAvatar: string;
|
|
5573
5571
|
actionHeaderUserEmail: string;
|
|
5574
5572
|
submitButton: string;
|
|
5573
|
+
manageBillingAndSubscriptionsButton: string;
|
|
5575
5574
|
};
|
|
5576
5575
|
/**
|
|
5577
5576
|
*
|