mattermost/e2e-tests/cypress/tests/support/ui/cloud_billing.js
2023-03-28 18:10:00 +02:00

9 lines
320 B
JavaScript

// Copyright (c) 2015-present Mattermost, Inc. All Rights Reserved.
// See LICENSE.txt for license information.
Cypress.Commands.add('uiGetPaymentCardInput', () => {
return cy.
get('.__PrivateStripeElement > iframe').
its('0.contentDocument.body').should('not.be.empty').
then(cy.wrap);
});