PEGA - XPath Builder

Customized PEGA development tool to edit, inspect and generate XPath and CSS selectors.

PEGA - XPath Builder là gì?

PEGA - XPath Builder là một tiện ích mở rộng Chrome được phát triển bởi Veera, và tính năng chính của nó là "Customized PEGA development tool to edit, inspect and generate XPath and CSS selectors.".

Ả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 PEGA - XPath Builder

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

                        Copyright (c) G Veera Sekhar 2022. All rights reserved to the developer.
You are allowed to use for personal purpose but not allowed to use by corporates or in corporate environments or for any circumstances that is intended for commercial without prior permission from developer. Copying or using any part of this software or code or any items is considered as crime and are subject to copyright laws.
 

This is a chrome extension which helps writing test cases. It builds unique XPath for each element.
This is developed mainly for PEGA PRPC platform and it works perfectly for any website to find the XPath's. Our unique algorithm will generate reliable and unique XPath's for each element. 

You are free to install and use this extension for any non-commercial purpose and visiting or installing or using this extension implies that you are agreed to the developer policy.

How to Use:

1. After installing this extension, go to the website where you want to build XPaths.

2. Right click anywhere on the webpage loaded and click "inspect"

3. Now, click on 'PEGA - XPath Builder' tab on the tab right side (click on the >> button if you do not see this tab for first time)

4. Now, inspect any element like that way you usually do, you will find the XPath on the input box of 'PEGA - XPath Builder' tab.

5. You can copy the XPath to your clipboard by clicking "Copy to Clipboard" there.

Disclaimer:

Please note that this application only uses the PEGA name since it is made for that. There is no intention on misleading users that this is the official application. This app only tries to make access the DOM to the official web application if loaded in browser. 

If you have any complaints regarding the content or any material, please bring it to our notice which we will remove effectively.

You can report any bugs or improvements or feature ideas to https://github.com/complanboy2/xpath-builder/issues.

Regards,
Veera                    

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

Tên PEGA - XPath Builder PEGA - XPath Builder
ID egkbiiglhcgopbejlhmekoopkjcgbgoj
URL Chính Thức https://chromewebstore.google.com/detail/pega-xpath-builder/egkbiiglhcgopbejlhmekoopkjcgbgoj
Mô tả Customized PEGA development tool to edit, inspect and generate XPath and CSS selectors.
Kích Thước Tệp 1.71 MB
Số Lần Cài Đặt 499
Phiên Bản Hiện Tại 0.2.0
Cập Nhật Lần Cuối 2022-10-02
Ngày Phát Hành 2022-10-02
Đánh Giá 4.72/5 Tổng số 18 Đánh Giá
Nhà Phát Triển Veera
Email [email protected]
Loại Thanh Toán free
URL Trang Chính Sách Bảo Mật https://github.com/complanboy2/autoclicks/blob/master/LICENSE.md/LICENSE.md
Ngôn Ngữ Được Hỗ Trợ en
manifest.json
{
    "author": "complanboy2",
    "background": {
        "persistent": false,
        "scripts": [
            "extension\/background.js"
        ]
    },
    "browser_action": {
        "default_icon": "images\/logo.png"
    },
    "content_scripts": [
        {
            "css": [
                "content-script\/contentScript.css"
            ],
            "js": [
                "3rdparty\/jquery.min.js",
                "content-script\/contentScript.js",
                "3rdparty\/linked-hash-map.js"
            ],
            "matches": [
                "http:\/\/*\/*",
                "https:\/\/*\/*"
            ]
        }
    ],
    "description": "Customized PEGA development tool to edit, inspect and generate XPath and CSS selectors.",
    "devtools_page": "devtools-panel\/devtools.html",
    "icons": {
        "128": "images\/icon128.png",
        "16": "images\/icon16.png",
        "48": "images\/icon48.png"
    },
    "manifest_version": 2,
    "name": "PEGA - XPath Builder",
    "options_page": "options.html",
    "permissions": [
        "activeTab"
    ],
    "update_url": "https:\/\/clients2.google.com\/service\/update2\/crx",
    "version": "0.2.0"
}