D365-UI-Test-Designer

A browser extension for designing and capturing D365 UI Tests

O que é D365-UI-Test-Designer?

D365-UI-Test-Designer é uma extensão do Chrome desenvolvida por florian.kroenert, e sua principal característica é "A browser extension for designing and capturing D365 UI Tests".

Capturas de Tela da Extensão

screenshot
screenshot

Baixar o arquivo CRX da Extensão D365-UI-Test-Designer

Baixe arquivos de extensão D365-UI-Test-Designer no formato crx, instale manualmente as extensões do Chrome no navegador ou compartilhe os arquivos crx com amigos para instalar facilmente as extensões do Chrome.

Instruções de Uso da Extensão

                        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                    

Informações Básicas da Extensão

Nome D365-UI-Test-Designer D365-UI-Test-Designer
ID lfcoehhlodiaehjepemaogbgadfoipog
URL Oficial https://chromewebstore.google.com/detail/d365-ui-test-designer/lfcoehhlodiaehjepemaogbgadfoipog
Descrição A browser extension for designing and capturing D365 UI Tests
Tamanho do Arquivo 1015 KB
Contagem de Instalações 732
Versão Atual 0.9.9
Última Atualização 2021-02-04
Data de Publicação 2020-12-31
Classificação 5.00/5 Total de 141 Avaliações
Desenvolvedor florian.kroenert
Email [email protected]
Tipo de Pagamento free
Site da Extensão https://github.com/XRM-OSS/D365-UI-Test-Designer
URL da Página de Ajuda https://github.com/XRM-OSS/D365-UI-Test-Designer/issues
Idiomas Suportados 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"
    ]
}