GoTestPro

Achieve End-to-End Automation Testing with GoTestPro

什么是GoTestPro?

GoTestPro是由Royal Cyber开发的Chrome扩展程序,该扩展的主要功能是“Achieve End-to-End Automation Testing with GoTestPro”。

扩展截图

screenshot

下载GoTestPro扩展crx文件

下载GoTestPro扩展crx格式的文件,手动将Chrome插件安装到浏览器中,也可以将crx文件分享给朋友,轻松安装Chrome插件。

扩展使用说明

                        GoTest Pro is a Test Automation Tool meant for Software Developers & Testers for automating test scenarios on Web Applications under test using the GoTest Pro Recorder Chrome extension. 

The GoTest Pro Recorder extension allows user to record tests on any web application in lower / prod environments and save the recording as a test scenario in GoTest Pro Web Application based Regression Test Tool. A GoTest Pro user can then play back/execute the recorded test through the GoTest Pro Recorder Chrome Extension or through a Cloud Server. 

Extension's major features include: 

> Recording Test Scenario 
> Extract xpath / css expression from a web application under test
> Execute Java Script based Test Scenarios which were recorded earlier through the same extension.                    

扩展基本信息

名称 GoTestPro GoTestPro
ID ldmfmccaoihffboppndecjpfldhamafn
官方URL https://chromewebstore.google.com/detail/gotestpro/ldmfmccaoihffboppndecjpfldhamafn
简介 Achieve End-to-End Automation Testing with GoTestPro
文件大小 963 KB
安装次数 78
当前版本 0.0.61
更新时间 2024-02-23
上架时间 2023-03-31
开发者 Royal Cyber
电子邮箱 [email protected]
付费类型 free
扩展官网 https://www.gotestpro.com/
帮助页面URL https://www.royalcyber.com/company/contact-us/
隐私政策页面URL https://www.royalcyber.com/company/privacy-policy
支持的语言 en
manifest.json
{
    "update_url": "https:\/\/clients2.google.com\/service\/update2\/crx",
    "name": "GoTestPro",
    "description": "Achieve End-to-End Automation Testing with GoTestPro",
    "version": "0.0.61",
    "manifest_version": 3,
    "icons": {
        "16": "img\/icon.png",
        "48": "img\/icon.png",
        "128": "img\/icon.png"
    },
    "action": {
        "default_title": "GoTest Pro",
        "default_icon": {
            "128": "img\/icon.png",
            "38": "img\/icon.png",
            "19": "img\/icon.png"
        }
    },
    "background": {
        "service_worker": "background.js"
    },
    "content_scripts": [
        {
            "matches": [
                ""
            ],
            "js": [
                "lib\/jquery.min.js",
                "lib\/cssesc.js",
                "lib\/targetSelector.js",
                "lib\/xpath.js",
                "contentScript.js"
            ],
            "run_at": "document_end",
            "all_frames": true,
            "match_about_blank": true,
            "module": "true"
        },
        {
            "world": "MAIN",
            "js": [
                "lib\/execute.js"
            ],
            "matches": [
                ""
            ],
            "run_at": "document_end",
            "all_frames": true,
            "match_about_blank": true,
            "module": "true"
        }
    ],
    "externally_connectable": {
        "matches": [
            "http:\/\/dev-teaf.royalcyber.org\/*",
            "http:\/\/dev-gtp.royalcyber.org\/*",
            "https:\/\/dev-gtp.royalcyber.org\/*",
            "http:\/\/demo-gtp.royalcyber.org\/*",
            "http:\/\/qa-gtp.royalcyber.org\/*",
            "https:\/\/qa-gtp.royalcyber.org\/*",
            "http:\/\/localhost:4200\/*",
            "http:\/\/35.226.5.47\/*",
            "https:\/\/app.gtp.royalcyber.org\/*",
            "https:\/\/eu.gotestpro.com\/*",
            "https:\/\/gtpapp.royalcyber.org\/*",
            "https:\/\/app.gotestpro.com\/"
        ]
    },
    "permissions": [
        "storage",
        "tabs",
        "debugger",
        "activeTab",
        "notifications",
        "contextMenus",
        "webNavigation",
        "downloads.shelf",
        "downloads",
        "scripting",
        "unlimitedStorage"
    ],
    "host_permissions": [
        "",
        "http:\/\/*\/*",
        "https:\/\/*\/*",
        "file:\/\/*"
    ],
    "web_accessible_resources": [
        {
            "resources": [
                "lib\/alertScripts.js"
            ],
            "matches": [
                ""
            ]
        }
    ]
}