UTAM

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

UTAM là gì?

UTAM là một tiện ích mở rộng Chrome được phát triển bởi Salesforce, và tính năng chính của nó là "Allows test script authors to analyze a page and select the correct UTAM Page Object to use for their test.".

Ảnh Chụp Màn Hình của Tiện Ích Mở Rộng

screenshot
screenshot
screenshot
screenshot

Tải xuống tệp CRX của tiện ích mở rộng UTAM

Tải xuống các tệp mở rộng UTAM dưới định dạng crx, cài đặt các tiện ích mở rộng Chrome bằng tay trong trình duyệt hoặc chia sẻ các tệp crx với bạn bè để dễ dàng cài đặt các tiện ích mở rộng Chrome.

Hướng Dẫn Sử Dụng Tiện Ích Mở Rộng

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

Thông Tin Cơ Bản về Tiện Ích Mở Rộng

Tên UTAM UTAM
ID llgodnekeleaidcljgfljjechnjdgnli
URL Chính Thức https://chromewebstore.google.com/detail/utam/llgodnekeleaidcljgfljjechnjdgnli
Mô tả Allows test script authors to analyze a page and select the correct UTAM Page Object to use for their test.
Kích Thước Tệp 342 KB
Số Lần Cài Đặt 936
Phiên Bản Hiện Tại 1.0.1
Cập Nhật Lần Cuối 2024-02-27
Ngày Phát Hành 2022-09-02
Đánh Giá 5.00/5 Tổng số 2 Đánh Giá
Nhà Phát Triển Salesforce
Email [email protected]
Loại Thanh Toán free
Trang Web Mở Rộng https://utam.dev
URL Trang Trợ Giúp https://utam.dev/tools/browser-extension
URL Trang Chính Sách Bảo Mật http://www.salesforce.com/company/privacy
Ngôn Ngữ Được Hỗ Trợ 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"
    ]
}