From c6eae770f52f889e36aba68be683191076497127 Mon Sep 17 00:00:00 2001 From: Nick Shirokov Date: Fri, 27 Feb 2026 10:32:37 +0300 Subject: [PATCH] =?UTF-8?q?docs(web-test):=20fix=20hierarchical=20list=20?= =?UTF-8?q?=E2=80=94=20switch=20to=20flat=20mode=20before=20filter?= MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit The Alt+F (Найти) in 1C navigates the tree instead of filtering. Correct approach: Ещё → Режим просмотра → Список, then filterList. Co-Authored-By: Claude Opus 4.6 --- .claude/skills/web-test/SKILL.md | 28 ++++++++++++++++++++++------ 1 file changed, 22 insertions(+), 6 deletions(-) diff --git a/.claude/skills/web-test/SKILL.md b/.claude/skills/web-test/SKILL.md index f88b810b..934b0ad1 100644 --- a/.claude/skills/web-test/SKILL.md +++ b/.claude/skills/web-test/SKILL.md @@ -166,16 +166,32 @@ Single `clickElement(text)` only selects the row. To open — always use `{dblcl ### Hierarchical lists (catalogs) -Simple search (`filterList('text')`) does NOT work for hierarchical catalogs — it shows -groups instead of filtering elements. For Контрагенты, Номенклатура, Сотрудники, etc. -always use advanced search with a specific field: +Simple search and `filterList(text, {field})` do NOT work on hierarchical catalogs — +they navigate the tree instead of filtering. For Контрагенты, Номенклатура, Сотрудники, etc. +switch to flat list mode first: ```js -await filterList('Конфетпром', { field: 'Наименование' }); // correct -// NOT: await filterList('Конфетпром') -- shows groups, not flat results +// 1. Detect: readTable returns `hierarchical: true` when rows have groups +const table = await readTable({ maxRows: 5 }); +if (table.hierarchical) { + // 2. Switch to flat mode via "Ещё" → "Режим просмотра" → "Список" + await clickElement('Еще'); + await clickElement('Режим просмотра'); + await clickElement('Список'); +} + +// 3. Now filterList works normally +await filterList('Конфетпром', { field: 'Наименование в программе' }); +// ...work with results... + +// 4. Clean up: switch back to hierarchical mode +await unfilterList(); +await clickElement('Еще'); +await clickElement('Режим просмотра'); +await clickElement('Иерархический список'); ``` -Hint: if `readTable()` returns rows with `_kind: 'group'`, the list is hierarchical. +Hint: if `readTable()` returns `hierarchical: true`, always switch to flat mode before filtering. ### Closing forms