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
电子邮箱 [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"
    ]
}