2020-09-24 19:23:23 +00:00
|
|
|
export const welcomeMessageShown = async app => {
|
2020-08-24 22:49:29 +00:00
|
|
|
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 => {
|
2020-08-24 22:49:29 +00:00
|
|
|
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 => {
|
2020-08-24 22:49:29 +00:00
|
|
|
await app.client
|
|
|
|
.$('.onboarding__content__body')
|
|
|
|
.then(e => e.$(`button=Skip`))
|
|
|
|
.then(e => e.click());
|
|
|
|
};
|