From 25652579b8fd942df52ca367b6556de4985054cf Mon Sep 17 00:00:00 2001 From: handongxun Date: Thu, 9 Jul 2020 18:15:32 +0800 Subject: [PATCH] docs:auto --- docs/collocation/auto/quick-start.md | 19 +++++++++++++++++++ 1 file changed, 19 insertions(+) diff --git a/docs/collocation/auto/quick-start.md b/docs/collocation/auto/quick-start.md index 5091cf958f..6af07cefaa 100644 --- a/docs/collocation/auto/quick-start.md +++ b/docs/collocation/auto/quick-start.md @@ -290,6 +290,25 @@ module.exports = { id: "", executablePath: "HBuilderX/plugins/launcher/base/Pandora_simulator.app" // ipa 目录 } + }, + "mp-weixin": { + port: 9420, // 默认 9420 + account: "", // 测试账号 + args: "", // 指定开发者工具参数 + cwd: "", // 指定开发者工具工作目录 + launch: true; // 是否主动拉起开发者工具 + teardown: "disconnect" | "close"; // 可选值 disconnect|close 运行测试结束后,断开开发者工具或关闭开发者工具 + remote: boolean; // 是否真机自动化测试 + executablePath: "", // 开发者工具cli路径,默认会自动查找, windows: C:/Program Files (x86)/Tencent/微信web开发者工具/cli.bat", mac: /Applications/wechatwebdevtools.app/Contents/MacOS/cli + }, + "mp-baidu": { + port: 9430, // 默认 9430 + args: "", // 指定开发者工具参数 + cwd: "", // 指定开发者工具工作目录 + launch: true; // 是否主动拉起开发者工具 + teardown: "disconnect" | "close"; // 可选值 disconnect|close 运行测试结束后,断开开发者工具或关闭开发者工具 + remote: boolean; // 是否真机自动化测试 + executablePath: "", // 开发者工具cli路径,默认会自动查找 } }, testTimeout: 15000, -- GitLab