TruePath

TruePath generates the relative XPath, script and analyzes code on click

什麼是TruePath?

TruePath是由https://qaworld.ga開發的Chrome擴展程式,該擴展的主要功能是“TruePath generates the relative XPath, script and analyzes code on click”。

擴展截圖

screenshot
screenshot
screenshot

下載TruePath擴展crx文件

下載TruePath擴展crx格式的文件,手動將Chrome擴充功能安裝到瀏覽器中,也可以將crx文件分享給朋友,輕鬆安裝Chrome擴充功能。

擴展使用說明

                        It then further group the XPath based on:
***********************************************
1. Id, href & src
2. Class, name, title etc.
3. Index

TruePath provides DevTool supports. With DevTool supports, users can easily customize the generated XPath or create custom XPath in seconds.

TRUEPATH now has the Locator Analyser to analyze the locators of the existing code of the target page written in Java.

TruePath also auto-generates the code for C#, Java & Robot framework. 

Disclaimer:
This extension uses Google Analytics to collect extension usage statistics to help improve the user experience. We neither sell nor share any data to anyone for any use. For more details please visit the privacy policy https://qaworld.ga/privacy                    

擴展基本資訊

名稱 TruePath TruePath
ID mgjhkhhbkkldiihlajcnlfchfcmhipmn
官方網址 https://chromewebstore.google.com/detail/truepath/mgjhkhhbkkldiihlajcnlfchfcmhipmn
簡介 TruePath generates the relative XPath, script and analyzes code on click
檔案大小 182 KB
安裝次數 20,000
目前版本 1.0.0
更新時間 2020-08-04
上架時間 2020-05-03
評分 3.81/5 共 26 次評分
開發者 https://qaworld.ga
電子郵箱 [email protected]
付費類型 free
隱私政策頁面URL https://qaworld.ga/privacy
支援的語言 en-US
manifest.json
{
    "update_url": "https:\/\/clients2.google.com\/service\/update2\/crx",
    "manifest_version": 2,
    "name": "TruePath",
    "description": "TruePath generates the relative XPath, script and analyzes code on click",
    "version": "1.0.0",
    "content_security_policy": "script-src 'self' https:\/\/www.googletagmanager.com https:\/\/ssl.google-analytics.com https:\/\/www.google-analytics.com; object-src 'self'",
    "icons": {
        "128": "xpath.png"
    },
    "content_scripts": [
        {
            "all_frames": true,
            "match_about_blank": true,
            "matches": [
                "http:\/\/*\/*",
                "https:\/\/*\/*",
                ""
            ],
            "js": [
                "content-script\/contentScript1.js",
                "content-script\/content.js",
                "content-script\/contentScript2.js",
                "dialog.js"
            ]
        }
    ],
    "browser_action": {
        "browser_style": true,
        "default_icon": "xpath.png",
        "default_title": "TruePath",
        "default_popup": "popup\/TruePath.html"
    },
    "background": {
        "scripts": [
            "extension\/background.js",
            "install.js"
        ]
    },
    "permissions": [
        "contextMenus",
        "clipboardWrite"
    ],
    "devtools_page": "devtools-panel\/devtools.html",
    "author": "Sumit Ghosh",
    "homepage_url": "https:\/\/qaworld.ga\/truepath"
}