@auto-wiz/dom 1.1.2 → 1.1.3

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.
@@ -412,9 +412,9 @@ export function generateRobustLocator(element) {
412
412
  if (formContext) {
413
413
  metadata.formContext = formContext;
414
414
  // Form context 기반 selector 추가 (fallback용)
415
- selectors.push(`${formContext.formSelector} :nth-child(${formContext.fieldIndex}) input, ` +
416
- `${formContext.formSelector} :nth-child(${formContext.fieldIndex}) textarea, ` +
417
- `${formContext.formSelector} :nth-child(${formContext.fieldIndex}) select`);
415
+ selectors.push(`${formContext.formSelector} input, ` +
416
+ `${formContext.formSelector} textarea, ` +
417
+ `${formContext.formSelector} select`);
418
418
  }
419
419
  }
420
420
  // === Tier 3: 구조적 selector ===
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@auto-wiz/dom",
3
- "version": "1.1.2",
3
+ "version": "1.1.3",
4
4
  "license": "MIT",
5
5
  "author": "JaeSang",
6
6
  "repository": {