During setup Allure<->Gitlab integration we are faced with strange behavior. When we try to rerun some tests from Allure TestOps, allure-playwright plugin try to parse testplan.json file and grep tests using just selector property from testplan.json
https://github.com/allure-framework/allure-js/blob/main/packages/allure-playwright/src/testplan.ts#L10
Why we can't use id property to grep those tests?
Current behavior in our cases gives some unexpected result, for example if current code in brunch was changed we can't rerun those tests, but if we use id we can proceed them
It would be nice if we have ability to select which key from testplan.json should be used for select tests to run