google-search-browser-use▌
grasseed/google-search-browser-use · updated Apr 8, 2026
Google searches via real browser sessions, extracting live results while reusing logged-in credentials to minimize CAPTCHAs.
- ›Launches Google searches in real browser mode to leverage existing user sessions and reduce bot detection blocks
- ›Provides commands to inspect search results, click through to individual pages, and extract content summaries with source citations
- ›Includes fallback to Jina AI text extraction if browser parsing encounters difficulties
- ›Requires browser-use instal
Google Search Browser Use
Overview
Run Google searches with browser-use (prefer real browser mode), open results, and extract the relevant snippets or page content. This skill leverages the user's existing browser session to reduce CAPTCHAs.
Prerequisites
Before running the search, ensure the environment is ready:
-
Check Installation: Verify if
browser-useis available in the current PATH.which browser-use -
Install if Missing: If not found, install it using pip.
python3 -m pip install --user browser-use -
Locate Binary: If the command is still not found after installation, it is likely in the user's local bin directory. Retrieve the path dynamically:
python3 -m site --user-base # The binary is typically at <USER_BASE>/bin/browser-use
Workflow
1) Launch a Google search (Real Browser Mode)
Use the real browser to reuse the user’s logged-in session.
Option A: Standard Execution
browser-use --browser real open "https://www.google.com/search?q=YOUR+QUERY"
Option B: Explicit Path Execution If Option A fails (command not found), use the full path found in Prerequisites:
# Example (adjust based on 'python3 -m site --user-base' output):
${HOME}/Library/Python/3.14/bin/browser-use --browser real open "https://www.google.com/search?q=YOUR+QUERY"
(Note: Replace 3.14 with your current Python version if different)
2) Inspect results and parse
Once the browser is open:
# Check current page state
browser-use --browser real state
# Click on a search result (use index from state output)
browser-use --browser real click <index>
3) Extract or Summarize
- Goal: Provide a short summary (3-6 bullets) with source citations.
- Fallback: If
browser-usestruggles with parsing, usecurlwith Jina AI for a text-friendly version:curl -L "https://r.jina.ai/https://example.com"
4) Close the Session
browser-use close
Troubleshooting
- CAPTCHAs: If encountered, solve them manually in the open browser window.
- Path Issues: If
browser-usecannot be called directly, always prefer finding the path viapython3 -m site --user-baserather than guessing. - Connection: Ensure no VPN/Proxy is blocking Google results if timeouts occur.
Discussion
Product Hunt–style comments (not star reviews)- No comments yet — start the thread.
Ratings
4.5★★★★★73 reviews- ★★★★★Kiara Haddad· Dec 20, 2024
google-search-browser-use has been reliable in day-to-day use. Documentation quality is above average for community skills.
- ★★★★★Tariq Brown· Dec 20, 2024
Registry listing for google-search-browser-use matched our evaluation — installs cleanly and behaves as described in the markdown.
- ★★★★★Kofi Bansal· Dec 20, 2024
I recommend google-search-browser-use for anyone iterating fast on agent tooling; clear intent and a small, reviewable surface area.
- ★★★★★Shikha Mishra· Dec 16, 2024
google-search-browser-use is among the better-maintained entries we tried; worth keeping pinned for repeat workflows.
- ★★★★★Amina Chen· Dec 4, 2024
Solid pick for teams standardizing on skills: google-search-browser-use is focused, and the summary matches what you get after install.
- ★★★★★Amina Desai· Nov 23, 2024
google-search-browser-use has been reliable in day-to-day use. Documentation quality is above average for community skills.
- ★★★★★Anaya Mehta· Nov 11, 2024
Solid pick for teams standardizing on skills: google-search-browser-use is focused, and the summary matches what you get after install.
- ★★★★★Evelyn Torres· Nov 11, 2024
Keeps context tight: google-search-browser-use is the kind of skill you can hand to a new teammate without a long onboarding doc.
- ★★★★★Anika Malhotra· Nov 11, 2024
Useful defaults in google-search-browser-use — fewer surprises than typical one-off scripts, and it plays nicely with `npx skills` flows.
- ★★★★★Rahul Santra· Nov 7, 2024
google-search-browser-use fits our agent workflows well — practical, well scoped, and easy to wire into existing repos.
showing 1-10 of 73