# page-agent 页面代理

> 我改了源码自动运行逻辑，不再自动运行了

https://github.com/alibaba/page-agent
https://registry.npmmirror.com/page-agent/1.12.2/files/dist/iife/page-agent.demo.js
https://cdn.jsdelivr.net/npm/page-agent@1.12.2/dist/iife/page-agent.demo.js


```
<script
    src="https://cdn.jsdelivr.net/npm/page-agent@1.12.2/dist/iife/page-agent.demo.js"
    crossorigin="anonymous"
></script>

<!-- China CDN mirror if you can't access jsDelivr -->
<!-- https://registry.npmmirror.com/page-agent/1.12.2/files/dist/iife/page-agent.demo.js -->
```


```
npm install page-agent
```
```js
import { PageAgent } from 'page-agent'

const agent = new PageAgent({
    model: 'qwen3.5-plus',
    baseURL: 'https://page-ag-testing-ohftxirgbn.cn-shanghai.fcapp.run',
    apiKey: 'NA',
    language: 'en-US',
    maxSteps: 100
})

await agent.execute('Click the login button')

```
