import { Link } from 'wouter' import { Heading } from '@/components/Heading' import { useLanguage } from '@/i18n/context' export default function LimitationsPage() { const { isZh } = useLanguage() return (
{isZh ? 'Page Agent 基于 DOM 理解网页并执行操作。这决定了它的能力边界。' : 'Page Agent understands web pages via DOM and performs actions accordingly. This defines its capability boundary.'}
{isZh ? 'PageAgent.js 是核心库,运行在页面内。PageAgentExt 是可选的浏览器扩展,提供额外的浏览器级控制能力。' : 'PageAgent.js is the core library running inside a page. PageAgentExt is an optional browser extension that adds browser-level control.'}
| PageAgent.js | PageAgentExt{' '} {isZh ? '了解更多' : 'learn more'} | |
|---|---|---|
| {isZh ? '接入方式' : 'Integration'} | {isZh ? '网站开发者主动集成' : 'Site developer integrates the library'} | {isZh ? '用户安装浏览器扩展' : 'User installs a browser extension'} |
| {isZh ? '可操作范围' : 'Scope'} | {isZh ? '当前页面(为 SPA 设计)' : 'Current page (designed for SPAs)'} | {isZh ? '任意网页、多标签页' : 'Any web page, multi-tab'} |
| {isZh ? '额外能力' : 'Extra capabilities'} | — | {isZh ? '新建/切换/关闭标签页' : 'Open / switch / close tabs'} |
{isZh ? 'Page Agent 不使用多模态模型,不截图,没有视觉能力。仅通过 DOM 结构理解页面。' : 'Page Agent does not use multimodal models, does not take screenshots, and has no visual capability. It reads pages through DOM structure only.'}
{isZh ? '图片、Canvas、WebGL、SVG 等视觉内容无法被识别。页面的语义化程度和可访问性直接影响 AI 的理解准确性。' : 'Images, Canvas, WebGL, SVG and other visual content cannot be recognized. Page semantic quality and accessibility directly affect AI accuracy.'}
{isZh ? '反常识的交互逻辑、纯视觉的操作提示、快速出现消失的元素等都会降低自动化成功率。语义化的 HTML 和良好的可访问性会显著提升效果。' : 'Counter-intuitive interactions, visual-only cues, and rapidly appearing/disappearing elements reduce automation success. Semantic HTML and good accessibility significantly improve results.'}