accounts-frontend/tests-e2e/cypress/integration/profile/utils.ts
2020-05-24 02:08:24 +03:00

14 lines
528 B
TypeScript

export function getSectionByName(name: string) {
return cy.findAllByTestId('profile-item').contains(name).closest('[data-testid="profile-item"]');
}
export function openSectionByName(name: string) {
return getSectionByName(name).findByTestId('profile-action').click();
}
export function confirmWithPassword(password: string) {
cy.findByTestId('password-request-form').should('be.visible');
cy.get('[name=password]').type(password);
cy.findByTestId('password-request-form').find('[type=submit]').click();
}