UTAM

Allows test script authors to analyze a page and select the correct UTAM Page Object to use for their test.

UTAMとは何ですか?

UTAMはSalesforceによって開発されたChromeの拡張機能で、その主な機能は「Allows test script authors to analyze a page and select the correct UTAM Page Object to use for their test.」です。

拡張機能のスクリーンショット

screenshot
screenshot
screenshot
screenshot

UTAM拡張機能のCRXファイルをダウンロード

UTAM拡張子のファイルをcrx形式でダウンロードし、ブラウザにChrome拡張機能を手動でインストールするか、crxファイルを友達と共有して簡単にChrome拡張機能をインストールします。

拡張機能の使用方法

                        The UTAM browser extension enables inspection of a page to identify known UTAM Page Objects that can be used for automated testing. It also enables generation of page objects for parts of the page that don't have one already.

For help getting started, tutorials, documentation and more check out our website at https://utam.dev/.                    

拡張機能の基本情報

名前 UTAM UTAM
ID llgodnekeleaidcljgfljjechnjdgnli
公式URL https://chromewebstore.google.com/detail/utam/llgodnekeleaidcljgfljjechnjdgnli
説明 Allows test script authors to analyze a page and select the correct UTAM Page Object to use for their test.
ファイルサイズ 342 KB
インストール数 936
現在のバージョン 1.0.1
最終更新日 2024-02-27
公開日 2022-09-02
評価 5.00/5 合計 2 レビュー
開発者 Salesforce
Eメール [email protected]
支払い方法 free
拡張機能のウェブサイト https://utam.dev
ヘルプページのURL https://utam.dev/tools/browser-extension
プライバシーポリシーページのURL http://www.salesforce.com/company/privacy
対応言語 en-US
manifest.json
{
    "update_url": "https:\/\/clients2.google.com\/service\/update2\/crx",
    "manifest_version": 3,
    "name": "UTAM",
    "version": "1.0.1",
    "description": "Allows test script authors to analyze a page and select the correct UTAM Page Object to use for their test.",
    "author": "Salesforce",
    "devtools_page": "devtools\/devtools.html",
    "background": {
        "service_worker": "background\/background.js",
        "type": "module"
    },
    "icons": {
        "512": "img\/browser-plugin.png"
    },
    "content_scripts": [
        {
            "matches": [
                ""
            ],
            "js": [
                "content\/content.js"
            ]
        }
    ],
    "web_accessible_resources": [
        {
            "matches": [
                ""
            ],
            "resources": [
                "common\/ErrorCodes.js",
                "common\/Messages.js",
                "common\/Settings.js",
                "content\/content_main.js",
                "content\/ElementFinder.js",
                "content\/Highlighter.js",
                "content\/MemberNodeDescriptor.js",
                "content\/PageObjectDatabase.js"
            ]
        }
    ],
    "permissions": [
        "activeTab",
        "clipboardWrite",
        "storage",
        "tabs"
    ]
}