mirror of
https://github.com/Kong/insomnia
synced 2024-11-08 06:39:48 +00:00
4 lines
128 B
JavaScript
4 lines
128 B
JavaScript
export const clickTabByText = async (element, text) => {
|
|
await element.$(`.react-tabs__tab=${text}`).then(e => e.click());
|
|
};
|