← Back to Course Dashboard
Day 2 · Browsers Track · Lesson 07

The Frontier of Agentic Browsing

Course Target: Meet the three agentic browsers now reshaping how we work on the web — Perplexity's Comet, OpenAI's ChatGPT Atlas, and Google Chrome's Gemini-powered Auto-Browse — and the single idea underneath all three: read a page's semantic structure, plan a path through it, take action, and pause at the steps that matter.

An agentic browser doesn't just show you the web; it acts on it. You state a goal in plain language and the browser navigates, clicks, fills forms, and gathers results while you supervise. For faculty, that can collapse an afternoon of tab-juggling — comparing textbook editions, gathering open educational resources, checking a policy across several sites — into one delegated request. This lesson covers what the three engines share, where they differ, and the edge cases that decide whether delegating is actually safe: chiefly prompt injection and the fact that the agent acts inside your logged-in sessions.

Learning Objectives

Key Terms

Select any card to flip it and reveal the definition. Cards are keyboard-operable — press Enter or Space.

Course Outline & Lesson Modules

From a window onto the web to a worker on the web

For thirty years a browser has been a window: it fetches a page and shows it to you, and you do the clicking, typing, comparing, and deciding. A chat assistant added a second window beside it — you copy something over, ask a question, and paste the answer back. An agentic browser closes that gap. The assistant lives inside the browser, can see the pages you have open, and — when you let it — operates them itself. The unit of work shifts from a single click to a stated goal.

That shift has a name worth keeping: from navigating to delegating. Instead of "open three bookstore tabs, find the same ISBN, read off the prices," you say "find the cheapest legitimate copy of this edition and show me the three best options." The browser does the steps; you judge the result.

The shared loop: read, plan, act, confirm

However different the three products look, underneath they run the same loop. Knowing it tells you what to expect and where to stay alert.

  1. Step 1ReadParse the page's semantic structure — headings, buttons, fields, ARIA labels — to understand what is actually on it.
  2. Step 2PlanBreak the goal into ordered steps: search, navigate, evaluate, then act.
  3. Step 3ActExecute the safe steps directly — click, type, scroll, extract.
  4. Step 4ConfirmPause on anything sensitive or irreversible — payments, logins, sending — and wait for your approval.

The fourth step is the one that keeps delegation safe. A well-behaved agent treats buying, sending, submitting, and accepting agreements as stop-points, not steps it may take on its own.

Why "semantic HTML" turns up in a browsing lesson

Agents don't see your page the way you do; they read its structure. A button labelled with a real <button> and clear text is easy to find and operate. A button faked from a styled <div> with no label is nearly invisible to the agent. The same accessibility work that helps a screen-reader user — semantic elements, labelled fields, ARIA landmarks — is what makes a site legible to an agent. OpenAI even advises site owners to add ARIA tags so Atlas's agent works better on their pages. Good structure is no longer just an accessibility nicety; it is the interface agents use.

Conceptual analogy: A traditional browser is a car you drive. A chat assistant is a knowledgeable passenger you can ask for directions. An agentic browser is a chauffeur: you name the destination and the constraints, it handles the route — and you still keep a hand near the wheel for the turns that matter.

Hands-on Workspace Modules

Activity 01

Agentic Browsing Brief

Turn a real task you do by hand into a bounded, safe delegation. Define the goal, the sites, the constraints, the stop-points, and what "done" means — then generate a portable brief you can hand to Comet, Atlas, or Auto-Browse.

Open Activity 1
Activity 02

Spot the Prompt Injection

Review what an agent encounters on real pages and inboxes, and judge each one: safe to act on, a sensitive step that needs your OK, or a hidden injection to refuse. Build the instinct that keeps delegation safe.

Open Activity 2
Activity 03

Engine Selector & Pre-Flight Check

Answer a few questions about a task and get a fitting engine and the reasoning behind it — then run the pre-flight safety checklist every delegation should pass before you let the browser act.

Open Activity 3