insomnia/packages/insomnia-smoke-test/modules/onboarding.js

21 lines
531 B
JavaScript
Raw Normal View History

2020-09-24 19:23:23 +00:00
export const welcomeMessageShown = async app => {
await app.client.waitUntilTextExists(
'.onboarding__content__header h1',
'Welcome to Insomnia Designer',
);
};
2020-09-24 19:23:23 +00:00
export const clickDontShare = async app => {
await app.client
.$('.onboarding__content__body')
.then(e => e.$(`button=Don't share usage analytics`))
.then(e => e.click());
};
2020-09-24 19:23:23 +00:00
export const clickSkipImport = async app => {
await app.client
.$('.onboarding__content__body')
.then(e => e.$(`button=Skip`))
.then(e => e.click());
};