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 파일 다운로드

크롬 확장 프로그램을 crx 형식으로 다운로드하여 브라우저에 수동으로 설치하거나 crx 파일을 친구들과 공유하여 쉽게 크롬 확장 프로그램을 설치하세요.

확장 프로그램 사용 설명서

                        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
공식 URL 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"
}