UTAM

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

Co je UTAM?

UTAM je rozšíření Chrome vyvinuté Salesforce, a jeho hlavní funkcí je „Allows test script authors to analyze a page and select the correct UTAM Page Object to use for their test.“.

Snímky obrazovky rozšíření

screenshot
screenshot
screenshot
screenshot

Stáhnout soubor CRX rozšíření UTAM

Stáhněte si soubory rozšíření UTAM ve formátu crx, ručně nainstalujte rozšíření Chrome do prohlížeče nebo sdílejte soubory crx s přáteli, abyste jednoduše nainstalovali rozšíření Chrome.

Pokyny pro Použití Rozšíření

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

Základní Informace o Rozšíření

Název UTAM UTAM
ID llgodnekeleaidcljgfljjechnjdgnli
Oficiální URL https://chromewebstore.google.com/detail/utam/llgodnekeleaidcljgfljjechnjdgnli
Popis Allows test script authors to analyze a page and select the correct UTAM Page Object to use for their test.
Velikost souboru 342 KB
Počet instalací 936
Aktuální Verze 1.0.1
Poslední Aktualizace 2024-02-27
Datum Vydání 2022-09-02
Hodnocení 5.00/5 Celkem 2 Hodnocení
Vývojář Salesforce
E-mail [email protected]
Typ Platby free
Webové stránky Rozšíření https://utam.dev
URL Stránky Nápovědy https://utam.dev/tools/browser-extension
URL Stránky Zásad Ochrany Soukromí http://www.salesforce.com/company/privacy
Podporované Jazyky 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"
    ]
}