Double Bell M16A2
OptimusPrime
10 Aug 2026

This is the complete article body with enough useful text to pass validation safely.
from __future__ import annotations import unittest from bs4 import BeautifulSoup from extractor import detail_from_html, extract_fields, normalize_config POPULARAIRSOFT_CONFIG = { "version": 1, "discovery": { "type": "html", "item_selector": "#block-views-block-latest-news-list-block-2 .feature-contents, #block-views-block-latest-news-list-block-1 .lt-teasure", "limit": 10, "fields": { "url": {"selector": "a.link-title", "extract": "attr", "attribute": "href", "required": True}, "external_id": {"selector": "a.link-title", "extract": "attr", "attribute": "href", "required": True}, "title": {"selector": "a.link-title", "extract": "text", "required": True}, "published_at": { "selector": "time[datetime]", "extract": "attr", "attribute": "datetime", "required": True, }, }, "media": [ {"type": "photo", "selector": ".site-image img", "attributes": ["src", "data-src", "srcset"]} ], }, "detail": { "enabled": True, "always": True, "transport": "http", "root_selector": "article.news.full", "fields": { "title": { "selector": ".feature-contents > .news-story-texts:first-child h2", "extract": "text", "required": True, }, "published_at": { "candidates": [ { "selector": ".feature-contents > .news-story-texts:first-child .news-story-date", "extract": "text", "formats": ["%d %b %Y"], "timezone": "UTC", }, {"source": "list.published_at"}, ], "required": True, }, "text": { "selector": ".feature-contents > .news-story-texts:last-child .field--name-body", "extract": "text", "required": True, "min_length": 50, }, }, "media": [ { "type": "photo", "selector": ".feature-contents > .site-image .field--name-field-image img", "attributes": ["src", "data-src", "srcset"], }, { "type": "video", "selector": ".field--name-body iframe, .field--name-body video, .field--name-body source", "attributes": ["src", "data-src"], }, ], }, "access": {"type": "cloudflare", "wait_for": "#block-views-block-latest-news-list-block-1"}, "retry": {"attempts": 3, "delay_seconds": 5, "timeout_seconds": 90}, "min_text_length": 50, } PAGE = """
10 Aug 2026

This is the complete article body with enough useful text to pass validation safely.