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 파일 다운로드

크롬 확장 프로그램을 crx 형식으로 다운로드하여 브라우저에 수동으로 설치하거나 crx 파일을 친구들과 공유하여 쉽게 크롬 확장 프로그램을 설치하세요.

확장 프로그램 사용 설명서

                        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"
    ]
}