@rimori/playwright-testing 0.3.17-next.1 → 0.3.17-next.2

This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
@@ -59,7 +59,7 @@ async function createExerciseViaDialog(page, exercise) {
59
59
  const combobox = dialog.locator(`[id="param-${key}"][role="combobox"]`);
60
60
  if (await combobox.count() > 0) {
61
61
  await combobox.click();
62
- await page.getByRole('option', { name: String(value), exact: true }).click();
62
+ await page.getByRole('option', { name: new RegExp(`^${String(value)}$`, 'i') }).click();
63
63
  continue;
64
64
  }
65
65
  // Number input
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@rimori/playwright-testing",
3
- "version": "0.3.17-next.1",
3
+ "version": "0.3.17-next.2",
4
4
  "description": "Playwright testing utilities for Rimori plugins and workers",
5
5
  "license": "Apache-2.0",
6
6
  "repository": {