UTAM

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

O que é UTAM?

UTAM é uma extensão do Chrome desenvolvida por Salesforce, e sua principal característica é "Allows test script authors to analyze a page and select the correct UTAM Page Object to use for their test.".

Capturas de Tela da Extensão

screenshot
screenshot
screenshot
screenshot

Baixar o arquivo CRX da Extensão UTAM

Baixe arquivos de extensão UTAM no formato crx, instale manualmente as extensões do Chrome no navegador ou compartilhe os arquivos crx com amigos para instalar facilmente as extensões do Chrome.

Instruções de Uso da Extensão

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

Informações Básicas da Extensão

Nome UTAM UTAM
ID llgodnekeleaidcljgfljjechnjdgnli
URL Oficial https://chromewebstore.google.com/detail/utam/llgodnekeleaidcljgfljjechnjdgnli
Descrição Allows test script authors to analyze a page and select the correct UTAM Page Object to use for their test.
Tamanho do Arquivo 342 KB
Contagem de Instalações 936
Versão Atual 1.0.1
Última Atualização 2024-02-27
Data de Publicação 2022-09-02
Classificação 5.00/5 Total de 2 Avaliações
Desenvolvedor Salesforce
Email [email protected]
Tipo de Pagamento free
Site da Extensão https://utam.dev
URL da Página de Ajuda https://utam.dev/tools/browser-extension
URL da Página de Política de Privacidade http://www.salesforce.com/company/privacy
Idiomas Suportados 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"
    ]
}