UTAM

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

What is UTAM?

UTAM is a Chrome extension developed by Salesforce, and its main feature is "Allows test script authors to analyze a page and select the correct UTAM Page Object to use for their test.".

Extension Screenshots

screenshot
screenshot
screenshot
screenshot

Download UTAM Extension CRX File

Download UTAM extension files in crx format, manually install Chrome extensions in the browser, or share the crx files with friends to easily install Chrome extensions.

Extension Usage Instructions

                        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/.                    

Extension Basic Information

Name UTAM UTAM
ID llgodnekeleaidcljgfljjechnjdgnli
Official URL https://chromewebstore.google.com/detail/utam/llgodnekeleaidcljgfljjechnjdgnli
Description Allows test script authors to analyze a page and select the correct UTAM Page Object to use for their test.
File Size 342 KB
Installation Count 936
Current Version 1.0.1
Last Updated 2024-02-27
Publish Date 2022-09-02
Rating 5.00/5 Total 2 Ratings
Developer Salesforce
Email [email protected]
Payment Type free
Extension Website https://utam.dev
Help Page URL https://utam.dev/tools/browser-extension
Privacy Policy Page URL http://www.salesforce.com/company/privacy
Supported Languages 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"
    ]
}