UTAM

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

¿Qué es UTAM?

UTAM es una extensión de Chrome desarrollada por Salesforce, y su función principal es "Allows test script authors to analyze a page and select the correct UTAM Page Object to use for their test.".

Capturas de Pantalla de la Extensión

screenshot
screenshot
screenshot
screenshot

Descargar Archivo CRX de la Extensión UTAM

Descarga archivos de extensión UTAM en formato crx, instala manualmente las extensiones de Chrome en el navegador o comparte los archivos crx con amigos para instalar fácilmente las extensiones de Chrome.

Instrucciones de Uso de la Extensión

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

Información Básica de la Extensión

Nombre UTAM UTAM
ID llgodnekeleaidcljgfljjechnjdgnli
URL Oficial https://chromewebstore.google.com/detail/utam/llgodnekeleaidcljgfljjechnjdgnli
Descripción Allows test script authors to analyze a page and select the correct UTAM Page Object to use for their test.
Tamaño del Archivo 342 KB
Cantidad de Instalaciones 936
Versión Actual 1.0.1
Última Actualización 2024-02-27
Fecha de Publicación 2022-09-02
Calificación 5.00/5 Total de 2 Calificaciones
Desarrollador Salesforce
Correo electrónico [email protected]
Tipo de Pago free
Sitio Web de la Extensión https://utam.dev
URL de la Página de Ayuda https://utam.dev/tools/browser-extension
URL de la Página de Política de Privacidad http://www.salesforce.com/company/privacy
Idiomas Soportados 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"
    ]
}