@midscene/mcp 1.0.1-beta-20251107065041.0 → 1.0.1-beta-20251110055007.0
This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
- package/dist/api.mdx +9 -1
- package/dist/index.js +23 -32
- package/package.json +5 -5
package/dist/api.mdx
CHANGED
|
@@ -7,7 +7,7 @@
|
|
|
7
7
|
Each Agent in Midscene has its own constructor.
|
|
8
8
|
|
|
9
9
|
- In Puppeteer, use [PuppeteerAgent](./integrate-with-puppeteer)
|
|
10
|
-
- In Bridge Mode, use [AgentOverChromeBridge](./bridge-mode
|
|
10
|
+
- In Bridge Mode, use [AgentOverChromeBridge](./bridge-mode#constructor)
|
|
11
11
|
- In Android, use [AndroidAgent](./integrate-with-android)
|
|
12
12
|
- For GUI Agent integrating with your own interface, refer to [Integrate with any interface](./integrate-with-any-interface)
|
|
13
13
|
|
|
@@ -1223,3 +1223,11 @@ describe('Android Settings Test', () => {
|
|
|
1223
1223
|
:::tip
|
|
1224
1224
|
The merged report file will be saved in the `midscene_run/report` directory by default. You can customize the report directory location by setting the `MIDSCENE_RUN_DIR` environment variable.
|
|
1225
1225
|
:::
|
|
1226
|
+
|
|
1227
|
+
## Platform-Specific Agents
|
|
1228
|
+
|
|
1229
|
+
- `AndroidAgent` / `AndroidDevice`: Use the Android SDK integration guide for APIs, constructors, and helper utilities. [Read more](./integrate-with-android#androidagent) and [device details](./integrate-with-android#androiddevice).
|
|
1230
|
+
- `IOSAgent` / `IOSDevice`: Follow the iOS integration guide for WebDriverAgent-based automation. [Read more](./integrate-with-ios#iosagent) and [device details](./integrate-with-ios#iosdevice).
|
|
1231
|
+
- `PuppeteerAgent`: See the Puppeteer integration doc for browser automation options and constructor parameters. [Read more](./integrate-with-puppeteer#puppeteeragent).
|
|
1232
|
+
- `PlaywrightAgent`: Explore the Playwright integration guide for direct usage examples and configuration. [Read more](./integrate-with-playwright#playwrightagent).
|
|
1233
|
+
- `AgentOverChromeBridge`: Refer to the bridge mode instructions for connecting local scripts to Chrome. [Read more](./bridge-mode#agentoverchromebridge).
|