From 03d90b696049c2856d3aba52301cdbb3247ebd4a Mon Sep 17 00:00:00 2001 From: Nick Shirokov Date: Mon, 29 Jun 2026 11:53:51 +0300 Subject: [PATCH] =?UTF-8?q?docs(web-test):=20=D1=83=D0=B1=D1=80=D0=B0?= =?UTF-8?q?=D1=82=D1=8C=20=D0=B8=D0=B7=20SKILL.md=20=D1=81=D1=82=D1=80?= =?UTF-8?q?=D0=BE=D0=BA=D1=83=20=D0=BF=D1=80=D0=BE=20=D0=BE=D0=B4=D0=B8?= =?UTF-8?q?=D0=BD=D0=BE=D1=87=D0=BD=D0=BE=D0=B5=20=D0=B7=D0=BD=D0=B0=D1=87?= =?UTF-8?q?=D0=B5=D0=BD=D0=B8=D0=B5=20=D0=BD=D0=B0=20=D0=BF=D0=BE=D0=BB?= =?UTF-8?q?=D0=B5-=D1=81=D0=BF=D0=B8=D1=81=D0=BA=D0=B5?= MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit Описывала реализацию (auto-routed/value-list field), а не применение. Одиночное значение через selectValue/fillFields — обычное использование (уже задокументировано); новое для модели только массив (мультивыбор) — он и остаётся. Co-Authored-By: Claude Opus 4.8 (1M context) --- .claude/skills/web-test/SKILL.md | 2 -- 1 file changed, 2 deletions(-) diff --git a/.claude/skills/web-test/SKILL.md b/.claude/skills/web-test/SKILL.md index f7b538f0..e587f5ce 100644 --- a/.claude/skills/web-test/SKILL.md +++ b/.claude/skills/web-test/SKILL.md @@ -348,8 +348,6 @@ actually selected; any value the field doesn't offer goes to `notSelected: [{ va await selectValue('Наименование компании', ['Альфа ООО', 'Бета АО']); // selected: { field: 'Наименование компании', values: ['Альфа ООО', 'Бета АО'] } ``` -A **single** value works too — `selectValue('Поле', 'Альфа ООО')` or `fillFields({ 'Поле': 'Альфа ООО' })` -on a value-list field is auto-routed to the same mechanism (no need to know the field is a value-list). #### `fillTableRow(fields, opts)` → form state with `filled` (+ optional `notFilled`) Fill table row cells via Tab navigation. Value is a plain string, `{ value, type }` for composite-type cells, or `''`/`null` to clear (Shift+F4).