diff --git a/src/queries.js b/src/queries.js index cff0a55..f77a707 100644 --- a/src/queries.js +++ b/src/queries.js @@ -1,53 +1,22 @@ let theQueries = [ - "findAllByLabelText", - "findByLabelText", - "getAllByLabelText", - "getByLabelText", - "queryAllByLabelText", - "queryByLabelText", - "findAllByPlaceholderText", - "findByPlaceholderText", - "getAllByPlaceholderText", - "getByPlaceholderText", - "queryAllByPlaceholderText", - "queryByPlaceholderText", - "findAllByText", - "findByText", - "getAllByText", - "getByText", - "queryAllByText", - "queryByText", - "findAllByDisplayValue", - "findByDisplayValue", - "getAllByDisplayValue", - "getByDisplayValue", - "queryAllByDisplayValue", - "queryByDisplayValue", - "findAllByAltText", - "findByAltText", - "getAllByAltText", - "getByAltText", - "queryAllByAltText", - "queryByAltText", - "findAllByTitle", - "findByTitle", - "getAllByTitle", - "getByTitle", - "queryAllByTitle", - "queryByTitle", - "findAllByRole", - "findByRole", - "getAllByRole", - "getByRole", - "queryAllByRole", - "queryByRole", - "findAllByTestId", - "findByTestId", - "getAllByTestId", - "getByTestId", - "queryAllByTestId", - "queryByTestId", -]; + "findAllBy", + "findBy", + "getAllBy", + "getBy", + "queryAllBy", + "queryBy", +].flatMap((prefix) => + [ + "AltText", + "DisplayValue", + "LabelText", + "PlaceholderText", + "Role", + "TestId", + "Text", + "Title", + ].map((element) => `${prefix}${element}`) +); (() => { try {