fronts-client/integration/helpers/index.js (5 lines of code) (raw):
import { Selector } from 'testcafe';
const nestedSelectorString = (...strs) =>
strs.map(str => `[data-testid="${str}"]`).join(' ');
const select = (...strs) => Selector(nestedSelectorString(...strs));
export { select };