mirror of
https://github.com/overleaf/overleaf.git
synced 2024-11-07 20:31:06 -05:00
8616c53839
[web] 3DS currency change fix GitOrigin-RevId: e88c773c6576e55803df3b2ec6a6acb1df80e8f2
12 lines
460 B
TypeScript
12 lines
460 B
TypeScript
export function fillForm() {
|
|
cy.findByTestId('test-card-element').within(() => {
|
|
cy.get('input').each(el => {
|
|
cy.wrap(el).type('1', { delay: 0 })
|
|
})
|
|
})
|
|
cy.findByLabelText(/first name/i).type('1', { delay: 0 })
|
|
cy.findByLabelText(/last name/i).type('1', { delay: 0 })
|
|
cy.findByLabelText('Address').type('1', { delay: 0 })
|
|
cy.findByLabelText(/postal code/i).type('1', { delay: 0 })
|
|
cy.findByLabelText(/country/i).select('Bulgaria')
|
|
}
|