fix(yandex-valuation): off-by-one cell index in _parse_row_cells #552

Merged
lekss361 merged 1 commit from fix/tradein-yandex-cell-off-by-one into main 2026-05-24 19:57:18 +00:00

1 commit

Author SHA1 Message Date
lekss361
d692511cef fix(yandex-valuation): correct off-by-one cell index in _parse_row_cells
Real Yandex DOM layout (curl_cffi probe 2026-05-24):
- cell[0] = photo (empty text)
- cell[1] = title — area + rooms + floor jammed: "48,5 м², 1-комнатная19 этаж"
- cell[2..5] = prices, dates, status (unchanged from PR #544)

Previous code read area+rooms from cell[0] and floor from cell[1] → 0% fill
for all three fields on 138 live rows. New code reads everything from cell[1].

Verified locally: 138/138 area, rooms, floor filled (100%, plausible 100%).
Tests updated to match real Yandex layout (empty photo + jammed title cell).
2026-05-24 22:51:03 +03:00