gendesign/tradein-mvp/backend/tests/fixtures/avito_serp_sample.html
bot-backend e94929159b
All checks were successful
Deploy Trade-In / changes (push) Successful in 5s
Deploy Trade-In / build-frontend (push) Has been skipped
Deploy Trade-In / test (push) Successful in 24s
Deploy Trade-In / build-backend (push) Successful in 39s
Deploy Trade-In / deploy (push) Successful in 34s
fix(scrapers): avito listing_date from sortTimeStamp JSON (#726) (#729)
Co-authored-by: bot-backend <bot-backend@gendsgn.local>
Co-committed-by: bot-backend <bot-backend@gendsgn.local>
2026-05-30 14:13:38 +00:00

32 lines
2 KiB
HTML
Raw Blame History

This file contains ambiguous Unicode characters

This file contains Unicode characters that might be confused with other characters. If you think that this is intentional, you can safely ignore this warning. Use the Escape button to reveal them.

<!doctype html>
<!--
#726 minimal Avito SERP fixture (apartment search), distilled from a real
captured page (curl_cffi chrome120, HTTP 200, 2026-05-30). Exercises both date
paths of avito.py::_parse_html:
- card A (8043936560): LAZY card — no DOM data-marker="item-date" (как у ~79%
карточек ниже первого экрана); дата берётся из per-item JSON sortTimeStamp.
- card B (8163084615): TOP card — несёт DOM data-marker="item-date" (fallback path).
Embedded JSON фрагмент повторяет реальную форму: "id":<id> ... "sortTimeStamp":<ms>.
-->
<html lang="ru"><head><meta charset="utf-8"><title>Avito SERP fixture</title></head>
<body>
<div class="items-items">
<div data-marker="item" data-item-id="8043936560" id="i8043936560">
<a data-marker="item-title" href="/ekaterinburg/kvartiry/2-k._kvartira_54m_59et._8043936560">2-к. квартира, 54&nbsp;м², 5/9&nbsp;эт.</a>
<meta itemprop="price" content="5500000">
<div data-marker="item-line"><div data-marker="item-address"><p>ул. Малышева, 30</p></div></div>
</div>
<div data-marker="item" data-item-id="8163084615" id="i8163084615">
<a data-marker="item-title" href="/ekaterinburg/kvartiry/1-k._kvartira_38m_316et._8163084615">1-к. квартира, 38&nbsp;м², 3/16&nbsp;эт.</a>
<meta itemprop="price" content="4200000">
<div data-marker="item-line"><div data-marker="item-address"><p>ул. Куйбышева, 21</p></div></div>
<p data-marker="item-date">1 час назад</p>
</div>
</div>
<script>
window.__avito_state_fragment = {"catalog":{"items":[
{"id":8043936560,"category":{"id":24,"slug":"kvartiry"},"addressDetailed":{"locationName":"Екатеринбург"},"sortTimeStamp":1700000000000,"allowTimeStamp":1700000000000},
{"id":8163084615,"category":{"id":24,"slug":"kvartiry"},"addressDetailed":{"locationName":"Екатеринбург"},"sortTimeStamp":1700086400000,"allowTimeStamp":1700086400000}
]}};
</script>
</body></html>