mirror of
https://github.com/TryGhost/Ghost.git
synced 2024-12-29 13:52:10 +03:00
Added check for Stripe Pass in Stripe Connect test utils (#19633)
refs https://linear.app/tryghost/issue/ENG-599 - Portal tests occasionally failed without clear cause on CI, possibly due to GH runner region - Portal tests never successfully ran locally for US-based IPs because of a required prompt for Stripe Pass
This commit is contained in:
parent
123ccdb6f9
commit
1ed34aebac
@ -330,6 +330,14 @@ const completeStripeSubscription = async (page) => {
|
|||||||
await fillInputIfExists(page, '#billingAddressLine2', 'Apt 1');
|
await fillInputIfExists(page, '#billingAddressLine2', 'Apt 1');
|
||||||
await fillInputIfExists(page, '#billingLocality', 'Testville');
|
await fillInputIfExists(page, '#billingLocality', 'Testville');
|
||||||
|
|
||||||
|
// some regions have a stripe pass checkbox that blocks the submit button
|
||||||
|
if (await page.isVisible('#enableStripePass')) {
|
||||||
|
const checkbox = await page.locator('#enableStripePass');
|
||||||
|
if (await checkbox.isChecked()) {
|
||||||
|
await checkbox.uncheck();
|
||||||
|
}
|
||||||
|
}
|
||||||
|
|
||||||
// Wait for submit button complete
|
// Wait for submit button complete
|
||||||
await page.waitForSelector('[data-testid="hosted-payment-submit-button"].SubmitButton--complete', {state: 'attached'});
|
await page.waitForSelector('[data-testid="hosted-payment-submit-button"].SubmitButton--complete', {state: 'attached'});
|
||||||
|
|
||||||
|
Loading…
Reference in New Issue
Block a user