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