D7net
Home
Console
Upload
information
Create File
Create Folder
About
Tools
:
/
usr
/
share
/
grafana
/
public
/
app
/
plugins
/
datasource
/
prometheus
/
querybuilder
/
Filename :
testUtils.ts
back
Copy
import { screen, getAllByRole } from '@testing-library/react'; export function getLabelSelects(index = 0) { const labels = screen.getByText(/Label filters/); const selects = getAllByRole(labels.parentElement!.parentElement!.parentElement!, 'combobox'); return { name: selects[3 * index], value: selects[3 * index + 2], }; }