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」です。
拡張機能のスクリーンショット
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 |
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 |
Eメール | [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" ] } |