accounts-frontend/tests-e2e/cypress/integration/profile/utils.ts
2020-05-21 21:52:58 +03:00

17 lines
533 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();
}