mirror of
https://github.com/mattermost/mattermost.git
synced 2026-04-15 22:12:19 -04:00
9 lines
320 B
JavaScript
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);
|
|
});
|