playwright-browser
Headless browser via Playwright.
От сообщества: Добавлен пользователем или импортирован; проверьте владельца перед подключениемРаботаетБез входаГлобальныйБесплатноТолько чтение
Что умеет
- Scrape Url: Scrape a URL and return page content: title, text, HTML, and metadata. Handles JavaScript-rendered pages, SPAs, and dynamic content that simple HTTP fetchers cannot access.
- Take Screenshot: Take a screenshot of any URL and return it as base64-encoded JPEG. Useful for visual verification, capturing UI state, or getting screenshots of web apps.
- Extract Links: Extract all hyperlinks from a URL. Returns list of {text, href, is_external} objects. Useful for crawling, sitemap analysis, or finding related resources.
Какие данные видит
Нужен ли аккаунт
Не нужен: сервер работает без входа
Headless browser via Playwright. Scrapes JS-rendered pages, takes screenshots, extracts links and tables, fills forms, runs arbitrary JS. Useful when fetch() is not enough.
Список инструментов сервера (6)
Технические названия из tools/list. Нужны только разработчикам.
| scrape_url | Scrape a URL and return page content: title, text, HTML, and metadata. Handles JavaScript-rendered pages, SPAs, and dynamic content that simple HTTP fetchers cannot access. |
| take_screenshot | Take a screenshot of any URL and return it as base64-encoded JPEG. Useful for visual verification, capturing UI state, or getting screenshots of web apps. |
| extract_links | Extract all hyperlinks from a URL. Returns list of {text, href, is_external} objects. Useful for crawling, sitemap analysis, or finding related resources. |
| extract_tables | Extract all HTML tables from a URL as structured JSON data. Perfect for scraping data from HTML tables, financial data, sports stats, product comparisons. |
| fill_form | Navigate to a URL, fill form fields, and optionally submit. Returns the page content after form interaction. Useful for automating web forms, searches, logins. |
| run_js | Navigate to a URL and execute custom JavaScript on the page. Returns the result of the script. Useful for complex data extraction, interacting with page state, or testing. |