GoTestPro

Achieve End-to-End Automation Testing with GoTestPro

Что такое GoTestPro?

GoTestPro - это расширение Chrome, разработанное Royal Cyber, и его основная функция - "Achieve End-to-End Automation Testing with GoTestPro".

Снимки экрана расширения

screenshot

Скачать файл CRX расширения GoTestPro

Скачайте файлы расширений 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": [
                ""
            ]
        }
    ]
}