mirror of
https://github.com/Kong/insomnia
synced 2024-11-08 14:49:53 +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());
|
||
|
};
|