UTAM

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

Что такое UTAM?

UTAM - это расширение Chrome, разработанное Salesforce, и его основная функция - "Allows test script authors to analyze a page and select the correct UTAM Page Object to use for their test.".

Снимки экрана расширения

screenshot
screenshot
screenshot
screenshot

Скачать файл CRX расширения UTAM

Скачайте файлы расширений 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"
    ]
}