@bigbinary/neeto-playwright-commons 1.22.3 → 1.22.4
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 +2888 -2654
- package/index.cjs.js.map +1 -1
- package/index.d.ts +5 -12
- package/index.js +2888 -2654
- package/index.js.map +1 -1
- package/package.json +1 -1
package/index.d.ts
CHANGED
|
@@ -3472,7 +3472,7 @@ declare class CustomDomainPage {
|
|
|
3472
3472
|
private addCustomDomain;
|
|
3473
3473
|
/**
|
|
3474
3474
|
*
|
|
3475
|
-
* Validates
|
|
3475
|
+
* Validates the custom domain via UI.
|
|
3476
3476
|
*
|
|
3477
3477
|
* domain: The custom domain string to validate.
|
|
3478
3478
|
*
|
|
@@ -3485,15 +3485,14 @@ declare class CustomDomainPage {
|
|
|
3485
3485
|
private loginToCustomDomain;
|
|
3486
3486
|
private waitForTrustedSSL;
|
|
3487
3487
|
private saveCustomDomainState;
|
|
3488
|
+
private waitForDomainPropagation;
|
|
3488
3489
|
/**
|
|
3489
3490
|
*
|
|
3490
3491
|
* Used to set up a custom domain for the given product. This method is a high-level wrapper that handles connecting to the custom domain, logging in, and saving the session state. Skips execution if custom domain setup is disabled.
|
|
3491
3492
|
*
|
|
3492
|
-
* product (required): The name of the product for which the custom domain is being set up.
|
|
3493
|
-
*
|
|
3494
3493
|
* @example
|
|
3495
3494
|
*
|
|
3496
|
-
* await customDomainPage.setupCustomDomain(
|
|
3495
|
+
* await customDomainPage.setupCustomDomain();
|
|
3497
3496
|
* @endexample
|
|
3498
3497
|
*/
|
|
3499
3498
|
setupCustomDomain: () => Promise<void>;
|
|
@@ -3501,13 +3500,11 @@ declare class CustomDomainPage {
|
|
|
3501
3500
|
*
|
|
3502
3501
|
* Connects and validates a custom domain for the specified product.
|
|
3503
3502
|
*
|
|
3504
|
-
* product (required): The name of the product.
|
|
3505
|
-
*
|
|
3506
3503
|
* subdomain (optional): The subdomain to use for generating the custom domain.
|
|
3507
3504
|
*
|
|
3508
3505
|
* @example
|
|
3509
3506
|
*
|
|
3510
|
-
* await customDomainPage.connectCustomDomain("
|
|
3507
|
+
* await customDomainPage.connectCustomDomain("cpt-form-534343434");
|
|
3511
3508
|
* @endexample
|
|
3512
3509
|
*/
|
|
3513
3510
|
connectCustomDomain: (subdomain?: string) => Promise<void>;
|
|
@@ -3515,13 +3512,9 @@ declare class CustomDomainPage {
|
|
|
3515
3512
|
*
|
|
3516
3513
|
* Removes an existing custom domain configuration via the UI for the given product. Validates that the domain has been successfully deleted. Skips execution if custom domain setup is disabled.
|
|
3517
3514
|
*
|
|
3518
|
-
* product (required): The name of the product.
|
|
3519
|
-
*
|
|
3520
|
-
* subdomain (optional): The subdomain to use for generating the custom domain.
|
|
3521
|
-
*
|
|
3522
3515
|
* @example
|
|
3523
3516
|
*
|
|
3524
|
-
* await customDomainPage.disconnectCustomDomain(
|
|
3517
|
+
* await customDomainPage.disconnectCustomDomain();
|
|
3525
3518
|
* @endexample
|
|
3526
3519
|
*/
|
|
3527
3520
|
disconnectCustomDomain: () => Promise<void>;
|