D365-UI-Test-Designer

A browser extension for designing and capturing D365 UI Tests

什么是D365-UI-Test-Designer?

D365-UI-Test-Designer是由florian.kroenert开发的Chrome扩展程序,该扩展的主要功能是“A browser extension for designing and capturing D365 UI Tests”。

扩展截图

screenshot
screenshot

下载D365-UI-Test-Designer扩展crx文件

下载D365-UI-Test-Designer扩展crx格式的文件,手动将Chrome插件安装到浏览器中,也可以将crx文件分享给朋友,轻松安装Chrome插件。

扩展使用说明

                        This is an extension for providing a user interface for writing UI Tests for Dynamics 365 Customer Engagement.
It can capture your page actions and assist you in defining actions and assertions for your tests.

The test suite that you create can be exported (and imported again). In addition to this, the extension can create a fully functioning D365-UI-Test UI Test script, which you can use for executing directly in D365-UI-Test.

D365-UI-Test can be found here: https://github.com/XRM-OSS/D365-UI-Test                    

扩展基本信息

名称 D365-UI-Test-Designer D365-UI-Test-Designer
ID lfcoehhlodiaehjepemaogbgadfoipog
官方URL https://chromewebstore.google.com/detail/d365-ui-test-designer/lfcoehhlodiaehjepemaogbgadfoipog
简介 A browser extension for designing and capturing D365 UI Tests
文件大小 1015 KB
安装次数 732
当前版本 0.9.9
更新时间 2021-02-04
上架时间 2020-12-31
评分 5.00/5 共141次评分
开发者 florian.kroenert
电子邮箱 [email protected]
付费类型 free
扩展官网 https://github.com/XRM-OSS/D365-UI-Test-Designer
帮助页面URL https://github.com/XRM-OSS/D365-UI-Test-Designer/issues
支持的语言 en
manifest.json
{
    "update_url": "https:\/\/clients2.google.com\/service\/update2\/crx",
    "manifest_version": 2,
    "name": "D365-UI-Test-Designer",
    "description": "A browser extension for designing and capturing D365 UI Tests",
    "version": "0.9.9",
    "icons": {
        "16": "icon16.png",
        "48": "icon48.png",
        "128": "icon128.png"
    },
    "content_scripts": [
        {
            "run_at": "document_idle",
            "matches": [
                "https:\/\/*.dynamics.com\/*"
            ],
            "js": [
                "inject.js"
            ]
        }
    ],
    "browser_action": {
        "default_popup": "index.html"
    },
    "background": {
        "scripts": [
            "background.js"
        ],
        "persistent": false
    },
    "web_accessible_resources": [
        "content.js"
    ],
    "permissions": [
        "storage",
        "activeTab"
    ]
}