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
官方網址 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
電子郵箱 [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"
    ]
}