Custom Xpath

Generate custom xpaths and download as page object files

Custom Xpath là gì?

Custom Xpath là một tiện ích mở rộng Chrome được phát triển bởi praveen060991, và tính năng chính của nó là "Generate custom xpaths and download as page object files".

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

screenshot
screenshot
screenshot

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

Tải xuống các tệp mở rộng Custom Xpath 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

                        In Test automation, 30% time taken to manually write custom xpaths. 
This tool helps the users to generate custom values with very few clicks. Then collected objects are stored in an object and written to a user defined file format. Users can download the file and paste it in their framework as page object file. Supported attributes with respect to xpath are ID, Name, Class, Text and Partial Link Text.                    

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

Tên Custom Xpath Custom Xpath
ID bcnamjdgkbhebmcjbdeljhobjkoindhf
URL Chính Thức https://chromewebstore.google.com/detail/custom-xpath/bcnamjdgkbhebmcjbdeljhobjkoindhf
Mô tả Generate custom xpaths and download as page object files
Kích Thước Tệp 1.18 MB
Số Lần Cài Đặt 162
Phiên Bản Hiện Tại 0.0.2
Cập Nhật Lần Cuối 2023-01-28
Ngày Phát Hành 2023-01-25
Đánh Giá 5.00/5 Tổng số 2 Đánh Giá
Nhà Phát Triển praveen060991
Email [email protected]
Loại Thanh Toán free
Ngôn Ngữ Được Hỗ Trợ en
manifest.json
{
    "update_url": "https:\/\/clients2.google.com\/service\/update2\/crx",
    "manifest_version": 3,
    "name": "Custom Xpath",
    "version": "0.0.2",
    "description": "Generate custom xpaths and download as page object files",
    "author": "Praveen Kannan",
    "action": {
        "default_icon": "CX_icon.png"
    },
    "icons": {
        "16": "CX_16.png",
        "48": "CX_48.png",
        "128": "CX_128.png"
    },
    "content_security_policy": {
        "extension_pages": "script-src 'self'; object-src 'self'"
    },
    "background": {
        "service_worker": "event.js"
    },
    "permissions": [
        "activeTab",
        "scripting"
    ],
    "web_accessible_resources": [
        {
            "resources": [
                "template.html",
                "list.html",
                "icon128.png"
            ],
            "matches": [
                ""
            ]
        }
    ],
    "_execute_action": {
        "suggested_key": {
            "default": "Alt+c"
        }
    }
}