docs(web-test): fix hierarchical list — simple filterList works

Simple filterList('text') works on hierarchical catalogs after
the search input regex fix. No need to switch view mode.

Co-Authored-By: Claude Opus 4.6 <noreply@anthropic.com>
This commit is contained in:
Nick Shirokov
2026-02-27 10:40:00 +03:00
parent c6eae770f5
commit afe760af4b
+7 -22
View File
@@ -166,32 +166,17 @@ Single `clickElement(text)` only selects the row. To open — always use `{dblcl
### Hierarchical lists (catalogs)
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:
For hierarchical catalogs (Контрагенты, Номенклатура, Сотрудники, etc.) use simple
search — it works correctly and flattens the view:
```js
// 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('Иерархический список');
await filterList('Конфетпром'); // simple search — works on hierarchical lists
await clickElement('Конфетпром ООО', { dblclick: true }); // open found item
await closeForm(); // close item
await unfilterList(); // restore hierarchical view
```
Hint: if `readTable()` returns `hierarchical: true`, always switch to flat mode before filtering.
Hint: if `readTable()` returns `hierarchical: true`, the list has groups.
### Closing forms