mirror of
https://github.com/Kong/insomnia
synced 2024-11-08 14:49:53 +00:00
a7784d4160
* chore: refactor * chore: fix one test * chore: fix all tests * chore: fix all existing tests * chore: add prompting tests * chore: ignore flaky test for now
28 lines
910 B
JavaScript
28 lines
910 B
JavaScript
import findAsync from './find-async';
|
|
|
|
const findDropdownItemWithText = async (parent, text, fromComponentLibrary) => {
|
|
let item;
|
|
await parent.waitUntil(async () => {
|
|
const items = fromComponentLibrary
|
|
? await parent.$$('button[class^=dropdown-item]')
|
|
: await parent.react$$('DropdownItem');
|
|
item = await findAsync(items, async i => (await i.getText()) === text);
|
|
return !!item;
|
|
});
|
|
return item;
|
|
};
|
|
|
|
export const clickDropdownItemByText = async (parent, text, fromComponentLibrary = false) => {
|
|
const item = await findDropdownItemWithText(parent, text, fromComponentLibrary);
|
|
await item.waitForDisplayed();
|
|
await item.click();
|
|
};
|
|
|
|
export const clickOpenDropdownItemByText = async (app, text) => {
|
|
const item = await app.client
|
|
.$('.dropdown__menu[aria-hidden=false]')
|
|
.then(e => e.$(`button*=${text}`));
|
|
await item.waitForDisplayed();
|
|
await item.click();
|
|
};
|