You cannot select more than 25 topics Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
session-desktop/ts/test/automation/log_in.ts

16 lines
597 B
TypeScript

import { _electron, Page } from '@playwright/test';
import { sleepFor } from '../../session/utils/Promise';
export const logIn = async (window: Page, userName: string, recoveryPhrase: string) => {
// restore account
await window.click('[data-testid=restore-using-recovery');
// Enter recovery phrase
await window.fill('[data-testid=recovery-phrase-input]', recoveryPhrase);
// Enter display name
await window.fill('[data-testid=display-name-input]', userName);
// Click continue your session
await window.click('[data-testid=continue-session-button]');
await sleepFor(100);
};