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/utilities/linked_device.ts

12 lines
291 B
TypeScript

import { _electron } from 'playwright-core';
import { logIn } from '../setup/log_in';
import { openApp } from '../setup/open';
export async function linkedDevice(recoveryPhrase: string) {
const [windowB] = await openApp(1);
await logIn(windowB, recoveryPhrase);
return [windowB];
}