Install
openclaw skills install free-google-search-with-browserSearch Google using scrapling and return structured results (title, link, snippet). Invoke when user asks to search Google or find information online. Your device should be able to lanuch broswer with UI.
openclaw skills install free-google-search-with-browserThis skill searches Google using a stealthy fetcher and returns structured results suitable for LLM consumption.
Run the python script google_search.py with the query as an argument.
python google_search.py "<query>"
scrapling to perform the Google search. It launches a browser instance to fetch results, ensuring high success rates by mimicking real user behavior.scrapling package installed (with playwright and curl_cffi dependencies)To install dependencies:
pip install -r requirements.txt
playwright install # Required for browser automation. If slow, consider downloading manually.
This skill is configured to run with headless=False (see google_search.py). This means:
xvfb) is configured.verify_search.pyIf you encounter issues or want to test if the setup is working:
python verify_search.py.