mirror of
https://github.com/Kong/insomnia
synced 2024-11-08 06:39:48 +00:00
51 lines
1.4 KiB
JavaScript
51 lines
1.4 KiB
JavaScript
export const migrationMessageShown = async app => {
|
|
await app.client.waitUntilTextExists(
|
|
'.onboarding__content__body p strong',
|
|
'Migrate from Insomnia Designer',
|
|
);
|
|
};
|
|
|
|
export const clickSkip = async app => {
|
|
const button = await app.client.react$('MigrationBody').then(e => e.$(`button=Skip for now`));
|
|
await button.waitForClickable();
|
|
await button.click();
|
|
};
|
|
|
|
export const toggleOption = async (app, label) => {
|
|
const toggle = await app.client
|
|
.$('.onboarding__content__body')
|
|
.then(e => e.react$(`BooleanSetting`, { props: { label } }));
|
|
await toggle.waitForClickable();
|
|
await toggle.click();
|
|
};
|
|
|
|
const _getStartButton = async app => {
|
|
return await app.client.react$('MigrationBody').then(e => e.$(`button=Start Migration`));
|
|
};
|
|
|
|
export const clickStart = async app => {
|
|
const button = await _getStartButton(app);
|
|
await button.waitForClickable();
|
|
await button.click();
|
|
};
|
|
|
|
export const ensureStartNotClickable = async app => {
|
|
const button = await _getStartButton(app);
|
|
await button.waitForClickable({ reverse: true });
|
|
};
|
|
|
|
export const successMessageShown = async app => {
|
|
await app.client.waitUntilTextExists(
|
|
'.onboarding__content__body p strong',
|
|
'Migrated successfully!',
|
|
10000, // Wait 10 seconds for migration to complete
|
|
);
|
|
};
|
|
|
|
export const clickRestart = async app => {
|
|
await app.client
|
|
.react$('MigrationBody')
|
|
.then(e => e.$(`button=Restart Now`))
|
|
.then(e => e.click());
|
|
};
|