chatbot-app/agentcore/skills/browser-automation/SKILL.md
Web browser automation for tasks requiring UI interaction, login-protected pages, or human-like browsing when APIs are insufficient.
npx skillsauth add aws-samples/sample-strands-agent-with-agentcore browser-automationInstall this skill globally with one command. Works with Claude Code, Cursor, and Windsurf.
3 of 9 scanners reported clean
Some scanners were skipped, did not run, or reported a non-clean status. Review each row below.
starting_url to navigate to a page and act in a single call.url to navigate first; text=True for full text, tables=True for table data, links=True for all links.Use browser automation when the task genuinely requires it:
Prefer web search or url_fetcher for general information lookup, news, or publicly accessible pages — browser automation is slower and heavier. Reserve it for tasks where simpler tools are insufficient.
browser_act: UI interactions (click, type, scroll, form fill). Use starting_url to open a page and act in one call.browser_get_page_info: Fast page structure check and optional content extraction (<300ms). Use url to navigate first.browser_manage_tabs: Switch/close/create tabs (view tabs via get_page_info)browser_save_screenshot: Save milestone screenshots (search results, confirmations, key data)starting_url when opening a fresh page: browser_act(instruction='Search for laptops', starting_url='https://amazon.com')url to navigate and inspect in one call: browser_get_page_info(url='https://example.com', tables=True)text=True to get full page text content (useful for reading article text)tables=True to extract structured table data from the pagelinks=True to get all links on the page (up to 200)development
Read and write files in the shared session workspace. Use this to access files created by any skill — code-agent outputs, office documents, images, and more. All within the same isolated session.
documentation
Create, modify, and manage Word documents.
documentation
Wikipedia article search and retrieval
development
Search the web using DuckDuckGo for current information, news, and research topics.