diff --git a/web/components/ScraperTest.tsx b/web/components/ScraperTest.tsx index 564e049..c29f84d 100644 --- a/web/components/ScraperTest.tsx +++ b/web/components/ScraperTest.tsx @@ -318,8 +318,37 @@ export default function ScraperTest() { searchInputRef.current?.focus(); }; + // Test URLs at different scales + const testUrls = [ + { name: '🏪 Small (~79)', query: 'R. Fleitas Peluqueros Gran Canaria' }, + { name: '🚗 Medium (~589)', query: 'ClickRent Gran Canaria' }, + { name: '🏥 Large (~2000+)', query: 'Hospital Universitario Doctor Negrín Las Palmas' }, + ]; + return (
+ {/* Test URL Quick Select */} +
+
+ Quick Test: +
+
+ {testUrls.map((test, idx) => ( + + ))} +
+
+ {/* Search Interface */} <>