9b395f5cc3
E2E Headed Chrome / e2e-headed (macos-15) (push) Has been cancelled
E2E Headed Chrome / e2e-headed (ubuntu-latest) (push) Has been cancelled
E2E Headed Chrome / e2e-headed (windows-latest) (push) Has been cancelled
CI / build (macos-latest) (push) Has been cancelled
CI / build (ubuntu-latest) (push) Has been cancelled
CI / build (windows-latest) (push) Has been cancelled
CI / unit-test (push) Has been cancelled
CI / bun-test (push) Has been cancelled
CI / adapter-test (push) Has been cancelled
CI / smoke-test (macos-latest) (push) Has been cancelled
CI / smoke-test (ubuntu-latest) (push) Has been cancelled
Security Audit / audit (push) Has been cancelled
Build Chrome Extension / build (push) Has been cancelled
Trigger Website Rebuild (Docs Updated) / dispatch (push) Has been cancelled
50 lines
1.6 KiB
Markdown
50 lines
1.6 KiB
Markdown
# Yahoo Search
|
|
|
|
**Mode**: 🌐 Public · **Domain**: `search.yahoo.com`
|
|
|
|
## Commands
|
|
|
|
| Command | Description |
|
|
|---------|-------------|
|
|
| `opencli yahoo search <keyword>` | Search Yahoo (powered by Bing) and extract results from the page |
|
|
|
|
## What works today
|
|
|
|
- Uses browser mode to search `search.yahoo.com` and extract ranked results via DOM queries.
|
|
- Supports `--page` for pagination. Yahoo returns approximately 7 results per page.
|
|
- Results include rank, title, URL, and snippet.
|
|
- `--limit` must be between 1 and 7; `--page` must be a positive integer.
|
|
|
|
## Current limitations
|
|
|
|
- Requires browser mode.
|
|
- Yahoo returns fewer results per page (7) compared to other engines.
|
|
- Page 2+ results may include lower-quality or less relevant matches.
|
|
- Yahoo wraps URLs in a `RU=.../RK=` redirect structure; the adapter automatically decodes them.
|
|
|
|
## Usage Examples
|
|
|
|
```bash
|
|
# Basic search
|
|
opencli yahoo search "machine learning"
|
|
|
|
# Limit results
|
|
opencli yahoo search "machine learning" --limit 5
|
|
|
|
# Pagination (second page)
|
|
opencli yahoo search "machine learning" --page 2
|
|
|
|
# JSON output
|
|
opencli yahoo search "machine learning" -f json
|
|
```
|
|
|
|
## Prerequisites
|
|
|
|
- Requires Chrome running (Standalone mode will auto-launch) or the [Browser Bridge extension](/guide/browser-bridge).
|
|
|
|
## Notes
|
|
|
|
- Yahoo Search is powered by Bing. Results are rendered server-side in the initial HTML.
|
|
- Yahoo uses `RU=` redirect URLs to wrap search results; the adapter extracts the real URLs automatically.
|
|
- Region/language filtering is not currently exposed as a parameter. Results depend on the browser session's locale.
|